﻿: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;
}

.hero-title {
    font-size: var(--font-size-head-07);
}

.hero-banner-container {
    clip-path: none !important;
}

.hero-title-container{
    display:none !important;
    width: 100%;
    gap: 20px !important;
}

    .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%;
    }

@media (max-width: 500px) {
    .home-hero-cta {
        height: 56px;
        width: 100%;
        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;
    }

/*    .hero-details{
        margin-bottom: 40px;
    }*/

    .home-hero-cta-logo {
        height: 36px;
        width: auto;
    }
}

@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) {
    }
    /* Phones (portrait) */
    @media (max-width: 576px) {
    }
