@charset "UTF-8";

:root {
    --form-accent-color: rgba(13, 65, 210, 1);
    --widget-code-bg: rgba(13, 65, 210, 0.1);
}

body {
    background: url('../img/header_bg.png') no-repeat center top,
            linear-gradient(180deg, #ACEF81 0%, #E3FAD5 100%);
    font-family: 'FactorA', sans-serif;
}

.container {
    max-width: 1280em;
    padding: 0 72em;
    box-sizing: border-box;
    margin: auto;
    overflow: hidden;
}

.page {
    display: grid;
    gap: 64em;
}

.content {
    background: #fff;
    border-radius: 40em;
    padding: 40em;
}

.header {
    display: grid;
    align-items: center;
    justify-items: left;
    gap: 24em;
    padding: 176em 0 44em;
    position: relative;
}

.header__title {
    font-family: 'Spoof', sans-serif;
    font-weight: 500;
    font-size: 56em;
    line-height: 100%;
    margin: 0;
}

.header__subtitle {
    font-weight: 500;
    font-size: 20em;
    line-height: 120%;
}

.header__decore {
    position: absolute;
    min-width: 1100em;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    z-index: -1;
}

.header__decore1 {
    position: absolute;
    right: 11em;
    top: -21em;
    width: 625em;
    height: 522em;
    background: url('../img/header1.png') no-repeat;
}

@media screen and (min-device-pixel-ratio: 2) {
    .header__decore1 {
        background-image: url('../img/header1@2x.png');
    }
}

.advantages {
    display: grid;
    gap: 40em;
}

.advantage__list {
    all: unset;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32em 24em;
}

.section-title {
    margin: 0;
    font-family: 'Spoof', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40em;
    line-height: 100%;
}

.advantage__item {
    display: grid;
    gap: 16em;
    grid-auto-rows: min-content;
}

.advantage__group {
    display: grid;
    gap: 8em;
}

.advantage__sup {
    font-family: 'Spoof', sans-serif;
    font-weight: 500;
    line-height: 100%;
    font-size: 20em;
}

.advantage__text {
    font-size: 16em;
    line-height: 120%;
    font-weight: 500;
    opacity: 0.5;
}

.advantage__pic {
    width: 128em;
    height: 128em;
    background-repeat: no-repeat;
}

.advantage__pic_1 {
    background-image: url('../img/adv1@1x.png');
}

.advantage__pic_2 {
    background-image: url('../img/adv2@1x.png');
}

.advantage__pic_3 {
    background-image: url('../img/adv3@1x.png');
}

.advantage__pic_4 {
    background-image: url('../img/adv2@1x.png');
}

.advantage__pic_5 {
    background-image: url('../img/adv5@1x.png');
}

.advantage__pic_6 {
    background-image: url('../img/adv6@1x.png');
}

@media screen and (min-device-pixel-ratio: 2) {
    .advantage__pic_1 {
        background-image: url('../img/adv1@2x.png');
    }

    .advantage__pic_2 {
        background-image: url('../img/adv2@2x.png');
    }

    .advantage__pic_3 {
        background-image: url('../img/adv3@2x.png');
    }

    .advantage__pic_4 {
        background-image: url('../img/adv2@2x.png');
    }

    .advantage__pic_5 {
        background-image: url('../img/adv5@2x.png');
    }

    .advantage__pic_6 {
        background-image: url('../img/adv6@2x.png');
    }
}

.section-separator {
    background: rgba(0, 0, 0, 0.1);
    height: 1em;
    margin: 60em 0;
}

.partners {
    display: grid;
    gap: 50em
}

.partners__list {
    all: unset;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24em;
}

.partners__item {
    display: grid;
    gap: 24em;
    grid-auto-rows: min-content;
}

.partners__pic {
    width: 100em;
    height: 100em;
}

.partners__pic_1 {
    background-image: url('../img/partner1.svg');
}

.partners__pic_2 {
    background-image: url('../img/partner2.svg');
}

.partners__pic_3 {
    background-image: url('../img/partner3.svg');
}

.partners__text {
    font-family: 'Spoof', sans-serif;
    font-weight: 500;
    font-size: 20em;
    line-height: 120%;
}

.accent-text {
    color: rgba(13, 65, 210, 1);
}

.footer {
    display: grid;
    margin-top: 60em;
}

.footer-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24em
}

.footer-block {
    display: grid;
    padding: 24em;
    border: 1em solid rgba(255, 255, 255, 1);
    border-radius: 32em;
    background-color: rgba(255, 255, 255, 0.3);
    min-height: 306em;
    box-sizing: border-box;
    grid-auto-rows: 1fr auto;
}

.footer-block__title {
    font-family: 'Spoof', sans-serif;
    font-weight: 500;
    font-size: 24em;
    line-height: 120%;
    margin: 0;
}

.footer-block__list {
    all: unset;
    list-style: none;
    display: grid;
    position: relative;
}

.footer-block__item {
    position: relative;
    padding: 6em 0 6em 14em;
}

.footer-block__item:last-child {
    padding-bottom: 0;
}

.footer-block__item::before {
    content: '';
    position: absolute;
    width: 7em;
    height: 7em;
    background: rgba(13, 65, 210, 1);
    border-radius: 4em;
    left: 0;
    top: 11em;
    z-index: 1;
}

.footer-block__item::after {
    content: '';
    position: absolute;
    background: rgba(13, 65, 210, 0.3);
    width: 1em;
    left: 3em;
    top: 0;
    bottom: 0;
}

.footer-block__item:first-child::after {
    top: 11em
}

.footer-block__item:last-child::after {
    bottom: unset;
    height: 11em;
}

.footer-block__item p {
    font-size: 16em;
    line-height: 120%;
    font-weight: 500;
}

.footer-block__feedback {
    display: grid;
    gap: 4em;
}

.footer-block__feedback-title {
    opacity: 0.5;
    font-size: 16em;
    line-height: 120%;
}

.footer-block__feedback-link {
    font-size: 20em;
    line-height: 120%;
}

.blue-link {
    color: rgba(13, 65, 210, 1);
    text-decoration: none;
}

.blue-link:hover {
    text-decoration: underline;
}

.footer-block_feedback {
    background-image: url('../img/footer2bg.png');
    background-repeat: no-repeat;
    background-position: bottom right;
}

.footer__bye {
    padding: 120em;
}

.footer-bye__text {
    font-family: 'Spoof', sans-serif;
    font-weight: 500;
    font-size: 40em;
    text-align: center;
}

.copy-button {
    background-image: url('../img/copy.svg');
}
