@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.overall-product-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(250.15deg, #AFC4F9 1.6%, #FFFFFF 51.18%, #AAC0F9 92.57%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

header {
    text-align: center;
    color: black;
    padding: 30px 0px;
    padding-top: 50px;

}

header h1 {
    font-weight: 900;
    font-size: 64px;
    color: #2D64ED;
}

header h1 span {
    color: black;
}

header p {
    font-weight: 500;
    font-size: 20px;

}

.outer-service {
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 40%,
            #2D64ED 40%,
            #2D64ED 100%);
    width: 100%;
    padding-bottom: 20px;
}

.services {
    background: white;
    border-radius: 15px;
    box-shadow: 4px 4px 12.6px 0px #0000004A;
    margin: 32px auto;
    padding: 32px;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.services .first-product {
    width: 45%;
}

.services .first-div {
    width: 45%;
}

.icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.services ul,
.benefits ul {
    list-style: none;
    margin-top: 20px;
}

.services span,
.benefits span {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;

}


.services h2 {
    font-weight: 700;
    font-size: 36px;

}

.benefits {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    padding: 32px;
    gap: 16px;
    /* background-color: rebeccapurple; */
}

.benefits .text {

    width: 50%;
}

.benefits .text h3 {
    font-weight: 700;
    font-size: 36px;


}

.benefits .text ul {
    list-style: none;
    padding-left: 0;
}

@media (min-width: 1600px) {
.services span, .benefits span {
    font-size: 18px;
    line-height: 33px;
}
}

@media (min-width: 2000px) {

header p {
    font-size: 28px;
}

.services h2 ,.benefits .text h3 {
    font-size: 40px;
}

.services span, .benefits span {
    font-size: 26px;
    line-height: 45px;
}

.benifit-image{
width: 35%;
}
}
@media (min-width: 2500px) {

.services span, .benefits span {
    font-size: 28px;
    line-height: 50px;
}
}

@media (max-width: 1050px) {
    .benefits .text {
        width: 40%;
    }

    .services .first-product {
        width: 50%;
    }
}

@media (max-width: 900px) {
    header h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .services {
        width: 95%;
    }

    .services h2,
    .benefits .text h3 {
        font-size: 28px;
        text-align: center;
    }

    .services span,
    .benefits span {
        font-size: 14px;
        line-height: 28px;
    }

    .benefits {
        flex-direction: column-reverse;
        align-items: center;
    }

    .benefits .text {
        width: 100%;
    }

    .benefits .text ul {
        margin-left: 140px;
    }


}


@media (max-width: 600px) {

    .benefits .text ul {
        margin-left: 130px;
    }

}

@media (max-width: 425px) {
    header h1 {
        font-size: 36px;
        line-height: 30px;
        padding: 10px;
    }

    .services {
        width: 95%;
        flex-direction: column;
    }

    .services .first-product,
    .services .first-div {
        width: 100%;
    }

    .benefits .benifit-image {
        width: 95%;
    }

    header p {
        margin-top: 15px;
        font-weight: 500;
        font-size: 16px;
    }

    .benefits .text ul {
        margin-left: 30px;
    }

}