/*
Template Name: 
Template URI: 
Author: 
Author URI: 
Description: 
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/
html {
  font-size: 58%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 60%;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: 1.6rem;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Verdana";
  background-color: #DFDED9;
}

p {
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li, ol li {
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: 1.6rem;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

/*-------------------------------------------------
    [ ## Heading ]
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 5.2rem;
}

h2 {
  font-size: 4.4rem;
}

h3 {
  font-size: 3.6rem;
}

h4 {
  font-size: 3rem;
}

h5 {
  font-size: 2.4rem;
}

h6 {
  font-size: 1.6rem;
}

.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.bg-color-body {
  background-color: #DFDED9;
}

/*-------------------------------------------------
    [ ## Fields ]
---------------------------------------------------*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus {
  outline: none;
  box-shadow: none;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-text-fill-color: var(--color__body !important);
}

input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-text-fill-color: var(--color__body !important);
}

textarea.form-control {
  display: block;
  width: 100%;
  display: block;
  min-height: 150px;
  padding-top: 0px;
}
textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-floating > .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

::-webkit-input-placeholder {
  color: var(--color__body);
}

.widget_newsletter::-webkit-input-placeholder {
  color: #808080;
}

:-moz-placeholder {
  color: var(--color__body);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--color__body);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color__body);
}

/**
 * Hide element while making it readable for screen readers
 */
.figure {
  display: block;
}

