@import url('https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Flow+Circular&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Bellota Text", sans-serif; */
    font-family: "Poppins", sans-serif;
}
:root {
    --primary-color:#0033e7;
    --secondary-color:#0e141b;
    --white-color:#fff;

}

.banner{
    width: 100%;
    height: 300px;
    background-image: url('../Images/bg-shape-1.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    text-align: center;
    position: relative;
}

.banner::hover {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 0;
    padding: 20px;
}

.banner h1 {
    font-size: 3rem;
    margin: 0;
}

.banner p {
    font-size: 1.5rem;
    margin:10px 0;
}




.blog {
    display: flex;
    justify-content: center;
}
.wcu  {
    /* padding-top: 2rem; */
    font-size: 36px;
    /* padding-bottom: 1rem; */
    color: #00635d;
}

.conatiner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}

.heading {
    flex-basis: 74%;
}

.para p {
    font-size: 18px;
    text-align: justify;
    padding-bottom: 1rem
    
}

.containt a img {
    width: 32px;
    height: 32px;
}


.blog {
    margin-top: 1rem;
}

.containt a{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 4px 12px;
    transition: all 0.5s;
    color: var(--primary-color);
    font-size: 18px;
}

.containt a:hover {
    border-style: none;
    border-radius:4px;
    color: #fff;
    background-color: var(--secondary-color)
   
}

.section-2 {
    padding-top: 1rem;
}

.rav-highlights {
    width: 100%;
    overflow: hidden;
    padding: 1rem 8rem;
    background-color: #fff;
}

 .why-choose-us .wcu-heading {
    /* padding-bottom: 3rem; */
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: capitalize;
    border-bottom: 2px solid var(--secondary-color);
} 


.rav-highlights .wcu-cards {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-top: 1rem;
}

.wcu-cards-row .wcu-card {
    width: calc(100% / 2);
    background-color:#fff;
    padding: 1rem;
    border-left: 0.25rem solid var(--secondary-color)
}

.wcu-cards .wcu-cards-row {
    display: flex;
    gap: 1.5rem;
    position: relative;
    width: 100%;
}

.wcu-card h1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color)
}


.wcu-card article {
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}


/*   section-3 */

.data-container {
    margin: auto;

}
.rows {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    padding: 1rem 5rem;


}
.col-data {
    width: 50%;
}
.col-img {
    /* width: 430px; */
    width: 40%;

}

.col-img img{
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.main-header {
    text-align: center;
    color: #00635d;
    /* border-bottom: 2px solid #00635d; */
    /* font-size: 2rem; */
    font-size: calc(1.614rem + 2.87vw);
    font-weight: 700;
    padding-bottom: 0.9rem;
}

/* article p {
    font-size: 17px;
    text-align: justify;
} */

article p {
    font-size: 19px;
    text-align: justify;
}

@media (max-width: 768px) {
    .wcu {
        line-height: 40px;
    }
    .rav-highlights {
        padding: 1rem 4rem;
    }
    .rows {
        padding: 1rem 3rem;
    }
    .col-img {
            width: 45%;
            object-fit: contain;
        }
    }



@media (max-width:426px){
    .why-choose-us .wcu-heading {
        font-size: 2rem;
        line-height: 2.2rem;
    }
    .wcu-cards .wcu-cards-row {
        display: flex;
        /* flex-direction: column; */

    }
    .rav-highlights {
        padding: 1rem 2rem;
    }
    .rows {
        padding: 1rem 2rem;
    }
    .rows {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        align-items: center;
    }
    .col-data {
        width: 100%;
    }
    .col-img {
        width: 90%;
        object-fit: contain;
    }
    .main-header {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.9rem;
    }
    article p {
        font-size: 17px;
        text-align: justify;
    }
    .rows {
       gap: 1rem; 
    }
}

@media (max-width: 376px){
        .rav-highlights {
        padding: 1rem 1rem;
    }
    .rows {
        padding: 1rem 1rem;
    }
}


@media (max-width:321px){
    .containt a {
        width: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 4px 12px;
        transition: all 0.5s;
        color: #00635d;
        font-size: 16px;
    }
    .wcu-cards .wcu-cards-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .wcu-cards-row .wcu-card {
        width: calc(100%);
    }

}










