﻿:root {
    --clr-text-dark: #353535;
}

.home-hero-cta {
    /*width: 150px;*/
    height: 63px;
    min-width: 180px;
    gap: 4px;
    opacity: 1;
    border-radius: 20px;
    border-width: 2px;
    padding: 12px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    background: var(--clr-bg-white);
    text-align: left;
}

.home-hero-cta-img {
    /*width: 150px;*/
    height: 63px;
    min-width: 200px;
    gap: 16px;
    opacity: 1;
    border-radius: 20px;
    border-width: 2px;
    padding: 12px 16px 12px 16px;
    display: inline-flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    background: var(--clr-bg-white);
    align-items: center;
}

.home-hero-cta-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    color: var(--clr-text-accent);
    display: block;
    width: 100%;
    align-items: center;
}

.home-hero-cta-logo {
    height: 40px;
    width: auto;
}

.home-hero-cta-learnmore {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    display: inline-block;
    color: var(--clr-text-dark);
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
}

    .home-hero-cta-learnmore svg {
        width: 16px;
        height: 16px;
    }

.home-hero-cta:hover > span {
    color: var(--clr-text-white);
}

.home-hero-cta-img:hover > span {
    color: var(--clr-text-white);
}

.home-hero-cta:hover > svg {
    color: var(--clr-text-white);
}

.home-hero-cta-img:hover > svg {
    color: var(--clr-text-white);
}

.home-hero-cta > span {
    transition: color 0.4s ease-in-out;
}

    .home-hero-cta > span > svg > path {
        fill: var(--clr-text-dark) !important;
        transition: fill 0.4s ease-in-out;
    }

.home-hero-cta-img > span {
    transition: color 0.4s ease-in-out;
}

    .home-hero-cta-img > span > svg > path {
        fill: var(--clr-text-dark) !important;
        transition: fill 0.4s ease-in-out;
    }

.home-hero-cta:hover > span > svg > path {
    fill: var(--clr-text-white) !important;
}

.home-hero-cta-img:hover > span > svg > path {
    fill: var(--clr-text-white) !important;
}

.home-hero-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--clr-bg-quaternary);
    border-radius: 20px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -2;
}

.home-hero-cta-img::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--clr-bg-quaternary);
    border-radius: 20px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -2;
}

.home-hero-cta::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    transform: translate(-50%, -50%);
    background: var(--clr-bg-quaternary);
    border-radius: 40%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    z-index: -1;
    aspect-ratio: 1 / 1;
    color: var(--clr-text-white) !important;
}

.home-hero-cta-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    transform: translate(-50%, -50%);
    background: var(--clr-bg-quaternary);
    border-radius: 40%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    z-index: -1;
    aspect-ratio: 1 / 1;
    color: var(--clr-text-white) !important;
}

.home-hero-cta:hover::after {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.home-hero-cta-img:hover::after {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.home-hero-cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
}

    .home-hero-cta-container button {
        padding: 10px 20px;
        font-size: 16px;
        flex: 1 1 auto;
        min-width: 120px;
    }

.hero-subcontainer {
    /*margin-bottom: -80px;*/
    position: fixed;
    bottom: 0;
    width: 90%;
    align-self: center;
}

.hero-title {
    font-size: var(--font-size-head-07);
}

.hero-banner-container {

    clip-path: none !important;
    aspect-ratio: 16 / 9;
    width: 100%;
    min-width: 1440px;
    min-height: calc(100vh - 116px);
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 11.25px rgba(0, 0, 0, 0.24);
    position: absolute;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 0;
}

.hero-title-container{
    display:none !important;
    width: 100%;
    gap: 20px !important;
    border-radius: 24px 24px 0 0;
}

    .hero-title-container.active {
        display: flex !important;
    }

.hero-title {
    display: none !important;
}

    .hero-title.active {
        display: flex !important;
        justify-content: center;
    }

    .hero-details {
        width: 100%;
    }

.hero-container {
    height: calc(100vh - 116px);
    object-fit: cover;
    position: relative;
}

.footer-container {
    display: none;
}

@media (max-width: 992px) {
    .hero-container {
         padding-bottom: 0px !important;
    }
}
    /* Tablets (portrait) and small laptops */
    @media (max-width: 992px) {
    }
    /* Phones (landscape) */
    @media (max-width: 768px) {
        .hero-banner-container {
            aspect-ratio: auto;
            min-width: 0px;
            height: 100vh;
        }

        .home-hero-cta {
            height: 56px;
            min-width: 240px;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .home-hero-cta-img {
            height: auto;
            width: 100%;
            flex-direction: row;
            justify-content: space-between;
        }

        .home-hero-cta-learnmore {
            padding-bottom: 3px;
            text-align: right;
            justify-content: right;
        }

        .home-hero-cta-title {
            text-align: left;
        }

        .hero-subcontainer {
            /*margin-bottom: -60px;*/
            /*  bottom: 60px;
        position: inherit;*/

            position: fixed;
            bottom: 0;
            width: 90%;
        }

        /*    .hero-details{
        margin-bottom: 40px;
    }*/

        .home-hero-cta-logo {
            height: 36px;
            width: auto;
        }

        .hero-container {
            height: calc(100vh - 64px);
            width: 100vw;
            object-fit: cover;
            position: relative;
        }
    }
    /* Phones (portrait) */
    @media (max-width: 576px) {
    }