.topbutton {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  background-color: #89805D;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
.topbutton.btn-show {
  visibility: visible;
  opacity: 1;
}

.preloader {
  display: inline-block;
  position: fixed;
  inset: 0;
  background: #89805D;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader .center {
  width: 8rem;
  height: 8rem;
}
.preloader .center div {
  animation: preloader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 4rem 4rem;
}
.preloader .center div::after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.preloader .center div:nth-child(1) {
  animation-delay: -0.036s;
}
.preloader .center div:nth-child(1)::after {
  top: 63px;
  left: 63px;
}
.preloader .center div:nth-child(2) {
  animation-delay: -0.072s;
}
.preloader .center div:nth-child(2)::after {
  top: 68px;
  left: 56px;
}
.preloader .center div:nth-child(3) {
  animation-delay: -0.108s;
}
.preloader .center div:nth-child(3)::after {
  top: 71px;
  left: 48px;
}
.preloader .center div:nth-child(4) {
  animation-delay: -0.144s;
}
.preloader .center div:nth-child(4)::after {
  top: 72px;
  left: 40px;
}
.preloader .center div:nth-child(5) {
  animation-delay: -0.18s;
}
.preloader .center div:nth-child(5)::after {
  top: 71px;
  left: 32px;
}
.preloader .center div:nth-child(6) {
  animation-delay: -0.216s;
}
.preloader .center div:nth-child(6)::after {
  top: 68px;
  left: 24px;
}
.preloader .center div:nth-child(7) {
  animation-delay: -0.252s;
}
.preloader .center div:nth-child(7)::after {
  top: 63px;
  left: 17px;
}
.preloader .center div:nth-child(8) {
  animation-delay: -0.288s;
}
.preloader .center div:nth-child(8)::after {
  top: 56px;
  left: 12px;
}

@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
    [ ## Container ]
--------------------------------------------------------------*/
.container {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 765px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1190px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    max-width: 1520px;
  }
}

/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header-block
--------------------------------------------------------------*/
header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 1024;
}
@media screen and (min-width: 768px) {
  header {
    padding: 2.5rem 0;
  }
}
header .nav {
  align-items: center;
}
header .site_logo img {
  transition: all 0.3s;
  max-width: 18rem;
}
@media screen and (max-width: 1399px) {
  header .site_logo img {
    max-width: 15rem;
  }
}
header .main_menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 991px) {
  header .main_menu {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  header .main_menu {
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1400px) {
  header .main_menu {
    gap: 2rem;
  }
}
header .main_menu li {
  position: relative;
}
header .main_menu li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  color: #210021;
  transition: all 0.3s ease;
  font-size: 1.6rem;
}
@media screen and (min-width: 1900px) {
  header .main_menu li a {
    font-size: 1.8rem;
  }
}
header .main_menu li a:hover {
  color: #89805D;
}
header .main_menu li .submenu {
  position: absolute;
  top: 100%;
  padding: 1rem;
  background-color: #A69380;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  transform: translateY(1rem);
  opacity: 0;
  visibility: hidden;
}
header .main_menu li .submenu li a {
  white-space: nowrap;
  color: #FFFFFF;
  line-height: 1.57;
  padding: 0.5rem;
}
header .main_menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .action_menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2rem;
}
@media screen and (max-width: 991px) {
  header .action_menu {
    margin-left: auto;
  }
}
header .action_menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0.5rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 1900px) {
  header .action_menu a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1199px) {
  header .action_menu .login span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header .action_menu .lang-switch {
    width: 3rem;
  }
}
header .humbergar {
  background-color: transparent;
  padding: 0;
  border: 0;
}
@media screen and (min-width: 992px) {
  header .humbergar {
    display: none;
  }
}
header.sticky {
  background-color: #DFDED9;
  box-shadow: 0 0 1rem 0.5rem rgba(166, 147, 128, 0.2);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -35rem;
  width: 35rem;
  height: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 0 0.8rem 0 rgba(166, 147, 128, 0.1);
  transition: all 0.3s;
  overflow-y: scroll;
  z-index: 1025;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .site-brand {
  padding: 1rem 0;
}
.mobile-menu .navbar-brand {
  padding: 2rem 0 !important;
}
.mobile-menu .navbar-brand img {
  max-width: 15rem;
}
.mobile-menu form input {
  border: 0;
  font-size: 1.5rem;
  color: #210021;
  padding: 0;
  height: 3rem;
  transition: all 0.2s;
}
.mobile-menu form input::placeholder {
  color: #210021;
}
.mobile-menu form input:-webkit-autofill {
  box-shadow: 0 0 0 100rem #FFFFFF inset;
  -webkit-box-shadow: 0 0 0 100rem #FFFFFF inset;
  -webkit-text-fill-color: #000000 !important;
}
.mobile-menu form input:-webkit-autofill:focus {
  box-shadow: 0 0 0 100rem #FFFFFF inset;
  -webkit-box-shadow: 0 0 0 100rem #FFFFFF inset;
  -webkit-text-fill-color: #000000 !important;
}
.mobile-menu .menu-title {
  border-bottom: 0.1rem solid #A69380;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.mobile-menu .main-menu li {
  margin: 0.8rem 0;
}
.mobile-menu .main-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  padding: 0.8rem 0;
  font-weight: 500;
  font-family: "Verdana";
}
.mobile-menu .main-menu li.menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.7rem 0 0.7rem;
  border-color: #89805D transparent transparent transparent;
}
.mobile-menu .main-menu .submenu {
  margin-left: 2rem;
}
.mobile-menu .main-menu .submenu li {
  margin: 0;
}
.mobile-menu .main-menu .submenu a {
  font-size: 1.4rem;
}
.mobile-menu .social_contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1.5rem;
  background-color: rgba(137, 128, 93, 0.1);
  padding: 1.5rem 2rem;
  margin-top: auto;
}
.mobile-menu .social_contacts a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.1rem solid #A69380;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.mobile-menu .social_contacts a path {
  transition: all 0.2s;
}
.mobile-menu .social_contacts a:hover {
  background-color: #A69380;
}
.mobile-menu .social_contacts a:hover svg path {
  stroke: #210021;
}
.mobile-menu.sidemenu-open {
  left: 0;
}

