.second-hero{
    content: "";
    width: 100%;
    position: relative;
    overflow: visible;
}

.box-content{
   width: 50%;
    margin: 2% auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    margin-bottom: 200px;
}
.question-arrow{
    position: absolute;
    top: 10px;
    right: -50px;
}
.header{
    margin-top: 50px;;
}


.header-text{

    color: var(--01, #6316DB);
text-align: right;

/* TITLE/HEADLINE 1 (56) LALEZAR */
font-family: year, sans-serif;
font-size: 56px;
font-style: normal;
font-weight: 400;
line-height: 64px; /* 114.286% */
}
.sub-header{
    color: var(--02, #9582EF);
text-align: right;

/* TITLE/HEADLINE 4 (24) MONTSERRAT AR */
font-family: Montserrat-Arabic, sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 133.333% */
}
.cards-title{
    color: var(--01, #6316DB);
text-align: right;

/* TITLE/HEADLINE 3 (32) MONTSERRAT AR */
font-family: Montserrat-Arabic, sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: 42px; /* 131.25% */
}
.cards-container{
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.card{
    display: flex;
padding: 16px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 16px;
flex: 1;
border-radius: 12px;
background: rgba(99, 22, 219, 0.70);
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 2px 4px 4px 0 #9582EF inset;
backdrop-filter: blur(2px);
}
.card-text{
    color: var(--WHITE, #FFF);
text-align: center;

/* BUTTON/CTA (24) LALEZAR */
font-family: year, sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 133.333% */
}
.card-icon-img{
    width: 80px;
    height: 80px;
}
.donut-top-rigth{
    height: 19vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3.5vw solid #FB2576;
    position: absolute;
    top: -3vw;
    right: -5vw;
    z-index: 99;
}


.think{
    width: fit-content;
    position: absolute;
    top: 4%;
    left: 4%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.think img{
    z-index: -1;
}
.donnut-think{
    width: 80%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 80px solid #FB2576;
    margin-top: -100px;
    position: relative;
}
.donnut-think img{
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    filter: blur(17px);
}
.question-mark-img{
    position: absolute;
    top: -20px;
    right: -20px;
    rotate: 45deg;
    z-index: 9999;
    width: 200px;
}
.question-mark-img-2{
    position: absolute;
    top: 50px;
    left: 50px;
    rotate: -45deg;
    z-index: 9999;
    width: 100px;
}


@media(max-width: 1400px) {
    .header-text {
        font-size: 48px;
        line-height: 56px;
    }

    .sub-header {
        font-size: 20px;
        line-height: 28px;
    }

    .cards-title {
        font-size: 28px;
        line-height: 36px;
    }

    .card-text {
        font-size: 20px;
        line-height: 28px;
    }
    .box-content{
        width: 60%;
        margin-bottom:300px
    }
}
@media(max-width: 1024px) {

    .box-content *{
        text-align: center;
    }
    .box-content{
        width: 70%;
        margin-bottom:200px
    }

    .box-content svg{
        display: none;
    }
    .think{
        display: none;
    }

}
@media (max-width:920px){
    .header-text {
        font-size: 36px;
        line-height: 44px;
    }

    .sub-header {
        font-size: 16px;
        line-height: 24px;
    }

    .cards-title {
        font-size: 22px;
        line-height: 30px;
    }

    .card-text {
        font-size: 16px;
        line-height: 24px;
    }
    .cards-container{
        display: grid;
        grid-template-columns: repeat(2 , 1fr);
    }
    .card{
        gap: 0;
    }
    .header{
        margin-top: 50px;
    }
}
@media (max-width:768px){
    .box-content{
        width: 90%;
        gap: 16px;
        margin-bottom: 100px;
    }
    .header-text{
        font-size: 24px;
        line-height: 28px;
    }
    .sub-header{
        font-size: 14px;
        line-height: normal;
    }
    .cards-title{
        font-size: 12px;
        line-height: 16px;
    }
    .card-text{
        font-size: 12px;
        line-height: 16px;
    }
    .card-icon-img{
        width: 50px;
        height: 50px;
    }

}