*,
*:focus,
*:hover {
    outline: none;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    scroll-behavior: smooth;
}

body,
button,
input,
select,
optgroup,
textarea {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: #111111;
    position: relative;
    width: 100%;
}

body {
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bebas Neue';
    font-weight: bold;
    line-height: 1.1em;
}

h2.section_title {
    font-size: 44px;
    text-align: center;
}

.btn {
    font-family: 'Bebas Neue';
    color: #fff;
    background-color: #fca311;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-align: center;
    border: 3px solid #111111;
    padding: 14px 38px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: .3s;
}

.btn:hover {
    background-color: #111111;
}

a {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.wrap {
    max-width: 1200px;
    margin: auto;
}

section.padding {
    padding: 80px 0;
    background-color: #fff;
}

section.bgn:nth-child(2n) {
    background-color: #f8f9fa;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.noborder {
    border: 0;
}

a.anchor {
    display: block;
    position: relative;
    top: -140px;
    visibility: hidden;
}


/**
 * Header.
 *
 */
#masthead {
    position: fixed;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111111b0;
    backdrop-filter: blur(10px);
    padding: 10px;
    z-index: 10;
}

#masthead a {
    font-family: 'Bebas Neue';
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

#masthead a:not(.btn):hover {
    color: #fca311;
}

#masthead .site-branding a {
    font-size: 28px;
}

#masthead .contacts a:not(.btn) {
    font-size: 28px;
    margin: 5px 20px;
}

#masthead .contacts {
    display: flex;
    align-items: center;
}


/**
 * Menu.
 *
 */

header .mob-menu,
header .close {
    display: none;
}

header #header_menu .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

header #header_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header #header_menu .inner>ul {
    display: flex;
    align-items: center;
}

header #header_menu .inner>ul>.menu-item {
    position: relative;
    margin: 0 15px;
    z-index: 1;
}

header #header_menu .inner>ul>li.menu-item-has-children {
    padding-right: 22px;
}

header #header_menu .inner>ul>li.menu-item-has-children:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    filter: invert(1);
    width: 18px;
    height: 18px;
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .3s;
}

header #header_menu .inner>ul>li.menu-item-has-children:hover:after {
    transform: rotate(180deg) translateY(50%);
}

header #header_menu .inner .sub-menu .menu-item-has-children:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: rotate(0deg) translateY(-50%);
    right: 4px;
    width: 18px;
    height: 18px;
    background-image: url(../img/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .3s;
}

header #header_menu .inner>ul>.menu-item>.sub-menu {
    position: absolute;
    height: 0;
    overflow: hidden;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    padding: 0;
    border-radius: 0 0 3px 3px;
    background: #fff;
    opacity: 0;
    width: 250px;
    z-index: -1;
    transition: all .3s;
}

header #header_menu .inner>ul>.menu-item>.sub-menu>li {
    position: relative;
}

header #header_menu .inner>ul>.menu-item>.sub-menu>li>.sub-menu {
    position: absolute;
    height: 0;
    overflow: hidden;
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
    padding: 0;
    border-radius: 0 0 3px 3px;
    background: #fff;
    opacity: 0;
    width: 250px;
    z-index: -1;
    transition: all .3s;
}

@media (min-width:990px) {
    header #header_menu .inner>ul>.menu-item:hover>.sub-menu {
        display: block;
        top: 52px;
        opacity: 1;
        z-index: 10;
        height: auto;
        overflow: visible;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    header #header_menu .inner>ul>.menu-item>.sub-menu>li:hover>.sub-menu {
        display: block;
        top: 0;
        left: 250px;
        opacity: 1;
        z-index: 10;
        height: auto;
        overflow: visible;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

header #header_menu .menu-item .sub-menu a {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #212121;
    padding: 12px 15px;
    transition: background .3s;
    border-bottom: 1px solid #EDEDED;
}

header #header_menu .menu-item .sub-menu a:hover {
    background: #f7f7f7;
}


