@import "./variables.css";
@import "./typography.css";

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Courier New', Courier, monospace;
}

a {
  text-decoration: none;
}

.form-control,
.form-select {
  border-radius: 15px;
}

input {
  font-size: 16px !important;
  padding: 5px 15px 10px !important;
}

input::placeholder {
  color: rgba(153, 153, 153, 0.75) !important;
  font-family: "sp-pro-regular" !important;
}

a,
button,
.btn {
  font-family: "sp-pro-regular";
}

.list-decimal {
  list-style: decimal;
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

form {
  font-family: "sp-pro-regular";
}

.btn-submit,
.btn-dark-zph,
.btn-white-zph {
  border-width: 1px;
  border-style: solid;
  transition: 0.3s ease-in-out;
}

.btn-submit {
  padding: 10px 10px 13px;
  background-color: #00ac5c;
  border-color: #00ac5c;
}

.btn-dark-zph {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.btn-dark-zph:hover {
  background-color: #fff;
  border-color: #000;
  color: #000;
}

.btn-white-zph {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.btn-white-zph:hover {
  background-color: #000;
  border-color: #fff;
  color: #fff;
}

.mobile-nav .mobile-drawer-btn {
  color: #fff;
  font-size: 25px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: flex;
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  align-items: center;
  justify-content: center;
  color: #ddd;
}

.menu {
  background-color: #171718;
}

.menu a,
.menu a.active {
  font-weight: 200;
  font-size: 16px;
}

.menu .nav-item .nav-link {
  color: #eee;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu .nav-item .nav-link::after {
  transition: 0.3s ease-in-out;
}

.menu .nav-item:hover .nav-link::after {
  content: '';
  bottom: 0;
  left: 20px;
  z-index: 1;
  right: 20px;
  height: 2px;
  position: absolute;
  background-color: #fff;
  animation: hoverMenu 0.3s ease-in-out;
}

@keyframes hoverMenu {
  0% {
    height: 0px;
  }

  100% {
    height: 2px;
  }
}

.nav-item-brand:hover .nav-link::after {
  content: none !important;
}

.menu .nav-item.active .nav-link {
  color: #fff;
}

.zph-header h1,
.zph-header p {
  color: #fff;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.zph-header h1 {
  filter: drop-shadow(0 5px 50px #F2B42E);
  font-family: "sp-pro-bold";
}

.zph-header p {
  font-family: "sp-pro-regular";
}

.one-frame {
  /* height: 48rem; */
  overflow-y: hidden;
  display: flex;
  align-items: center;
}

.one-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 48%);
}

.dots-moves a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(161deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 40%);
}

.dots-moves a p {
  font-size: 25px;
  font-family: "sp-pro-bold";
  background-clip: text;
  background-image: linear-gradient(90deg, #fff, #FBF3A8);
  color: transparent;
  padding: 0 5px;
}

.dots-moves .mySwiper {
  position: relative;
}

.dots-moves .mySwiper::before,
.dots-moves .mySwiper::after {
  content: '';
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  position: absolute;
  background: rgb(255, 255, 255);
}

.dots-moves .mySwiper::before {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.dots-moves .mySwiper::after {
  left: 0;
  right: auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.dots-moves .swiper-button-prev,
.dots-moves .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.dots-moves:hover .swiper-button-prev,
.dots-moves:hover .swiper-button-next {
  opacity: 1;
}

.dots-moves .swiper-button-prev::after,
.dots-moves .swiper-button-next::after {
  font-size: 15px;
  color: #575757;
}

.dots-moves .swiper-button-prev {
  left: 50px;
}

.dots-moves .swiper-button-next {
  right: 50px;
}

.dots-moves .swiper-pagination {
  position: unset;
  padding: 10px 0;
}

.dots-moves .swiper-pagination-bullet {
  transition: 0.3s ease-in-out;
  border-radius: 100px;
}

.dots-moves .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #060606;
}

.runing-posts .swiper-slide {
  height: 15rem;
  display: flex;
  align-items: end;
  justify-content: end;
  background-color: #EEEEEE;
}

.runing-posts .bg-bost {
  background-color: #EEEEEE;
}

.runing-posts .bg-bost .title {
  color: #000;
  font-family: "sp-pro-bold";
}

.runing-posts .bg-bost .description {
  color: #373737;
  font-family: "sp-pro-regular";
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.runing-posts .bg-bost .link {
  color: #AD7F19;
  font-family: "sp-pro-bold";
}

.zph-content h2 {
  font-family: "sp-pro-bold";
  font-size: 25px;
}

.zph-content p {
  font-family: "sp-pro-regular";
  font-size: 16px;
}

.zph-description li,
.zph-description p {
  color: #575757;
  font-family: "sp-pro-regular";
}

.parallax {
  background-image: url("../img/zph-partners-me.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.parallax::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(329deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 40%);
}

.footer .title {
  color: #000;
  font-size: 16px;
  font-family: "sp-pro-medium";
  font-weight: bolder;
}

.footer li,
.footer p {
  color: #A0A0A0;
  font-size: 16px;
  font-weight: lighter;
  font-family: "sp-pro-regular";
}

.footer a {
  color: #000;
  font-size: 16px;
  font-family: "sp-pro-medium" !important;
  font-weight: bolder;
  transition: 0.3s ease-in-out;
}

.footer a:hover {
  color: #A0A0A0;
}

.breadcrumb .breadcrumb-item::before,
.breadcrumb .breadcrumb-item,
.breadcrumb a {
  color: #fff !important;
  font-family: "sp-pro-regular";
}

.breadcrumb .breadcrumb-item.active {
  opacity: 0.75;
}

.description h2 {
  font-size: 22px;
  font-family: "sp-pro-bold";
}

.description p {
  font-size: 16px;
  font-family: "sp-pro-regular";
  margin: 0;
  color: #575757;
}

.description strong {
  color: #000;
  font-family: "sp-pro-medium";
}

.description ol,
.description ul {
  padding: 0 15px !important;
}

.description li {
  font-family: "sp-pro-regular";
}

.partnership-home img {
  width: 100% !important;
  height: auto !important;
}