.hero {
    background: var(--forground--);
}
.hero .content {
    position: relative;
    height: 60vh;
    width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    overflow: hidden;
    background: var(--forground--);
}
.hero .image {
    position: absolute;
    left: 0;
    mask-image: linear-gradient(
        to right,
        #0000,
        var(--forground--) 60% 70%,
        #0000
    );
}
.hero .image img {
    object-position: 0px 130px;
}
.hero .text h1 {
    font-size: 45px;
}
.hero .text p {
    padding: 20px 0;
    font-size: var(--p-size);
    line-height: 35px;
}
.hero .text p:nth-child(3) {
    font-size: calc(var(--p-size) - 5px);
}
/* hero */

.sec1 .content li {
    padding: 25px;
    border-radius: 10px;
    margin: 15px 0;
    background: var(--forground--);
    line-height: 25px;
}
/* sec1  */

.qualifications {
    background: var(--forground--);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* qualifications */

.sec2 {
    display: grid;
    grid-template-columns: 30% 1fr;
    padding: 50px 0;
}
.sec2 h2 {
    transform: translateY(47px);
}
.sec2 ul {
    border-right: 2px solid black;
    padding: 25px 0;
}
.sec2 ul li {
    position: relative;
    padding: 25px;
    line-height: 25px;
}
.sec2 ul li::before {
    content: url("../Images/icons/Group\ 1.svg");
    position: absolute;
    right: 0;
    transform: translate(50%, 25%);
    height: 20px;
    width: 20px;
}
/* sec2  */

.awards {
    background: var(--forground--);
}
.awards .content {
    width: var(--max-width);
    margin: 0 auto;
    padding: 100px 0;
}
.awards .content .sec3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.awards .content .sec3 .card {
    width: calc(38% - 10px);
    height: 250px;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: white;
    overflow: hidden;
}
.awards .content .sec3 .card .image img {
    height: auto;
    width: 40px;
}
.awards .content .sec3 .card .text h3 {
    padding: 10px 0 0 0;
}
.awards .content .sec3 .card .text p {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
}

/* sec 3 */

.sec4 ul li {
    padding: 25px;
    border-radius: 10px;
    margin: 15px 0;
    background: var(--background--);
    line-height: 25px;
}
/* sec4  */

.congrats {
    background: var(--background--);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* congrats */

@media screen and (max-width: 1470px) {
    .hero .content {
        height: 456.75px;
    }
    .hero .image {
        width: 40%;
    }
    .hero .image img {
        height: auto;
        width: 100%;
        object-position: 0px 95px;
    }
    .hero .text h1 {
        font-size: 35px;
    }
    .hero .text p {
        line-height: 30px;
    }
    /*  */

    .sec1 .content li {
        padding: 20px;
    }
    /*  */

    .sec2 h2 {
        transform: translateY(47px);
        font-size: 22px;
    }
    /*  */

    .awards .content .sec3 .card {
        width: 49%;
        padding: 50px 20px 0 20px;
        justify-content: start;
    }
    /*  */

    .sec4 ul li {
        padding: 20px;
    }
}

@media screen and (max-width: 1075px) {
    .hero .content {
        height: 391.5px;
    }
    .hero .text h1 {
        font-size: 30px;
    }
    .hero .text p {
        line-height: 24px;
        padding: 10px 0;
    }
    .hero .image img {
        object-position: 0px 62px;
    }
    /*  */

    .sec1 .content li {
        padding: 15px 20px;
        font-size: var(--p-size);
    }
    /*  */

    .sec2 h2 {
        transform: translateY(37px);
        font-size: 19px;
    }
    .sec2 ul li {
        padding: 15px 20px;
        font-size: var(--p-size);
    }
    /*  */
    .awards .content {
        padding: 50px 0;
    }
    .awards .content .sec3 .card .text h3 {
        font-size: 18px;
    }

    /*  */

    .awards .content .sec3 .card {
        width: 48.7%;
    }
    /*  */

    .sec4 ul li {
        padding: 15px 20px;
        font-size: var(--p-size);
    }
    /*  */

    .congrats,
    .qualifications {
        min-height: 200px;
    }
}

@media screen and (max-width: 840px) {
    .hero .content {
        height: unset;
        min-height: 300px;
    }
    .hero .text h1 {
        font-size: 25px;
    }
    .hero .image img {
        height: 350px;
        width: 100%;
        object-fit: cover;
        object-position: 0px 25px;
    }
    .hero .text {
        height: 200px;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
    }
    /*  */

    .congrats,
    .qualifications {
        min-height: 170px;
    }
    .congrats header,
    .qualifications header {
        padding: 0 20px;
        width: var(--max-width);
        line-height: 20px;
    }
    /*  */

    .sec2 {
        grid-template-columns: 1fr;
    }
    .sec2 h2 {
        transform: translateY(0);
        font-size: 17px;
        padding: 0 0 20px 0;
    }
    .sec2 ul {
        padding: 0 0;
    }
    /*  */

    .awards .content {
        padding: 50px 20px;
    }
    .awards .content .sec3 .card {
        width: 100%;
        height: 190px;
        padding: 27px 20px 0 20px;
    }
    .awards .content .sec3 .card .text h3 {
        font-size: 16px;
    }
    .awards .content .sec3 .card .text p {
        width: 70%;
        text-align: center;
        margin: 0 auto;
        font-size: var(--p-size);
    }
    .awards .content .sec3 .card .image img {
        height: auto;
        width: 30px;
    }
}
@media screen and (max-width: 750px) {
    .hero .content {
        padding: 0px 20px 50px 20px;
        height: unset;
        min-height: 391.5px;
        flex-direction: column-reverse;
    }
    .hero .text h1 {
        font-size: 25px;
    }
    .hero .image {
        position: relative;
        width: 100%;
    }
    .hero .image img {
        height: 350px;
        width: 100%;
        object-fit: cover;
        object-position: 0px 0px;
    }
    .hero .text {
        height: 200px;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
    }
    /*  */

    .congrats,
    .qualifications {
        min-height: 170px;
    }
    .congrats header,
    .qualifications header {
        padding: 0 20px;
        width: var(--max-width);
        line-height: 20px;
    }
    /*  */

    .sec2 {
        grid-template-columns: 1fr;
    }
    .sec2 h2 {
        transform: translateY(0);
        font-size: 17px;
        padding: 0 0 20px 0;
    }
    .sec2 ul {
        padding: 0 0;
    }
    /*  */

    .awards .content {
        padding: 50px 20px;
    }
    .awards .content .sec3 .card {
        width: 100%;
        height: 190px;
        padding: 27px 20px 0 20px;
    }
    .awards .content .sec3 .card .text h3 {
        font-size: 16px;
    }
    .awards .content .sec3 .card .text p {
        width: 70%;
        text-align: center;
        margin: 0 auto;
        font-size: var(--p-size);
    }
    .awards .content .sec3 .card .image img {
        height: auto;
        width: 30px;
    }
}