@media (max-width:990px) {

    body.m_open {
        overflow: hidden;
    }

    header .mob-menu svg {
        color: #fff;
        width: 32px;
    }

    header .close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 201;
        transition: all .3s;
        cursor: pointer;
    }

    header .close svg {
        color: #333;
        width: 28px;
    }

    header .close.active {
        display: block;
    }

    header .mob-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 10;
    }

    header #header_menu .inner {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        z-index: 200;
        background-color: rgba(255, 255, 255, 0.9);
        -webkit-backdrop-filter: blur(7px);
        backdrop-filter: blur(7px);
        transition: all .3s;
        padding: 40px 0;
        overflow: hidden;
        overflow-y: auto;
    }

    header #header_menu.open .inner {
        left: 0;
    }


    header #header_menu .inner a {
        color: #212121;
        padding: 10px 20px;
        border-bottom: 1px solid #EDEDED;
    }

    header #header_menu .inner>ul {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    header #header_menu .inner>ul>.menu-item {
        margin: 0;
        width: 100%;
    }

    header #header_menu .inner>ul>.menu-item>a {
        font-size: 22px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0;
    }

    header #header_menu ul>.menu-item.active>.sub-menu,
    header #header_menu .inner>ul>.menu-item>ul>.menu-item.active>.sub-menu {
        position: unset;
        background: none;
        box-shadow: none;
        height: auto;
        opacity: 1;
        width: 100%;
        z-index: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    header #header_menu .menu-item .sub-menu a {
        font-weight: 400;
        color: #212121;
        padding: 10px 35px;
    }

    header #header_menu .menu-item .sub-menu a:hover {
        background: unset;
    }


}







/**
 * Home Section.
 *
 */
section.home {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 650px;
}

section.home .wrap {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

section.home .wrap>div {
    width: 50%;
}

section.home .content {
    color: #fff;
    background-color: #fca311;
    padding: 115px;
}

section.home img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
}

section.home h1.title {
    font-size: 96px;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 20px;
}

section.home h1 span.subtitle {
    display: block;
    font-size: 62px;
    line-height: 1.1em;
}

section.home h1 span.price {
    display: block;
    font-size: 88px;
    line-height: 1.2em;
    color: #111111;
}

section.home .btn {
    font-size: 32px;
    background-color: #111111;
    margin: auto;
    margin-top: 40px;
}

section.home .btn:hover {
    color: #111111;
    background-color: #fca311;
    border-color: #111111;
}




/**
 * Services Section.
 *
 */

div.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service {
    width: calc(33.3333% - 40px);
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: relative;
}

.service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service a {
    display: block;
    height: 205px;
    font-family: 'Bebas Neue';
    font-size: 22px;
    color: #111111;
    font-weight: normal;
    text-align: center;
    position: relative;
    text-decoration: none;
}

.service .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px;
    background-color: #ffffffd1;
}

.service .order {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 10px;
    background-color: #fca311;
    transition: transform .5s;
    transform: translateY(100%);
}

.service:hover .order {
    transform: translateY(0);
}




/**
 * Advantages Section.
 *
 */
section.advantages {
    position: relative;
    overflow: hidden;
}

.advantages .content {
    display: flex;
}

.advantages div.advantages {
    width: 45%;
}

.advantages div.img {
    position: absolute;
    top: 325px;
    right: 0;
}

.advantage {
    margin: 25px 0;
    padding: 0 0 20px;
    border-bottom: 1px dashed #dedede;
}

.advantage .title {
    font-family: 'Bebas Neue';
    font-size: 26px;
    color: #111111;
    font-weight: bold;
    margin-bottom: 10px;
}







/**
 * Prices Section.
 *
 */
.prices h3 {
    font-size: 24px;
}

.prices .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: auto;
}

.prices .content>div {
    width: calc(50% - 40px);
    text-align: center;
    margin: 0 20px;
}

.prices .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    max-width: 400px;
    border-bottom: 1px dotted #dedede;
}

.prices .cost {
    font-weight: bold;
}

section.prices .btn {
    font-size: 32px;
    background-color: #111111;
    margin: auto;
    margin-top: 40px;
}

section.prices .btn:hover {
    color: #111111;
    background-color: #fca311;
    border-color: #fca311;
}



/**
 * Technic Section.
 *
 */
.technics .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.technics .content>div {
    width: 50%;
}

.technic {
    text-align: center;
}

.technic .title {
    font-family: 'Bebas Neue';
    font-size: 26px;
    color: #111111;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.technic img {
    width: 100%;
    height: auto;
}

