body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.container {
    padding: 0 20px;
}

h1,
h2,
p {
    margin: 0;
}

p {
    color: #333;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

p strong {
    font-weight: 700;
}

hr {
    color: #1479D0;
    height: .5px;
    border-top: none;
    border-left: none;
    border-right: none;
    margin: 15px auto;
}

.hero {
    background: top center / cover url("images/bg-hero.webp") no-repeat;
    min-height: 845px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.hero .container {
    background: top center / cover url("images/ellipse-white.svg") no-repeat;
    width: 100%;

}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 57px 0 37px;
    max-width: 530px;
    margin: 0 auto;
}

.logos .border {
    margin: 0 59px 0 48px;
}

.logos .logo:last-of-type img {
    margin-top: 45px;
}

.hero .container .content {
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

.hero .container .content h1 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.hero .container .content h1 span {
    color: #31918C;
    font-style: italic;
}

.bg-gradient {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #BFE1E4 150.19%);
    min-height: 1177px;
}

.container .wrapper {
    max-width: 966px;
    margin: 0 auto;
}

.cta {
    border-radius: 22px;
    background: #E4F3F4;

    width: 655px;
    max-width: 100%;
    margin: 40px auto 30px;
}

.cta .wrapper {
    padding: 20px 40px;
}

.cta .wrapper>p {
    font-weight: 500;
    max-width: 573px;
    margin: 0 auto 15px;
}

.list {
    max-width: 472px;
    margin: 0 auto;
}

.list .item {
    display: flex;
}

.list .item>div:first-of-type {
    margin-right: 6px;
}

.list .item {
    color: var(--Dark-Gray, #333);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.list .item :not(:last-of-type) {
    margin-bottom: 10px;
}

.video {
    margin: 0 auto;

}

.video img {
    max-width: 100%;
}

.video iframe {
    margin: 45px auto;
    display: block;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    max-width: 100%;
    width: 942px;
    overflow: visible;
    /* Change to visible to prevent clipping */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Ensure no border interferes */
}

.copyright {
    margin: 100px auto 0;
    padding-bottom: 135px;
}

.copyright p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
}

.copyright p br.mobile {
    display: none;
}

.mobile {
    display: none;
}

@media(max-width:767px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: unset;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        background: top center / contain url("images/bg-hero-m.webp") no-repeat;
        min-height: 401px;
        display: flex;
        align-items: end;
        justify-content: center;
    }

    .hero .container {
        margin-top: 240px;
    }

    .logos .logo:first-of-type img {
        max-width: 114px;
        width: 100%;
    }

    .logos .logo:last-of-type img {
        max-width: 126px;
        width: 100%;
        margin-top: 23px;
    }

    .logos .border {
        margin: 0 27px
    }

    .logos {
        padding: 35px 0;
    }

    .cta .wrapper {
        padding: 35px 20px;
    }

    .list {
        max-width: 266px;
    }

    .list .item .mobile {
        margin-right: 8px;
    }

    .copyright p br.mobile {
        display: block;
    }
}