@import url("https://fonts.googleapis.com/css2?family=Gothic+A1&family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Manrope", sans-serif !important;
}

.light--header header .header__nav a {
  color: #201f1e;
}
.light--header header .header__logo img {
  filter: invert(63%) sepia(0) saturate(100%) hue-rotate(320deg) brightness(70%)
    contrast(100%);
}
@media screen and (max-width: 768px) {
  .light--header header .header__logo img {
    filter: none;
  }
}
.light--header .header__dropdown a img {
  filter: invert(63%) sepia(0) saturate(100%) hue-rotate(320deg) brightness(70%)
    contrast(100%);
}

.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.wrap {
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 768px) {
  .wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

.page-template-home header {
  position: absolute;
  width: 100%;
  z-index: 9;
}

header {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
    top: 0;
    background: #1d1d1d;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0;
  }
  header .header__logo a {
    display: flex;
  }
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .header__nav {
    display: none;
  }
}
header .header__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 60px;
}
header .header__nav a {
  text-decoration: none;
  color: #c1a07f;
  font-size: 16px;
}
header .header__nav a:hover {
  color: #b9732e;
}
header .pll-parent-menu-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
header .pll-parent-menu-item .sub-menu {
  display: none;
  position: absolute;
  z-index: 1;
  list-style: none;
  left: 0;
}
header .pll-parent-menu-item .sub-menu li {
  padding: 10px 0;
}
header .pll-parent-menu-item .sub-menu a {
  text-decoration: none;
  color: #c1a07f;
  display: block;
}
header .pll-parent-menu-item .sub-menu a:hover {
  color: #b9732e;
}
header .pll-parent-menu-item:hover .sub-menu {
  display: block;
}

.slider {
  /* Pagination styling */
}
.slider .swiper {
  width: 100%;
  height: 100vh;
}
.slider .swiper-slide {
  position: relative;
  /* background-size: cover; */
  background-position: top center;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  padding: 200px 0;
}
@media screen and (max-width: 768px) {
  .slider .swiper-slide {
    padding: 150px 0;
  }
}
.slider .slide-content {
  max-width: 500px;
  min-height: 250px;
  max-height: 250px;
  height: 100%;
}
.slider .slide-title {
  font-size: 64px;
  margin: 0;
  color: #c1a07f;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 70px;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .slider .slide-title {
    font-size: 48px;
    line-height: 48px;
  }
}
.slider .slide-description {
  margin: 24px 0;
  font-size: 14px;
  color: #c1a07f;
  font-weight: 300;
}
.slider .slide-link {
  font-size: 16px;
  color: #c1a07f;
  text-decoration: underline;
  font-weight: 300;
}
.slider .slide-counter {
  display: flex;
  align-items: center;
  color: #c1a07f;
  font-size: 22px;
  font-weight: 300;
  margin: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .slider .slide-counter {
    display: none;
  }
}
.slider .slide-counter #current-slide {
  color: #c1a07f;
  font-size: 20px;
  font-weight: 300;
  margin: 0 5px 0 0;
}
.slider .slide-counter #total-slides {
  color: #c1a07f;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 0 5px;
}
.slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .slider .swiper-pagination {
    text-align: center !important;
  }
}
.slider .swiper-pagination-bullet {
  background-color: #c1a07f;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}
.slider .swiper-pagination-bullet-active {
  background-color: #c1a07f;
  opacity: 1;
}

.section__title {
  font-size: 64px;
  line-height: 70px;
  font-family: "Manrope", sans-serif;
  color: #201f1e;
  margin: 0;
  font-weight: 300;
}

.head_line {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 30px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .head_line {
    display: none;
  }
}

.about {
  padding: 140px 0;
}
.about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__content {
    flex-direction: column;
  }
}
.about__content::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #201f1e;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .about__content::after {
    display: none;
  }
}
.about__content .section__title {
  text-transform: uppercase;
}
.about__content-left {
  width: 100%;
  max-width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__content-left {
    max-width: 100%;
    border-bottom: 1px solid #201f1e;
    padding: 0 0 40px 0;
  }
}
.about__content-right {
  width: 100%;
  max-width: 50%;
  padding: 104px 124px;
}
@media screen and (max-width: 768px) {
  .about__content-right {
    max-width: 100%;
    padding: 40px 0 0 0;
  }
}

