@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
:root{
    --website_blue: #0087cc;
}
body{
    font-family: "Manrope", sans-serif;
}
.section-title{
    margin-bottom: 3.5rem;
    h2{
        font-size: 3.2rem;
        line-height: 1;
    }
    span{
        color: var(--website_blue);
        display: block;
        margin-bottom: 1rem;
    }
}

.arrow-level{
    width: 60px;
    aspect-ratio: 1/1;
    border: 1px solid #dadada;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    z-index: 5;

    img{
        max-width: none;
        width: 65%;
    }
}

.company-box:has(img){
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadada;
    min-height: 200px;
    position: relative;
    padding-inline: 1rem;

    img{
        max-width: 150px;
        object-fit: contain;
        width: 100%;
    }
    p{
        font-weight: 500;
        margin-bottom: 1rem;
    }
    span{
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        line-height: 1;
        border-right: 1px solid #dadada;
        border-top: 1px solid #dadada;
    }
}

.flow{
    h3{
        font-weight: 500;
    }
    p{
        font-weight: 300;
        font-style: italic;
    }
    span{
        line-height: 0;
        display: inline-block;
    }
}
.accordion-content{
    display: none;
    color: rgba(0 0 0 /70%);
    padding-block: 1rem;
}

.accordion-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.3rem;
    transition: all 0.3s ease-out;
    h3{
        font-size: 1.6rem;
        font-weight: 500;
        margin-bottom: 0.2rem;
    }
   
    span{
        flex-shrink: 0;
        display: block;
        line-height: 0;
        transition: all 0.3s ease-out;
    }
    
}

.accordion-title-image{
    width: 70px;
    aspect-ratio: 1/1;
    background: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;

    img{
        max-width: 65%;
        max-height: 60%;
        object-fit: contain;
    }
}

.accordion-title.active{
    span{
        transform: rotate(180deg);
    }
}

.gradient-anim {
    background: linear-gradient(119deg, var(--website_blue), #025178, var(--website_blue), var(--website_blue), #025178, var(--website_blue));
    background-size: 360% 360%;
    animation: gradient-animation 33s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media(max-width:1536px){
    .company-box:has(img){
        min-height: 250px;
        text-align: center;

        img{
            max-width: 120px;
        }
    }
    .arrow-level{
        width: 44px;
    }
}

@media(max-width:1024px){
    .section-title{
        h2{
            font-size: 2.2rem;
        }
    }
}
@media(max-width:620px){
    .accordion-title {
        font-size: 1rem;
        p{
            line-height: 1.3;
        }
        h3{
            font-size: 1.3rem;
        }
    }

}