html {
    font-size: 16px;
}

@media screen and (max-width: 1440px) {
    html {
        font-size: 15px;
    }
}


.flex-align {
    display: flex;
    align-items: center;
}

.header {
    width: 100%;
    height: 75px;
}

.section-one {
    background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../images/awards-bg.png);
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    justify-content: center;
    display: flex;
    /* height: 28vw; */
    height: 30vw;
}

.section-one>div {
    width: 33vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: #FFF;
}

.section-one-text>div:nth-child(1) {
    color: #FFD451;
    font-family: "Playfair Display";
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
    /* 120% */
    position: relative;
}

.section-one-text>div:nth-child(1)::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 1px;
    background-color: #FFD451;
    width: 100px;
}

.section-one-text>div:nth-child(2) {
    color: #FFF;
    font-family: "Playfair Display";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-one-text>div:nth-child(3) {
    color: #FFF;
    font-family: Helvetica;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
}

.section-one-btn {
    color: #FFF;
    font-family: Helvetica;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 150px;
    background: #EB6338;
    width: fit-content;
}


.section-two {
    margin: 125px 12vw;
    gap: 103px;

}

.section-two img {
    width: 30vw;
}

.section-two-xs {
    display: none;
}

.section-two-text>div:nth-child(1) {
    color: #040B35;
    font-family: "Playfair Display";
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-two-text>div:nth-child(2) {
    margin-top: 8px;
    color: #EB6338;
    font-family: "Playfair Display";
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

.section-two-text>div:nth-child(2):not(.sss)::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 1px;
    background-color: #EB6338;
    width: 120px;
}

.section-two-text>div.sss:nth-child(2) span::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 18px;
    height: 1px;
    background-color: #EB6338;
    width: 120px;
}

.section-two-text>div:nth-child(3) {
    color: #040B35;
    font-family: Helvetica;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin: 24px 0;
}

.section-two-text>div:nth-child(4) {
    color: #EB6338;
    font-family: Helvetica;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.section-three>div:nth-child(1) {
    color: #FFD451;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
    /* 120% */
    position: relative;
}

.section-three>div:nth-child(1)::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: calc(50% - 50px);
    height: 1px;
    background-color: #FFD451;
    width: 100px;
}

.section-three>div:nth-child(2) {
    color: #FFF;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-three {
    height: 275px;
    width: 100%;
    background-color: #1f284a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.section-three-btn {
    color: #FFF;
    font-family: Helvetica;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 150px;
    background: #EB6338;
}

.cursor {
    cursor: pointer;
}

.section-one-btn:hover,
.section-three-btn:hover {
    background-color: #da552b;
    border-color: #da552b;
}


@media screen and (max-width: 1200px) {
    html {
        font-size: 12px;
    }

    .section-two {
        margin: 100px 6vw;
        gap: 80px;
    }
}


@media screen and (max-width: 991px) {

    .section-one {
        height: 300px;
    }

    .section-one .section-one-site {
        display: none;
    }

    .section-one .section-one-text {
        align-items: center;
        width: unset;
        text-align: center;
    }

    .section-two {
        margin: 80px 4vw;
        gap: 50px;
    }

    .section-two {
        flex-direction: column;
    }

    .section-two img {
        width: unset;
    }

    .section-two>.section-two-xs {
        display: block;
    }

    .section-two-lg {
        display: none;
    }
}

@media screen and (max-width: 691px) {


    .section-one .section-one-text {
        padding: 0 10px;
    }

    .section-one {
        background-image: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../images/awards-bg-2.png);
    }
}