section.technics .btn {
    font-size: 32px;
    background-color: #111111;
    margin: auto;
    margin-top: 40px;
}

section.technics .btn:hover {
    color: #111111;
    background-color: #fca311;
    border-color: #fca311;
}






/**
 * Types work Section.
 *
 */
section.types_work {
    display: flex;
    flex-wrap: wrap;
}

section.types_work>div {
    width: 25%;
    text-align: center;
    padding: 40px;
}

.types_work img {
    width: auto;
    max-height: 256px;
}

.types_work .title {
    font-family: 'Bebas Neue';
    font-size: 26px;
    color: #111111;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.types_work .desc {
    min-height: 70px;
}

section.types_work .btn {
    font-size: 26px;
    background-color: #111111;
    margin: auto;
    margin-top: 20px;
}

section.types_work .btn:hover {
    color: #111111;
    background-color: #fca311;
    border-color: #fca311;
}









/**
 * Contacts Section.
 *
 */

section.contacts {
    position: relative;
    overflow: hidden;
}

.contacts .content {
    display: flex;
    min-height: 360px;
    position: relative;
}

.contacts div.contacts {
    width: 45%;
}

.contacts a:not(.btn) {
    display: block;
    font-family: 'Bebas Neue';
    font-size: 42px;
    line-height: 1.1em;
    color: #111111;
    font-weight: normal;
    margin-bottom: 10px;
    transition: color .3s;
}

.contacts a:hover {
    color: #fca311;
}

section.contacts .img {
    position: absolute;
    top: -35px;
    right: -70px;
}

section.contacts .img img {
    max-height: 400px;
    width: auto;
}

section.contacts div.contacts .btn {
    font-size: 32px;
    background-color: #111111;
    margin: auto;
    margin-top: 40px;
}

section.contacts div.contacts .btn:hover {
    color: #111111;
    background-color: #fca311;
    border-color: #fca311;
}

/**
 * Map Section.
 *
 */
section.map {
    padding-bottom: 0;
}

section.map .content {
    text-align: center;
}

section.map .address {
    font-size: 20px;
    margin-bottom: 20px;
}




/**
 * Footer.
 *
 */
footer.footer {
    background-color: #111111;
    padding: 10px;
    font-size: 13px;
    color: #fff;
}

footer.footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}









/**
* Forms.
*
*/

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #EBECED;
    border-radius: 4px;
    padding: 15px 12px 6px 12px;
}

textarea {
    height: 120px;
}

/**
* Popup Forms.
*
*/
#fancybox-close {
    position: absolute;
    top: 15px !important;
    right: 15px !important;
    width: 15px !important;
    height: 15px !important;
    border-bottom: 0;
    background: transparent url(../img/cross.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    filter: invert(1);
    cursor: pointer;
    z-index: 111103;
    display: none;
}

.inpopup_form {
    padding: 30px;
}

.inpopup_form .head {
    color: #212121;
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: normal;
    text-transform: uppercase;
    border-bottom: 1px solid #212121;
}

.inpopup_form .fields {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: normal;
    line-height: 2.05556rem;
    cursor: pointer;
    opacity: 1;
}

.inpopup_form .submit_form button {
    margin: 20px auto;
}

