@font-face {
    font-family: 'Baskerville';
    src: url('../fonts/Baskerville.eot');
    src: url('../fonts/Baskerville.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Baskerville.woff2') format('woff2'),
        url('../fonts/Baskerville.woff') format('woff'),
        url('../fonts/Baskerville.svg#Baskerville') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root{
  --primaryColor: #29351d;
  --secondaryColor: #afb770;
  --greenKelp: #3b4f29;
  --baked: #40562D;
  --nightShadz: #a93258;
  --silverLining: #eef1ed;
  --darkGrey: #404041;
  --black:#000000;
  --white:#ffffff;

  --primaryFont: "Poppins", sans-serif;
  --titleFont:  "Baskerville";
}

* {
    margin:0; 
    padding:0;
}
html{
    overflow-x: hidden;
    scrollbar-color: var(--primaryColor) var(--silverLining);
    scrollbar-width: thin;
}
body{
    background-color: var(--silverLining);
    font-family: var(--primaryFont);
    font-size: 17px;
    font-weight: normal;
    margin:0;
    padding: 0;
}
a,
button{
    font-family: var(--primaryFont);
    outline:none !important; 
    text-decoration:none; 
    box-shadow:none; 
    transition:all 0.5s ease-in-out;
}
a:hover,
a:focus,
select:focus,
button:focus,
.btn:focus,
.btn.focus {
    outline:none;
    text-decoration:none;
    box-shadow:none;
}
img {
    display: block;
    object-fit: cover;
    max-width:100%;
}
ul{
    margin: 0;
    padding: 0;
}
li{
    list-style:none;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    outline:none !important;
}
input,
select,
textarea,
button{ 
    outline:none !important;
    box-shadow:none;
}
p{
    padding: 0;
}
.heading{
    color: var(--primaryColor);
    font-family: var(--titleFont);
    font-size: 66px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}
.btn-primary{
    background-color: transparent;
    border: 1px solid var(--baked);
    border-radius: 0;
    color: var(--primaryColor);
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    max-width: max-content;
    padding: 16px 40px;
    text-transform: uppercase;
    width: 100%;
}
.btn-primary:hover,
.btn-primary:focus{
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
}


/* Hero CSS Start */

.hero{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 30%;
    position: relative;
    min-height: 1080px;
}
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 100px 0 0;
}
.hero-subheading{
    color: var(--primaryColor);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
}
.logo a{
    display: block;
}
.logo a img{
    height: 146px;
    max-height: 146px;
}

/* Hero CSS End */

/* Retail CSS Start */

.retail{
    margin: 0 0 40px;
}
.retail-box{
    background-color: var(--greenKelp);
    max-width: 1080px;
    margin: -120px auto 0;
    padding: 0 40px 40px;
}
.retail-box-icon{
    transform: translateY(-36px);
}
.retail-box-icon img{
    max-height: 58px;
    max-width: 58px;
    margin: 0 auto;
}
.retail-box-heading{
    color: var(--silverLining);
    font-family: var(--titleFont);
    font-size: 49px;
    font-weight: 400;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}
.btn-retail-box{
    color: var(--secondaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    max-width: max-content;
    margin: 0 auto;
    text-transform: uppercase;
    width: 100%;
}
.btn-retail-box:hover,
.btn-retail-box:focus{
    color: var(--silverLining);
}
.btn-retail-box:hover svg polygon,
.btn-retail-box:focus svg polygon{
    fill: var(--silverLining);
}
.btn-retail-box svg{
    height: 15px;
}
.btn-retail-box svg polygon{
    transition: all 0.5s ease-in-out;
}
.btn-retail-box span{
    white-space: nowrap;
}

/* Retail CSS End */

/* About Us CSS Start */

.about-us{
    display: flex;
    align-items: center;
    margin: 40px 0 100px;
}
.about-us-left{
    padding: 0 12px;
    width: 50%;
}
.about-us-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 592px;
    margin: 0 0 0 auto;
    padding: 0 66px 0 12px;
}
.about-us-content p{
    color: var(--darkGrey);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    max-width: 482px;
}
.about-us-content > *:last-child{
    margin-bottom: 0;
}
.about-us-right{
    padding: 0 0 0 12px;
    width: 50%;
}
.about-us-img{
    padding: 0 0 0 10px;
}
.about-us-img img{
    width: 100%;
}

/* About Us CSS End */

/* Spot CSS Start */

