body {
    font-family: 'Roboto', sans-serif;
    background-color: #E7E7E7
}

.landing {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 800px;
    margin: 0;
    overflow: hidden;
}

.foot-link {
    text-align: center;
    color: white;
    margin-bottom: 0;
    font-size: 40px;
}

@media (max-width: 768px) {
    .foot-link {
        text-align: center;
        color: white;
        margin-bottom: 0;
        font-size: 25px;
    }
}
.manufacturers .center {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 420px) {
    .foot-link {
        text-align: center;
        color: white;
        margin-bottom: 0;
        font-size: 20px;
    }
}

.foot-link a {
    color: white;
}

.landing .logo svg {
    fill: #1e1c45;
}

.landing .base {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* padding: 38px; */
    color: #082352;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    background: #fff;
}

.landing .image {
    display: none;
}

/*--------------------
Copy
--------------------*/
.copy {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: 50px;
}

.copy .title {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
    margin-left: -3px;
    background: #F5CE01;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 840px;
    margin-right: 15px;
    padding-left: 20%;
}

.copy .title span {
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copy .text {
    color: #282652;
    width: 50%;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    padding-left: 40px;
    background-color: white;
    padding: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
}

.copy .text .inner_ttext {
    padding-left: 50px;
}

.copy .text ul {
    font-weight: 400;
    padding-left: 150px;
}

.copy .cta {
    cursor: pointer;
    margin-top: 40px;
    background: #F5CE01;
    color: #000;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-size: 36px;
    text-decoration: none;
    padding: 15px 77px;
    font-weight: 600;
    position: absolute;
    right: 427px;
    bottom: 60px;
}

/*--------------------
Overlay
--------------------*/
.base.overlay {
    z-index: 2;
    -webkit-clip-path: polygon(45% 0, 100% 0, 100% 800px, 65% 800px);
    clip-path: polygon(45% 0, 100% 0, 100% 800px, 65% 800px);
    color: #fff;
    background: linear-gradient(45deg, #082352, #6f2d52);
    transition: all 0.6s ease-in-out;
    transform-origin: 0 0;
}

.base.overlay.over {
    -webkit-clip-path: polygon(-1750px 0, 100% 0, 100% 800px, 0 100%);
    clip-path: polygon(-1750px 0, 100% 0, 100% 800px, 0 100%);
}

.base.overlay .logo svg {
    fill: #fff;
}

.base.overlay .image {
    display: block;
    position: absolute;
    width: 100%;
    height: 800px;
    top: 0;
    right: 0;
    z-index: 1;
}

.base.overlay .image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    /* background: linear-gradient(42deg, #082352, #6f2d52); */
    opacity: 0.8;
}

.base.overlay .title {
    background-image: linear-gradient(0, #000, #000);
}

.base.overlay .title span {
    background-image: linear-gradient(0, #fff, #fff);
}

.base.overlay .text {
    color: #000;
    background: #F5CE01
}

.base.overlay .cta {
    background: #fff;
    color: #0a2452;
}

@media (max-width: 1300px) {
    .copy {
        padding-top: 50px;
    }
}

@media (max-width: 991px) {
    .copy .title {
        font-size: 24px;
    }

    .copy .text {
        font-size: 18px;
    }

    .copy .cta {
        margin-top: 15px;
    }

    .copy .text {

        width: calc(100% - 30px);
        padding: 15px;
        border-radius: 10px;
        margin-left: 15px;
        margin-right: 15px;
        background-color: white;

    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
}

.navbar {
    justify-content: center;
}

.navbar-collapse {
    flex-grow: 0;
}

header {
    background-color: black;
}

.manufacturers {
    padding: 80px 0 60px;
    background-color: white;
}

.manufacturers h2 {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.preims {
    padding: 130px 0;
}

.preims .col-sm-4 {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.preims .col-sm-4 img {
    max-width: 200px;
    width: 100%;
}

.preims .col-sm-4 span {
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    font-size: 36px;
    line-height: 1;
}

.form {
    width: 100%;
    background-color: #F5CE01;
    padding: 65px 0;
}

.form h2 {
    text-transform: uppercase;
}

.manufacturers img {
    max-width: 100%;
}

.manufacturers .col-lg-4 {
    -ms-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.manufacturers .row {
    justify-content: space-around;
}

.preims .col-sm-4 img {
    margin-top: auto;
    margin-bottom: auto;
}

.form h2 {
    text-align: center;
}

.form form {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 80px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.form form input::placeholder {
    text-align: center;
}

.form form input {
    border: none;
    background: #FFFFFF;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 17px 30px;
    margin-bottom: 40px;
}

.form form {

}

.form form input:not(.wpcf7-submit) {
    width: 100%;
}

.form form .wpcf7-submit {
    border: none;
    background: #3C3C3C;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    font-size: 20px;
    color: white;
    padding-top: 13px;
    padding-bottom: 13px;
    align-self: center;
}
.form form p {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.video p {
    font-size: 4vw;
    font-weight: bold;
}

.video {
    padding-top: 7vw;
    padding-bottom: 7vw;
}

footer {
    padding-top: 30px;
    background-color: black;
    color: white;
    padding-bottom: 30px;
}

.nav-link {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2vw;
    padding-bottom: 0;
}

.nav-link::after {
    content: '•';
    padding-left: 0.5rem;
}

.last-link::after {
    content: '' !important;
}

.nav-link:hover::after {
    color: white;
}

.nav-link span {
    color: #F5CE01;
}

.nav-link {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .video p {
        font-size: 6vw;
    }

    .preims .col-sm-4 span {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .preims {
        padding: 50px 0;
    }

    .copy .cta {
        right: auto;
        left: 15px;
        bottom: auto;
    }

    .navbar {
        flex-direction: column;
    }

    .navbar .navbar-nav {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        flex-direction: row;
    }

    .navbar .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .nav-link::after {
        content: '•';
        padding-left: 0.67rem;
    }

    .nav-link {
        font-size: 20px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .video p {
        font-size: 40px;
    }

    .base.overlay {
        z-index: 2;
        -webkit-clip-path: none;
        clip-path: none;
        color: #fff;

        transition: all 0.6s ease-in-out;
        transform-origin: 0 0;
    }

    .base.overlay.over {
        -webkit-clip-path: none;
        clip-path: none;
    }

    .copy .title {
        padding-left: 30px;
        padding-right: 15px;
        /*border-radius:*/
    }
}

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 540px) {
    .nav-link {
        -ms-align-items: center;
        align-items: center;

    }
}

@media (max-width: 1400px) {
    .copy .text .inner_ttext {
        padding-left: 20px;
    }

    .copy .text {
        font-size: 20px;
    }

    .copy .text ul {
        padding-left: 50px;
    }
}

@media (max-width: 768px) {
    .copy .text {
        font-size: 18px;
    }

    .copy .text > br {
        display: none;
    }
}

@media (max-width: 460px) {
    .copy .text {
        font-size: 16px;
    }

    .copy .text ul {
        padding-left: 20px;
    }

    .copy .text .inner_ttext {
        padding-left: 0;
    }
}


.wa_widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
}
.phone-widget {
    bottom: 90px;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}
.phone-widget img {
    width: 30px;
}
.video h2 {
    font-size: 34px;
    margin-bottom: 20px;
}