.inpopup_form .submit_form .privacy {
    font-size: 13px;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.wpcf7-response-output {
    margin-top: 19px;
    padding-bottom: 15px;
    font-weight: normal;
    margin-bottom: 20px;
    border-bottom: 1px solid #212121;
}

.wpcf7-form .form_row {
    position: relative;
    margin-bottom: 10px;
}

.wpcf7-form .form_row label {
    position: absolute;
    opacity: 0.5;
    left: 12px;
    top: 10px;
    width: auto;
    line-height: 1.7;
    transition: font-size 250ms ease-out, -webkit-transform 250ms ease-out;
    transition: transform 250ms ease-out, font-size 250ms ease-out;
    transition: transform 250ms ease-out, font-size 250ms ease-out,
        -webkit-transform 250ms ease-out;
    z-index: 10;
}

.wpcf7-form .focused.form_row label {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    font-size: 12px;
    white-space: nowrap;
    color: #333;
}

.red {
    color: red;
}



.phone-feedback {
    position: fixed;
    bottom: 40px;
    right: 40px;
    line-height: 0 !important;
    padding: 14px;
    border: 2px solid #FCA311;
    border-radius: 50%;
    background-color: #fff;
    z-index: 12;
}

.phone-feedback svg {
    line-height: 0 !important;
    width: 38px;
    height: 38px;
    color: #FCA311;
    position: relative;
    z-index: 11;
}

.phone-feedback .puls {
    -webkit-animation: widgetPulse infinite 1.5s;
    animation: widgetPulse infinite 1.5s;
    border: 1px solid #FCA311;
    border-radius: 50%;
    width: 69px;
    height: 69px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

@-webkit-keyframes widgetPulse {
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

@keyframes widgetPulse {
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2, 2);
        transform: scale(2, 2);
        opacity: 0
    }
}

@media (min-width:1024px) {
    .phone-feedback.mob {
        display: none;
    }
}

@media (max-width:1440px) {
    section.home h1.title {
        font-size: 68px;
        margin-bottom: 15px;
    }

    section.home h1 span.subtitle {
        font-size: 48px;
    }
}

@media (max-width:1280px) {
    #masthead .contacts a:not(.btn) {
        font-size: 22px;
    }

    #masthead a {
        font-size: 18px;
    }

    #masthead .btn {
        font-size: 18px;
        padding: 10px 14px 8px;
    }

    section.home h1.title {
        font-size: 64px;
        margin-bottom: 15px;
    }

    section.home h1 span.subtitle {
        font-size: 48px;
    }

    section.home h1 span.price {
        font-size: 68px;
    }
}

@media (max-width:1024px) {
    #masthead .contacts a:not(.btn) {
        font-size: 20px;
    }

    #masthead a {
        font-size: 17px;
    }

    #masthead .btn {
        font-size: 16px;
        padding: 10px 12px 8px;
    }

    .phone-feedback.pc {
        display: none;
    }
}

@media (max-width:990px) {
    section.home h1.title {
        font-size: 58px;
        margin-bottom: 15px;
    }

    section.home h1 span.subtitle {
        font-size: 38px;
    }

    section.home h1 span.price {
        font-size: 48px;
    }

    section.home .btn {
        font-size: 22px;
        margin-top: 20px;
    }
}

@media (max-width:768px) {

    section.padding {
        padding: 30px 0;
    }

    h2.section_title {
        font-size: 34px;
        text-align: center;
        margin-bottom: 5px;
    }

    #masthead {
        flex-wrap: wrap;
    }

    #masthead .site-branding,
    #header_menu {
        width: 50%;
    }

    header .mob-menu {
        justify-content: flex-end;
    }

    #masthead .contacts {
        width: 100%;
        margin-top: 10px;
        justify-content: space-between;
    }

    #masthead .contacts .btn {
        display: none;
    }

    #masthead .contacts a:not(.btn) {
        font-size: 20px;
        margin: 5px;
    }

    section.home {
        height: 500px;
    }

    section.home .wrap>div {
        display: none;
    }

    section.home .wrap>.content {
        width: 100%;
        display: block;
        background-color: #fca311c9;
        padding: 150px 20px 20px;
    }

    section.home img {
        object-position: 80% center;
    }

    .service {
        width: calc(50% - 20px);
        overflow: hidden;
        margin: 10px;
        box-shadow: 0 0 10px rgb(0 0 0 / 10%);
        position: relative;
    }

    .advantages div.advantages {
        width: 100%;
        padding: 10px;
    }

    .advantages div.img {
        position: absolute;
        top: 130px;
        right: -180%;
        opacity: 0.1;
    }

    .prices .content>div {
        width: 100%;
        text-align: center;
        padding: 10px;
        margin: 0;
    }

    section.types_work>div {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .types_work img {
        width: auto;
        max-height: 200px;
    }

    .types_work .title {
        margin-top: 0;
        margin-bottom: 10px;
    }

    section.types_work .btn {
        font-size: 26px;
        background-color: #111111;
        margin: auto;
        margin-top: 0px;
        padding: 10px 22px 5px;
    }

    section.contacts .img {
        position: absolute;
        top: -35px;
        right: -120%;
        opacity: 0.1;
    }

    .contacts div.contacts {
        width: 100%;
        padding: 10px;
        z-index: 1;
    }

    footer.footer .wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
}