.spot .about-us-right{
    padding: 0 12px 0 0;
}
.spot .about-us-img{
    padding: 0 10px 0 0;
}
.spot .about-us-left{
    padding: 0 12px;
}
.spot .about-us-content{
    margin: 0 auto 0 0;
    padding: 0 12px 0 66px;
}
.spot .about-us-content p{
    max-width: 501px;
}

/* Spot CSS End */

/* Opportunities CSS Start */

.opportunities{
    background-color: var(--secondaryColor);
    background-image: url(../images/opportunities-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 40px 0 60px;
    padding: 80px 0;
    position: relative;
}
.opportunities::after{
    background-image: url(../images/logo-stamp.svg);
    background-size: 240px 240px;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    position: absolute;
    top: -140px;
    right: 60px;
    height: 240px;
    width: 240px;
}
.opportunities-title{
    margin: 0 0 10px;
}
.opportunities-copy{
    max-width: 528px;
}
.opportunities-copy p{
    color: var(--primaryColor);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    margin: 0 0 20px;
}
.opportunities-copy > *:last-child{
    margin: 0;
}
.leasing{
    border-left: 1px solid var(--primaryColor);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding: 0 0 0 75px;
}
.leasing-heading{
    color: var(--primaryColor);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    max-width: 230px;
    text-transform: uppercase;
}
.leasing-btn{
    color: var(--nightShadz);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 2px;
    max-width: max-content;
    text-transform: capitalize;
    width: 100%;
}
.leasing-btn:hover,
.leasing-btn:focus{
    color: var(--primaryColor);
}
.leasing-btn svg{
    height: 16px;
}
.leasing-btn:hover svg polygon,
.leasing-btn:focus svg polygon{
    fill: var(--primaryColor);
}
.leasing-btn svg polygon{
    transition: all 0.5s ease-in-out;
}
.leasing-btn span{
    white-space: nowrap;
}

/* Opportunities CSS End */

/* Activations CSS Start */

.activations{
    display: flex;
    align-items: center;
    margin: 60px 0 30px;
}
.activations-left{
    padding: 0 10px 0 0;
    width: 50%;
}
.activations-slider .slick-track{
    display: flex;
}
.activations-slide{
    height: auto;
    padding: 0 8px;
}
.activations-slide-img{
    height: 100%;
}
.activations-slide-img img{
    min-height: 520px;
    height: 100%;
}
.activations-right{
    padding: 0 0 0 100px;
    width: 50%;
}
.activationscon-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 592px;
    margin: 0 auto 0 0;
    padding: 0 24px 0 0;
}
.activationscon-content p{
    color: var(--primaryColor);
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    max-width: 480px;
}
.activationscon-subheading{
    color: var(--primaryColor);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 2px;
    max-width: 390px;
    text-transform: uppercase;
}

/* Activations CSS End */

/* Discover CSS End */