/*--------------------------------------------------------------
    [ ## Page Banner]
--------------------------------------------------------------*/
.page_banner {
  padding: 13rem 0 5rem;
  background-color: var(--bg_color);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page_banner {
    padding: 15rem 0 5rem;
  }
}
.page_banner .xl_headeing {
  color: #60545f;
  font-weight: bold;
  font-family: "Enzo Offc";
  font-size: 4rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_banner .xl_headeing {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .page_banner .xl_headeing {
    font-size: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .page_banner .xl_headeing {
    font-size: 10rem;
  }
}
.page_banner .banner-title {
  color: var(--color);
  font-family: "Enzo Offc";
  font-size: 5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page_banner .banner-title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .page_banner .banner-title {
    font-size: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .page_banner .banner-title {
    font-size: 10rem;
  }
}
.page_banner .shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page_banner .shapes img {
  position: absolute;
  right: -2rem;
  width: 40rem;
  top: -10%;
}
@media screen and (min-width: 768px) {
  .page_banner .shapes img {
    width: 50rem;
    top: -25%;
  }
}
@media screen and (min-width: 1200px) {
  .page_banner .shapes img {
    width: 65rem;
    top: -40%;
  }
}
@media screen and (min-width: 1900px) {
  .page_banner .shapes img {
    width: 75rem;
    top: -45%;
  }
}
.page_banner.about .shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
}
.page_banner.about .shapes img {
  position: absolute;
  width: 40rem;
  transform: rotate(45deg);
}
.page_banner.about .shapes .shape1 {
  bottom: 35%;
  left: 60%;
}
@media screen and (min-width: 768px) {
  .page_banner.about .shapes .shape1 {
    left: 70%;
  }
}
.page_banner.about .shapes .shape2 {
  right: 75%;
  top: 60%;
}
@media screen and (min-width: 768px) {
  .page_banner.about .shapes .shape2 {
    right: 85%;
    top: 70%;
  }
}
@media screen and (min-width: 1400px) {
  .page_banner.about .shapes .shape2 {
    right: 90%;
    top: 65%;
  }
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.cta {
  background-color: #89805D;
  padding: 4rem 0;
}
@media screen and (max-width: 1199px) {
  .cta .logo {
    max-width: 30rem;
    margin: 0 auto;
  }
}
.cta p {
  line-height: 1.5;
  font-size: 1.8rem;
}
@media screen and (max-width: 991px) {
  .cta p {
    text-align: center;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .cta p {
    font-size: 2rem;
  }
}
.cta .button a {
  border: 0.2rem solid #FFFFFF;
  text-align: center;
  padding: 1.5rem 4rem;
  border-radius: 0.8rem;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.2s ease;
  display: inline-block;
  line-height: normal;
}
@media screen and (min-width: 1200px) {
  .cta .button a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1900px) {
  .cta .button a {
    font-size: 2.2rem;
  }
}
.cta .button a:hover {
  background-color: #FFFFFF;
  color: #89805D;
}

footer .footer-top {
  background-color: #210021;
  padding: 6rem 0;
}
footer .footer-top .widget-title {
  color: #89805D;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 1900px) {
  footer .footer-top .widget-title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1900px) {
  footer .footer-top .widget-title a {
    font-size: 1.8rem;
  }
}
footer .footer-top p, footer .footer-top address {
  color: #A69380;
  font-size: 1.6rem;
}
@media screen and (min-width: 1900px) {
  footer .footer-top p, footer .footer-top address {
    font-size: 1.8rem;
  }
}
footer .footer-top p a, footer .footer-top address a {
  font-size: 1.6rem;
}
@media screen and (min-width: 1900px) {
  footer .footer-top p a, footer .footer-top address a {
    font-size: 1.8rem;
  }
}
footer .footer-top ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
footer .footer-top .social_contacts {
  margin-top: 1.5rem;
}
footer .footer-top .social_contacts a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.1rem solid #A69380;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
footer .footer-top .social_contacts a path {
  transition: all 0.2s;
}
footer .footer-top .social_contacts a:hover {
  background-color: #A69380;
}
footer .footer-top .social_contacts a:hover svg path {
  stroke: #210021;
}
footer .footer-bottom {
  background-color: #A69380;
  padding: 2rem 0;
}
footer .footer-bottom p {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (min-width: 1400px) {
  footer .footer-bottom p {
    font-size: 1.6rem;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .footer-bottom [class*=start] .footer-logo {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-bottom [class*=start] .footer-logo {
    max-width: 10rem;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-bottom [class*=start] .footer-logo {
    max-width: 15rem;
  }
}
footer .footer-bottom .footer-logo {
  max-width: 15rem;
}
@media screen and (max-width: 575px) {
  footer .footer-bottom .footer-logo {
    display: block;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Homepage Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  height: 60%;
  width: 100%;
  position: absolute;
  z-index: 2;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0) 100%);
}
.hero .slide-bg {
  height: 45rem;
  background-size: cover;
  background-position: bottom center;
}
@media screen and (min-width: 576px) {
  .hero .slide-bg {
    height: 50rem;
  }
}
@media screen and (min-width: 992px) {
  .hero .slide-bg {
    height: 60rem;
  }
}
@media screen and (min-width: 1200px) {
  .hero .slide-bg {
    height: 70rem;
  }
}
@media screen and (min-width: 1900px) {
  .hero .slide-bg {
    height: 90rem;
  }
}

/*--------------------------------------------------------------
# Homepage Facilities Section
--------------------------------------------------------------*/
.explore {
  overflow: hidden;
}
.explore .explore-content {
  padding: 10rem 0 6rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.explore .explore-content h1 {
  font-family: "Enzo Offc";
  color: #5E3666;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 2rem;
}
@media screen and (min-width: 576px) {
  .explore .explore-content h1 {
    font-size: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .explore .explore-content h1 {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1200px) {
  .explore .explore-content h1 {
    font-size: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .explore .explore-content h1 {
    font-size: 10rem;
  }
}
.explore .explore-content p {
  text-align: justify;
  color: #210021;
}
@media screen and (min-width: 992px) {
  .explore .explore-content p {
    max-width: 95%;
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 1900px) {
  .explore .explore-content p {
    font-size: 2.2rem;
  }
}
.explore .explore-content .shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
}
.explore .explore-content .shapes img {
  position: absolute;
}
.explore .explore-content .shapes .shape1 {
  right: -15rem;
  top: -20rem;
  transform: rotate(45deg);
  width: 32rem;
}
@media screen and (min-width: 1200px) {
  .explore .explore-content .shapes .shape1 {
    top: -26rem;
    width: 40rem;
  }
}
@media screen and (min-width: 1400px) {
  .explore .explore-content .shapes .shape1 {
    top: -32rem;
    width: 50rem;
  }
}
.explore .explore-content .shapes .shape2 {
  top: 60%;
  right: 90%;
  transform: rotate(45deg);
  width: 50rem;
}
.explore .explore-items-wrapper {
  padding: 6rem 0;
  background-color: #89805D;
}
.explore .explore-items-wrapper .item .icon {
  width: 15rem;
  height: 15rem;
  border: 0.2rem solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .explore .explore-items-wrapper .item .icon {
    width: 10rem;
    height: 10rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .explore .explore-items-wrapper .item .icon {
    width: 12rem;
    height: 12rem;
  }
}
.explore .explore-items-wrapper .item .icon svg {
  scale: 0.9;
}
@media screen and (max-width: 1199px) {
  .explore .explore-items-wrapper .item .icon svg {
    scale: 0.5;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .explore .explore-items-wrapper .item .icon svg {
    scale: 0.7;
  }
}
.explore .explore-items-wrapper .item .icon path {
  transition: all 0.3s ease;
}
.explore .explore-items-wrapper .item .title {
  font-weight: 600;
  margin-top: 1rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Enzo Offc";
}
@media screen and (min-width: 1200px) {
  .explore .explore-items-wrapper .item .title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .explore .explore-items-wrapper .item .title {
    font-size: 2.2rem;
  }
}
.explore .explore-items-wrapper .item:hover .icon {
  background-color: #FFFFFF;
}
.explore .explore-items-wrapper .item:hover .icon svg path {
  stroke: #89805D;
}

/*--------------------------------------------------------------
# Homepage Events Section
--------------------------------------------------------------*/
.events {
  overflow: hidden;
}
.events .section-title {
  margin: 4rem 0;
}
@media screen and (min-width: 992px) {
  .events .section-title {
    margin: 5rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .events .section-title {
    margin: 6rem 0;
  }
}
.events .section-title .title {
  font-size: 4.5rem;
  font-family: "Enzo Offc";
  color: #89805D;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .events .section-title .title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .events .section-title .title {
    font-size: 8rem;
  }
}
.events .events-slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background-color: #210021;
  z-index: -1;
}
.events .events-slider button {
  width: 4rem;
  height: 4rem;
  border: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 3.5rem);
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .events .events-slider button {
    top: calc(50% - 6.5rem);
  }
}
@media screen and (min-width: 1900px) {
  .events .events-slider button {
    width: 5rem;
    height: 5rem;
  }
}
.events .events-slider button:hover {
  background-color: #5E3666;
}
.events .events-slider button:hover svg {
  fill: #FFFFFF;
}
.events .events-slider button.btn-prev {
  left: 0.5rem;
}
.events .events-slider button.btn-next {
  right: 0.5rem;
}
.events .events-slider button svg {
  width: 2rem;
}
@media screen and (min-width: 1900px) {
  .events .events-slider button svg {
    width: 3rem;
  }
}
.events .events-item {
  position: relative;
}
.events .events-item .thumbnail {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.events .events-item .thumbnail::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(33, 0, 33, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
}
.events .events-item .thumbnail img {
  transition: all 0.4s ease;
  max-height: 40rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1900px) {
  .events .events-item .thumbnail img {
    max-height: 50rem;
  }
}
.events .events-item .event-information {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  color: #FFFFFF;
}
@media (min-width: 576px) and (max-width: 767px) {
  .events .events-item .event-information {
    padding: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .events .events-item .event-information {
    padding: 3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .events .events-item .event-information {
    padding: 2rem;
  }
}
.events .events-item .event-information .events-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Enzo Offc";
  filter: drop-shadow(0px 0px 5px #39043F);
}
@media (min-width: 576px) and (max-width: 767px) {
  .events .events-item .event-information .events-title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .events .events-item .event-information .events-title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1900px) {
  .events .events-item .event-information .events-title {
    font-size: 4rem;
  }
}
.events .events-item .event-information p {
  font-size: 1.6rem;
}
@media screen and (min-width: 1400px) {
  .events .events-item .event-information p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1900px) {
  .events .events-item .event-information p {
    font-size: 2rem;
  }
}
.events .events-item .stretched-link::after {
  z-index: 2;
}
.events .events-item:hover .thumbnail img {
  transform: scale(1.1);
}
.events .all-events {
  padding: 4rem 0;
}
@media screen and (max-width: 991px) {
  .events .all-events {
    padding: 2rem 0;
  }
}
.events .all-events a {
  display: inline-block;
  border: 0.2rem solid #FFFFFF;
  text-align: center;
  padding: 1rem 3rem;
  border-radius: 0.8rem;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 2rem;
  transition: all 0.2s ease;
}
@media screen and (max-width: 991px) {
  .events .all-events a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .events .all-events a {
    font-size: 2.2rem;
    padding: 1.3rem 4rem;
  }
}
.events .all-events a:hover {
  background-color: #FFFFFF;
  color: #89805D;
}

.about_msheireb {
  padding: 8rem 0;
}
.about_msheireb .title {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 4rem;
  font-family: "Enzo Offc";
  color: #210021;
}
@media screen and (min-width: 576px) {
  .about_msheireb .title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .about_msheireb .title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1400px) {
  .about_msheireb .title {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .about_msheireb .title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 991px) {
  .about_msheireb .section-image img {
    max-height: 50rem;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.about_msheireb .section-content {
  padding: 3rem 0;
}
.about_msheireb .section-content p {
  font-size: 1.6rem;
}
@media screen and (min-width: 1400px) {
  .about_msheireb .section-content p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1900px) {
  .about_msheireb .section-content p {
    font-size: 2rem;
  }
}

.key_figures {
  background-color: #89805D;
  padding: 8rem 0;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.key_figures .section-title {
  font-family: "Enzo Offc";
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .key_figures .section-title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .key_figures .section-title {
    font-size: 8rem;
  }
}
.key_figures ul li + li {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .key_figures ul li + li {
    margin-top: 3rem;
  }
}
.key_figures ul li .title {
  font-weight: 600;
  font-family: "Enzo Offc";
  font-size: 2.2rem;
}
@media screen and (min-width: 1900px) {
  .key_figures ul li .title {
    font-size: 2.6rem;
  }
}
.key_figures ul li .desc {
  max-width: 35rem;
  line-height: 1.3;
  font-size: 1.6rem;
}
@media screen and (min-width: 1200px) {
  .key_figures ul li .desc {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1900px) {
  .key_figures ul li .desc {
    max-width: 42rem;
    font-size: 2.4rem;
  }
}
.key_figures .shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
}
.key_figures .shapes img {
  position: absolute;
  width: 40rem;
  transform: rotate(45deg);
}
.key_figures .shapes .shape1 {
  bottom: 90%;
  left: 40%;
}
@media screen and (min-width: 768px) {
  .key_figures .shapes .shape1 {
    left: 60%;
    bottom: 75%;
  }
}
@media screen and (min-width: 1200px) {
  .key_figures .shapes .shape1 {
    left: 70%;
  }
}
@media screen and (min-width: 1400px) {
  .key_figures .shapes .shape1 {
    left: 75%;
  }
}
.key_figures .shapes .shape2 {
  right: 70%;
  top: 90%;
}
@media screen and (min-width: 768px) {
  .key_figures .shapes .shape2 {
    right: 85%;
    top: 70%;
  }
}
@media screen and (min-width: 1400px) {
  .key_figures .shapes .shape2 {
    right: 90%;
    top: 75%;
  }
}

.our_location {
  padding: 8rem 0;
}
.our_location .section-title {
  font-family: "Enzo Offc";
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 3rem;
  color: #89805D;
}
@media screen and (min-width: 768px) {
  .our_location .section-title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .our_location .section-title {
    font-size: 8rem;
  }
}
.our_location p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 2rem;
  color: #210021;
}
@media screen and (min-width: 1200px) {
  .our_location p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1900px) {
  .our_location p {
    font-size: 2rem;
  }
}
.our_location .button a {
  display: inline-block;
  border: 0.2rem solid #210021;
  text-align: center;
  padding: 1rem 3rem;
  border-radius: 0.8rem;
  color: #210021;
  font-weight: 500;
  font-size: 2.2rem;
  transition: all 0.2s ease;
}
@media screen and (max-width: 991px) {
  .our_location .button a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1400px) {
  .our_location .button a {
    font-size: 2.4rem;
    padding: 1.2rem 3rem;
  }
}
@media screen and (min-width: 1900px) {
  .our_location .button a {
    font-size: 2.8rem;
    padding: 1.5rem 4rem;
  }
}
.our_location .button a:hover {
  background-color: #210021;
  color: #FFFFFF;
}
.our_location .embeded_map {
  height: 100%;
  width: 100%;
  min-height: 40rem;
}

.leasing_blocks {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}
.leasing_blocks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background-color: #210021;
  z-index: -1;
}
.leasing_blocks .leasing_blocks_item {
  margin: 0 auto;
}
.leasing_blocks .leasing_blocks_item .figure {
  position: relative;
  overflow: hidden;
}
.leasing_blocks .leasing_blocks_item .figure .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
  font-size: 3.6rem;
  color: #FFFFFF;
  font-family: "Enzo Offc";
  font-weight: bold;
  filter: drop-shadow(0 0 0.5rem rgba(33, 0, 33, 0.75));
}
@media screen and (max-width: 991px) {
  .leasing_blocks .leasing_blocks_item .figure .caption {
    font-size: 2.5rem;
  }
}
.leasing_blocks .leasing_blocks_item .figure img {
  transition: all 0.4s linear;
}
.leasing_blocks .leasing_blocks_item .figure:hover img {
  transform: scale(1.08) rotate(2deg);
}

.heritage_intro {
  padding: 8rem 0;
}
.heritage_intro .title {
  font-family: "Enzo Offc";
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}
@media screen and (min-width: 1400px) {
  .heritage_intro .title {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .heritage_intro .title {
    font-size: 2.8rem;
  }
}
.heritage_intro p {
  font-size: 1.8rem;
  color: #210021;
}
@media screen and (max-width: 1199px) {
  .heritage_intro p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .heritage_intro p {
    font-size: 2rem;
  }
}

.step7 .step_intro {
  padding: 6rem 0;
  background-color: rgba(97, 53, 28, 0.6);
}
.step7 .step_intro .title {
  font-family: "Enzo Offc";
  font-weight: 900;
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1400px) {
  .step7 .step_intro .title {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .step7 .step_intro .title {
    font-size: 2.8rem;
  }
}
.step7 .step_intro p {
  font-size: 1.8rem;
  color: #DFDED9;
}
@media screen and (max-width: 1199px) {
  .step7 .step_intro p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .step7 .step_intro p {
    font-size: 2rem;
  }
}
.step7 .step7_slider {
  padding: 8rem 0;
  overflow: hidden;
}
.step7 .step7_slider .section-title {
  font-family: "Enzo Offc";
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 3rem;
  color: #61351C;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .step7 .step7_slider .section-title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .step7 .step7_slider .section-title {
    max-width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  .step7 .step7_slider .section-title {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1400px) {
  .step7 .step7_slider .section-title {
    font-size: 8rem;
    margin-bottom: 4rem;
  }
}
.step7 .step7_slider .step7Slider_content {
  max-width: 40rem;
  margin-left: 0;
}
.step7 .step7_slider .step7Slider_content .slide_content {
  direction: ltr;
}
.step7 .step7_slider .step7Slider_content .slide_content .title {
  color: #61351C;
  font-family: "Enzo Offc";
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.step7 .step7_slider .step7Slider_content .slide_content .description {
  color: #210021;
  font-size: 1.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 1199px) {
  .step7 .step7_slider .step7Slider_content .slide_content .description {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .step7 .step7_slider .step7Slider_content .slide_content .description {
    font-size: 2rem;
  }
}
.step7 .step7_slider .step7Slider_content_image {
  align-items: center;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .step7 .step7_slider .step7Slider_content_image {
    width: 170%;
  }
}
@media screen and (min-width: 992px) {
  .step7 .step7_slider .step7Slider_content_image {
    width: 130%;
  }
}
@media screen and (min-width: 1200px) {
  .step7 .step7_slider .step7Slider_content_image {
    width: 140%;
  }
}
@media screen and (min-width: 1400px) {
  .step7 .step7_slider .step7Slider_content_image {
    width: 145%;
  }
}
.step7 .step7_slider .step7Slider_content_image .swiper-slide {
  opacity: 0.3;
  transition: all 0.3s ease;
  height: auto;
  text-align: center;
}
.step7 .step7_slider .step7Slider_content_image .swiper-slide img {
  transform: scaleY(0.8);
  transition: transform 0.5s ease;
}
.step7 .step7_slider .step7Slider_content_image .swiper-slide-active {
  opacity: 1;
}
.step7 .step7_slider .step7Slider_content_image .swiper-slide-active img {
  transform: scaleY(1);
}
.step7 .step7_slider .slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .step7 .step7_slider .slider-navigation {
    width: 30rem;
  }
}
@media screen and (min-width: 1400px) {
  .step7 .step7_slider .slider-navigation {
    width: 40rem;
  }
}
@media screen and (min-width: 1900px) {
  .step7 .step7_slider .slider-navigation {
    width: 45rem;
  }
}
.step7 .step7_slider .slider-navigation button {
  width: 4rem;
  height: 4rem;
  background-color: #89805D;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1900px) {
  .step7 .step7_slider .slider-navigation button {
    width: 5rem;
    height: 5rem;
  }
}
.step7 .step7_slider .slider-navigation button:hover {
  background-color: #210021;
}
.step7 .step7_slider .slider-navigation button svg {
  width: 2rem;
}
@media screen and (min-width: 1900px) {
  .step7 .step7_slider .slider-navigation button svg {
    width: 3rem;
  }
}

.technology_intro {
  padding: 8rem 0;
}
.technology_intro .title {
  font-family: "Enzo Offc";
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}
@media screen and (min-width: 1400px) {
  .technology_intro .title {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .technology_intro .title {
    font-size: 2.8rem;
  }
}
.technology_intro p {
  font-size: 1.8rem;
  color: #210021;
}
@media screen and (max-width: 1199px) {
  .technology_intro p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .technology_intro p {
    font-size: 2rem;
  }
}

.technolgy_video {
  padding: 8rem 0;
  background-color: #D5CDC4;
}
.technolgy_video .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 4rem;
}
@media screen and (min-width: 1200px) {
  .technolgy_video .row {
    --bs-gutter-x: 6rem;
  }
}
.technolgy_video .section-content {
  font-size: 2rem;
  color: #527B70;
  font-family: "Enzo Offc";
  font-weight: 900;
}
@media screen and (min-width: 1400px) {
  .technolgy_video .section-content {
    font-size: 3rem;
  }
}
.technolgy_video .video-player {
  position: relative;
}
.technolgy_video .video-player img {
  min-height: 30rem;
  width: 100%;
  object-fit: cover;
}
.technolgy_video .video-player .btn-play {
  border: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.technolgy_video .video-player .btn-play svg {
  width: 4rem;
}
@media screen and (min-width: 992px) {
  .technolgy_video .video-player .btn-play svg {
    width: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .technolgy_video .video-player .btn-play svg {
    width: 10rem;
  }
}

.sustainability_intro {
  padding: 8rem 0;
}
.sustainability_intro .title {
  font-family: "Enzo Offc";
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 1400px) {
  .sustainability_intro .title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1900px) {
  .sustainability_intro .title {
    font-size: 2.8rem;
  }
}
.sustainability_intro p {
  font-size: 1.8rem;
  color: #210021;
}
@media screen and (max-width: 1199px) {
  .sustainability_intro p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .sustainability_intro p {
    font-size: 2rem;
  }
}
.sustainability_intro .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 4rem;
}
@media screen and (min-width: 1200px) {
  .sustainability_intro .row {
    --bs-gutter-x: 6rem;
  }
}
.sustainability_intro .video-player {
  position: relative;
}
.sustainability_intro .video-player img {
  min-height: 30rem;
  width: 100%;
  object-fit: cover;
}
.sustainability_intro .video-player .btn-play {
  border: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sustainability_intro .video-player .btn-play svg {
  width: 4rem;
}
@media screen and (min-width: 992px) {
  .sustainability_intro .video-player .btn-play svg {
    width: 6rem;
  }
}
@media screen and (min-width: 1400px) {
  .sustainability_intro .video-player .btn-play svg {
    width: 8rem;
  }
}

.sustainability_map {
  padding: 8rem 0;
  background-color: #D5CDC4;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sustainability_map .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}
@media screen and (min-width: 1200px) {
  .sustainability_map .row {
    --bs-gutter-x: 6rem;
  }
}
.sustainability_map .title {
  font-family: "Enzo Offc";
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 1400px) {
  .sustainability_map .title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1900px) {
  .sustainability_map .title {
    font-size: 2.8rem;
  }
}
.sustainability_map p {
  font-size: 1.8rem;
  color: #210021;
}
@media screen and (max-width: 1199px) {
  .sustainability_map p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1900px) {
  .sustainability_map p {
    font-size: 2rem;
  }
}

.Sustainability_facts {
  padding: 8rem 0;
}
.Sustainability_facts .section-title {
  font-family: "Enzo Offc";
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 3rem;
  color: #89805D;
}
@media screen and (min-width: 768px) {
  .Sustainability_facts .section-title {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .Sustainability_facts .section-title {
    font-size: 8rem;
  }
}
.Sustainability_facts .section-content ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .Sustainability_facts .section-content ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .Sustainability_facts .section-content ul {
    gap: 3rem 6rem;
  }
}
.Sustainability_facts .section-content ul li {
  display: flex;
  align-items: start;
  gap: 2rem;
  font-size: 1.6rem;
  color: #210021;
}
@media screen and (min-width: 1200px) {
  .Sustainability_facts .section-content ul li {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1400px) {
  .Sustainability_facts .section-content ul li {
    font-size: 2rem;
  }
}
.Sustainability_facts .section-content ul li img {
  width: 4rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1200px) {
  .Sustainability_facts .section-content ul li img {
    width: 5rem;
  }
}

/*# sourceMappingURL=style.css.map */
