@font-face {
    font-family: "ProximaNova";
    src: url("../fonts/ProximaNova-Regular.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "ProximaNova";
    src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
    font-weight: 500;
}

@font-face {
    font-family: "ProximaNova";
    src: url("../fonts/ProximaNova-Bold.woff") format("woff");
    font-weight: 600;
}

@font-face {
    font-family: "ProximaNova";
    src: url("../fonts/ProximaNova-Extrabld.woff") format("woff");
    font-weight: 700;
}

* {
    box-sizing: border-box;
}

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

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

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

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

.header {
    padding-top: 38px;
    padding-bottom: 38px;
}

@media screen and (max-width: 1024px) {
    .header {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

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

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

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

@media screen and (max-width: 767px) {
    .main-title {
        font-size: 43px;
    }
}

.main-title__text {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 40px;
    width: 55%;
    min-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1024px) {
    .main-title__text {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .main-title__text {
        min-width: 1px;
        width: 100%;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.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: space-between;
    height: 740px;
    overflow: hidden;
    transition: height 1s ease-out;
}

.full-adopters {
    height: auto;
}

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

@media screen and (max-width: 1024px) {
    .adopters-item {
        width: 30%;
        min-width: 201px;
        height: 210px;
    }
}

@media screen and (max-width: 767px) {
    .adopters-item {
        min-width: 130px;
        height: 130px;
        width: 45%;
        max-width: 160px;
    }
}

.adopters-item:nth-child(11n + 7) {
    margin-left: 95px;
}

.adopters-item:nth-child(11n + 11) {
    margin-right: 95px;
}

@media screen and (max-width: 1024px) {
    .adopters-item:nth-child(11n + 7) {
        margin-left: 0;
    }

    .adopters-item:nth-child(11n + 11) {
        margin-right: 0;
    }

    .adopters-item:nth-child(5n + 4) {
        margin-left: 15%;
    }

    .adopters-item:nth-child(5n + 5) {
        margin-right: 15%;
    }
}

@media screen and (max-width: 767px) {
    .adopters-item:nth-child(5n + 4) {
        margin-left: 0;
    }

    .adopters-item:nth-child(5n + 5) {
        margin-right: 0;
    }
}

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

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

@media screen and (max-width: 1024px) {
    .subscribe {
        padding-top: 93px;
        padding-bottom: 93px;
    }
}

@media screen and (max-width: 767px) {
    .subscribe {

    }
}

.subscribe-form {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

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

.read-data__permission {
    display: none;
}

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

.read-data {
    color: black;
    font-size: 12px;
    font-weight: 400;
    padding-left: 15px;
}

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

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

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

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

@media screen and (max-width: 767px) {
    .subscribe-title {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

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

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

footer {
    padding-bottom: 80px;
}

.footer-top {
    border-top: 1px solid rgb(240, 240, 240);
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}

.footer-partners {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
}

.footer-copyright {
    color: rgb(170, 170, 170);
    font-size: 12px;
    font-weight: 400;
    margin-top: 47px;
}

@media screen and (max-width: 767px) {
    .footer-copyright {
        text-align: center;
    }
}

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

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

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


.social__item {
    text-decoration: none;
}

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

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

.adopters {
    margin-top: 80px;
    margin-bottom: 90px;
}

.subscribe-success {
    display: none;
}

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

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

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