.services__items {
  display: flex;
}
@media screen and (max-width: 768px) {
  .services__items {
    flex-direction: column;
  }
}
.services__items-item {
  position: relative;
  width: 100%;
  max-width: 33.333%;
}
@media screen and (max-width: 768px) {
  .services__items-item {
    max-width: 100%;
  }
  .services__items-item img {
    width: 100%;
    height: 100%;
  }
}
.services__items-info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(27, 25, 23, 0.8);
}
.services__items-info a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #c1a07f;
  font-weight: 300;
  text-decoration: none;
  font-family: "Manrope";
  text-transform: uppercase;
}
.services__items-info a span {
  position: relative;
}
.services__items-info a span::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  background: #c1a07f;
  left: 0;
  bottom: 0;
}

.numbers {
  padding: 140px 0;
}
.numbers__items {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .numbers__items {
    flex-direction: column;
  }
}
.numbers__item {
  border-left: 1px solid #201f1e;
  padding: 30px;
  width: 100%;
  max-width: 25%;
}
@media screen and (max-width: 768px) {
  .numbers__item {
    max-width: 100%;
    padding: 20px;
    margin: 10px 0;
  }
}
.numbers__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.numbers__item-head img {
  width: 30px;
  height: 30px;
}
.numbers__item-head span {
  color: #201f1e;
  font-size: 40px;
  font-family: "Manrope";
  font-weight: 300;
}
.numbers__item-info span {
  font-size: 14px;
  font-weight: 300;
  font-family: "Manrope";
  color: #201f1e;
}

.contact {
  padding-bottom: 80px;
}
.contact .section__title {
  text-transform: uppercase;
}
.contact__container {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact__container {
    flex-direction: column;
  }
}
.contact__left {
  width: 100%;
  max-width: 50%;
  padding: 75px 100px;
}
@media screen and (max-width: 768px) {
  .contact__left {
    max-width: 100%;
    padding: 20px;
  }
}
.contact__left .section__title {
  padding-bottom: 50px;
}
.contact__right {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .contact__right {
    max-width: 100%;
  }
}
.contact__right-form {
  padding: 30px;
  background: #201f1e;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.contact__right-form h4 {
  font-size: 40px;
  color: #c1a07f;
  font-family: "Manrope";
  font-weight: 300;
  margin-bottom: 60px;
}
.contact__right-form button {
  min-width: 300px;
  margin: 0 auto;
  border: none;
  outline: none;
  text-transform: uppercase;
  background: #c1a07f;
  color: #201f1e;
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
}
.btn {
  min-width: 300px;
  /* margin: 0 auto; */
  border: none;
  outline: none;
  text-transform: uppercase;
  background: #201f1e;
  color: #c1a07f;
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
}
.button {
  min-width: 300px;
  margin: 0 auto;
  border: none;
  outline: none;
  text-transform: uppercase;
  background: #c1a07f;
  color: #201f1e;
  font-size: 20px;
  padding: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact__right-form button {
    min-width: 150px;
    width: 100%;
  }
  .btn,
  .button {
    min-width: 150px;
    width: 100%;
  }
}

footer {
  background: #201f1e;
  padding: 60px 0 20px 0;
}

