@font-face {
    font-family: 'Gotham Pro';
    src: url('./fonts/GothamPro-Italic.eot');
    src: local('Gotham Pro Italic'), local('GothamPro-Italic'),
    url('./fonts/GothamPro-Italic.eot?#iefix') format('embedded-opentype'),
    url('./fonts/GothamPro-Italic.woff') format('woff'),
    url('./fonts/GothamPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('./fonts/GothamPro-Medium.eot');
    src: local('Gotham Pro Medium'), local('GothamPro-Medium'),
    url('./fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'),
    url('./fonts/GothamPro-Medium.woff') format('woff'),
    url('./fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('./fonts/GothamPro-Light.eot');
    src: local('Gotham Pro Light'), local('GothamPro-Light'),
    url('./fonts/GothamPro-Light.eot?#iefix') format('embedded-opentype'),
    url('./fonts/GothamPro-Light.woff') format('woff'),
    url('./fonts/GothamPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('./fonts/GothamPro-Black.eot');
    src: local('Gotham Pro Black'), local('GothamPro-Black'),
    url('./fonts/GothamPro-Black.eot?#iefix') format('embedded-opentype'),
    url('./fonts/GothamPro-Black.woff') format('woff'),
    url('./fonts/GothamPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('./fonts/GothamPro.eot');
    src: local('Gotham Pro'), local('GothamPro'),
    url('./fonts/GothamPro.eot?#iefix') format('embedded-opentype'),
    url('./fonts/GothamPro.woff') format('woff'),
    url('./fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    outline: none;
    text-decoration: unset;
}

body {
    margin: 0;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.625;
    overflow-x: hidden;
}

.content {
    max-width: 1382px;
    margin: auto;
    padding: 0 1rem;
}

.black {
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 900;
}

.medium {
    font-family: "Gotham Pro", sans-serif;
    font-weight: 500;
}

.regular {
    font-family: "Gotham Pro", sans-serif;
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    margin: 0;
    line-height: 1;
}

@media (max-width: 1200px) {
    h2 {
        line-height: 1.25;
    }
}

h1,
h2 {
    font-size: 40px;
    color: #fff;
}

h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 900;
}

@media (max-width: 500px) {
    h1,
    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}

p {
    margin-top: 0;
}

input,
textarea {
    color: #393833;
    padding: 20px 25px;
    transition: 0.3s;
    font-size: 14px;
    line-height: 1.625;
    border: 1px solid transparent;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: normal;
}

input:focus,
textarea:focus {
    border: 1px solid #2cdaf5 !important;
    box-shadow: 0 0 15px rgba(127, 215, 255, .75);
}

@media (max-width: 400px) {
    input,
    textarea {
        padding: 1rem;
    }

    .cross-popup {
        top: 0.8rem;
        right: 0.8rem;
    }
}

textarea {
    height: 200px;
    min-height: 100px;
    resize: none;
}

.button {
    padding: 30px;
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Gotham Pro", sans-serif;
    font-weight: 500;
}

.blue-button {
    background: linear-gradient(#18a0d7, #0b4e8a);
    color: #fff;
    border: 1px solid #007eeb;
    transition: 0.3s;
}

.blue-button:hover {
    box-shadow: 0 0 15px rgba(0, 172, 236, 0.7);
}

.yellow-button {
    background: linear-gradient(#ffc600, #ff9000);
    border: 1px solid #ffcc51;
    color: #fff;
    transition: 0.3s;
}

.yellow-button.button:hover {
    box-shadow: 0 0 15px rgba(255, 255, 137, 0.75);
}

.popup {
    position: fixed;
    display: none;
    justify-content: space-around;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 150;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup.opened {
    display: flex;
}

.popup-content-block {
    max-width: 900px;
    width: 90%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 90%;
    background-color: #171717;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content-block.transformed input,
.popup-content-block.transformed button {
    display: none;
}

.popup-content-block h4 {
    display: none;
    color: green;
    font-size: 30px;
    text-align: center;
    padding: 116px 0;
}

.popup-content-block.transformed h4 {
    display: block;
}

.popup-content-block input,
.popup-content-block textarea {
    width: 100%;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    color: #fff;
}

.popup h2 {
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.popup .description {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

.cross-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 50px;
    font-weight: 300;
    transform: rotate(45deg);
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

form {
    text-align: center;
}

@media (max-width: 800px) {
    .popup-content-block {
        padding: 2rem 1rem;
        width: 100%;
        max-height: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cross-popup {
        top: 4px;
        right: 4px;
    }

    .popup-content-block h4 {
        padding: 60px 0;
    }
}
/*hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 80px;
    background-color: #171717;
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left-part img {
    width: 115px;
    margin-right: 30px;
}

.header-left-part .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left-part .links a {
    font-size: 18px;
    color: #f4f4f4;
    margin-left: 40px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    padding: 24px 0;
    cursor: pointer;
}

.header-left-part .links a:hover {
    color: #ffc600;
    border-bottom: 2px solid #ffc600;
}

.header-right-part {
    display: flex;
    align-items: center;
}

.header-right-part a {
    color: #f4f4f4;
}

.header-right-part .img-wrapper {
    width: 40px;
    height: 40px;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.header-right-part .img-wrapper img {
    width: 70%;
}

@media (max-width: 1000px) {
    .header-left-part .links {
        display: none;
    }
}

@media (max-width: 1000px) {
    .header-right-part a {
        display: none;
    }

    .hidden-phone {
        display: block;
    }

    .header-left-part img {
        margin-right: 0;
    }
}
/*bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb*/
.burger {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #007eeb;
    padding: 5px 5px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    display: none;
    margin-left: 1rem;
}

.burger div {
    background-color: #f4f4f4;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: 0.3s;
}

.burger.cross div {
    width: 80%;
    position: absolute;
    top: 12px;
    left: 4px;
}

.burger.cross .line1 {
    transform: rotate(45deg);
}

.burger.cross .line2 {
    display: none;
}

.burger.cross .line3 {
    transform: rotate(-45deg);
}

@media (max-width: 1000px) {
    .burger {
        display: block;
    }
}
/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
.mini-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #171717;
    z-index: 50;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding-bottom: 50px;
}

.mini-menu .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-menu.opened {
    display: flex;
}

.mini-menu .links {
    padding: 8rem 1rem;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.mini-menu .links a {
    display: block;
    margin-bottom: 40px;
    font-size: 18px;
    color: #f4f4f4;
    transition: 0.3s;
    line-height: 2.5;
    cursor: pointer;
}
/*11111111111111111111111111111111111111111111111111111111*/
.content1 {
    width: 100%;
    background-color: #171717;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.content1 img {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: lighten;
}
.shadow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 1100px;
    background-image: linear-gradient(to left, #171717 0%, #171717 50%, transparent);
    z-index: 2;
}

.text1 {
    position: relative;
    z-index: 2;
    text-align: right;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.text1 h1 {
    margin-bottom: 20px;
}

.text1 h3 {
    margin-bottom: 50px;
    color: #ffc600;
}

.text1 p {
    margin-bottom: 55px;
    color: #fff;
    display: block;
    line-height: 1.625;
    text-align: right;
    max-width: 675px;
    margin-top: 0;
}

.text1 button {
    padding: 30px;
}

@media (max-width: 1024px) {
    .content1 {
        min-height: unset;
    }

    .text1 {
        padding: 200px 1rem 120px;
    }
}

@media (max-width: 575px) {

    .text1 {
        align-items: center;
        text-align: center;
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .text1 h3 {
        margin-bottom: 30px;
    }

    .text1 p {
        margin-bottom: 30px;
        text-align: center;
    }

    .text1 button {
        margin-bottom: 20px;
    }
}
/*222222222222222222222222222222222222222222222222*/
.content2 {
}

.blocks2 {
    display: flex;
    flex-wrap: wrap;
}

.block2 {
    width: calc(100% / 3);
    background-color: #171717;
    position: relative;
}

.block2 img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    object-fit: cover;
}

.text2 {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 50px 1rem 60px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.text2 h3 {
    color: #ffc600;
    margin-bottom: 30px;
}

.text2 p {
    color: #fff;
    margin-bottom: 25px;
    flex-grow: 1;
}

@media (max-width: 1200px) {
  .block2 {
      width: calc(100% / 2);
  }
}

@media (max-width: 700px) {
    .block2 {
        width: 100%;
    }

    .text2 h3 {
        margin-bottom: 20px;
    }

    .text2 p {
        margin-bottom: 15px;
    }
}
/*333333333333333333333333333333333333333333333333333333*/
.content3 {
    background: linear-gradient(#18a0d7, #0b4e8a);
    position: relative;
}

.content3 .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    object-fit: cover;
}

.body3 {
    text-align: center;
    color: #fff;
    padding: 120px 1rem 60px;
    position: relative;
    z-index: 2;
}

.body3 h2 {
    margin-bottom: 55px;
}

.body3 p {
    margin-bottom: 50px;
}

.blocks3 {
    display: flex;
    margin: 0 -1rem;
}

.block3 {
    text-align: left;
    width: calc(100% / 3 - 2rem);
    margin: 0 1rem 40px;
}

.block3 img {
    margin-bottom: 30px;
}

.block3 h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.block3 p {
    font-size: 14px;
    line-height: 1.714;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .body3 {
        padding: 70px 1rem 10px;
    }

    .body3 h2 {
        margin-bottom: 30px;
    }

    .body3 p {
        margin-bottom: 70px;
    }

    .blocks3 {
        flex-wrap: wrap;
    }

    .block3 {
        width: 100%;
        text-align: center;
    }

    .block3 img {
        margin-bottom: 20px;
    }

    .block3 h4 {
        margin-bottom: 20px;
    }

    .block3 p {
        margin-bottom: 20px;
    }
}
/*44444444444444444444444444444444444444444444444444*/
.content4 {
    background-color: #171717;
    position: relative;
}

.content4 .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body4 {
    position: relative;
    padding: 120px 1rem;
    text-align: center;
}

.body4 h2 {
    margin-bottom: 55px;
}

.body4 p {
    color: #fff;
    margin-bottom: 40px;
}

.block4 {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #171717;
    background-color: #f4f4f4;
    text-align: left;
}

.block4:nth-child(even) {
    background-color: transparent;
}

.block4 p {
    color: #171717;
    margin: 0 1rem 0 0;
    font-size: 14px;
    line-height: 1.857;
}

.block4:nth-child(even) p {
    color: #fff;
}

.block4 h6 {
    font-size: 14px;
    line-height: 1.857;
    white-space: nowrap;
}

.block4:nth-child(even) h6 {
    color: #fff;
}

@media (max-width: 700px) {
   .body4 {
       padding: 70px 1rem;
   }

    .body4 h2 {
        margin-bottom: 30px;
    }
}
/*5555555555555555555555555555555555555555555555555555*/
.content5 {
    background: linear-gradient(#18a0d7, #0b4e8a);
    position: relative;
}

.content5 .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    object-fit: cover;
}

.body5 {
    text-align: center;
    padding: 120px 1rem;
    position: relative;
}

.body5 h2 {
    margin-bottom: 55px;
}

.body5 p {
    color: #fff;
    margin-bottom: 55px;
}

.block5.transformed .input-block,
.block5.transformed button {
    display: none;
}

.block5 h4 {
    color: #ffc600;
    font-size: 30px;
    display: none;
    padding: 64.5px 0;
}

.block5.transformed h4 {
    display: block;
}

.input-block {
    width: 69%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-block input {
    width: 48%;
    margin: 0 10px 20px;
}

@media (max-width: 800px) {
    .body5 {
        padding: 70px 1rem;
    }

    .body5 h2 {
        margin-bottom: 30px;
    }

    .body5 p {
        margin-bottom: 30px;
    }

    .input-block {
        flex-direction: column;
        width: 80%;
    }

    .input-block input {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .input-block {
        width: 100%;
    }
}
/*66666666666666666666666666666666666666666666666*/
.content6 {
    background-color: #171717;
    position: relative;
    overflow: hidden;
}

.content6 .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body6 {
    position: relative;
    padding: 120px 1rem;
    text-align: center;
    color: #fff;
}

.body6 h2 {
    margin-bottom: 40px;
}

.blocks6 {
    margin: 0 -30px 0;
}

.blocks6-wrapper {
    display: flex;
}

.block6 {
    width: calc(100% / 2 - 60px);
    margin: 0 60px 30px 0;
    padding: 30px;
    text-align: left;
}

.first-line,
.second-line {
    display: flex;
    align-items: center;
}

.date {
    padding: 10px 15px;
    margin: 20px 30px 20px 0;
    pointer-events: none;
}

.second-line h5 {
    font-size: 14px;
    line-height: 1.857;
    font-style: italic;
    margin-right: 20px;
}

.stars {
    display: flex;
}

.star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background-color: #ffc600;
    width: 17px;
    height: 17px;
    margin: 3px;
}

.star.wight {
    background-color: #fff;
}

.arrows {
    display: flex;
    justify-content: center;
}

.left-arrow,
.right-arrow {
    width: 50px;
    height: 50px;
    margin: 10px;
    transition: 0.3s;
    cursor: pointer;
    background-position: center;
    background-size: cover;
}

.left-arrow {
    background-image: url("./ico/left.png");
}

.left-arrow:hover {
    background-image: url("./ico/left-h.png");
}

.right-arrow {
    background-image: url("./ico/right.png");
}

.right-arrow:hover {
    background-image: url("./ico/right-h.png");
}

.body6-2 {
    position: relative;
    text-align: center;
    padding-bottom: 90px;
}

.body6-2 h2 {
    margin-bottom: 55px;
}

.body6-2 .makes {
    color: #fff;
}

.body6-2 h6 {
    color: #fff;
    display: inline;
    font-size: 16px;
    line-height: 1.625;
    font-weight: unset;
}

.logo-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
}

.logo-line .img-wrapper {
    max-height: 80px;
    margin: 0 20px 30px;
}

.logo-line img {
    height: 100%;
    opacity: 0.6;
}

@media (max-width: 700px) {
    .body6 {
        padding: 70px 1rem;
    }

    .body6 h2 {
        margin-bottom: 0;
    }

    .body6-2 {
       padding-bottom: 70px;
    }

    .body6-2 h2 {
        margin-bottom: 30px;
    }

    .block6 {
        width: 100%;
        margin: 0;
        padding: 30px 30px 0;
    }
}

@media (max-width: 500px) {
    .logo-line .img-wrapper {
        max-height: 70px;
        margin: 10px 5px;
    }
}
/*777777777777777777777777777777777777777777777777777777*/
.content7{
    position: relative;
}

.iframe-wrapper {
    width: 100%;
    height: 500px;
    display: block;
}

.block7 {
    top: 115px;
    left: 12%;
    position: absolute;
    z-index: 5;
}

.text7 {
    max-width: 390px;
    padding: 70px 35px 40px;
    position: relative;
}

.text7 h2 {
    margin-bottom: 30px;
}

.text7 p {
    opacity: 0.6;
    font-size: 14px;
    line-height: 1.857;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.text7 h5 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
}

.text7 a {
    color: #fff;
    font-size: 16px;
}

@media (max-width: 1200px) {
   .block7 {
       left: 0;
   }
}

@media (max-width: 850px) {
    .block7 {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
    }

    .text7 {
        max-width: 100%;
        text-align: center;
    }

    .text7 h2 {
        margin-bottom: 20px;
        margin-top: 40px;
    }

    .text7 p {
        margin-bottom: 10px;
    }

    .iframe-wrapper {
        height: 250px;
    }
}
/*fffffffffffffffffffffffffffffffffffffffffffffffff*/
.footer {
    width: 100%;
    pointer-events: none;
}

.f-block {
    padding-top: 25px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-block img {
    width: 115px;
}

.f-block p {
    font-size: 10px;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 480px;
}

@media (max-width: 700px) {
   .f-block {
       flex-direction: column;
   }

    .f-block p {
        text-align: center;
    }
}
