@charset "utf-8";

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #3b3b3b;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0.3125rem #999;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

ul {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

ul li {
    margin: 0 0 0.625rem;
    padding: 0 0 0 2.8125rem;
}

ul li:before {
    content: "";
    background-color: #4FB0C1;
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 0.4375rem;
    margin: 0 0 0 -1rem;
}

h1 {
    color: #4FB0C1;
    font-size: 1.875rem;
    text-align: center;
    margin: 1.25rem 0;
    padding: 0 3rem;
}

h2 {
    font-size: 1.25rem;
    margin: 0 0 0.3125rem;
}

.subtitle_wrap {
    position: relative;
    overflow: hidden;
}

h3 {
    color: #4FB0C1;
    font-size: 1.375rem;
    margin: 0 0 1rem;
    position: relative;
    display: inline-block;
    padding: 0 0.625rem 0 0;
}

h3::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    height: 0.0625rem;
    width: 624.9375rem;
    background-color: #4FB0C1;
}

h4 {
    color: #fff;
    background-color: #4FB0C1;
    font-size: 1.375rem;
    margin: 0 0 1rem;
    padding: 0 0.625rem 0 0;
    position: relative;
    display: inline-block;
    z-index: 1;
}

h4::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    height: 0.0625rem;
    width: 624.9375rem;
    background-color: #fff;
}

header {
    display: flex;
    justify-content: flex-end;
    padding: 1.25rem 3rem;
}

.infos {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 3rem;
}

.info {
    display: flex;
    justify-content: space-between;
    width: fit-content;
}

.icon {
    width: 1.5625rem;
}

.details {
    width: calc(100% - 2.1875rem);
    margin-left: 0.625rem;
}

.icon i {
    color: #4FB0C1;
    font-size: 1.25em;
}

.content {
    padding: 0 3rem;
}

.color_bg {
    background-color: #4FB0C1;
    padding: 1rem 3rem 1.25rem;
    margin: 3.75rem 0 1.875rem;
}

.benefits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1rem;
}

.benefit {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 48%;
}

.symbol {
    width: 1.875rem;
}

.benefit > p {
    width: calc(100% - 3.125rem);
    margin: 0;
}

.symbol img {
    max-width: 1.875rem;
    width: 100%;
}

.video_container {
    background-color: #4FB0C1;
    margin: 3.75rem 0 0;
    padding: 1.25rem 3rem;
}

.grey_bg {
    background-color: #ECECEC;
    margin: 2.5rem 3rem 0;
    padding: 2rem 2.625rem;
    display: flex;
    justify-content: space-between;
}

.txt_on_grey_bg {
    width: calc(100% - 9.5625rem);
}

.image_grey_bg {
    width: 7.6875rem;
}

.txt_on_grey_bg p {
    margin: 0;
}

.btn_container {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 0.9375rem;
}

a.apply {
    color: #fff;
    background-color: #048EA6;
    font-weight: 700;
    width: 15.625rem;
    height: 2.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

a.apply::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1.25rem;
    border-bottom: 1.0625rem solid transparent;
    border-left: 1.25rem solid #048ea6;
    border-top: 1.0625rem solid transparent;
    height: 0;
    width: 0;
}

footer {
    color: #fff;
    background-color: #4FB0C1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2.5rem 0 0;
    padding: 1rem 3rem;
}

.social_media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 5.625rem;
    gap: 0.625rem;
}

a.insta:hover,
a.faceb:hover {
    opacity: 0.8;
}

.insta i {
    font-size: 2.2em;
}

.faceb i {
    font-size: 2em;
}

footer p {
    text-align: center;
    margin: 0;
    width: calc(100% - 6.875rem);
}

@media only screen and (max-width: 59.9375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul li {
        padding: 0 0 0 0.9375rem;
    }

    ul li:before {
        margin: 0 0 0 -0.9375rem;
    }

    header {
        padding: 1rem;
    }

    .infos {
        padding: 1rem;
        gap: 1rem;
    }

    .content {
        padding: 0 1rem;
    }

    .color_bg {
        padding: 1rem;
        margin: 1.875rem 0;
    }

    .video_container {
        margin: 2.5rem 0 0;
        padding: 1rem;
    }

    .grey_bg {
        margin: 1.875rem 1rem 0;
        padding: 1rem;
    }

    .btn_container {
        bottom: 0;
        margin: 1.875rem 0 0;
    }

    a.apply {
        color: #fff;
        background-color: #048EA6;
        font-weight: 700;
        width: 15.625rem;
        height: 2.125rem;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    a.apply::after {
        display: none;
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 35rem) {
    h2 {
        text-align: center;
    }

    header {
        justify-content: center;
    }

    .infos {
        flex-direction: column;
        align-items: center;
    }

    .info {
        flex-direction: column;
        align-items: center;
        width: fit-content;
    }

    .details {
        width: 100%;
    }

    .details p {
        text-align: center;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        width: 100%;
    }

    .grey_bg {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .txt_on_grey_bg {
        width: 100%;
        margin-bottom: 1rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    footer p {
        width: 100%;
    }
}