@font-face {
    font-family: 'ProximaNova';
    font-weight: 400;

    src: url('../fonts/ProximaNova-Regular.woff') format('woff');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: 500;

    src: url('../fonts/ProximaNova-Semibold.woff') format('woff');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: 600;

    src: url('../fonts/ProximaNova-Bold.woff') format('woff');
}

@font-face {
    font-family: 'ProximaNova';
    font-weight: 700;

    src: url('../fonts/ProximaNova-Extrabld.woff') format('woff');
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    max-width: 100%;
    font-family: 'ProximaNova', sans-serif;
}

.wrap {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}

@media screen and (max-width: 1023px) {
    .wrap {
        max-width: 100%;
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media screen and (max-width: 767px) {
    .wrap {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.header {
    text-align: center;
    background-color: rgb(240, 240, 240);
    padding-top: 53px;
    padding-bottom: 152px;
}

@media screen and (max-width: 1023px) {
    .header {
        padding-top: 60px;
        padding-bottom: 127px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding-top: 34px;
        padding-bottom: 51px;
    }
}

.main-title {
    text-align: center;
    font-family: 'ProximaNova', sans-serif;
    font-size: 85px;
    font-weight: 700;
    margin-top: 116px;
    margin-bottom: 23px;
}

@media screen and (max-width: 1023px) {
    .main-title {
        font-size: 60px;
        margin-top: 135px;
        margin-bottom: 28px;
    }
}

@media screen and (max-width: 767px) {
    .main-title {
        font-size: 40px;
        margin-top: 54px;
        margin-bottom: 19px;
    }
}

.main-title__text {
    font-size: 20px;
    font-weight: 400;
    max-width: 811px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .main-title__text {
        margin-bottom: 20px;
    }
}

.form-line {
    position: relative;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .form-line {
        flex-wrap: wrap;
    }
}

.btn {
    display: inline-block;
    width: 33%;
    margin-right: 15px;
    margin-left: 15px;
    padding-top: 14px;
    padding-right: 15px;
    padding-bottom: 14px;
    padding-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    text-align: center;
    text-transform: uppercase;
    color: black;
    border: 1px solid black;
    background-color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    max-width: 220px;
}

@media screen and (max-width: 767px) {
    .btn {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        max-width: 100%;
    }
}

.btn:hover {
    transition: all 0.3s ease-out;
    color: white;
    border-color: black;
    background-color: black;
}

@media screen and (max-width: 767px) {
    .btn {
        width: 100%;
    }
}

.btn--red {
    transition: all 0.3s ease-out;
    color: white;
    border: 1px solid rgb(218, 43, 29);
    background-color: rgb(218, 43, 29);
}

.btn--red:hover {
    transition: all 0.3s ease-out;
    border-color: black;
    background-color: black;
}

.btn--black {
    transition: all 0.3s ease-out;
    color: white;
    background-color: black;
}

.btn--black:hover {
    transition: all 0.3s ease-out;
    color: white;
    border-color: rgb(218, 43, 29);
    background-color: rgb(218, 43, 29);
}

.input-field {
    display: inline-block;
    width: 67%;
    margin-right: 15px;
    margin-left: 15px;
    padding: 14px 20px;
    color: black;
    border: none;
    outline: none;
    background-color: rgb(240, 240, 240);
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width: 767px) {
    .input-field {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        margin-left: 0;
    }
}

.input-field::placeholder {
    color: black;
}

.input-field::-moz-placeholder {
    color: black;
}

.input-field--white {
    background-color: white;
}

.adopters-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 92px;
}

@media screen and (max-width: 1023px) {
    .adopters-list {
        margin-top: 43px;
    }
}

@media screen and (max-width: 767px) {
    .adopters-list {
        margin-top: 20px;
    }
}

.adopters-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    padding-right: 17px;
    padding-left: 17px;
    background-color: rgb(240, 240, 240);
    margin-left: 15px;
    margin-right: 15px;
}

@media screen and (max-width: 1500px) {
    .adopters-item:nth-child(n+43) {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .adopters-item:nth-child(n+31) {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .adopters-item:nth-child(n+21) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .adopters-item {
       margin-bottom: 34px; 
    }

    .adopters-item:nth-child(n+11) {
        display: none;
    }
}

.adopters-item__logo {
    max-width: 100%;
    height: auto;
}

.subscribe {
    width: 100%;
    padding-top: 200px;
    padding-bottom: 219px;
    background-color: rgb(240, 240, 240);
}

@media screen and (max-width: 767px) {
    .subscribe {
        padding-top: 119px;
        padding-bottom: 139px;
    }
}

@media screen and (max-width: 767px) {
    .subscribe {
        padding-top: 60px;
        padding-bottom: 67px;
    }
}

.subscribe-form {
    max-width: 729px;
    margin-top: 52px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .subscribe-form {
        width: 100%;
        margin-top: 38px;
    }
}

.read-data__permission {
    display: none;
}

.subscribe-form.subscribe-form-permissions--checked .read-data__permission {
    display: block;
}

.read-data {
    padding-left: 15px;
    color: black;
    font-size: 14px;
    font-weight: 400;
    max-width: 457px;
    text-align: left;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .read-data {
        max-width: 100%;
    }
}

.read-data__link {
    transition: all 0.3s ease-out;
    color: black;
}

.read-data__link:hover {
    transition: all 0.3s ease-out;
    text-decoration: none;
    color: rgb(218, 43, 29);
}

.subscribe-title {
    margin: 0;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .subscribe-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .subscribe-title {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.social {
    padding-top: 90px;
    padding-bottom: 123px;
}

.social-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.footer {
    padding-top: 75px;
    padding-bottom: 85px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 71px;
        padding-bottom: 71px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 46px;
        padding-bottom: 52px;
    }
}

.footer-copyright {
    text-align: center;
    margin-top: 47px;
    color: black;
    font-size: 12px;
    font-weight: 400;
}

.social-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 35%;
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media screen and (max-width: 1024px) {
    .social-list {
        max-width: 366px;
    }
}

@media screen and (max-width: 767px) {
    .social-list {
        width: 100%;
        margin-top: 45px;
    }
}

.social__item {
    text-decoration: none;
}

.social__item:hover svg {
    fill: rgb(218, 43, 29);
}

.button-wrap {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .button-wrap {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 10px;
    }
}

.adopters {
    margin-top: 80px;
    margin-bottom: 90px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media screen and (max-width: 1023px) {
    .adopters {
        margin-top: 111px;
    }
}

@media screen and (max-width: 767px) {
    .adopters {
        margin-top: 66px;
        margin-bottom: 83px;
    }
}

.subscribe-success {
    display: none;
}

.subscribe-error {
    position: absolute;
    top: 0;
    left: 15px;
    display: none;
    color: rgb(218, 43, 29);
    font-size: 10px;
}

@media screen and (max-width: 767px) {
    .subscribe-error {
        left: 0;
    }
}

fieldset {
    margin: 0;
    padding: 0 0 0 15px;
    border: 0;
    outline: 0;
}

.footer-logo {
    width: 125px;
}

@media screen and (max-width: 767px) {
    .footer-logo {
        width: 70px;
    }
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .checkbox-wrap {
        justify-content: flex-start;
    }
}

.checkbox-hidden {
    visibility: hidden;
    width: 0;
    height: 0;
}

.checkbox-real {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 0;
    border: none;
    background-color: white;
    display: inline-block;
    position: relative;
}

.checkbox-real svg {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    margin: 0;
    margin-left: -7px;
    margin-top: -4px;
}

.checkbox-hidden:checked + .checkbox-real svg {
    display: block;
}

.bottom-checkbox {
    margin-top: 52px;
}

.btn--red {
    background-color: rgb(218, 43, 29);
}

.subtitle {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 25px;
}

@media screen and (max-width: 1023px) {
    .subtitle {
        max-width: 641px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    .subtitle {
        font-size: 24px;
        margin-bottom: 19px;
    }
}

.banner {
    width: 100%;
    max-width: 100%;
    height: 630px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-logo {
    width: 120px;
}

@media screen and (max-width: 767px) {
    .header-logo {
        width: 70px;
    }
}

.top-checkbox {
    margin-top: 37px;
    padding-left: 0;
}

.upcoming {
    text-align: center;
    padding-top: 215px;
}

@media screen and (max-width: 1023px) {
    .upcoming {
        padding-top: 127px;
    }
}

@media screen and (max-width: 767px) {
    .upcoming {
        padding-top: 88px;
    }
}

.chess-block {
    max-width: 1355px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 95px;
}

@media screen and (max-width: 1023px) {
    .chess-block {
        max-width: 600px;
        margin-top: 67px;
    }
}

@media screen and (max-width: 767px) {
    .chess-block {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.chess__txt {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 17px;
    line-height: 1.4;
    text-align: left;
}

.chess-block__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 112px;
    font-size: 17px;
}

@media screen and (max-width: 1023px) {
    .chess-block__item {
        display: block;
        margin-bottom: 67px;
    }
}

@media screen and (max-width: 767px) {
    .chess-block__item {
        margin-bottom: 50px;
    }
}

.chess-block__pic {
    order: 1;
    width: 50%;
    height: 396px;
}

@media screen and (max-width: 1280px) {
    .chess-block__pic {
        height: 360px;
    }
}
@media screen and (max-width: 1023px) {
    .chess-block__pic {
        width: 100%;
        height: auto;
        padding-right: 0;
        padding-left: 0;
    }
}

.chess-block__pic img {
    max-width: 100%;
    height: 100%;

    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .chess-block__pic img {
        height: auto;
    }
}

.chess-block__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    order: 1;
    width: 50%;
    height: 100%;
    padding: 0 78px 0 71px;
}

@media screen and (max-width: 1023px) {
    .chess-block__content {
        width: 100%;
        padding: 0;
        padding-top: 29px;
        padding-right: 0;
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .chess-block__content {
        padding-top: 25px;
    }
}

.chess-block__item:nth-child(even) .chess-block__pic {
    order: 3;
}

.upcoming__title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    margin-bottom: 48px;
}

@media screen and (max-width: 1280px) {
    .upcoming__title {
        margin-bottom: 33px;
    }
}

@media screen and (max-width: 767px) {
    .upcoming__title {
        margin-bottom: 24px;
        font-size: 32px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.upcoming__subtitle {
    max-width: 740px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .upcoming__subtitle {
        max-width: 100%;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.chess__subtitle {
    margin: 0;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
    width: 100%;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .chess__subtitle {
        margin-bottom: 16px;
    }
}

.open-call-txt {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 0;
    text-align: left;
    width: 100%;
}

.coming-soon-text {
    font-style: normal;
    font-size: 22px;
    text-transform: uppercase;
}