.discover{
    margin: 30px 0 80px;
}
.discover-content{
    background-image: url(../images/discoverbg-icon.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    max-width: 810px;
    margin: 0 auto;
    padding: 160px 0 65px 0;
}
.discover-heading{
    color: var(--primaryColor);
    font-size: 37px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 4px;
    text-align: center;
}
.discover-content p{
    color: var(--primaryColor);
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    margin: 0;
    text-align: center;
}

/* Discover CSS End */

/* Footer CSS Start */

.footer-wrapper{
    background-color: var(--primaryColor);
    padding: 86px 0 70px;
}
.footer{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 56px;
}
.footer-logo img{
    height: 120px;
}
.footer-contact-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-contact ul{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.footer-contact ul li{
    color: var(--silverLining);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1px;
    list-style: none;
    text-transform: uppercase;
    text-align: center;
}
.footer-contact ul li a{
    color: var(--silverLining);
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    list-style: none;
    text-transform: uppercase;
}
.footer-contact .footer-contact-btn{
    border-bottom: 1px solid var(--secondaryColor);
    color: var(--secondaryColor);
    padding: 0 0 5px;
}
.footer-contact .footer-contact-btn:hover,
.footer-contact .footer-contact-btn:focus{
    border-color: var(--silverLining);
    color: var(--silverLining);
}
.footer-social-heading{
    color: var(--silverLining);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    list-style: none;
    text-transform: uppercase;
    text-align: center;
}
.footer-social{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
.footer-social ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-social ul li{
    list-style: none;
}
.footer-social ul li a{
    border-bottom: 1px solid var(--secondaryColor);
    color: var(--secondaryColor);
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 0 5px;
}
.footer-social ul li a:hover,
.footer-social ul li a:focus{
    border-color: var(--silverLining);
    color: var(--silverLining);
}

/* Footer CSS End */

/* Get In Touch Start */

.getintouch{
    margin: 0 0 123px;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.getintouch::after{
    background-image: url(../images/form-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    max-height: 952px;
    width: 100%;
    z-index: -1;
}
.getintouch-row{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.getintouch-title{
    max-width: 812px;
    margin: 0 auto;
    text-align: center;
}
.getintouch-title .heading{
    color: var(--primaryColor);
    font-family: var(--titleFont);
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 20px;
}
.getintouch-copy{
    color: var(--darkGrey);
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}
.getintouch-form{
    background-color: var(--white);
    margin: 0 auto;
    max-width: 782px;
    padding: 60px 100px;
    position: relative;
    width: 100%;
}
.getintouch-form::after{
    background-image: url(../images/logo-stamp.svg);
    background-repeat: no-repeat;
    background-size: 245px 245px;
    content: "";
    position: absolute;
    top: 96%;
    left: -60px;
    height: 245px;
    width: 245px;
    z-index: 1;
}
.getintouch-form .form-group{
    margin: 0 0 26px;
}
.getintouch-form label{
    color: var(--baked);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 18px;
    text-transform: uppercase;
}
.getintouch-form label span{
    font-weight: 400;
}
.getintouch-form .form-control,
.getintouch-form .form-select{
    background-color: var(--white);
    border: 1px solid var(--primaryColor);
    border-radius: 0;
    color: var(--baked);
    font-family: var(--primaryFont);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    height: 55px;
}
.getintouch-form .form-control:focus,
.getintouch-form .form-select:focus,
.getintouch-form .form-check-input:focus{
    box-shadow: none;
}
.getintouch-form textarea.form-control{
    height: 228px;
    resize: none;
}
.getintouch-form form.wpcf7-form .form-group .wpcf7-checkbox .wpcf7-list-item-label,
.getintouch-form .form-check-label{
    color: var(--darkGrey);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
    margin: 3px 0 0;
    text-transform: none;
}
.getintouch-form .form-group input[type="checkbox"],
.getintouch-form .form-check-input{
    border: 1px solid var(--primaryColor);
    border-radius: 0;
    height: 26px;
    margin: 0 20px 0 0;
    width: 26px;
}
.getintouch-form .form-group input:checked,
.getintouch-form .form-check-input:checked{
    accent-color:var(--secondaryColor);
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
}
.getintouch-form .getintouch-btn{
    background-color: transparent;
    background-image: url(../images/btn-arrow-right.svg);
    background-size: 8px 16px;
    background-position: center left;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 0;
    color: var(--baked);
    font-family: var(--primaryFont);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 4px 4px 4px 18px;
    text-transform: uppercase;
}
.getintouch-form .getintouch-btn:hover,
.getintouch-form .getintouch-btn:focus{
    background-color: transparent !important;
}
.form-group-btn{
    padding: 0 16px 0 0;
    text-align: right;
}
.getintouch-form form.invalid .form-control.wpcf7-not-valid{
    border-color:#dc3232;
}
.getintouch-form form .wpcf7-not-valid-tip{
    display:none;
}
.getintouch-form form.wpcf7-form .wpcf7-response-output{
    border:none;
    padding:0;
    margin-left:0;
    margin-right:0;
}
.getintouch-form form.wpcf7-form.invalid .wpcf7-response-output{
    color:#dc3232;
}
.getintouch-form form.sent .wpcf7-response-output {
    color: #46b450; /* Green */
}
.getintouch-form form.wpcf7-form .form-group p,
.getintouch-form form.wpcf7-form .form-group-btn p{
    margin:0px;
}
.getintouch-form form.wpcf7-form .form-group p span{
    color: inherit;
}
.getintouch-form .form-group .wpcf7-checkbox .wpcf7-list-item,
.getintouch-form .form-group .wpcf7-checkbox .wpcf7-list-item label{
    margin:0;
}
.getintouch-form .form-group .wpcf7-checkbox .wpcf7-list-item label{
    display:flex;
    align-items: center;
    justify-content: flex-start;
}
.getintouch-form .form-group .wpcf7-checkbox.wpcf7-not-valid input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid red;
}
/* Get In Touch End */



/* Image section */ 
.center-image-sec {
    position: relative;
    padding: 60px 0 0;
}

.center-image-main img {
    max-width: 400px;
    width: 100%;
}

.center-image-main {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}