@keyframes navBtn {
  0% {
    border: 1px solid transparent;
  }
  100% {
    border: 1px solid #C49C94;
  }
}
@keyframes headerLinesHeight {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes headerLinesWidth {
  0% {
    width: 0%;
  }
  100% {
    width: calc(50% - 70px);
  }
}
@keyframes headerHeading {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes headerImg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
/*-----------------------------
PARTIALS
-----------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  list-style-type: none;
  text-decoration: none;
  border: none;
  outline: none;
  transition: 0.4s linear;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 100%;
  overflow-x: hidden;
  line-height: 1.4;
  background-color: #000;
  position: relative;
}
@media (width < 576px) {
  body {
    font-size: 85%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bentham", serif;
}

.container {
  width: 70%;
  margin: auto;
}
@media (width < 576px) {
  .container {
    width: 80%;
  }
}

img {
  max-width: 100%;
  object-fit: cover;
  vertical-align: middle;
}

section {
  padding: 70px 0;
}

.moto {
  text-align: center;
  color: #fff;
  max-width: 1400px;
  margin: auto;
}
.moto__heading span {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 11px;
  color: white;
}
@media (width < 1200px) {
  .moto__heading span {
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 5.5px;
  }
}
.moto__heading .customspan {
  font-weight: 400;
  font-size: 80px;
  line-height: 72px;
  font-family: "Pinyon Script", cursive;
  color: #C49C94;
  text-transform: lowercase;
  padding: 0 2rem;
}
@media (width < 1200px) {
  .moto__heading .customspan {
    font-size: 46px;
    line-height: 37px;
  }
}
@media (width < 768px) {
  .moto__heading .customspan {
    padding: 0;
  }
}

.fixed__btn {
  background-color: #fff;
  color: #C49C94;
  padding: 1rem;
  position: fixed;
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  width: auto;
  height: auto;
  z-index: 1000;
}
.fixed__btn:hover {
  background-color: white;
}
@media (width < 768px) {
  .fixed__btn {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.header {
  height: 100vh;
  position: relative;
  padding: 0 4rem;
  overflow: hidden;
}
.header::after {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: url("../../assets/img/header.png") center/cover;
  z-index: -1;
  animation: headerImg 3s forwards;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0;
  height: 15vh;
}
.header .nav .hamburger {
  width: 36px;
  height: 24px;
  cursor: pointer;
  display: none;
}
@media (width < 1200px) {
  .header .nav .hamburger {
    display: block;
  }
}
.header .nav .hamburger__line {
  width: 100%;
  height: 4px;
  background-color: #fff;
}
.header .nav .hamburger__line--2 {
  width: 24px;
}
.header .nav .hamburger__line:not(:last-child) {
  margin-bottom: 0.5rem;
}
.header .nav__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row;
  gap: 2rem;
  transition: 0s;
}
@media (width < 1250px) {
  .header .nav__list {
    gap: 1.65rem;
  }
}
@media (width < 1200px) {
  .header .nav__list {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #C49C94;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    transform: translateX(-100%);
    z-index: 400;
    overflow: auto;
  }
}
.header .nav__list.openMobile {
  transform: translateX(0);
}
@media (width < 1200px) {
  .header .nav__list.hidden {
    display: none;
  }
}
.header .nav__list__item--dropdown {
  position: relative;
}
.header .nav__list__item--dropdown i {
  color: #fff !important;
}
.header .nav__list__item--dropdown i.rotate {
  transform: rotate(180deg);
}
.header .nav__list__item--dropdown .nav__dropdown {
  margin-top: 0.5rem;
  display: none;
  position: absolute;
  top: 100%;
  left: -50px;
  background-color: #C49C94;
  width: 200px;
  padding: 1rem;
}
@media (width < 1200px) {
  .header .nav__list__item--dropdown .nav__dropdown {
    position: static;
  }
}
.header .nav__list__item--dropdown .nav__dropdown a {
  cursor: pointer;
  color: #fff;
  display: block;
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid #fff;
  z-index: 100;
  position: relative;
}
@media (width < 1200px) {
  .header .nav__list__item--dropdown .nav__dropdown a {
    border-bottom: none;
    text-align: left;
    padding-bottom: 0;
  }
}
.header .nav__list__item--dropdown .nav__dropdown a:not(:first-child) {
  padding-top: 1rem;
}
.header .nav__list__item--dropdown .nav__dropdown.open {
  display: block;
}
.header .nav__list__item--transform:hover > * {
  transform: scale(1.1);
}
.header .nav__list__item .nav__link {
  font-size: 15px;
  color: #fff;
  display: inline-block;
}
@media (width < 1200px) {
  .header .nav__list__item .nav__link {
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-bottom: 1rem;
  }
}
.header .nav__list__item .nav__link--line::after {
  display: block;
  height: 1px;
  background-color: #fff;
  content: "";
  width: 0%;
}
.header .nav__list__item .nav__link--line:hover::after {
  width: 100%;
  transition: 0.4s linear;
}
@media (width < 1200px) {
  .header .nav__list__item .nav__link--line:hover::after {
    width: 0;
  }
}
.header .nav__list__item .nav__link i {
  color: #C49C94;
  margin-right: 5px;
}
.header .nav__list .nav__mobile__info {
  display: none;
}
@media (width < 1200px) {
  .header .nav__list .nav__mobile__info {
    display: block;
  }
}
.header .nav__list .nav__mobile__info p {
  color: #fff;
  margin: 1rem 0;
  text-align: center;
  font-size: 14px;
}
.header .nav__list .nav__mobile__info .tel {
  color: #fff;
}
.header .nav__list .nav__mobile__info .tel i {
  margin-right: 5px;
  color: #000;
}
.header .nav__list .nav__mobile__info .mobile__nav-btn {
  width: 100%;
  margin: 1rem 0;
  background-color: #000;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  padding: 1rem 0;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .header .nav__list .nav__mobile__info .mobile__nav-btn {
    font-size: 1rem;
  }
}
.header .nav__list .nav__btn {
  background-color: #C49C94;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #C49C94;
  padding: 0.5rem 2.5rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .header .nav__list .nav__btn {
    font-size: 1rem;
  }
}
.header .nav__list .nav__btn:hover {
  background: transparent;
  animation-name: navBtn 1s;
}
@media (max-width: 1400px) {
  .header .nav__list .nav__btn {
    padding: 0.5rem 1.5rem;
  }
}
.header .nav__list #nav__close {
  display: none;
}
@media (width < 1200px) {
  .header .nav__list #nav__close {
    display: block;
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 1rem;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
  }
}
.header .nav__logo {
  width: 70px;
  height: 70px;
}
@media (width < 1200px) {
  .header .nav__logo {
    width: 50px;
    height: 50px;
  }
}
.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0;
  text-align: center;
  height: 80vh;
  position: relative;
}
.header__content .header__heading {
  color: #fff;
  font-size: 7rem;
  line-height: 80px;
  animation: headerHeading 2s forwards;
  font-family: "Urbanist", sans-serif;
}
@media (width < 576px) {
  .header__content .header__heading {
    font-size: 5rem;
  }
}
.header__content .header__heading span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px white;
}
.header__content .header__arrow {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -25px;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%);
}
@media (width < 1200px) {
  .header__content .header__arrow {
    bottom: 0;
  }
}
.header__content .header__line {
  position: absolute;
  height: 2px;
  display: block;
  content: "";
  background-color: #C49C94;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@media (width < 1200px) {
  .header__content .header__line {
    display: none;
  }
}
.header__content .header__line#line1 {
  bottom: 0;
  left: 0;
}
.header__content .header__line#line2 {
  bottom: 0;
  right: 0;
}
.header__content .header__line#line3 {
  bottom: 0;
  left: 0;
  width: 2px;
}
.header__content .header__line#line4 {
  bottom: 0;
  right: 0;
  width: 2px;
}

.features {
  display: flex;
  justify-content: space-between;
}
@media (width < 992px) {
  .features__item {
    width: 80px;
    height: 80px;
  }
}
@media (width < 768px) {
  .features__item {
    width: 40px;
    height: 40px;
  }
}

.services {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: wrap;
  gap: 0;
  padding-top: 0;
  color: #fff;
}
.services__item {
  flex: 0 0 50%;
}
@media (width < 1300px) {
  .services__item {
    flex: 0 0 100%;
  }
}
.services__item--text {
  padding: 2rem 3rem;
}
@media (width < 576px) {
  .services__item--text {
    padding: 2rem;
  }
}
@media (width < 1300px) {
  .services__item--text.order2 {
    order: 2;
  }
}
@media (width < 1300px) {
  .services__item--text.order4 {
    order: 4;
  }
}
@media (width < 1300px) {
  .services__item--text.order6 {
    order: 6;
  }
}
.services__item--text .services__heading {
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1.6px;
  font-weight: 400;
  text-align: center;
}
@media (width < 768px) {
  .services__item--text .services__heading {
    text-align: center;
  }
}
.services__item--text .services__header {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: row;
  gap: 1rem;
}
@media (width < 576px) {
  .services__item--text .services__header {
    flex-direction: column;
    align-items: center;
  }
}
.services__item--text .services__header button {
  text-transform: uppercase;
  background-color: transparent;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid none;
  padding: 10px 1.5rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .services__item--text .services__header button {
    font-size: 14px;
  }
}
@media (width < 768px) {
  .services__item--text .services__header button {
    padding: 10px 1rem;
  }
}
.services__item--text .services__header button.active {
  background-color: #C49C94;
}
.services__item--text .services__header#hide-header {
  opacity: 0;
}
@media (width < 1300px) {
  .services__item--text .services__header#hide-header {
    display: none;
  }
}
.services__item--text .services__header#hide-header button {
  cursor: auto;
}
.services__item--text .services__pricing {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 0;
  margin: 2rem 0;
  display: none;
}
.services__item--text .services__pricing.active {
  display: block;
}
.services__item--text .services__pricing .services__box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 0;
}
.services__item--text .services__pricing .services__box .services__name {
  font-size: 14px;
}
.services__item--text .services__pricing .services__box .services__name:not(:last-child) {
  margin-bottom: 10px;
}
@media (width < 576px) {
  .services__item--text .services__pricing .services__box .services__name {
    font-size: 10px;
    flex-basis: 60%;
  }
}
.services__item--text .services__pricing .services__box .services__name.gap {
  padding-bottom: 1rem;
}
.services__item--text .services__pricing .services__box .services__price {
  flex-basis: 110px;
  border-left: 1px solid white;
  padding-left: 1rem;
  font-size: 14px;
}
.services__item--text .services__pricing .services__box .services__price:not(:last-child) {
  margin-bottom: 10px;
}
@media (width < 576px) {
  .services__item--text .services__pricing .services__box .services__price {
    font-size: 10px;
    padding-left: 10px;
    flex-basis: 74px;
  }
}
.services__item--text .services__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  gap: 1rem;
}
@media (width < 768px) {
  .services__item--text .services__footer {
    gap: 0.5rem;
  }
}
.services__item--text .services__footer-link1 {
  background-color: transparent;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #fff;
  padding: 10px 1.5rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .services__item--text .services__footer-link1 {
    font-size: 14px;
  }
}
@media (width < 576px) {
  .services__item--text .services__footer-link1 {
    padding: 10px 1rem;
  }
}
.services__item--text .services__footer-link2 {
  background-color: #C49C94;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid none;
  padding: 10px 1.5rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .services__item--text .services__footer-link2 {
    font-size: 14px;
  }
}
@media (width < 576px) {
  .services__item--text .services__footer-link2 {
    padding: 10px 1rem;
  }
}
.services__item--text .services__footer-link3 {
  color: #fff;
}
@media (width < 1300px) {
  .services__item--img {
    height: 750px;
  }
}
@media (width < 768px) {
  .services__item--img {
    height: 350px;
  }
}
@media (width < 1300px) {
  .services__item--img.order1 {
    order: 1;
  }
}
@media (width < 1300px) {
  .services__item--img.order3 {
    order: 3;
  }
}
@media (width < 1300px) {
  .services__item--img.order5 {
    order: 5;
  }
}
.services__item--img img {
  height: 100%;
  width: 100%;
}
.services__banner {
  background-color: #C49C94;
  width: 100%;
}
.services__banner .banner__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 11px;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  text-transform: uppercase;
}
@media (width < 992px) {
  .services__banner .banner__heading {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 10px;
  }
}
.services__banner .banner__heading--hide {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 10px;
}
@media (width < 992px) {
  .services__banner .banner__heading--hide {
    display: block;
  }
}
.services__gallery {
  display: flex;
  flex-wrap: wrap;
}
@media (width < 1300px) {
  .services__gallery.order100 {
    order: 100;
  }
}
.services__gallery .services__img {
  flex: 0 0 50%;
}
@media (width < 1300px) {
  .services__gallery .services__img {
    flex: 0 0 100%;
  }
}
@media (width < 1300px) {
  .services__gallery .services__img.order1 {
    order: 1;
  }
}
@media (width < 1300px) {
  .services__gallery .services__img.order3 {
    order: 3;
  }
}
.services__gallery .services__img img {
  opacity: 0.7;
  height: 100%;
  width: 100%;
}
@media (width < 1300px) {
  .services__gallery .services__img img {
    width: 100%;
  }
}
@media (width < 768px) {
  .services__gallery .services__img img {
    height: 350px;
  }
}
@media (width < 1300px) {
  .services__gallery .services__item.order2 {
    order: 2;
  }
}
@media (width < 1300px) {
  .services__gallery .services__item.order4 {
    order: 4;
  }
}

.location {
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 0;
}
@media (width < 1200px) {
  .location {
    flex-direction: column;
  }
}
.location .location__item--text {
  flex: 1;
  background-image: url("../../assets/img/locationLogo.png");
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 0;
  padding: 0 3rem;
  color: #fff;
  z-index: 0;
}
.location .location__item--text::after {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(to right, #c49c94 0%, #c49c94 100%);
  opacity: 0.98;
  z-index: -1;
}
@media (width < 1200px) {
  .location .location__item--text {
    width: 80%;
    margin: auto;
    padding: 2rem;
    margin-top: -110px;
    z-index: 4;
  }
}
.location .location__item--text .location__heading {
  font-weight: 400;
  font-size: 70px;
  line-height: 84px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media (width < 768px) {
  .location .location__item--text .location__heading {
    font-size: 32px;
    line-height: 38px;
  }
}
.location .location__item--text .location__list__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 22px;
}
@media (width < 768px) {
  .location .location__item--text .location__list__item {
    font-size: 15px;
  }
}
.location .location__item--text .location__list__item i {
  color: #000;
}
.location .location__item--text .location__list__item .location__link {
  color: #fff;
}
.location .location__item--text .location__social {
  margin-top: 1rem;
}
.location .location__item--text .location__social a {
  color: #000;
  font-size: 2rem;
}
@media (width < 768px) {
  .location .location__item--text .location__social a {
    font-size: 1rem;
  }
}
.location .location__item--text .location__social a:not(:last-child) {
  border-right: 1px solid #000;
  padding-right: 1rem;
}
.location .location__item--text .location__social a:not(:first-child) {
  padding-left: 1rem;
}
.location .location__item--img {
  flex: 2;
}
@media (width < 1200px) {
  .location .location__item--img {
    order: -1;
    height: 235px;
  }
}
.location .location__item--img .location__img {
  height: 100%;
  opacity: 0.7;
}
@media (width < 1200px) {
  .location .location__item--img .location__img {
    width: 100%;
  }
}

.story {
  text-align: center;
  color: #fff;
}
.story.container {
  width: 80%;
}
@media (width < 576px) {
  .story.container {
    width: 90%;
  }
}
.story__wrapper {
  border: 15px solid #C49C94;
  padding: 4rem 2rem;
  position: relative;
}
@media (width < 768px) {
  .story__wrapper {
    border: 13px solid #C49C94;
  }
}
.story__wrapper .story__border {
  position: absolute;
  display: block;
  content: "";
  background-color: #C49C94;
}
.story__wrapper .top {
  top: 10px;
  right: 10px;
  left: 10px;
  height: 15px;
}
@media (width < 768px) {
  .story__wrapper .top {
    height: 13px;
  }
}
.story__wrapper .left {
  top: 10px;
  left: 10px;
  bottom: 10px;
  width: 15px;
}
@media (width < 768px) {
  .story__wrapper .left {
    width: 13px;
  }
}
.story__wrapper .bottom {
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 15px;
}
@media (width < 768px) {
  .story__wrapper .bottom {
    height: 13px;
  }
}
.story__wrapper .right {
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 15px;
}
@media (width < 768px) {
  .story__wrapper .right {
    width: 13px;
  }
}
.story__wrapper .story__heading {
  font-weight: 400;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 60px;
}
@media (width < 768px) {
  .story__wrapper .story__heading {
    font-size: 32px;
    line-height: 38px;
  }
}
.story__wrapper img {
  width: 348px;
  height: 20px;
  margin-bottom: 3rem;
}
@media (width < 768px) {
  .story__wrapper img {
    width: 200px;
    height: 11px;
  }
}
.story__wrapper .story__text {
  line-height: 24px;
  font-size: 17px;
  max-width: 800px;
  margin: auto;
}
@media (width < 768px) {
  .story__wrapper .story__text {
    line-height: 21px;
    font-size: 14px;
  }
}
.story__wrapper .story__text:not(:last-child) {
  margin-bottom: 1rem;
}

.cv__wrapper {
  padding: 3rem;
  background-color: #C49C94;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 1rem;
}
@media (width < 1300px) {
  .cv__wrapper {
    justify-content: center;
    text-align: center;
  }
}
@media (width < 576px) {
  .cv__wrapper {
    padding: 2rem;
  }
}
.cv__wrapper .cv__content {
  flex: 0 0 70%;
}
@media (width < 1300px) {
  .cv__wrapper .cv__content {
    flex: 0 0 100%;
  }
}
.cv__wrapper .cv__content .cv__heading {
  font-size: 40px;
  line-height: 64px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  text-shadow: 2px 2px 20px #000;
}
@media (width < 1405px) {
  .cv__wrapper .cv__content .cv__heading {
    line-height: 39px;
    font-size: 30px;
  }
}
@media (width < 1200px) {
  .cv__wrapper .cv__content .cv__heading {
    line-height: 39px;
    font-size: 28px;
  }
}
.cv__wrapper .cv__content .cv__text {
  font-weight: 500;
  line-height: 25px;
  color: #fff;
}
@media (width < 1200px) {
  .cv__wrapper .cv__content .cv__text {
    text-align: center;
  }
}
.cv__wrapper .cv__btn {
  line-height: 27px;
  text-transform: uppercase;
  background-color: #000;
  font-size: 22px;
  font-weight: 600;
  border: 1px solid #000;
  padding: 10px 2rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .cv__wrapper .cv__btn {
    font-size: 1rem;
  }
}
@media (width < 1200px) {
  .cv__wrapper .cv__btn {
    margin-top: 1rem;
    font-size: 17px;
  }
}

.partners {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row;
  gap: 2rem;
}
@media (width < 1200px) {
  .partners {
    flex-direction: column;
  }
}
.partners__item {
  flex: 0 0 47%;
}
.partners__item--img img {
  border-radius: 5px;
}
.partners__item:nth-child(2) {
  padding: 2rem;
  text-align: center;
  padding: 0 4rem;
}
.partners__item:nth-child(2) .partners__heading {
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: #fff;
  text-transform: uppercase;
}
@media (width < 768px) {
  .partners__item:nth-child(2) .partners__heading {
    font-size: 34px;
    line-height: 40px;
  }
}
.partners__item:nth-child(2) .partners__text {
  font-size: 22px;
  line-height: 35px;
  color: #fff;
  max-width: 505px;
  margin: 2rem auto;
}
@media (width < 768px) {
  .partners__item:nth-child(2) .partners__text {
    font-size: 15px;
    line-height: 23px;
  }
}
.partners__item:nth-child(2) .partners__gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 0;
  row-gap: 2rem;
}
.partners__item:nth-child(2) .partners__gallery__img {
  flex-basis: 45%;
}
.partners__item:nth-child(2) .partners__gallery__img--zem {
  flex-basis: 100%;
}
.partners__item:nth-child(2) .partners__gallery__img--zem .zem {
  width: 180px;
}
@media (width < 576px) {
  .partners__item:nth-child(2) .partners__gallery__img--zem .zem {
    width: 100px;
  }
}

.cta .container {
  width: 75%;
}
.cta__wrapper {
  background-color: #C49C94;
  padding: 4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0;
}
@media (width < 1350px) {
  .cta__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.cta__wrapper p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 40px;
  letter-spacing: 2%;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 20px #000;
}
@media (width < 1023px) {
  .cta__wrapper p {
    font-size: 1.65rem;
  }
}
@media (width < 768px) {
  .cta__wrapper p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 1rem;
  }
}
.cta__wrapper .cta__btn {
  width: 160px;
  display: block;
  background-color: #000;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #000;
  padding: 10px 0;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .cta__wrapper .cta__btn {
    font-size: 1rem;
  }
}

.footer {
  background-color: #C49C94;
}
.footer__wrapper {
  padding: 70px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: wrap;
  gap: 0;
  color: #fff;
}
@media (width < 1200px) {
  .footer__wrapper {
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }
}
.footer__wrapper .footer__item {
  flex: 1;
}
.footer__wrapper .footer__item--big {
  flex: 2;
}
@media (width < 1200px) {
  .footer__wrapper .footer__item.hide {
    display: none;
  }
}
@media (width < 1200px) {
  .footer__wrapper .footer__item {
    flex: 0 0 100%;
  }
}
.footer__wrapper .footer__item .footer__logo {
  display: block;
}
.footer__wrapper .footer__item .footer__logo img {
  width: 90px;
  height: 140px;
}
.footer__wrapper .footer__item .footer__logo + p {
  font-weight: 500;
  line-height: 20px;
}
@media (width < 1200px) {
  .footer__wrapper .footer__item .footer__logo + p {
    display: none;
  }
}
.footer__wrapper .footer__item .footer__btn {
  display: block;
  width: 140px;
  margin: 1rem 0;
  background-color: #000;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  padding: 10px 0;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .footer__wrapper .footer__item .footer__btn {
    font-size: 1rem;
  }
}
@media (width < 1200px) {
  .footer__wrapper .footer__item .footer__btn {
    display: none;
    margin: 1rem auto;
  }
}
@media (width < 1200px) {
  .footer__wrapper .footer__item .footer__social {
    display: none;
  }
}
.footer__wrapper .footer__item .footer__social a {
  color: #000;
  font-size: 1rem;
}
.footer__wrapper .footer__item .footer__social a:not(:last-child) {
  border-right: 2px solid #000;
  padding-right: 1rem;
}
.footer__wrapper .footer__item .footer__social a:not(:first-child) {
  padding-left: 1rem;
}
.footer__wrapper .footer__item .footer__heading {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
}
@media (width < 1200px) {
  .footer__wrapper .footer__item .footer__heading {
    margin-bottom: 1rem;
  }
}
.footer__wrapper .footer__item .footer__list__item:not(:last-child) {
  margin-bottom: 1rem;
}
.footer__wrapper .footer__item .footer__list__item .footer__link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}
.footer__wrapper .footer__item .footer__list__item .footer__link:hover {
  transform: translateX(20px);
}
.footer__wrapper .footer__item .footer__time {
  font-weight: 500;
  font-size: 15px;
}
.footer__wrapper .footer__item--mobile {
  display: none;
}
@media (width < 1200px) {
  .footer__wrapper .footer__item--mobile {
    display: block;
  }
}
.footer__wrapper .footer__item--mobile .moto {
  font-weight: 600;
  line-height: 20px;
}
.footer__wrapper .footer__item--mobile .tel {
  margin: 1rem 0;
}
.footer__wrapper .footer__item--mobile .tel i {
  color: #000;
  margin-right: 5px;
}
.footer__wrapper .footer__item--mobile .tel a {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.footer__wrapper .footer__item--mobile .footer__btn {
  line-height: 12px;
  width: 140px;
  display: block;
  background-color: #000;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  padding: 1rem 0;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .footer__wrapper .footer__item--mobile .footer__btn {
    font-size: 1rem;
  }
}
.footer__wrapper .footer__item--mobile .footer__social__mobile {
  margin-top: 2rem;
}
.footer__wrapper .footer__item--mobile .footer__social__mobile a {
  color: #000;
  font-size: 1rem;
}
.footer__wrapper .footer__item--mobile .footer__social__mobile a:not(:last-child) {
  border-right: 2px solid #000;
  padding-right: 1rem;
}
.footer__wrapper .footer__item--mobile .footer__social__mobile a:not(:first-child) {
  padding-left: 1rem;
}
.footer__wrapper .line {
  display: none;
  content: "";
  background-color: #000;
  height: 1px;
  width: 115px;
  margin: 1.5rem auto;
}
@media (width < 1200px) {
  .footer__wrapper .line {
    display: block;
  }
}

.copy {
  text-align: center;
  background-color: #000;
  color: #fff;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: column;
  gap: 0;
}
.copy p {
  font-size: 12px;
  font-weight: 500;
}
.copy p a {
  color: #fff;
  text-decoration: underline;
}
.copy div {
  font-size: 10px;
  font-weight: 400;
}
.copy div a {
  color: #fff;
  text-decoration: underline;
}
.copy div a:hover {
  color: #C49C94;
}

.appointment__overlay {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0;
  display: none;
}
.appointment__overlay .appointment__form {
  border-radius: 10px;
  padding: 3rem 4rem;
  color: #fff;
  background: linear-gradient(to right, #c19a93 0%, #c19a93 100%), url("../../assets/img/appointment.jpg");
  background-size: cover;
  width: 800px;
  position: relative;
}
@media (width < 992px) {
  .appointment__overlay .appointment__form {
    padding: 2rem;
    width: 80%;
  }
}
.appointment__overlay .appointment__form .appointment__heading {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.appointment__overlay .appointment__form .appointment__heading::after {
  display: block;
  content: "";
  height: 1px;
  background-color: #fff;
  margin: 1rem 0;
}
@media (width < 576px) {
  .appointment__overlay .appointment__form .appointment__heading {
    font-size: 17px;
  }
}
.appointment__overlay .appointment__form .form__control:not(:last-child) {
  margin-bottom: 1rem;
}
.appointment__overlay .appointment__form .form__control label {
  font-size: 20px;
}
@media (width < 576px) {
  .appointment__overlay .appointment__form .form__control label {
    font-size: 17px;
  }
}
.appointment__overlay .appointment__form .appointment__footer {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-flow: row nowrap;
  gap: 0;
}
@media (width < 576px) {
  .appointment__overlay .appointment__form .appointment__footer {
    justify-content: center;
  }
}
.appointment__overlay .appointment__form .appointment__footer button {
  line-height: 12px;
  background-color: #000;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #000;
  padding: 15px 3rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .appointment__overlay .appointment__form .appointment__footer button {
    font-size: 1rem;
  }
}
.appointment__overlay .appointment__form .appointment__error {
  text-transform: uppercase;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (width < 576px) {
  .appointment__overlay .appointment__form .appointment__error {
    font-size: 17px;
  }
}
.appointment__overlay .appointment__form .appointment__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
@media (width < 576px) {
  .appointment__overlay .appointment__form .appointment__close {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.contact__overlay {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  gap: 0;
  display: none;
}
.contact__overlay .contact__form {
  border-radius: 10px;
  padding: 3rem 4rem;
  color: #fff;
  background: linear-gradient(to right, #c19a93 0%, #c19a93 100%), url("../../assets/img/appointment.jpg");
  background-size: cover;
  width: 800px;
  position: relative;
}
@media (width < 992px) {
  .contact__overlay .contact__form {
    padding: 2rem;
    width: 80%;
  }
}
.contact__overlay .contact__form .contact__heading {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.contact__overlay .contact__form .contact__heading::after {
  display: block;
  content: "";
  height: 1px;
  background-color: #fff;
  margin: 1rem 0;
}
@media (width < 576px) {
  .contact__overlay .contact__form .contact__heading {
    font-size: 17px;
  }
}
.contact__overlay .contact__form .contact__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: wrap;
  gap: 0;
  row-gap: 1rem;
}
.contact__overlay .contact__form .contact__wrapper .form__control {
  flex: 0 0 47%;
}
@media (width < 576px) {
  .contact__overlay .contact__form .contact__wrapper .form__control {
    flex: 0 0 100%;
  }
}
.contact__overlay .contact__form .contact__wrapper .form__control label {
  display: block;
  font-size: 14px;
}
.contact__overlay .contact__form .contact__wrapper .form__control input {
  border-radius: 5px;
  padding: 10px;
  margin-top: 10px;
  width: 100%;
  color: #000;
}
.contact__overlay .contact__form .contact__wrapper .form__control input::placeholder {
  font-size: 12px;
}
.contact__overlay .contact__form .contact__footer {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-flow: row;
  gap: 1rem;
  margin-top: 2rem;
}
@media (width < 768px) {
  .contact__overlay .contact__form .contact__footer {
    justify-content: center;
  }
}
.contact__overlay .contact__form .contact__footer button {
  background-color: transparent;
  font-size: 15px;
  font-weight: 500px;
  border: 1px solid none;
  padding: 10px 2.5rem;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1.5px;
}
@media (width < 768px) {
  .contact__overlay .contact__form .contact__footer button {
    font-size: 1rem;
  }
}
@media (width < 576px) {
  .contact__overlay .contact__form .contact__footer button {
    padding: 10px 1rem;
  }
}
.contact__overlay .contact__form .contact__footer button[type=button] {
  background: transparent;
}
.contact__overlay .contact__form .contact__footer button[type=submit] {
  background-color: #000;
}
.contact__overlay .contact__form .contact__error {
  text-transform: uppercase;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (width < 576px) {
  .contact__overlay .contact__form .contact__error {
    font-size: 14px;
  }
}
.contact__overlay .contact__form .contact__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
@media (width < 576px) {
  .contact__overlay .contact__form .contact__close {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.flag-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  pointer-events: auto !important;
}
@media (min-width: 1200px) {
  .flag-container.mobile {
    display: none;
  }
}
@media (max-width: 1199px) {
  .flag-container.desktop {
    display: none;
  }
}
.flag-container .main-flag img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.flag-container .dropdown {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 10;
}
.flag-container .dropdown.visible {
  display: block;
}
.flag-container .dropdown .dropdown-flag {
  cursor: pointer;
}
.flag-container .dropdown .dropdown-flag img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-top: 10px;
}

/*# sourceMappingURL=style.css.map */
