:root {
    --heading-font: "Tenor Sans", sans-serif;
    --primary-font: 'Bevenida';
    --secondary-font: 'Circular Std Book';
    --primary-color: #c79e60;
    --secondary-color: #242424;
    --info-color: #ffffff;
    --text-color:#808080;
    --primary-font-size: 17px;
    --primary-transition-effect: all 0.35s ease-in-out;
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--primary-font-size);
}

body {
    font-family: var(--secondary-font);
    font-weight: 500;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}
.primary-color {
    color: var(--primary-color);
}
.container {
    max-width: 1430px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.primary-button {
    border: 1px solid #114b23;
    background: #114b23;
    padding: 10px 34px;
    display: inline-block;
    color: var(--info-color);
    line-height: 24px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.35s ease-in-out;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}
@media (max-width:480px) {
    .primary-button {
        font-size: 16px;
    }
}

.primary-button:hover,
.primary-button:focus {
    background: transparent;
    color: var(--secondary-color);
}
.site-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 30px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 90%);
}
.site-logo {
    display: block;
    width: 110px;
}

.header-button {
    color: var(--info-color);
    font-size: 18px;
    border: 1px solid var(--info-color);
    padding: 10px 30px;
    display: inline-block;
    letter-spacing: 1px;
    background: transparent;
}
.header-button:hover {
    background: var(--info-color);
    color: var(--secondary-color);
}

.site-banner {
    position: relative;
    overflow: hidden;
    background: #0c1315;
}
.site-banner video, .site-banner img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    position: absolute;
    top: 0px;
    left: 0;
}
.site-banner::before {
    content: "";
    display: block;
    padding-top: 47.5%;
}
/* .site-banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
} */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
}

.banner-content h1 {
    color: var(--info-color);
    font-size: 110px;
    font-family: var(--heading-font);
    font-weight: 400;
    margin-bottom: 15px;
    animation: fadeIn 3s ease-in-out forwards;
    opacity: 0;
    text-transform: uppercase;
}
.banner-content span {
    animation: fadeIn 3s ease-in-out forwards;
    opacity: 0;
    color: var(--info-color);
    font-size: 20px;
    letter-spacing: 7px;
    display: block;
    margin-bottom: 50px;
    font-family: var(--heading-font);
    position: relative;
    text-transform: uppercase;
}
/* .banner-content span:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: #ffffff;
} */
.banner-content p {
    animation: fadeIn 3s ease-in-out forwards;
    opacity: 0;
    color: var(--info-color);
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 0;
    font-family: var(--heading-font);
}
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .coming-soon {
    padding: 100px 0;
    text-align: center;
  }
  .coming-soon h2 {
    font-size: 60px;
    font-family: var(--heading-font);
    margin-bottom: 20px;
}
.coming-soon span {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 50px;
    display: block;
    position: relative;
}
.coming-soon span:before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #114b23;
}
.coming-soon p {
    margin: 0 auto;
    font-size: 18px;
    color: #808080;
    /*font-family: var(--heading-font);*/
    line-height: 34px;
    padding: 0 60px;
}

.explor-section {
    padding: 80px 0;
    /*background: url(../img/explor-bg.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}
.explor-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 81%);
}
.explor-section .container {
    position: relative;
    z-index: 1;
}

.explor-section span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 50px;
    display: block;
    position: relative;
}
.explor-section span:before {
    content: "";
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #114b23;
}
.explor-section h2 {
    font-size: 60px;
    font-family: var(--heading-font);
    margin-bottom: 60px;
}
.explor-section li {
    display: inline-block;
    vertical-align: top;
    width: 24%;
    padding: 50px 30px;
    background: #ffffff63;
    margin: 0 -2px;
}
.explor-section li + li {
    border-left: 1px solid #ebebeb;
}
.explor-section li:nth-child(5) {
    border-left: 0;
}
.explor-section li:nth-child(n+5) {
    border-top: 1px solid #ebebeb;
}
.explor-card h4 {
    font-size: 22px;
    font-family: var(--heading-font);
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.explor-card img {
    width: 50px;
    margin-bottom: 30px;
}
.about-section {
    padding-bottom: 80px;
}
.about-content span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
    display: block;
    position: relative;
}
.about-content span:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #114b23;
}
.about-content h2 {
    font-size: 60px;
    font-family: var(--heading-font);
    margin-bottom: 20px;
}
.about-content p {
    margin: 0;
    font-size: 18px;
    color: #808080;
    /*font-family: var(--heading-font);*/
    line-height: 34px;
}
.about-img {
    padding-right: 20px;
}

