@charset "UTF-8";
@media (min-width: 1200px) {
  .container {
    max-width: 1285px;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
html.mobile-menu-showing {
  overflow: hidden;
  height: 100%;
}

html, body {
  overflow-x: hidden;
}

.vc_column-inner {
  padding-top: 0 !important;
}

.wpb_content_element {
  margin-bottom: 0 !important;
}

body {
  font-family: var(--base-font-name), sans-serif;
  background-color: var(--main-bg-color);
  position: relative;
  color: var(--main-bg-text-color);
}
body.mobile-menu-showing:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.7803921569);
  top: 0;
  left: 0;
}

.button {
  border-radius: 50px;
  padding: 16px 26px;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  border: 2px solid var(--button-1-border-color);
  background-color: var(--button-1-bg-color);
  color: var(--button-1-text-color);
  min-width: 225px;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.button:hover, .button:focus {
  background-color: var(--button-1-bg-hover-color);
  border-color: var(--button-1-border-hover-color);
  color: var(--button-1-text-hover-color);
  text-decoration: none;
}
.button--secondary {
  border: 2px solid var(--button-2-border-color);
  background-color: var(--button-2-bg-color);
  color: var(--button-2-text-color);
}
.button--secondary:hover, .button--secondary:focus {
  background-color: var(--button-2-bg-hover-color);
  border-color: var(--button-2-border-hover-color);
  color: var(--button-2-text-hover-color);
  text-decoration: none;
}
.button--third {
  border: 2px solid var(--button-2-border-color);
  background-color: var(--button-2-bg-color);
  color: var(--button-2-text-color);
}
.button--third:hover, .button--third:focus {
  color: var(--button-3-text-color);
  text-decoration: none;
  opacity: 0.95;
}

.primary-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .primary-menu {
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--primary-menu-color);
  }
}
.primary-menu__toggle {
  display: none;
  width: 45px;
  height: 30px;
  padding-top: 5px;
  position: relative;
}
@media (max-width: 991px) {
  .primary-menu__toggle {
    display: block;
  }
}
.primary-menu__toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  display: block;
  margin-top: 5px;
}
.primary-menu__toggle span:first-child {
  margin-top: 0;
}
body.mobile-menu-showing .primary-menu__toggle span {
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 40px;
}
body.mobile-menu-showing .primary-menu__toggle span:first-child {
  transform: rotate(40deg);
}
body.mobile-menu-showing .primary-menu__toggle span:last-child {
  transform: rotate(140deg);
}
.primary-menu__mobilecta.button {
  display: none;
  color: var(--button-1-text-color);
}
@media (max-width: 991px) {
  .primary-menu__mobilecta.button {
    display: block;
    min-width: auto;
  }
}
@media (max-width: 575px) {
  .primary-menu__mobilecta.button {
    padding: 10px 13px;
  }
}
.primary-menu__brand {
  max-width: 135px;
  display: block;
  padding: 13px 0;
  margin-right: 74px;
}
@media (max-width: 991px) {
  .primary-menu__brand {
    margin-right: 0;
    max-width: 100px;
  }
}
@media (max-width: 575px) {
  .primary-menu__brand {
    margin-right: 0;
    max-width: 75px;
  }
}
.primary-menu__brand img {
  width: 100%;
  height: auto;
}
.primary-menu__items {
  display: flex;
  padding: 0;
  list-style-type: none;
  margin: 0;
  width: 100%;
  align-items: stretch;
  justify-content: right;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .primary-menu__items {
    background-color: white;
    padding: 20px;
    display: none;
    margin-top: 15px;
  }
}
body.mobile-menu-showing .primary-menu__items {
  display: flex;
}
.primary-menu__submenu {
  display: none;
  min-width: 450px;
  list-style-type: none;
  padding: 0;
  position: absolute;
  top: 100%;
  left: -130px;
  background-color: white;
  padding: 30px 55px;
  z-index: 2;
}
.primary-menu__submenu li {
  padding: 15px 0;
}
.primary-menu__submenu li a {
  font-size: 20px;
  text-transform: initial;
}
@media (max-width: 991px) {
  .primary-menu__submenu {
    display: none !important;
  }
}
.primary-menu__item {
  padding-right: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.primary-menu__item:hover .primary-menu__submenu {
  display: block;
}
@media (max-width: 991px) {
  .primary-menu__item {
    padding: 16px 10px;
    width: 100%;
    text-align: center;
    display: list-item;
  }
}
.primary-menu__item:last-child {
  padding-right: 0;
}
.primary-menu__item a:not(.button) {
  color: var(--primary-menu-label-color);
}
.primary-menu__item a:not(.button):hover, .primary-menu__item a:not(.button):focus {
  color: var(--primary-menu-hover-label-color);
  text-decoration: none;
}
@media (max-width: 991px) {
  .primary-menu__item a:not(.button) {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
  }
}
.primary-menu__cta {
  padding-right: 0 !important;
}
.primary-menu__cta .button {
  min-width: 180px;
}
@media (max-width: 991px) {
  .primary-menu__cta .button {
    min-width: none;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .primary-menu__cta {
    width: 100%;
    margin-top: 15px;
  }
}
body.mobile-menu-showing .primary-menu {
  margin: -15px -15px 0 -15px;
}
body.mobile-menu-showing .primary-menu .primary-menu__toggle {
  margin-left: 15px;
  margin-top: 15px;
}
body.mobile-menu-showing .primary-menu .primary-menu__brand {
  margin-top: 15px;
}
body.mobile-menu-showing .primary-menu .primary-menu__mobilecta {
  margin-right: 15px;
  margin-top: 15px;
}

.largeform {
  margin: 20px 0;
  background-color: white;
  padding: 25px 54px 45px 48px;
}
@media (max-width: 767px) {
  .largeform {
    padding: 50px 20px;
  }
}
.largeform__top_msg {
  font-weight: 500;
  font-size: 16px;
  color: white;
  background-color: var(--secondary-color);
}
.largeform__title {
  font-size: 26px;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 767px) {
  .largeform__title {
    font-size: 30px;
  }
}
.largeform__row {
  display: flex;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .largeform__row {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .largeform__row > * {
    width: 100%;
    margin-right: 0;
  }
}
.largeform__input {
  border: 1px solid #D9D9D9;
  width: 380px;
  margin-right: 22px;
  padding: 13px 20px;
  font-size: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .largeform__input {
    margin-right: 0;
    width: 100%;
  }
}
.largeform__input:last-child {
  margin-right: 0;
}
.largeform select.largeform__input {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url("../static/img/down-arrow.svg");
  background-size: 39px 25px;
  background-repeat: no-repeat;
  background-position: 95%;
}
.largeform__cta {
  margin-top: 5px;
}

.welcome {
  background-color: #4A3A29;
  background-size: cover;
  padding: 100px 0 140px 0;
}
@media (max-width: 991px) {
  .welcome {
    padding: 50px 0;
  }
}
.welcome__top_msg {
  background-color: var(--secondary-color);
  color: var(--secondary-label-color);
  margin: -25px -54px 30px -48px;
  padding: 14px 0;
  font-weight: 500;
  font-size: 16px;
}
.welcome .largeform__row {
  flex-wrap: wrap;
  margin: 0;
}
.welcome .largeform__row > * {
  width: 100%;
  margin: 0;
}
.welcome .welcome__left {
  width: 55%;
}
@media (max-width: 991px) {
  .welcome .welcome__left {
    width: 100%;
  }
}
.welcome .welcome__right {
  width: 45%;
  text-align: center;
}
@media (max-width: 991px) {
  .welcome .welcome__right {
    width: 100%;
    margin-top: 50px;
  }
}
.welcome .welcome__right .largeform {
  max-width: 455px;
  margin-left: auto;
  margin-top: 0;
}
@media (max-width: 991px) {
  .welcome .welcome__right .largeform {
    margin-left: auto;
    max-width: 100%;
  }
}
.welcome .welcome__right .largeform__cta {
  margin-top: 14px;
}
.welcome .welcome__right .largeform__input {
  width: 100%;
  margin-bottom: 12px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .welcome .welcome__right .largeform__input {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .welcome .welcome__right .largeform__input {
    max-width: 100%;
  }
}
.welcome__tick-items {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 42px;
}
.welcome__tick-items li {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 11px;
}
@media (max-width: 767px) {
  .welcome__tick-items li {
    font-size: 15px;
  }
}
.welcome__tick-items li svg {
  color: var(--primary-color);
}
.welcome [class^=welcome__title] {
  color: white;
}
.welcome__title1 {
  font-size: 20px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .welcome__title1 {
    font-size: 15px;
  }
}
.welcome__title2 {
  font-size: 48px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .welcome__title2 {
    line-height: normal;
    font-size: 25px;
  }
}
.welcome__title3 {
  font-size: 16px;
  margin-bottom: 26px;
  max-width: 570px;
  font-weight: 500;
  line-height: 24px;
}
.welcome__heading {
  max-width: 590px;
  margin-bottom: 26px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .welcome__heading {
    margin-bottom: 40px;
  }
}
.welcome__branding {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.welcome__branding li {
  padding-right: 100px;
  font-size: 24px;
  border-right: 1px solid var(--primary-color);
  margin-right: 28px;
  color: white;
}
.welcome__branding li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.welcome__cta2 {
  color: white;
}

.approach {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .approach {
    padding: 32px 0;
  }
}
.approach__title {
  margin-bottom: 31px;
  font-weight: 500;
  font-size: 48px;
}
@media (max-width: 767px) {
  .approach__title {
    font-size: 35px;
  }
}
.approach__subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}
.approach__text {
  margin-bottom: 54px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 767px) {
  .approach__text {
    margin-bottom: 32px;
  }
}
.approach__wrapper {
  max-width: 870px;
  margin: 0 auto;
}

.header {
  background-color: var(--primary-menu-color);
  color: var(--primary-menu-label-color);
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 999;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 14px 0;
  }
}
@media (max-width: 767px) {
  body.mobile-menu-showing .header {
    background-color: white;
    height: 100vh;
  }
}
body.scrolled-down .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.top-message {
  background-color: var(--secondary-color);
  padding: 17px 0;
  text-align: center;
  font-size: 16px;
  color: var(--secondary-label-color);
}
.top-message strong, .top-message a {
  color: var(--secondary-label-color);
  text-decoration: none;
}

.environments {
  position: relative;
  min-height: calc(300px * 3);
}
.environments__title {
  font-size: 48px;
  margin-bottom: 63px;
}
@media (max-width: 767px) {
  .environments__title {
    font-size: 35px;
    margin-bottom: 32px;
  }
}
.environments__text {
  font-size: 18px;
  margin-bottom: 58px;
  max-width: 85%;
}
@media (max-width: 767px) {
  .environments__text {
    max-width: none;
    margin-bottom: 32px;
  }
}
.environments__left {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 40%;
}
@media (max-width: 767px) {
  .environments__left {
    width: 100%;
    padding: 32px 0;
  }
}
.environments__right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 56%;
}
@media (max-width: 767px) {
  .environments__right {
    width: 100%;
    position: relative;
  }
}
.environments__slides {
  display: flex;
  flex-wrap: wrap;
}
.environments__slide {
  width: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .environments__slide {
    height: calc(300px / 2);
  }
}
.environments__slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.environments__slide:hover:after {
  content: "View Gallery →";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(70, 70, 70, 0.7411764706);
  top: 0;
  left: 0;
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.environments__slides--col3 .environments__slide {
  width: 33.333%;
}

@media (max-width: 767px) {
  .environments__slides--col3 .environments__slide {
    width: 50%;
    height: 150px;
  }
}
.footer {
  padding: 52px 0 58px 0;
  color: var(--footer-label-color);
  background-color: var(--footer-color);
}
.footer__bottom-nav {
  margin-top: 70px;
  margin-bottom: 30;
}
.footer__bottom-nav nav, .footer__bottom-nav ul {
  padding: 0;
  list-style-type: none;
}
.footer__bottom-nav nav li, .footer__bottom-nav ul li {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .footer__bottom-nav nav li, .footer__bottom-nav ul li {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-bottom: 15px;
  }
}
.footer__bottom-nav nav li:last-child, .footer__bottom-nav ul li:last-child {
  margin-right: 0;
}
.footer__bottom-nav nav li a, .footer__bottom-nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--footer-label-color);
}
.footer__logos {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__logos > a {
    margin-right: 0 !important;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}
.footer__copy {
  font-size: 14px;
  text-align: center;
  display: block;
}

.footer-bottom {
  background: #2d2c28;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-bottom span {
  color: white;
  padding-right: 10px;
  font-size: 13px;
}
@media (max-width: 575px) {
  .footer-bottom span {
    padding-right: 0;
    padding-bottom: 10px;
    flex: 100%;
  }
}

.footer-whatsapp {
  width: 100%;
  height: auto;
}

.hero2 {
  color: black;
}
.hero2__top_title {
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-size: 20px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .hero2__top_title {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .hero2__img {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .hero2__img img {
    max-width: 100%;
    height: auto;
  }
}
.hero2__left {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .hero2__left {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.hero2__title {
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .hero2__title {
    font-size: 35px;
  }
}
.hero2__description {
  font-size: 16px;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .hero2__description {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero2__action_btns .button {
    width: 100%;
  }
}
.hero2__tick-items {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 42px;
}
@media (max-width: 767px) {
  .hero2__tick-items {
    margin-bottom: 24px;
  }
}
.hero2__tick-items li {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-family: var(--secondary-font-name);
}
.hero2__tick-items li svg {
  color: var(--secondary-color);
}

.testimonials {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .testimonials {
    padding: 32px 0;
  }
}
.testimonials img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.fullgallery {
  padding: 100px 0;
  padding-top: 64px;
}
@media (max-width: 767px) {
  .fullgallery {
    padding: 32px 0;
  }
}
.fullgallery__heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.fullgallery__title {
  font-weight: 400;
  font-size: 48px;
  font-family: var(--secondary-font-name);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .fullgallery__title {
    font-size: 35px;
  }
}
.fullgallery__text {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 40px;
}
.fullgallery__imgs {
  display: flex;
  flex-wrap: wrap;
}
.fullgallery__imgs a {
  display: block;
  flex: 1 0 21%;
}
@media (max-width: 767px) {
  .fullgallery__imgs a {
    flex: 1 0 41%;
  }
}
.fullgallery__imgs a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  .fullgallery__imgs a img {
    height: 150px;
  }
}

.infotabs {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .infotabs {
    padding: 32px 0;
  }
}
.infotabs__title {
  margin-bottom: 16px;
  font-size: 48px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .infotabs__title {
    font-size: 35px;
  }
}
.infotabs__text {
  margin-bottom: 32px;
  font-size: 16px;
}
.infotabs__heading {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.infotab {
  padding: 35px 70px 35px 40px;
  text-align: left;
  outline: none !important;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--secondary-label-color);
  margin-top: 15px;
  border: 0;
}
.infotab:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .infotab {
    padding: 20px 40px;
  }
}
.infotab:not(.collapsed) .infotab__title:after {
  top: -10px;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .infotab:not(.collapsed) .infotab__title:after {
    right: -30px;
  }
}
.infotab__title {
  font-size: 22px;
  font-family: var(--secondary-font-name);
  position: relative;
  align-items: center;
  display: flex;
}
.infotab__title:after {
  content: url("../static/img/down-arrow.svg");
  position: absolute;
  top: 5px;
  right: -50px;
}
@media (max-width: 767px) {
  .infotab__title:after {
    right: -30px;
  }
}
.infotab__body {
  padding: 50px;
  border: 1px solid var(--primary-color);
  border-top: none;
}
@media (max-width: 767px) {
  .infotab__body {
    padding: 30px;
  }
}
.infotab__hr {
  width: 100%;
  margin: 40px 0 50px 0;
  background-color: var(--primary-color);
  height: 1px;
}
.infotab__subtitle {
  font-size: 22px;
  margin-bottom: 32px;
}
.infotab__subtitle-2 {
  font-size: 16px;
  margin-top: -32px;
  margin-bottom: 28px;
}
.infotab__text {
  font-size: 16px;
}
.infotab__text p {
  margin-bottom: 26px;
}
.infotab__text a {
  color: var(--primary-color);
}
.infotab__left {
  width: 55%;
  margin-right: 5%;
}
@media (max-width: 767px) {
  .infotab__left {
    margin-right: 0;
    width: 100%;
    margin-bottom: 50px;
  }
}
.infotab__right {
  width: 40%;
}
@media (max-width: 767px) {
  .infotab__right {
    width: 100%;
  }
}

.fullwidth_form__content {
  background-color: var(--secondary-color);
}
@media (max-width: 767px) {
  .fullwidth_form__content {
    margin: 0 -15px;
  }
}
.fullwidth_form__top_msg {
  padding: 13px 0;
  background-color: var(--primary-color);
  font-family: var(--secondary-font-name);
  color: var(--primary-label-color);
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.fullwidth_form__wrap {
  color: var(--secondary-label-color);
  max-width: 370px;
  margin: 0 auto;
  padding: 32px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .fullwidth_form__wrap {
    padding-left: 15px;
    padding-right: 15px;
    max-width: none;
  }
}
.fullwidth_form__title {
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 15px;
}
.fullwidth_form__text {
  font-size: 16px;
  margin-bottom: 32px;
}
.fullwidth_form .largeform__row {
  flex-wrap: wrap;
  margin: 0;
}
.fullwidth_form .largeform__row .largeform__input {
  border: 0;
}
.fullwidth_form .largeform__row select.largeform__input {
  height: 50px;
}
.fullwidth_form .largeform__cta {
  margin-top: 16px;
}

.events {
  padding: 145px 0;
  padding-bottom: 64px;
  color: var(--main-bg-text-color);
}
@media (max-width: 767px) {
  .events {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .events__section_cta {
    width: 100%;
  }
}
.events__item_tick_list {
  list-style-type: none;
  padding-left: 0;
}
.events__item_tick_list li {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .events__item_tick_list li:last-child {
    margin-bottom: 0;
  }
}
.events__item_tick_list li svg {
  color: var(--secondary-color);
}
.events__item_title {
  margin-bottom: 12px;
  font-size: 36px;
  font-family: var(--secondary-font-name);
}
.events__item_subtitle {
  font-size: 20px;
  margin-bottom: 22px;
  font-family: var(--secondary-font-name);
  margin-bottom: 22px;
}
.events__item_text {
  margin-bottom: 15px;
}
.events__item_text ul {
  padding-left: 1em;
}
.events__item_img {
  margin-bottom: 32px;
}
.events__item_img img {
  width: 100%;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.events__heading {
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 32px;
  text-align: center;
}
.events__top_title {
  font-weight: 400;
  font-size: 28px;
  font-family: var(--secondary-font-name);
  margin-bottom: 16px;
  color: var(--secondary-color);
}
@media (max-width: 767px) {
  .events__top_title {
    font-size: 20px;
  }
}
.events__title {
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .events__title {
    font-size: 34px;
  }
}
.events__text {
  font-size: 16px;
}

.footer-whatsapp {
  position: fixed;
  z-index: 9999;
  bottom: 50px;
  text-align: center;
  border: 0;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  right: 70px;
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .footer-whatsapp {
    zoom: 0.8;
  }
}
.footer-whatsapp .left-pos {
  right: auto;
  left: 70px;
  width: 150px;
}
.footer-whatsapp .left-pos img {
  max-width: 100%;
}

.upsell-popup {
  background-color: rgba(27, 27, 27, 0.72);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
  overflow: auto;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .upsell-right {
    margin-top: 50px;
  }
  .upsell-left {
    margin-bottom: 0 !important;
  }
}
.upsell-popup__wrap {
  margin: 0 auto;
  margin-top: 96px;
  padding: 100px;
  background-color: #f5f5f5;
  width: 100%;
  max-width: 1289px;
  display: flex;
  position: relative;
}

.upsell-left {
  margin-right: 92px;
  flex: 1;
}

.upsell-title {
  color: black;
  font-size: 50px;
  line-height: 55px;
  margin-bottom: 32px;
  margin-top: 20px;
}

.upsell-title span {
  color: var(--secondary-color);
  display: block;
}

.upsell-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upsell-text {
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: 0.51px;
  color: black;
  margin-bottom: 39px;
}

.upsell-subtext {
  font-size: 20px;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 40px;
}

.upsell-subtext strong {
  display: block;
  color: black;
}

.upsell-cta__wrap {
  display: inline-block;
}

.upsell-close {
  position: absolute;
  top: 40px;
  right: 35px;
  font-size: 16px;
  letter-spacing: 0.51px;
  color: black;
  line-height: 1.38;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.upsell-close:hover {
  color: black;
}

.upsell-close svg {
  margin-left: 10px;
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

.upsell-popup .upsell-title {
  font-size: 40px;
}

@media screen and (max-width: 767px) {
  .upsell-popup__wrap {
    flex-wrap: wrap;
  }
  .upsell-right, .upsell-left {
    flex: 100%;
  }
  .upsell-popup__wrap {
    padding: 40px 20px;
  }
  .upsell-left {
    margin: 0;
    margin-bottom: 50px;
  }
  .upsell-title {
    font-size: 37px;
  }
}/*# sourceMappingURL=main.css.map */