* {
    box-sizing: border-box;
    margin-top: 0;
}

body,
html {
    font-family: "Ubuntu", sans-serif;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: #4d5050;
    scroll-behavior: smooth;
    font-size: calc(16px + (22 - 16) * ((100vw - 300px) / (1920 - 300)));
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3cadb9;
    margin: 0;
    margin-top: 60px;
    margin-bottom: 24px;
}

button {
    background-color: transparent;
    border: 0;
    padding: 0;
    font-size: inherit;
    font-family: "Ubuntu", sans-serif;
}

a {
    text-decoration: none;
}

a span,
span {
    color: #3cadb9;
}

button,
a {
    cursor: pointer;
    color: #0080be;
}

ul,
li {
    padding: 0;
    list-style: none;
    margin: 0;
}

li,
p {
    line-height: 1.5;
}

header {
    width: 100%;
}

.logo {
    padding: 2rem 0;
    max-width: 80%;
    display: block;
    margin: 0 auto;
}

nav ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

nav li {
    padding: 1rem 0;
    font-weight: bold;
    flex: 1;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.main-menu li:after {
    content: " ";
    transition: background 0.2s, transform 0.4s;
    transform: scaleX(0);
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #3cadb9;
    height: 5px;
    width: 100%;
}

.main-menu li.selected:after,
.main-menu li:hover:after {
    transform: scaleX(1);
}

nav {
    padding: 0 2rem;
}

nav.index {
    box-shadow: 0 6px 6px hsla(0, 0%, 64.3%, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
}

nav.index.hide {
    display: none;
}

nav.index ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
}

nav.index ul.show {
    display: block;
}

nav.index li {
    width: 100%;
    text-align: left;
}

nav.index div {
    font-weight: bold;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3cadb9;
}

nav.index p,
footer p {
    margin: 0;
}

footer p {
    font-size: 0.9rem;
}

nav.index ul li:hover,
nav.index ul li.active {
    border-left-color: #3cadb9;
    color: #3cadb9;
}

.hero {
    background-color: #172b47;
    height: 100%;
    padding: 4rem 2rem;
}

.hero .row {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.hero h1 {
    color: #e3e3e3;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    font-size: 28px;
    margin: 0;
}

.hero img {
    max-width: 60%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.privacy-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.privacy-container .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.privacy-container .menu {
    margin: 0 2rem;
}

main {
    padding: 0 2rem;
    flex: 1;
}

.privacy-container .paragraph {
    position: relative;
}

.privacy-container .bg-img {
    position: absolute;
    top: -3.5rem;
    right: 0;
    width: 50%;
    max-width: 170px;
}

.privacy-container .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.privacy-container .card {
    width: 100%;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 0 6px rgba(164, 164, 164, 0.212);
    margin: 1.7rem 0;
}

.privacy-container .card p {
    margin: 0;
}

.privacy-container .icon,
.privacy-container .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-container .icon {
    width: 35%;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: 1rem;
}

.privacy-container .icon img {
    max-width: 80px;
}

.privacy-container .text {
    width: 65%;
    font-weight: bold;
    padding: 1rem;
}

.privacy-container .card:nth-child(1) .icon {
    background-color: #3cadb9;
}

.privacy-container .card:nth-child(2) .icon {
    background-color: #3cadb9;
}

.privacy-container .card:nth-child(3) .icon {
    background-color: #172b47;
}

.faq li div,
.links li a,
.links li button {
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
    width: 100%;
}

.faq li div {
    justify-content: space-between;
}

.links li svg {
    margin-left: 1rem;
}

footer {
    margin-top: 60px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #172b47;
    color: #fff;
}

footer a img {
    max-height: 24px;
}

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

footer .social img {
    width: 18px;
}

footer .social img + img {
    margin-left: 0.4rem;
}

footer p span {
    margin-left: 0.3rem;
    color: #fff;
}

footer .grid {
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

article {
    position: relative;
    margin-bottom: 24px;
}

article li {
    margin-top: 1rem;
}

article img {
    position: absolute;
    opacity: 0.1;
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
}

article.contact p:first-of-type {
    font-style: italic;
}

article .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #172b47;
    cursor: pointer;
    font-size: 112.5%;
}

article .title svg {
    margin-left: 2rem;
}

article .title + div li {
    margin-top: 0.5rem;
}

article span.type {
    font-weight: bold;
}

.title + div {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in;
}

.title {
    padding-top: 24px;
}

.title.selected + div {
    max-height: 5000px;
}

article section {
    border-top: 1px solid #e2e2e2;
    padding-bottom: 24px;
}

article section:last-of-type {
    border-bottom: 1px solid #e2e2e2;
}

article section p {
    margin-bottom: 0;
    flex: 1;
}

article section .title + div p,
article section .title + p {
    margin-top: 24px;
}

.index-1.selected ~ .main-menu .first {
    display: block;
}

.index-1.selected ~ .main-menu .second,
.index-1.selected ~ nav.index {
    display: none;
}

.index-2.selected ~ .main-menu .first {
    display: none;
}

.index-2.selected ~ .main-menu .second {
    display: block;
}

.first,
.second,
.hero {
    visibility: visible;
    opacity: 1;
    max-height: none;
    overflow: unset;
    pointer-events: all;
    transition: opacity, 0.7s;
    position: unset;
}

.hero {
    overflow: hidden;
    max-height: 45vh;
}

.first.hidden,
.second.hidden,
.hero.hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: -100%;
    left: -100%;
}

@media screen and (min-width: 768px) {
    .hero h1 {
        width: 70%;
        font-size: 2rem;
        font-size: revert;
    }

    .hero img {
        max-width: 42%;
        top: 2rem;
        bottom: auto;
    }
}

@media screen and (min-width: 1024px) {
    .privacy-container {
        display: flex;
        justify-content: space-between;
    }

    header {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 20;
    }

    .row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 960px;
        margin: 0 auto;
    }

    .first,
    .second {
        padding: 0;
    }

    .second {
        max-width: 740px;
        width: 100%;
        flex: auto;
    }

    .logo {
        max-width: 30%;
        margin: 0;
        cursor: pointer;
    }

    .main-menu {
        width: 50%;
    }

    nav {
        padding: 0;
    }

    nav.index {
        box-shadow: none;
        top: 123px;
        height: 100%;
        margin-right: 2rem;
    }

    nav.index svg {
        display: none;
    }

    nav.index ul {
        display: block;
    }

    nav.index ul li {
        font-weight: normal;
        border-left: 5px solid transparent;
        margin-top: 1rem;
        padding: 0;
        padding-left: 1rem;
        transition: all 0.3s;
    }

    nav.index div {
        display: none;
    }

    .hero {
        max-height: 55vh;
        padding: 0;
    }

    .hero .row {
        align-items: center;
        justify-content: space-between;
        padding-left: 4rem;
    }

    .hero img {
        right: 4rem;
    }

    .card {
        max-width: 32%;
    }

    .first article .title {
        cursor: unset;
    }

    .second article:first-of-type h2 {
        margin-top: 1rem;
    }

    article img {
        max-width: 15%;
    }

    article ul {
        margin-top: 24px;
    }

    article p,
    article li {
        font-size: inherit;
    }

    footer {
        padding: 2rem 5rem;
    }

    footer a img {
        max-height: 32px;
    }

    footer .social img {
        width: 24px;
    }
}

@media screen and (min-width: 1440px) {
    .privacy-container,
    footer .grid,
    .row {
        max-width: 1024px;
    }

    .second {
        max-width: 960px;
    }
}

@media screen and (min-width: 1800px) {
    .privacy-container,
    footer .grid,
    .row {
        max-width: 1440px;
    }
}