.about-img img {
    height: 600px;
    object-fit: cover;
}

.gallery-section {
    padding: 80px 0;
    background: #114b23;
}
.gallery-section span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
    display: block;
    position: relative;
    color: var(--info-color);
}
.gallery-section span:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--info-color);
}
.gallery-section h2 {
    font-size: 60px;
    font-family: var(--heading-font);
    margin-bottom: 0;
    color: var(--info-color);
}
.gallery-section p {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--info-color);
    /*font-family: var(--heading-font);*/
    line-height: 34px;
}
.gallery-section .col-md-4:nth-child(n + 4) {
    margin-top: 30px;
}
.gallery-img {
    overflow: hidden;
}
.gallery-img img {
    transition: all 0.8s ease-in-out;
}
.gallery-img:hover img {
    transform: scale(1.05);
}
.contact-section {
    padding: 80px 0;
}
.contact-section span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
}
.contact-section span:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    /* transform: translateX(-50%); */
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
}
.contact-section h2 {
    font-size: 50px;
    font-family: var(--heading-font);
    margin-bottom: 20px;
    line-height: 70px;
}
.contact-section p {
    margin-bottom: 30px;
    font-size: 18px;
    /*font-family: var(--heading-font);*/
    line-height: 34px;
    color: #808080;
}
.contact-map {
    position: relative;
}
.contact-map:before {
    content: "";
    display: block;
    padding-top: 78%;
}
.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.contact-section .form-control {
    outline: 0;
    box-shadow: none;
    border-radius: 0;
    border-color: #242424;
    padding: 10px 18px;
    font-size: 16px;
    font-family: var(--secondary-font);
    height: auto;
}
.site-footer {
    background: #114b23;
    padding: 80px 0 20px;
    text-align: center;
}
.footer-logo {
    display: inline-block;
    width: 160px;
}
.footer-contact {
    margin-top: 50px;
}
.footer-contact li {
    padding: 0 15px;
    line-height: 1;
}
.footer-contact li + li {
    border-left: 1px solid rgb(255 255 255 / 46%);
}
.footer-contact a {
    color: #fff;
    font-size: 16px;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}
.social-media {
    margin-top: 35px;
}
.social-media a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #ffffffba;
    border-radius: 40px;
    line-height: 48px;
}
.social-media a:hover {
    background: #fff;
}

.social-media a img {
    width: 21px;
}
.social-media li + li {
    margin-left: 20px;
}
.copyright {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--info-color);
    font-family: var(--heading-font);
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / 16%);
}
.neighbour-section {
    padding: 80px 0 0;
}
.neighbour-top-panel {
    text-align: center;
}
.neighbour-top-panel span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
}
.neighbour-top-panel span:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
}
.neighbour-top-panel h2 {
    font-size: 50px;
    font-family: var(--heading-font);
    margin-bottom: 50px;
    line-height: 70px;
}
.neighbour-content {
    background: #f5f5f5;
    padding: 20px;
}
.neighbour-img img {
    min-height: 310px;
    object-fit: cover;
}
.neighbour-card {
    /*text-align: center;*/
    padding: 10px;
}
.neighbour-card h4 {
    /*font-family: var(--heading-font);*/
    font-size: 20px;
    color: #808080;
}

.neighbour-card .distance {
    /* outline: 7px solid #00000024; */
    /* background: #000; */
    display: inline-block;
    color: #114b23;
    /* width: 65px; */
    /* height: 65px; */
    /* line-height: 65px; */
    text-align: center;
    border-radius: 50px;
    font-family: var(--heading-font);
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}
.neighbour-slider .slick-track {
    display: flex;
}
.neighbour-slider {
    overflow: hidden;
}
.social-li-nks {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 25px;
    width: 40px;
    animation: bounce2 2s ease infinite 1s;
}
.call-us {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 80px;
    width: 40px;
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}
.side-form {
    position: fixed;
    z-index: 999;
    width: 400px;
    top: 50%;
    right: 0;
    background: #fbfaf8;
    padding: 30px 40px 30px 30px;
    border-radius: 14px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    transform: translate(100%, -50%);
    transition: all 0.35s ease-in-out;
}
.side-form-btn {
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateX(-50%) rotate(-90deg);
}
.side-form.form-open {
    transform: translate(0%, -50%);
    right: -10px;
}
.side-form-btn .form-button {
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    padding: 10px 24px;
    display: inline-block;
    color: var(--info-color);
    line-height: 24px;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    font-weight: 600;
    box-shadow: 0 0 70px 20px rgba(255, 255, 255, 0.1);
}
.side-form h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.side-form .form-control {
    border-width: 0 0 1px 0;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
}

