body {
    font-family: "Source Sans Pro", sans-serif;
    overflow-x: hidden;
}
p {
    font-size: 16px;
    line-height: 27px;
    color: #313131;
    margin: 0;
}
h2 
{
    color: #00205B;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    @media screen and (max-width:768px) {
        font-size: 28px;
    }
}

#index-microsite--banner
{
    background-image: url('../images/index-microsite_bg.webp');
    width: 100%;
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% center;
    .navbar
    {
        background-color: transparent;
        .cp-link
        {
            button
            {
                background-color: #009DE1;
                color: #fff;
                border-radius: 8px;
            }
        }
    }
    .scrolled
    {
        background-color: #001d54;
        transition: background-color 0.3s ease;
    }
}
.campaign-title--box
{
    font-family: "Heebo", sans-serif;
    h1 
    {
        font-size: 48px;
        line-height: 60px;
        @media screen and (max-width:768px) {
            font-size: 30px;
            line-height: 45px;
        }
    }
    a 
    {
        all: unset;
        background-color: transparent;
        border-radius: 12px;
        border: 1px solid #FFF;
        padding: 14px 49px;
        font-size: 20px;
        font-weight: 500;
        position: relative;
        display: inline-block;
        cursor: pointer;
        @media screen and (max-width:768px) {
            font-size: 16px;
            padding: 14px;
        }
        &::before, &::after{
            content: "";
            height: 100%;
            width: 100%;
            position: absolute;
            border-radius: 12px;
            -webkit-border-radius: 12px;
            -moz-border-radius: 12px;
            -ms-border-radius: 12px;
            -o-border-radius: 12px;
            border-width: 1px;
            border-style: solid;
            transition: all 0.3s linear;
            opacity: 0;
            visibility: hidden;
            border-color: #fff;
        }
        &::before {
            top: -1px;
            left: -1px;
            transform: scale(1.6);
            height: calc(100% + 2px);
            width: calc(100% + 2px);
        }
        &::after {
            top: 0;
            left: 0;
            transform: scale(1.4);
            transition-delay: 0.1s;
        }
        &:hover::before,&:hover::after{
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }
    }
}

.index-microsite--features
{
    background-image: url('../images/index-microsite--features_bg.webp');
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    .row
    {
        margin-top: 100px;
        @media screen and (max-width:992px) {
        div:nth-child(3),div:nth-child(4)
        {
            margin-top: 100px;
        }
        }
        @media screen and (max-width:768px) {
            div:nth-child(2)
            {
                margin-top: 100px;
            }
            }
        
    }

    .teaser_card
    {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(180deg, #009DE1 0%, #0044C1 100%);
        border-radius: 24px;
        min-height: 248px;
        padding: 25px;
        gap: 14px;
        padding-top: 90px;
        position: relative;
        @media screen and (max-width:768px) {
            border-radius: 12px;
        }
        
        img 
        {
            position: absolute;
            top: -75px;
        }
        p 
        {
            line-height: 19px;
        }
    }
}

.index-microsite--benefits
{
    .teaser_card
    {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 24px;
        min-height: 280px;
        @media screen and (max-width:768px) {
            border-radius: 12px;
        }
        h3 
        {
            font-size: 40px;
            position: relative;
            width: fit-content;
            @media screen and (max-width:768px) {
                font-size: 24px;
                &::before
                {
                    width: 80px !important;
                }
            }
            &::before
            {
                content: "";
                position: absolute;
                height: 5px;
                background-color: #009DE1;
                width: 181px;
                left: 0;
                bottom: -3px;
                transition: width 0.5s ease;
            }
        }
        p 
        {
            font-size: 24px;
            @media screen and (max-width:768px) {
                font-size: 18px;
            }
        }  
    }
    .teaser_card:hover h3::before
    {
        width: 100% !important;
    }
}

.index-microsite--howitworks
{
    .teaser_card
    {
        border-radius: 24px;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
        position: relative;
        min-height: 212px;
        @media screen and (max-width:768px) {
            border-radius: 12px;
        }
        .num-lable
        {
            position: absolute;
            top: -50px;
            left: 10px;
            font-size: 128px;
            color: #ECF9FF;
            font-weight: 700;
        }
        h4 
        {
            font-size: 22px;
        }
        p 
        {
            line-height: 19px;
        }
    }
}

.index-microsite--usecases
{
    background-color:#F5F8FD;
    figure 
    {
        position: relative;
        text-align: center;
        display: flex;
        justify-content: center;
        border-radius: 24px;
        @media screen and (max-width:768px) {
            border-radius: 12px;
        }
        overflow: hidden;
        .fig-caption
        {
            position: absolute;
            bottom: 19px;
        }
    }
}

.more-information-section
{
    color: #00205B;
    p
    {
        color: #00205B;
    }
    a 
    {
        background-color: #FF7648;
        font-weight: 600;
        padding: 16px 49px;
        color: #fff;
        border-radius: 5px;
    }
    
}