
.container {
    max-width: 1500px !important; /* Override Bootstrap's default max-width */
}

body {
    font-family: "Epilogue", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    margin: 0;
    padding: 0;
    background: #242520;
    /*background: url('../images/background-overlay.png') #242520 no-repeat top left /  100% auto;*/

}
body.sub {
    background: #F5F5F5 !important;
}
strong{
    font-weight: 700;
}
a {
    color: #E0A980 !important;
    text-decoration: none;
}
a.dark {
    color: #242520 !important;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: #D4A86D !important; /* Adjust hover color as needed */
    text-decoration: none;
}
h1 {
    font-size: 80px !important;
    line-height: 1 !important;
}

h2 {
    font-size: 14px;
    color: #242520;
    text-transform: uppercase;
    list-style: none;
    position: relative;
    padding-left: 30px;
    letter-spacing: 4px;
}


.form-control {
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    padding: 25px 35px 20px;
    font-size: 18px;
    color: #242520;
    font-weight: 400;
    background: transparent;
    /*height: 50px;*/
    margin-bottom: 20px;

}
.btn-primary {
    background: #D4A86D;
    border: 0;
    border-radius: 10px;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
}

.about h2{
    color: #fff;
}

h2::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url('../images/bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
h3 {
    font-size: 36px;
    color: #242520;
    font-weight: 400;
    margin: 45px 0 30px;
}
h3 span {
    color: #D4A86D;
}
h4 {
    font-size: 22px !important;
    color: #242520;
    font-weight: 700;
    margin: 0px 0 30px;
}
p {
    font-size: 17px;
    font-weight: 300;
    color: #242520;
    line-height: 1.5;
}
.alert-success {
    background: #EEEAE3;
    border: 0;
    color: #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(255, 255, 255, 0.2);
}

.alert-danger {

    background: #ffd5d5;
    border: 0;
    /*color: #000;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(255, 255, 255, 0.2);
}

.about h3,
.about p {
    color: #fff;
}



.download-link {
    margin-top: 100px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #D4A86D !important;
    text-decoration: none;
    font-weight: 600;
    gap: 20px; /* Adds spacing between text and icon */
    position: relative; /* To control the image inside */
}

.download-link::after {
    content: '';
    display: inline-block;
    width: 17px; /* Set icon size */
    height: 20px;
    background-image: url('../images/download.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.download-link:hover {
    color: #fff !important;
}

.download-link:hover::after {
    filter: brightness(0) invert(1); /* Makes the image white */
}

.gold {
    position: fixed;
    top: 0;
    /*right: 0;*/
    left: 0;
    width: 100%;
    z-index: -2;
}
.gold img {
    width: 100%;
}
.full-width-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 325px; /* Adjust the height as needed */
    background: linear-gradient(0deg, #242520, #24252000); /* Example gradient */
    z-index: -1;
}

/* Background overlay image at top-left */
.background-overlay {
    position: absolute;
    top: -10%;
    left: -20%;
    width: 80%;
    z-index: 10; /* Ensure it's on top of other content */
}

/* Ensure parent div has position relative */
.container-fluid.main {
    position: relative;
    overflow: hidden; /* Prevent background elements from spilling outside */
}



.logo {
    height: 50px;
    margin: 20px 0;
}
.sm-txt {
    font-size: 20px;
    margin-bottom: 13px;
}


.navbar-toggler {
    background-image: url('../images/menu.svg'); /* Set custom burger icon */
    background-size: contain; /* Make sure the icon scales properly */
    background-repeat: no-repeat;
    background-color: transparent; /* Remove default button color */
    border: none; /* Remove border around the burger menu */
    width: 40px; /* Adjust width as needed */
    height: 40px; /* Adjust height as needed */
}
.navbar-toggler.close-menu {
    background-image: url('../images/close.svg') !important; /* Set custom burger icon */
}
.sub .navbar-toggler {
    background-image: url('../images/menu-dark.svg');
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none; /* Remove focus outline */
    box-shadow: none; /* Remove focus box shadow */
}




.navbar {
    z-index: 100;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 17px !important;
    margin-left: 50px;
    font-weight: 500;
    text-decoration: none;

}

body.sub .navbar-nav .nav-link {
    color: #242520 !important;
}

.navbar-nav .nav-link:hover {
    color: #D4A86D !important;
    text-decoration: none;
}

.nav-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.main {
    height: calc(100vh);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.slogan {
    padding-bottom: 80px;
    font-size: 80px;
    color: #fff;
}
.slogan h1 span {
    display: block;
    color: #D4A86D;
}
.about-section {
    background: #242520;
    padding-top: 340px;
}
.about {

    position: relative;
    background: #242520;
}

.about-left-img {
    position: absolute;
    bottom: 40%;
    left: 0;
    width: 80%;
    z-index: 1;
}
.about-left-img img {
    height: 613px;
    object-fit: cover;
    border-radius: 6px;
}
.about-right-img {
    margin-top: 150px;
    margin-bottom: 180px;
}

.about-right-img img {
    height: 630px;
    object-fit: cover;
    border-radius: 6px;
}

/**/
.services-section {
    background: #F5F5F5;
    padding-top: 115px;
    padding-bottom: 115px;
}
.services {
    content-visibility: auto; /* Forces it to evaluate all children */

}
.services .service-title,
.services .links ul {
    font-size: 35px;
    color: #242520;
    list-style: none;
    padding: 0;
    margin: 0px 0 70px;
}
.services .links ul li {
    opacity: 0.5;
    transition: opacity 0.6s ease-in-out;
    cursor: pointer;
}

.services .links ul li.active {
    opacity: 1;
}

.services .links ul li:not(:last-child) {
    margin-bottom: 50px; /* Adds 50px space between list items except the last one */
}


.services .text {
    font-size: 17px;
    font-weight: 300;
    color: #242520;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.text.active {
    opacity: 1;
    display: block;
}

/* Card Stack Styles */
.image-container {
    position: relative;
    height: 70vh;
    width: 90%;
    overflow: hidden;
}

.image-container .image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    transform-origin: center;
    z-index: 1;
    transform: scale(0.85) translateY(20px); /* Slight downward position for stacking effect */
    opacity: 0;
}

/* Active image on top */
.image.active {
    /*z-index: 3;*/
    transform: scale(1) translate(0, 0) rotate(0deg);
    opacity: 1;
}

/* Swiping out to bottom-right */
.image.swipe-out {
    /*z-index: 2;*/
    transform: scale(0.8) translate(150%, 150%) rotate(40deg); /* Swipe to bottom-right */
    /*opacity: 0;*/
    pointer-events: none;
}

/*sustainability-section*/
.sustainability-section {
    background: #EEEAE3;
    padding-top: 115px;
    padding-bottom: 0;
}

.sustainability-img {
    height: 630px;
    object-fit: cover;
    border-radius: 6px;
}

.sustainability-section .content {
    padding-left: 150px;
}


.sustainability-section ul {
    list-style: none; /* Remove default bullet */
    padding: 0;
    margin: 35px 0 0;
}

.sustainability-section li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0; /* Space between list items */
    padding-left: 30px; /* Adjust spacing for the bullet */
    line-height: 22px;
}
.sustainability-section li:not(:last-child) {
    margin-bottom: 20px; /* Adds 50px space between list items except the last one */
}

.sustainability-section li::before {
    content: "◆"; /* Black diamond bullet */
    position: absolute;
    left: 0;
    font-size: 18px;
    color: #242520; /* Black color for the diamond */
}

/*compliance-section*/
.compliance-section {
    background: #EEEAE3;
    padding-top: 115px;
    padding-bottom: 115px;
}

.download-links {
    margin-top: 60px;
    display: flex;
    gap: 20px; /* Space between each link */
}


.download-box {
    flex: 1;
    height: 400px;
    padding: 45px;
    color: #242520 !important;
    font-size: 22px;
    font-weight: 400;
    /*width: 30%;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: background-color 0.3s ease;
    margin: 0 5px;
    border-radius: 6px;
    border: 1px #24252033 solid;
}

.download-box:hover {
    background-color: white;
}

.download-text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #D4A86D !important;
    text-decoration: none;
    font-weight: 600;
    gap: 20px; /* Adds spacing between text and icon */
    position: relative; /* To control the image inside */
}


.download-text::after {
    content: '';
    display: inline-block;
    width: 17px; /* Set icon size */
    height: 20px;
    background-image: url('../images/download.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/*accreditations-section*/
.accreditations-section{
    background: #F5F5F5;
    padding-top: 115px;
    padding-bottom: 0;
}
.accreditations {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 115px;
}

.accreditations-logos {
    margin-top: 60px;
}

.accreditation-logo {
    max-width: 150px;
    margin: 10px;
    height: auto;
    display: block;
}

/*contact-section*/
.contact-section {
    background: #F5F5F5;
    padding-top: 115px;
}
.contact-info,
.contact-form {
    margin-top: 75px;
}

/*footer-section*/
.footer-section{
    background: #F5F5F5;
    padding: 60px 0 75px;
    font-size: 13px;
}
.footer-section p,
.footer-section a {
    color: #242520 !important;
    font-size: 13px;
}
.linkedin{
    margin-bottom: 45px;
}

/*Sub*/
.sub h1 {
    font-weight: 400;
    font-size: 80px;
    margin-bottom: 100px;
}
.sub p {
    margin: 15px 0 00px;
    font-size: 16px;
}
.sub .footer-section p, .sub .footer-section a {

    font-size: 13px;
}

.sub h2 {
    font-weight: 400;
    font-size: 32px;
    text-transform: capitalize;
    padding-left: 0;
    margin-top: 40px;
    letter-spacing: 0;
}

.sub h2::before {
    content: '';
    display: none;
    width: 14px;
    height: 14px;
    background-image: url('../images/bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

p.date {
    margin-bottom: 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.sub .content ul {
    margin-top: 0 !important;
}
.sub .content li {
    /*margin: 0;*/
    margin-bottom: 0 !important;
    font-weight: 300;
    font-size: 16px;
    padding-left: 10px;
}
.sub .content li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 16px;
    color: #242520;
}
.sub .sustainability-section {
    padding-bottom: 250px;
    background: #F5F5F5;
}
.sub .footer-section{
    background: #FFFFFF;
}
/*
Animation
*/
[data-emergence=hidden] {
    opacity: 0;
    transform: translate3d(0, 70px, 0);
    transition: opacity .6s ease-in, transform .6s cubic-bezier(0, .55, .45, 1);
    transition-delay: .15s
}
@media only screen and (min-width:1024px) {
    [data-emergence=hidden] {
        transform: translate3d(0, 100px, 0)
    }
}
[data-emergence=visible] {
    opacity: 1;
    transform: translateZ(0);
    transition: opacity .6s ease-in, transform .6s cubic-bezier(0, .55, .45, 1);
    transition-delay: .15s
}

.delay-1[data-emergence=visible] {
    transition-delay: .30s
}
.delay-2[data-emergence=visible] {
    transition-delay: .60s
}

.zoom-anim[data-emergence=hidden] {
    transform: scale(1)
}

@media (max-width: 1199.98px) {

    h1 {
        font-size: 60px !important;
    }
    .gold {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 150%;
        z-index: -2;
    }
    .gold img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
    .about-left-img {
        width: 95%;
        bottom: 50%;
    }
    .download-box {
        padding: 25px;
        font-size: 20px;
    }


}
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(36, 37, 32, 0.89); /* Customize the background */
        z-index: 999; /* Ensure it appears above other elements */
        display: flex;
        flex-direction: column;
        justify-content: center !important; /* Center menu items vertically */
        align-items: center; /* Center menu items horizontally */
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .navbar-collapse.show {
        transform: translateY(0); /* Slide in when open */
    }

    .navbar-collapse .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-collapse .navbar-nav .nav-item {
        margin-bottom: 1.5rem; /* Space between menu items */
    }

    .navbar-collapse .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
        z-index: 1000;
    }
    .navbar-nav .nav-link {
        font-size: 25px !important;
    }
    body.sub .navbar-nav .nav-link {
        color: #FFFFFF !important;
    }
    .navbar-nav .nav-link {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    body {
        /*background: url('../images/background-mobile.jpg') #494949 no-repeat center left !important;*/
        /*overflow: hidden;*/
        background-size: cover !important;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .logo {
        height: 45px;
    }

    .slogan {
        padding-bottom: 30%;
        font-size: 50px;
    }

    .gold {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 150%;
        z-index: -2;
    }
    .gold img {
        width: auto;
        object-fit: cover;
        height: 100%;
    }

    /*.main {*/
    /*    padding: 30px 30px 60px;*/
    /*}*/

    h1 {
        font-size: 50px !important;
    }
    h2 {
        font-size: 14px !important;
    }
    .sub h2 {
        font-size: 24px !important;
    }
    h3 {
        font-size: 30px !important;
    }
    p{
        font-size: 17px !important;
    }
    .logo {
        max-width: 200px;
    }
    .sm-txt {
        font-size: 18px;
    }

    .footer {
        font-size: 14px;
    }

    .main {
        min-height: 100vh;
    }


    /*.row:nth-child(2) {*/
    /*    margin-top: 80px; !* Adds 100px space between first and second row *!*/
    /*}*/

    .footer {
        margin-top: auto; /* Keeps the footer at the bottom */
    }


    .about-left-img {
        position: unset;
        width: 100%;
        margin-bottom: 50px;
    }
    .about-left-img img {
        height: 400px;
        width: 100%;
    }

    .about-section {
        padding-top: 100px;
    }
    .about-left-img img {
        height: 390px;
        width: 100%;
    }
    .about-right-img {
        margin-top: 90px;
        margin-bottom: 100px;
    }
    .about-right-img img {
        height: 260px;
        width: 100%;
    }

    .services .service-title, .services .links ul {
        font-size: 30px;
        margin: 55px 0 20px;
    }
    .sustainability-section {
        padding-top: 0;
    }
    .sub .sustainability-section {
        padding-top: 80px;
    }
    .sustainability-section .content {
        padding-left: 0px;
    }
    .sustainability-section li::before {
        font-size: 14px;
    }
    .sustainability-img-container{
        margin-left: -24px;
        margin-right: -24px;
        margin-bottom: 50px;
    }


    .sustainability-img {
        height: 290px;
        width: 100%;
        border-radius: 0;
    }

    .download-box {
        flex: unset;
        font-size: 18px;
    }

    .footer-section p {
        font-size: 13px !important;
    }
}
@media (max-width: 575.98px) {

}

