.banner {
    display: flex;
    position: relative;
    margin-top: 1.8rem;
}

.banner picture {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.banner img {
    width: 100%;
    height: 33.4rem;
    object-fit: cover;
    object-position: center top;
    border-radius: 3rem;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2rem;
}

.banner-content div {
    max-width: 54rem;
    font-weight: 700;
    color: var(--white);
    font-size: 2.8rem;
    line-height: 104%;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
}

.home-page-main h2 {
    font-weight: 700;
    font-size: 11rem;
    line-height: 93%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 4rem;
}

.home-page-main h2.tagline {
    font-weight: 600;
    font-size: 4.2rem;
    line-height: 110%;
    letter-spacing: -0.01em;
    padding-top: 4rem;
    padding-right: 8rem;
}

.bullets {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 14rem;
}

.bullet {
    width: calc((100% - 2rem) / 3);
    border-radius: 3rem;
    padding: 2rem;
    color: var(--white-alpha-50);
    font-size: 2.4rem;
    background-color: var(--dark-blue);
    font-weight: 500;
    line-height: 117%;
}

.bullet_full-width {
    width: 100%;
    padding-right: 50%;
    background-image: url('../img/awt-logo.png');
    background-size: 49.4rem auto;
    background-position: right 3.9rem top 2.4rem;
    background-repeat: no-repeat;
    position: relative;
}

.bullet_full-width::after {
    content: '';
    position: absolute;
    width: 51.7rem;
    height: 24.9rem;
    bottom: -13.4rem;
    left: 52.5%;
    background: url('../img/bullet-decor.svg') left top/contain no-repeat;
}

.bullet h3 {
    font-size: 11rem;
    font-weight: 700;
    color: var(--green);
    line-height: 77%;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.bullet_full-width h3 {
    font-size: 4.2rem;
    line-height: 110%;
    margin-bottom: 2rem;
    font-weight: 600;
}

.advantages-container h2 {
    padding-right: 20%;
}

.advantages {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 14rem;
}

.advantage {
    background-color: var(--light-gray);
    padding: 3rem 5rem 3rem 3rem;
    border-radius: 3rem;
    width: calc((100% - 2rem) / 7 * 2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.advantage_big {
    width: calc((100% - 2rem) / 7 * 3);
}

.advantage img {
    width: auto;
    height: 12rem;
    margin-bottom: 1.2rem;
    display: block;
}

.advantage h3 {
    margin-top: auto;
    font-size: 2.7rem;
    line-height: 119%;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: var(--black);
}

.advantage p:not(:last-child) {
    margin-bottom: 1em;
}

.services-container {
    margin-bottom: 4rem;
}

.services {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
}

.service {
    width: calc((100% - 3rem) / 4);
}

.service a {
    position: relative;
    background-color: var(--dark-blue);
    color: var(--white) !important;
    border-radius: 3rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.service a svg {
    content: '';
    width: 3.5rem;
    height: 3.4rem;
    right: 3rem;
    top: 3rem;
    position: absolute;
    z-index: 2;
}

.service a svg path {
    stroke: var(--white-alpha-50);
    transition: stroke 0.3s;
}

.service a:hover svg path {
    stroke: var(--green);
}

.service a::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: var(--black-alpha-20);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.service a:hover::before {
    opacity: 1;
}

.service a img {
    display: block;
    width: auto;
    height: 9rem;
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 2;
}

.service a h3 {
    margin-top: auto;
    font-size: 2rem;
    line-height: 120%;
    position: relative;
    z-index: 2;
}

.pdf-link-container {
    margin-bottom: 14rem;
}

.pdf-link-container a.pdf-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 3rem;
    background-color: var(--light-gray);
    color: var(--black) !important;
    box-shadow: 0 0 2.8rem 0 rgba(0 33 141/ 23%);
    padding: 1.6rem 3rem 1.6rem 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.pdf-link-container a.pdf-link:hover {
    color: var(--blue) !important;
}

.pdf-link-container a.pdf-link img {
    height: 9rem;
    width: auto;
    margin-right: 0.6rem;
}

.pdf-link-container .pdf-link__info div:first-child {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 0.6rem;
}

.pdf-link-container .pdf-link__info div:last-child {
    color: var(--gray) !important;
}

.pdf-link-container a.pdf-link:hover .pdf-link__info div:last-child {
    color: var(--gray) !important;
}

.pdf-link-container .pdf-link__download {
    text-transform: uppercase;
    margin-left: auto;
    color: var(--light-blue) !important;
    font-weight: 700;
    font-size: 6rem;
    line-height: 107%;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.pdf-link-container a.pdf-link:hover .pdf-link__download {
    color: var(--blue) !important;
}

@media (max-width: 1319px) {
    .banner {
        margin-top: 0;
    }

    .bullets {
        gap: 0.4rem
    }

    .bullet {
        width: calc((100% - 0.4rem) / 2);
        padding: 2rem;
    }

    .bullet:nth-child(3) {
        width: 100%;
    }

    .bullet_full-width {
        width: 100%;
        background-size: 23.8rem auto;
        background-position: 2rem 0.9rem;
        padding-top: 11.7rem;
        padding-right: 2rem;
        padding-bottom: 9rem;
    }

    .bullet_full-width::after {
        width: 34rem;
        height: 16.4rem;
        bottom: -8.8rem;
    }

    .advantages-container h2 {
        padding-right: 0;
    }

    .advantage,
    .advantage_big {
        width: calc((100% - 1rem) / 2);
        padding: 2rem;
        border-radius: 2.4rem;
    }

    .service {
        width: calc((100% - 1rem) / 2);
    }

    .service a {
        border-radius: 2.4rem;
    }

    .pdf-link-container a.pdf-link {
        border-radius: 2.4rem;
        flex-wrap: wrap;
    }

    .pdf-link__info {
        max-width: calc(100% - 9.7rem);
    }

    .pdf-link-container .pdf-link__download {
        font-weight: 600;
        font-size: 4.2rem;
        line-height: 110%;
        letter-spacing: -0.01em;
        margin-left: 0;
        margin-top: 1.2rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .banner-content div {
        max-width: 29.8rem;
        font-weight: 600;
        font-size: 1.8rem;
        line-height: 105%;
    }

    .banner img {
        height: 27.9rem;
        object-position: center;
    }

    .home-page-main h2 {
        font-weight: 700;
        font-size: 2.7rem;
        line-height: 119%;
        margin-bottom: 1rem;
    }

    .home-page-main h2.tagline {
        font-weight: 600;
        font-size: 2rem;
        line-height: 120%;
        padding-top: 2rem;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .bullets {
        margin-bottom: 11.6rem;
    }

    .bullet {
        width: 100%;
        font-size: 1.8rem;
        line-height: 139%;
    }

    .bullet h3 {
        font-size: 6.4rem;
        line-height: 77%;
        margin-bottom: 1rem;
    }

    .bullet_full-width h3 {
        font-weight: 600;
        font-size: 2rem;
        line-height: 120%;
        margin-bottom: 1.5rem;
    }

    .bullet_full-width::after {
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% + 2rem);
    }

    .advantages {
        margin-bottom: 4rem;
    }

    .advantage,
    .advantage_big {
        width: 100%;
    }

    .advantage img {
        height: 7.5rem;
        margin-bottom: 1rem;
    }

    .advantage h3 {
        font-size: 1.6rem;
        line-height: 144%;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .services-container {
        margin-bottom: 2rem;
    }

    .services {
        gap: 0.4rem;
    }

    .service {
        width: 100%;
    }

    .service a svg {
        right: 2rem;
        top: 2rem;
    }

    .service a img {
        height: 7rem;
    }

    .service a h3 {
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 137%;
    }

    .pdf-link-container {
        margin-bottom: 4rem;
    }

    .pdf-link-container a.pdf-link img {
        height: 4rem;
    }

    .pdf-link__info {
        max-width: calc(100% - 4.7rem);
    }

    .pdf-link-container .pdf-link__info div:first-child {
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 137%;
        margin-bottom: 0.4rem;
    }

    .pdf-link-container .pdf-link__info div:last-child {
        font-size: 1.4rem;
        line-height: 136%;
    }
}
