html, body {
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    background: var(--background-color);
    color: #FFFFFF;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

* {
    --company-color: #FFC576;
    --background-color: #1F2336;
    --background-color-light: #2D304A;
    user-select: none;
}

header {
    height: 80px;
    line-height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: var(--background-color);
}

header .section-content {
    margin: auto;
    display: grid;
    grid-template-columns: 85px 1fr 320px;
}

section {
    width: 100%;
    margin: auto;
    height: calc(100vh - 80px);
    display: grid;
    place-items: center;
}

footer {
    width: 100%;
    height: 150px;
}

footer .section-content {
    height: 100%;
    display: grid;
    grid-template-columns: 52px 700px 1fr;
    grid-column-gap: 46px;
    place-items: center;
}

footer .logo {
    height: 52px;
    width: 52px;
}

.about {
    background: var(--background-color-light);

}

.about .title {
    font-size: 58px;
    margin: 40px auto;
}

.button {
    height: 58px;
    line-height: 58px;
    width: 194px;
    color: #1F2336;
    font-size: 16px;
    background-color: var(--company-color);
    text-align: center;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.company-name {
    text-align: left;
    text-transform: uppercase;
    color: var(--company-color);
    font-size:24px;
    font-weight: 500;

}

.contact {
    background-color: var(--background-color-light);

}

.contact-content {
    font-size: 32px;
}

.contact-grid {
    list-style: none;
    padding: 0;
    display: grid;
    margin-top: 70px;

}

.contact-item {
    display: grid;
    grid-template-rows: 36px 16px 1fr;
    grid-row-gap: 16px;
    place-items: center;

}

.contact-item .small-text {
    font-size: 16px;
    line-height: 24px;
}

.content {
    margin: 40px auto 60px;
    font-size: 18px;
}

.feature-content {
    text-align: left;

}

.feature-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    padding: 0;
    margin: auto;
}

.feature-image {
    margin: 25px auto;

}

.feature-item {
    width: 340px;
    height: 566px;
    background: var(--background-color);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
}

.feature-title {
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    line-height: 36px;

}

.help .content {
    font-size:16px;
}

.logo {
    align-self: center;
}

.main {
    display: grid;
    place-items: center;
}

.main .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    text-align: left;
    margin: auto;
}

.main .button {
    margin-bottom: 100px;
}

.nav {
    display: grid;
    grid-auto-flow: column;
    list-style: none;
    color: var(--company-color);
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.nav-item {
    cursor: pointer;

}

.privacy {
    display: none;
    height: unset;
}

.privacy-links {
    justify-self: end;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.privacy-links div {
    cursor: pointer;
}

.section-content {
    width: 100%;
    max-width: 1366px;
    padding: 0 60px;
    box-sizing: border-box;
    margin: auto;
}

.small-text {
    font-size: 18px;
    line-height: 36px;
    color: #82FFEC;

}

.terms {
    display: none;
    height: unset;
}

.terms-content {
    background-color: #FFFFFF;
    border-radius: 5px;
    color: #1F2336;
    padding: 40px 60px;
    text-align: left;
    box-sizing: border-box;
    margin-top: 60px;
}

.terms-content iframe {
    width: 100%;
    height: 40vh;
    border: none;
}

.terms-date {
    text-align: left;
    line-height: 36px;

}

.terms-line {
    margin-top: 10px;
    height: 2px;
    width: 60px;
    background: #82FFEC;
    text-align: left;
}

.terms-title {
    text-align: left;
}

.title {
    font-weight: 700;
    font-size: 68px;

}

@media screen and (max-width: 1366px) {
    body {
        font-size: 14px;
    }

    .about .title {
        margin: 20px auto;
        font-size: 38px;
    }

    .main-left-img {
        width: 460px;
    }

    .title {
        font-size: 48px;
    }



    .feature-image {
        width: 180px;
    }

    .feature-item {
        width: 280px;
        height: 420px;
    }

    .feature-content {
        font-size: 14px;
    }

    .feature-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;

    }

    .help .content {
        margin: 24px auto;
    }

    .help-graphic {
        height: 380px;
    }

    .help .title {
        font-size: 38px;
    }

    .contact-content {
        font-size: 24px
    }
}