.footer__columns {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__columns {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__column {
    text-align: center;
  }
  .footer__column span {
    margin: 0 auto;
  }
}
.footer__column-title {
  margin-bottom: 20px;
}
.footer__column-title h5 {
  font-size: 32px;
  font-family: "Manrope";
  font-weight: 300;
  color: #c1a07f;
  padding-bottom: 10px;
}
.footer__column-title span {
  height: 1px;
  background: #c1a07f;
  display: flex;
  width: 100%;
  min-width: 80px;
  max-width: 80px;
}
.footer__column ul {
  list-style: none;
}
.footer__column ul li {
  margin: 5px 0;
}
.footer__column ul li a {
  color: #c1a07f;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer__info-item {
  margin: 10px 0;
}
.footer__info-item a {
  display: flex;
  align-items: center;
  color: #c1a07f;
  font-weight: 300;
  text-decoration: none;
}
.footer__info-item a img {
  margin-right: 10px;
}
.footer__info .phone__info {
  display: flex;
}
.footer__info .phone__info-img {
  margin-right: 5px;
}
.footer__info .phone__info-img img {
  margin: 0 5px;
}
.footer__info .phone__info a {
  margin-bottom: 5px;
}

.social {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .social {
    display: flex;
    justify-content: center;
  }
}

.footer__bottom {
  border-top: 1px solid rgba(193, 160, 127, 0.5019607843);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
}
.footer__bottom-left {
  width: 50%;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__bottom-left {
    width: 100%;
    justify-content: center;
  }
}
.footer__bottom-left a {
  color: #c1a07f;
  text-decoration: none;
  font-size: 14px;
}
.footer__bottom-right p {
  font-size: 14px;
  font-weight: 300;
  color: #c1a07f;
  font-family: "Manrope";
}

.projects .section__title {
  text-transform: uppercase;
  padding: 100px 0 100px 95px;
}
@media screen and (max-width: 768px) {
  .projects .section__title {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .projects .container {
    padding: 0;
  }
}

.left--spacing {
  padding-left: 95px;
}
@media screen and (max-width: 768px) {
  .left--spacing {
    padding-left: 0;
    text-align: center;
  }
}
.left--spacing a {
  text-decoration: none;
}

.projects__container .tabs {
  display: flex;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .projects__container .tabs {
    flex-direction: column;
    text-align: center;
  }
}
.projects__container .tab {
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px 5px 0 0;
  color: #201f1e;
  font-size: 16px;
  font-family: "Manrope";
  font-weight: 300;
}
.projects__container .tab.active {
  text-decoration: underline;
  z-index: 1;
}
.projects__container .tab-content {
  display: none;
  padding: 20px;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .projects__container .tab-content {
    padding: 0;
  }
}
.projects__container .tab-content.active {
  display: block;
}

.project__items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .project__items {
    flex-direction: column;
    gap: 0;
  }
}
.project__item {
  width: 100%;
  max-width: calc(33.3333333333% - 30px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .project__item {
    max-width: 100%;
  }
}
.project__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.project__item-info {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(27, 25, 23, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.project__item-info a {
  display: block;
  text-decoration: none;
  margin: 30px;
  padding: 0 15px;
  border-left: 1px solid #c1a07f;
}
.project__item-info a p {
  font-size: 40px;
  font-weight: 300;
  font-family: "Manrope";
  color: #c1a07f;
  padding: 0;
  margin: 0;
}
.project__item-info a span {
  color: #c1a07f;
  font-size: 14px;
  font-weight: 300;
  font-family: "Manrope";
}

.project-page .section__title {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .project-page .section__title {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

.project__detail-info {
  display: flex;
  gap: 30px;
  align-items: start;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .project__detail-info {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.project__detail-item {
  font-family: "Manrope";
  width: 100%;
  border-left: 1px solid #201f1e;
  padding: 30px;
}
.project__detail-item:first-child {
  padding: 0 0 0 55px;
  border: none;
}
@media screen and (max-width: 768px) {
  .project__detail-item:first-child {
    padding: 0;
  }
}
.project__detail-item p {
  font-size: 16px;
  font-weight: 500;
  color: #201f1e;
}
.project__detail-item span {
  font-size: 14px;
  color: #201f1e;
  font-weight: 300;
}
.project__detail-description {
  display: flex;
  gap: 30px;
}
.project__detail-text p {
  font-weight: bold;
}

.project__detail-gallery {
  margin-bottom: 60px;
}
.project__detail-gallery .gallery {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .project__detail-gallery .gallery {
    flex-direction: column;
  }
}
.project__detail-gallery .thumbnail {
  width: 100%;
  max-width: calc(33.3333333333% - 30px);
  height: auto;
  cursor: pointer;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 550px;
}
@media screen and (max-width: 768px) {
  .project__detail-gallery .thumbnail {
    max-width: 100%;
  }
}
.project__detail-gallery .carousel-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow: hidden;
}
.project__detail-gallery .hidden {
  display: none;
}
.project__detail-gallery .carousel-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.project__detail-gallery .carousel-container {
  position: relative;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  z-index: 10;
  text-align: center;
}
.project__detail-gallery .close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 0;
}
.project__detail-gallery .close-btn img {
  width: 100%;
  height: 100%;
}
.project__detail-gallery .carousel-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project__detail-gallery .slide {
  flex-grow: 1;
  position: relative;
  text-align: center;
}
.project__detail-gallery .slide img {
  max-width: 100%;
  border-radius: 5px;
  max-height: 550px;
}
.project__detail-gallery .slide p {
  margin: 10px 0;
  font-weight: bold;
}
.project__detail-gallery .arrow {
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
}
.project__detail-gallery .slide-counter {
  font-size: 24px;
  color: #c1a07f;
  font-family: "Manrope";
  font-weight: 300;
}
.project__detail-gallery .slide-nav {
  display: flex;
  justify-content: space-between;
  max-width: 60%;
  margin: 0 auto;
  align-items: center;
}
.project__detail-gallery .slide-header {
  display: flex;
  align-items: center;
  width: 60%;
  margin: -10px auto 10px;
  justify-content: space-between;
}
.project__detail-gallery .slide-header p {
  font-size: 24px;
  text-transform: uppercase;
  color: #c1a07f;
  font-weight: 300;
  font-family: "Manrope";
}

.uppercase {
  text-transform: uppercase;
}

.about-section {
  padding: 140px 0 0 0;
}
@media screen and (max-width: 768px) {
  .about-section {
    padding: 80px 0 0 0;
  }
}
.about .section__title {
  text-transform: uppercase;
}

.mission__items {
  display: flex;
  gap: 90px;
  padding: 0 95px;
  justify-content: space-between;
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .mission__items {
    flex-direction: column;
    margin-top: 30px;
    padding: 0;
    gap: 30px;
  }
}
.mission__item {
  width: 100%;
  max-width: calc(33.3333333333% - 90px);
  font-family: "Manrope";
}
@media screen and (max-width: 768px) {
  .mission__item {
    max-width: 100%;
  }
}
.mission__item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.mission__item-head p {
  font-size: 40px;
  color: #201f1e;
  font-weight: 300;
}
.mission__item-body {
  font-size: 14px;
  color: #201f1e;
  font-weight: 300px;
  line-height: 22px;
}

.partners {
  padding: 140px 0;
  background: #201f1e;
  /* Mobile Styles */
}
.partners .section__title {
  color: #c1a07f;
  font-weight: 300;
  font-family: "Manrope";
  margin-bottom: 50px;
}
.partners .logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.partners .logo-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.partners .logo-track-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 300px;
  max-width: 300px;
  height: 100px;
}
.partners .logo-track img {
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .partners .logo-track {
    flex-direction: column;
    animation: none;
  }
  .partners .logo-track img {
    margin-bottom: 10px;
  }
}

.team {
  padding: 140px 0;
}
.team__members {
  display: flex;
  margin-top: 60px;
  gap: 30px;
  overflow-y: scroll;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 60px;
}
.team__members-item {
  position: relative;
  width: 100%;
  max-width: 300px;
  min-width: 300px;
}
.team__members-item::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(27, 25, 23, 0.6);
}
.team__members-info {
  z-index: 2;
  display: flex;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 30px;
  left: 30px;
  flex-direction: column;
  justify-content: end;
  border-left: 1px solid #c1a07f;
  font-family: "Manrope";
  padding-left: 15px;
}
.team__members-info p {
  color: #c1a07f;
  font-size: 30px;
  font-weight: 300;
}
.team__members-info span {
  color: #c1a07f;
  font-size: 14px;
}

.services-content .services__container .tabs {
  display: flex;
  cursor: pointer;
}
.services-content .services__container .tab {
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 5px 5px 0 0;
  color: #201f1e;
  font-size: 16px;
  font-family: "Manrope";
  font-weight: 300;
}
.services-content .services__container .tab.active {
  text-decoration: underline;
  z-index: 1;
}
.services-content .services__container .tab-content {
  display: none;
  padding: 20px;
  border-top: none;
}
.services-content .services__container .tab-content.active {
  display: block;
}

.services__container {
  margin-top: 60px;
}
.services__container .tab-content {
  padding: 0 !important;
}
.services__container .tabs {
  justify-content: center;
  margin-bottom: 40px;
}
.services__container .tab {
  padding: 15px !important;
  border: 1px solid #201f1e;
  margin-right: 0 !important;
  border-radius: 0 !important;
  width: 315px;
  text-align: center;
  text-transform: uppercase;
}
.services__container .tab.active {
  color: #c1a07f;
  background: #201f1e;
  text-decoration: none !important;
}
.services__container .tab-content:first-child .services__items-item {
  max-width: 25%;
}
.services__container .services__items-item {
  flex-grow: 1;
  max-width: initial;
  display: flex;
  width: auto;
}
.services__container .services__items-item img {
  width: 100%;
}

.header__hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}

.header__hamburger span {
  display: block;
  height: 2px;
  width: 25px;
  background: #d4a373;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  color: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 999;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__header {
  background: #1d1d1d;
  color: #d4a373;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.mobile-nav__header a {
  display: flex;
}
.mobile-nav__header #close-menu {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.mobile-nav__header button {
  background: none;
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav li {
  text-align: left;
}

.mobile-nav a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

.mobile-nav__footer {
  text-align: center;
  padding: 40px 80px;
  background: #201f1e;
}
.mobile-nav__footer p {
  color: #c1a07f;
  font-size: 14px;
}

.mobile__nav-social p {
  font-size: 36px;
  font-family: "Manrope";
  font-weight: 300;
  color: #201f1e;
  text-align: center;
  margin: 20px 0;
}
.mobile__nav-social .social-links {
  gap: 20px;
  display: flex;
  margin-bottom: 30px;
}

.mobile-nav__footer .social-links a img {
  height: 20px;
  margin: 0 10px;
}

.dropdown-content {
  display: none;
  list-style: none;
  padding: 10px;
  background: #f1f1f1;
  position: absolute;
  z-index: 10;
}

.mobile-nav__dropdown:hover .dropdown-content {
  display: block;
}

.nav-item-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nav-item-mobile span {
  font-size: 36px;
  font-family: "Manrope";
  font-weight: 300;
  color: #201f1e;
}
.nav-item-mobile ul li {
  text-align: center;
}
.nav-item-mobile ul li a {
  font-size: 16px;
  font-weight: 300;
} /*# sourceMappingURL=main.css.map */

.steps {
  padding: 140px 0;
}
.hww-items {
  display: flex;
}
.hww-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px;
}
.hww-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 90%;
  width: 100%;
  height: 100%;
  background-image: url(../img/arr-bord.svg);
  background-repeat: no-repeat;
  background-position: left;
}
.hww-item:last-child::after {
  background-image: none;
}
.hww-item:last-child {
  border-right: 1px solid #201f1e;
  height: 90px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .hww-items {
    flex-direction: column;
  }
  .hww-item::after {
    bottom: -100%;
    top: 175%;
    transform: rotate(90deg);
    left: 0;
  }
  .hww-item:last-child {
    border: none;
  }
}
.hww-number {
  font-size: 40px;
  color: #c1a07f;
  margin-right: 15px;
  line-height: 44px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}
.hww-description {
  font-family: "Manrope";
  font-weight: 300;
  color: #201f1e;
  font-size: 14px;
}
.career {
  padding: 80px 0;
}
.career-head {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
}
.career-items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .career {
    padding: 40px 0 0;
  }
  .career-items {
    flex-direction: column;
    padding: 20px 0;
  }
  .career-item {
    max-width: 100% !important;
  }
}
.career-item {
  width: 100%;
  max-width: calc(100% / 3 - 30px);
}
.career-item h5 {
  font-size: 16px;
  font-family: "Manrope";
  font-weight: 500;
}
.career-item span {
  font-size: 14px;
  font-family: "Manrope";
  font-weight: 300;
}
.career-item div {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
}
.career-item div p {
  color: #201f1e;
}
.career-item div ul {
  padding-left: 15px;
  color: #201f1e;
}
.career-item div ul li {
  padding: 2px 0;
}
.page-template-contacts {
  background: #201f1e;
}
.contacts .section__title {
  color: #c1a07f;
  padding-left: 70px;
}
.contacts_head {
  padding-left: 70px;
  padding: 50px 0;
  font-family: "Manrope";
  display: flex;
  align-items: center;
  gap: 100px;
}
.contacts_head-item h5 {
  color: #c1a07f;
  font-size: 14px;
}
.contacts_head-item p {
  color: #c1a07f;
  font-size: 14px;
}
.contacts_body p {
  color: #c1a07f;
  font-size: 16px;
  padding-bottom: 30px;
}
.contact-map {
  padding: 40px 0;
}
.contact-map-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.dot {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 3px solid rgba(193, 160, 127, 0.3);
  background: rgba(193, 160, 127, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot-center {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(193, 160, 127, 1);
}
.address-block p {
  color: #c1a07f;
  font-size: 14px;
  font-family: "Manrope";
}
.address-block p:first-child {
  font-weight: 700;
}
.md-contact-address {
  position: absolute;
  display: flex;
  right: 50px;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  top: 10px;
}
.contact-map-bottom {
  position: relative;
}
.es-contact-address {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: absolute;
  bottom: 0px;
  left: 140px;
}
.contact-map .section__title {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-map .section__title {
    display: block;
    padding-left: 0;
    font-size: 52px;
    text-align: center;
    margin-bottom: 40px;
  }
  .contacts_head {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
  }
  .contacts .section__title {
    padding-left: 0;
  }
  .map-image {
    display: none;
  }
  .contact-map-top {
    margin-bottom: 40px;
  }
  .es-contact-address,
  .md-contact-address {
    position: relative;
  }
  .md-contact-address {
    flex-direction: row;
    left: 0;
    right: auto;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  .es-contact-address {
    left: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: #201f1e;
  padding: 20px;
  /* border-radius: 5px; */
  margin: 50px auto;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, auto);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h2 {
  color: #c1a07f;
  font-size: 28px;
  font-weight: 300;
  font-family: "Manrope";
}
.close {
  color: #c1a07f;
  font-size: 28px;
  font-weight: 300;
  font-family: "Manrope";

  cursor: pointer;
}

.form-group {
  margin-bottom: 5px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 300;
  color: white;
  font-size: 16px;
  font-family: "Manrope";
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #c1a07f;
  box-sizing: border-box;
  background: #201f1e;
  color: white;
  font-size: 16px;
  font-family: "Manrope";
  font-weight: 300;
}

#contactModal {
  display: none;
}

#contactModal.is-visible {
  display: block;
}
.modalbtn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Basic form group styling */
.wpcf7-form .form-group {
  margin-bottom: 5px;
}
.wpcf7-form br {
  display: none;
}
/* Label styles */
.wpcf7-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 300;
  color: white;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

/* Input, Textarea styling */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #c1a07f;
  box-sizing: border-box;
  background: #201f1e;
  color: white;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

/* Submit button styles */
.wpcf7-form .wpcf7-submit.modalbtn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #0073e6; /* Change to your preferred color */
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}
.wpcf7-spinner {
  float: right;
  top: -50px;
}
.wpcf7-submit {
  margin: 0 auto;
  display: flex;
}
/* Modal visibility */
#contactModal {
  display: none;
}

#contactModal.is-visible {
  display: block;
}

/* Optional: Add a hover effect for the button */
.wpcf7-form .wpcf7-submit.modalbtn:hover {
  background-color: #005bb5; /* Darker shade on hover */
}
