
.bannerBox{
    height: 500px;
    width: 100%;
    display: flex;
    padding: 0 60px;
    align-items: center;
    background-color: #e8faff;
}
.bannerText{
    width: 50%;
    height: fit-content;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.bannerImg{
    width: 50%;
    display: flex;
    justify-content: right;
}
.bannerImg img{
    height: 300px; width: 300px;
}

.bannerText h1{
    font-family: 'Open Sans';
    font-size: 40px;
    line-height: 50px;
}

.bannerBox p{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: #7f7f7f;
}
.bannerText a{
    padding: 20px;
    width: fit-content;
    background: #2865E5;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-family: 'Open Sans';
}



.exerptBox{
    height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.exerptBox h2{
    font-family: 'Open Sans';
    font-size: 40px;
    line-height: 50px;
}
.exerptBox p {
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: #7f7f7f;
    width: 50%;
    text-align: justify;
}
.exerptBox-btnBox{
    display: flex;
    gap: 20px;
}
.exerptBox h3{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: #7f7f7f;
    width: 50%;
    text-align: center;
}






.cardParentBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #fafafa;
    padding: 60px 0;
}
.cardParentBox h2{
    font-family: 'Open Sans';
    font-size: 40px;
    line-height: 50px;
}
.cardParentBox h3{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: #7f7f7f;
    width: 50%;
    text-align: center;
}
.cardParentBox-gridBox{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
    padding: 0 60px;
    margin: 30px 0 0 0;
}
.gridCard{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: white;
}
.gridCard img{
    height: 40px;
    width: 40px;
}
.gridCard h3{
    font-size: 18px;
    font-family: 'Open Sans';
    width: 50%;
    text-align: left;
    color: black;
}
.gridCard p{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: #7f7f7f;
}


.comboCardParentBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 60px 0;
}
.comboCardParentBox h2{
    font-family: 'Open Sans';
    font-size: 40px;
    line-height: 50px;
}
.comboCardParentBox h3{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: #7f7f7f;
    width: 50%;
    text-align: center;
}
.comboCardParentBox-gridBox{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
    padding: 0 60px;
    margin: 30px 0 0 0;
}
.comboGridCard{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: white;
}
.comboGridCard img{
    height: 40px;
    width: 40px;
}
.comboGridCard h3{
    font-size: 18px;
    font-family: 'Open Sans';
    width: 50%;
    text-align: left;
    color: white;
}
.comboGridCard p{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Open Sans';
    color: white;
}
.comboCardListContainer{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Open Sans';
    color: white;
    margin: 25px 0 0 0;
}
.comboGridCard a{
    padding: 10px 0;
    background-color: white;
    text-align: center;
    font-family: 'Open Sans';
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin: 30px 0 0 0;
    border-radius: 12px;
}





.whiteCardListContainer{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Open Sans';
    color: #7f7f7f;
    margin: 25px 0 0 0;
}




.outroExcerpt {
    height: 400px;
    background: linear-gradient(135deg, #2ea8ff, #4d7fff);
    color: white !important;
}
.outroExcerpt p{
    text-align: center;
    color: white;
}




@media screen and (max-width: 1200px) {
    .bannerBox{
        flex-direction: column;
        height: auto;
        padding: 30px 0;
    }
    .exerptBox h3,
    .cardParentBox h3,
    .comboCardParentBox h3{
        width: 100%;
    }
    .exerptBox-btnBox{
        flex-direction: column;
        align-items: center;
    }
    .bannerText{
        align-items: center;
    }
    .bannerBox p{
        text-align: center;
    }
    .cardParentBox-gridBox, .comboCardParentBox-gridBox{
        grid-template-columns: auto;
    }
    .bannerBox, .exerptBox, .cardParentBox, .comboCardParentBox, .outroExcerpt, .cardParentBox-gridBox, .comboCardParentBox-gridBox{
        padding: 30px 20px;
        height: auto;
    }
}

@media screen and (max-width: 650px) {
    .exerptBox p{
        width: 80%;
    }
    .bannerText h1, .exerptBox h2, .cardParentBox h2, .comboCardParentBox h2{
        font-size: 30px;
        text-align: center;
        line-height: 40px;
    }
}