@media screen and (max-width: 420px) {
.coming-soon span {
    font-size: 14px;
   
    margin-bottom: 36px;
    
}
.coming-soon h2 {
    font-size: 30px;
    margin-bottom: 12px;
}
.about-img img {
    height: auto;
    object-fit: cover;
}
.coming-soon p {
    
    font-size: 17px;
    
    line-height: 29px;
    padding: 0 12px;
}
.about-content span {
    font-size: 16px;
    
    margin-bottom: 30px;
  
    margin-top: 30px;
}
.about-content h2 {
    font-size: 30px;
    
    margin-bottom: 15px;
}
.about-content p {
  
    line-height: 31px;
}
.explor-section li {
  
    width: 49%;
    padding: 25px 10px;
    
    margin: 0px;
}
.explor-card h4 {
    font-size: 15px;
    font-family: var(--primary-font);
    margin-bottom: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}
.explor-card img {
    width: 50px;
    margin-bottom: 21px;
}

.gallery-section span {
  
    margin-bottom: 30px;
  
}
.gallery-section h2 {
    font-size: 36px;
    
    margin-bottom: 12px;
    
}
.gallery-section p {
    margin-bottom: 10px;
    font-size: 17px;
    
    line-height: 31px;
}
.gallery-section .col-md-4:nth-child(n + 4) {
    margin-top: 0px;
}
.gallery-img {
    
    padding: 10px 0;
}
.neighbour-top-panel span {
    font-size: 16px;
    
    margin-bottom: 38px;
    
}
.neighbour-top-panel h2 {
    font-size: 30px;
    margin-bottom: 8px;
    line-height: 44px;
}
.neighbour-card h4 {
    font-family: var(--heading-font);
    font-size: 14px;
}
.contact-map {
    text-align: center;
}
.contact-map img {
    max-width: 100%;
}
.explor-section h2 {
    font-size: 26px;
    font-family: var(--heading-font);
    margin-bottom: 30px;
}
.contact-section h2 {
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 40px;
}
.contact-section {
   
    text-align: center;
}

.site-header {
    position: static;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 10px;
    background: black;
    overflow: hidden;
}
.site-banner::before {
    content: "";
    display: block;
    
}
.explor-section span {
    font-size: 14px;
   
    margin-bottom: 45px;
   
}
.pl-5, .px-5 {
    padding-left: 0rem!important;
}
.pr-5, .px-5 {
     padding-right: 0rem!important; 
}
.header-button {
    
    font-size: 15px;
   
    padding: 6px 30px;
    
}
.coming-soon {
    padding: 50px 0;
    text-align: left;
   
}
.contact-section span {
    font-size: 16px;
   
    margin-bottom: 45px;
    
    margin-top: 30px;
}
.explor-section {
    padding: 60px 0;
    
}
.footer-contact li {
    padding: 4px 28px;
    line-height: 1;
    width: 100%;
}
.footer-contact a {
    
    
    line-height: 23px;
}
.footer-contact ul {
    flex-wrap: wrap;
}
.footer-contact ul {
    flex-wrap: wrap;
}
.contact-section span {
    font-size: 14px;
   
    margin-bottom: 36px;
   
}
.contact-section h2 {
    font-size: 30px;
  
    line-height: 38px;
}
.contact-section p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 26px;
}
.contact-section .form-control {
    
    font-size: 14px;
 
}
.primary-button {
    
    padding: 5px 24px;
   
    line-height: 24px;
    
    font-size: 14px;
   
}
.contact-section span:before {
    
    top: 29px;
    left: 34px;
    
}
.side-form-btn {
   
    left: -16px;
    top: 30%;
  
}
.footer-contact li + li {
    border-left: none;
    /* display: none; */
}
.coming-soon span:before {
    content: "";
    position: absolute;
    top: 60px;
    left: 29px;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #114b23;
}
}
@media (min-width: 420px) and (max-width:620px) {

.explor-section li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 50px 30px;
    background: #ffffff63;
    margin: 0 -2px;
}
.site-header {
    position: static;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 10px;
    background: black;
    overflow: hidden;
}
}
@media (min-width: 420px) and (max-width: 992px) {
   .site-header {
    position: static;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 10px;
    background: black;
}
.coming-soon {
    padding: 50px 0;
    text-align: left;
   
}
.coming-soon span:before {
   
    left: 29px;
    
}
.footer-contact ul {
    flex-wrap: wrap;
}
.coming-soon span {
    font-size: 18px;
    /* margin-bottom: 36px; */
}
.coming-soon h2 {
    font-size: 37px;
    margin-bottom: 12px;
}
.about-img img {
    height: auto;
    object-fit: cover;
}
.coming-soon p {
    
    font-size: 17px;
    
    line-height: 29px;
    padding: 0 12px;
}
.about-content span {
    font-size: 16px;
    
    margin-bottom: 30px;
  
    margin-top: 30px;
}
.about-content h2 {
    font-size: 30px;
    
    margin-bottom: 15px;
}
.about-content p {
  
    line-height: 31px;
}
.explor-section li {
  
    width: 49%;
    padding: 25px 10px;
    
    margin: 0px;
}
.explor-card h4 {
    font-size: 15px;
    font-family: var(--primary-font);
    margin-bottom: 2px;
    font-weight: 600;
    letter-spacing: 1px;
}
.explor-card img {
    width: 63px;
    margin-bottom: 21px;
}
.explor-section li {
   
    width: 49%;
    padding: 25px 10px;
   
}
.gallery-section span {
  
    margin-bottom: 30px;
  
}
.gallery-section h2 {
    font-size: 36px;
    
    margin-bottom: 12px;
    
}
.gallery-section p {
    margin-bottom: 10px;
    font-size: 17px;
    
    line-height: 31px;
}
.gallery-section .col-md-4:nth-child(n + 4) {
    margin-top: 0px;
}
.gallery-img {
    
    padding: 10px 0;
}
.neighbour-top-panel span {
    font-size: 16px;
    
    margin-bottom: 38px;
    
}
.neighbour-top-panel h2 {
    font-size: 35px;
   
    margin-bottom: 8px;
    line-height: 44px;
}
.neighbour-card h4 {
    font-family: var(--heading-font);
    font-size: 14px;
}
.contact-map {
    text-align: center;
}
.contact-map img {
    max-width: 100%;
}
.explor-section h2 {
    font-size: 40px;
    font-family: var(--heading-font);
    margin-bottom: 30px;
}
.contact-section h2 {
    font-size: 36px;
    
    margin-bottom: 18px;
    line-height: 45px;
}
.contact-section {
   
    text-align: center;
}

.site-header {
    position: static;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 15px;
    background: black;
}
.site-banner::before {
    content: "";
    display: block;
    padding-top: 0%;
}
.site-banner video, .site-banner img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    position: relative;
    top: 0;
    left: 0;
}
.pl-5, .px-5 {
    padding-left: 0rem!important;
}
.pr-5, .px-5 {
     padding-right: 0rem!important; 
}
.site-logo {
    
    width: 74px;
}
.coming-soon {
    padding: 80px 0;
    
}

.site-footer {
       padding: 28px;
   
}
.explor-section li {
  
    width: 40%;
    padding: 34px 20px;
 
}

.footer-contact li {
    padding: 8px 15px;
    line-height: 1;
    width: 100%;
}
.footer-contact li + li {
    border-left: none;
    /* display: none; */
}
.gallery-section h2 {
    font-size: 45px;
    
}
.contact-section span {
    font-size: 14px;
    margin-bottom: 36px;
}
.contact-section h2 {
    font-size: 33px;
    line-height: 42px;
}
.contact-section p {
    margin-bottom: 30px;
    font-size: 16px;
   
    line-height: 26px;
}
.contact-section .form-control {
    
    font-size: 14px;
 
}
.primary-button {
    
    padding: 5px 24px;
   
    line-height: 24px;
    
    font-size: 14px;
   
}
}

