@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;
}

.outer-section-about-us {
    width: 100%;
    background: linear-gradient(250.15deg, #AFC4F9 1.6%, #FFFFFF 51.18%, #AAC0F9 92.57%);

}

.about-us {
    background: #2D64ED;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.about-us h1 {

    font-weight: 900;
    font-size: 64px;
    line-height: 100px;

}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
}

.image-one {
    width: 40%;
}

.about-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-text {
    width: 45%;
    /* margin: 20px; */
}

span {
    font-weight: 800;
    font-size: 40px;
    line-height: 30px;

}

.about-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: justify;

}

.values-section {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.our-values {
    width: 80%;
    text-align: left;
    /* padding-left: 80px; */
}

.values-section h2 {
    font-size: 64px;
    color: #2D64ED;
    font-weight: 900;
    line-height: 82px;
    margin-bottom: 10px;
    text-shadow: 2px 2px black;
    /* position: relative; */
    /* z-index: 2; */
}


/* =============================================================== */
.container {
    width: 100%;
    background-color: #2D64ED;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    text-align: center;
    height: 300px;

}

.item {
    flex: 1 1 20%;
    position: relative;
    /* height: 140px; */
}

.number {
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-weight: 900;
    font-size: 190px;
    line-height: 100px;

}

.label {
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-size: 32px;
    line-height: 100px;

}

.arrow img {
    width: 130px;
    height: auto;
}


.arrow-1 {
    position: relative;
    top: -30%;
}


.arrow-2 {
    position: relative;
    bottom: -30%;
}

.arrow-3 {
    position: relative;
    top: -30%;
}


@media (min-width: 1600px) {

    .about-text p {
        font-size: 20px;
        line-height: 40px;
    }

    .image-one {
        width: 35%;
    }

    .arrow img {
        width: 200px;
    }

    .number {
        font-size: 250px;
    }

    .label {
        font-size: 40px;
    }

}

@media (min-width: 2000px) {
    .about-text p {
        font-size: 24px;
        line-height: 50px;

    }

    .about-section {
        gap: 100px;
    }

    .image-one {
        width: 35%;
    }

    .about-text {
        width: 40%;
    }


}

@media (min-width: 2500px) {

    span {
        font-size: 50px;
    }

    .about-text p {
        font-size: 28px;
        line-height: 60px;
    }

        .arrow img {
        width: 250px;
    }

    .number {
        font-size: 300px;
    }

    .label {
        font-size: 50px;
    }
}


@media (max-width: 1150px) {
    .arrow img {
        width: 120px;
    }

    .label {
        font-size: 26px;
    }

    .number {
        font-size: 180px;
    }
}

@media (max-width: 900px) {

    .about-us h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .image-one {
        width: 50%;
    }

    .arrow {
        display: none;
    }

    span {
        font-size: 30px;
    }


    .about-text p {
        font-size: 14px;
    }
}

@media (max-width: 600px) {

    .about-us h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .about-section {
        flex-direction: column;
        padding: 30px 20px 10px 20px;
    }

    .image-one {
        width: 70%;
    }

    .about-text {
        width: 90%;
    }

    span {
        font-size: 28px;
    }


    .values-section h2 {
        font-size: 28px;
        line-height: 50px;
    }

    .second-div {
        flex-direction: column-reverse;
    }

    .container {
        gap: 50px;
    }
}

@media (max-width: 425px) {

    .image-one {
        width: 90%;
    }

    .container {
        gap: 20px;
    }

    .label {
        font-size: 18px;
    }

    .number {
        font-size: 145px;
    }
}



