/*Created by Vit.vn vit.vnvnvn@gmail.co Jul 2019 */

/*======= Reset style =======*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
audio, canvas, video {
    display: inline-block;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden], template {
    display: none;
}
blockquote, body, caption, dd, div, dl, dt, em, fieldset, form, h1, h2, h3, h4, h5, h6, html, iframe, img, label, legend, li, object, ol, p, pre,
span, strong, table, tbody, td, tfoot, th, thead, tr, ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}
a:active, a:focus, a:hover {
    outline: 0;
    text-decoration: none;
}
ol, ul {
    list-style: none;
}
img {
    border: 0;
    vertical-align: middle;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}
fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em;
}
legend {
    border: 0;
    padding: 0;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button, input {
    line-height: normal;
}
button, select {
    text-transform: none;
}
button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled], html input[disabled] {
    cursor: default;
}
label{
    font-weight: 400;
}
input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}
input{
    border: none;
    outline: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }

input::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

input::-moz-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

input:-ms-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

input:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

input:focus:-ms-input-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Montserrat', sans-serif;*/
.btn{
    display: inline-flex;
    padding: 5px 10px;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    z-index: 10;
    border: 2px solid transparent;
    transition: all .3s ease-in-out;
    font-weight: 700;
    cursor: pointer;
    background: inherit;
    outline: none;
}
.white{
    color: #ffffff;
}
.darck{
    color: #000000;
}
.yellow{
    color: #fbce01;
}
.btn:hover{
    border: 2px solid #fbce01;
}
.btn-top:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    top: -2px;
    left: -2px;
    border-top: 2px solid #fbce01;
    border-left: 2px solid #fbce01;
}
.btn-top:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    top: -2px;
    right: -2px;
    border-top: 2px solid #fbce01;
    border-right: 2px solid #fbce01;
}
.btn-bottom:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    bottom: -2px;
    left: -2px;
    border-bottom: 2px solid #fbce01;
    border-left: 2px solid #fbce01;
}
.btn-bottom:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid #fbce01;
    border-right: 2px solid #fbce01;
}


.main{
    overflow: hidden;
}

/*section-header*/
.section-header{
    z-index: 999;
    padding: 20px 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    background: #fff;
    width: 100%;
    transition: all .4s ease-in-out;
}
.header__logo{
    cursor: pointer;
}
.header__logo img{

}
.header__phone{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}
.header__phone a{
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    transition: all .4s ease-in-out;
}
.arr-head{
    color: #000000;
    margin: 0 15px;
    font-size: 18px;
}
.header__nav{
    display: flex;
}
.btn-nav{
    display: block;
    padding: 6px 8px;
    position: relative;
    /*transition: all .3s ease-in-out;*/
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-nav span{
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    z-index: 10;
    position: relative;
}
.header__nav .btn-nav + .btn-nav{
    margin-left: 10px;
}

.btn-nav:before{
    display: none;
    position: absolute;
    content: '';
    width: calc(100% - 20px);
    height: calc(100% + 5px);
    top: -2px;
    left: 50%;
    transform: translate(-50%);
    background: #fff;
}
.btn-nav:after{
    display: none;
    position: absolute;
    content: '';
    width: calc(100% + 5px);
    height: calc(100% - 20px);
    top: 50%;
    left: -2px;
    transform: translate(0, -50%);
    background: #fff;
}
.btn-nav:hover:before,
.btn-nav:hover:after{
    display: block;
}
.btn-nav:hover{
    border: 2px solid #fbce01;
}
.is-active.btn-nav{
    border: 2px solid #fbce01;
}
.is-active.btn-nav:before,
.is-active.btn-nav:after{
    display: block;
}

.mob-menu{
    display: none;
    cursor: pointer;
    width: 30px;
    margin-bottom: -10px;
}
.mob-menu span {
    display: block;
    background: #000000;
    margin-bottom: 6px;
}
.mob-menu span:nth-child(1) {
    width: 30px;
    height: 3px;
}
.mob-menu span:nth-child(2) {
    width: 30px;
    height: 3px;
}
.mob-menu span:nth-child(3) {
    width: 30px;
    height: 3px;
}
.mobile__wrap {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    width: 100%;
    left: 100%;
    background: rgba(250, 250, 255, 0.98);
    transition: all .4s ease-in-out;
    overflow-y: auto;
}
.m-close{
    display: block;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 23px;
    right: 26px;
}
.m-close span {
    display: block;
    background: #000000;
    position: absolute;
    left: 12px;
    top: 0;
}
.m-close span:nth-child(1) {
    width: 3px;
    height: 32px;
    transform: rotate(135deg);
}
.m-close span:nth-child(2) {
    width: 3px;
    height: 32px;
    transform: rotate(45deg);
}
.mobile__wrap .header__nav-wrapp {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 40px;
}
.mobile__wrap .header__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile__wrap .header__phone {
    flex-direction: column;
    margin-top: 15px;
}
.mobile__wrap .arr-head{
    display: none;
}
.mobile__wrap  .btn-nav span {
    font-size: 19px;
}
.mobile__wrap .btn-nav:before,
.mobile__wrap .btn-nav:after{
    background: rgba(250, 250, 255, 0.98);
}
.mobile__wrap .header__nav .btn-nav + .btn-nav {
    margin-left: 0;
    margin-top: 10px;
}
.section-header  .header__logo img{
    transition: all .4s ease-in-out;
    width: 349px;
}
.section-header.scrol-it{
    -webkit-box-shadow: 0px 0px 7px 2px rgba(0,0,0, .3);
    -moz-box-shadow: 0px 0px 7px 2px rgba(0,0,0, .3);
    box-shadow: 0px 0px 7px 2px rgba(0,0,0, .3);
    padding: 10px 30px 10px;
}
.section-header.scrol-it .btn-nav {
    padding: 0px 8px;
}
.section-header.scrol-it .header__phone a {
    font-size: 18px;
}
.section-header.scrol-it .header__logo img{
    width: 275px;
}
.section-header.scrol-it .btn-nav:after {
    height: calc(100% - 12px);
}


/*section-inner*/
.section-inner{
    background-image: url(../img/gl_main_bg.jpg);
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    height: 600px;
    margin-top: 115px;
    position: relative;
    z-index: 9;
}
.section-inner:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    z-index: 0;
}
.section-inner .container {
    z-index: 10;
    position: relative;
}
.inner__col{
    margin: auto;
    text-align: center;
    margin-top: 150px;
}
.inner__title{
    color: #ffffff;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 57px;
    text-transform: uppercase;
}
.inner__subtitle{
    color: #ffffff;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
}
.inner__btn-wrapp{
    margin-top: 40px;
}


/*section-choice*/
.section-choice{
    position: relative;
    z-index: 10;
    margin-top: -115px;
}
.section-choice .container{
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0,0,0, .2);
    -moz-box-shadow: 0px 0px 20px 5px rgba(0,0,0, .2);
    box-shadow: 0px 0px 20px 5px rgba(0,0,0, .2);
    padding: 20px;
}
.choice__col{
    display: flex;
    padding: 0 10px;
}
.col-l{
    width: 75px;
}
.col-r{
    width: calc(100% - 80px);
    padding: 0 15px;
}
.col-r__title{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    height: 75px;
    border-bottom: 2px solid rgba(152, 152, 152, 0.53);
}
.col-r__subtitle{
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    padding: 30px 0 10px;
}
.col-r__price{
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    margin-top: 7px;
    display: flex;
    flex-direction: column;
}
.col-r__price .bold{
    font-weight: 700;
}


/*section-otdelca*/
.section-otdelca{
    padding: 70px 0;
    margin: 0 15px;
}
.otdelca-col{
    padding: 0;
}
.otdelca__img{
    height: 340px;
    background-position: center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}
.otdelca-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    color: #000000;
    font-weight: 900;
    margin-bottom: 5px;
}
.otdelca-subtitle{
    font-family: 'Montserrat', sans-serif;
    font-size: 27px;
    color: #000000;
    font-weight: 400;
}
.otdelca-text{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    padding: 30px 80px 30px 0;
}



/*section-wedoo*/
.section-wedoo{
    padding: 0;
    padding-bottom: 70px;
}
.section-wedoo .container{
    padding: 0;
}
.wedoo-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    background: #fbce01;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.wedoo-col{
    cursor: pointer;
    padding: 0;
}
.wedoo-col:first-of-type{
    padding-left: 15px;
}
.wedoo-col:last-of-type{
    padding-right: 15px;
}
.wedoo-col__img{
    padding: 50px 0 35px;
    text-align: center;
    border-bottom: 2px solid #ababab;
    position: relative;
    transition: all .4s ease-in-out;
}
.wedoo-col__img img{
    height: 120px;
}
.wedoo-squer{
    width: 16px;
    height: 16px;
    border: 2px solid #ababab;
    background: #ffffff;
    display: block;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translate(-50%);
    transition: all .4s ease-in-out;
}
.wedoo-col__wrapp{
    text-align: center;
    padding: 30px 25px;

}
.wedoo-col__title{
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.wedoo-col__text{
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    font-weight: 300;
}
.wedoo-n{
    margin: auto;
    display: block;
}
.wedoo-a{
    display: none;
}
.wedoo-col:hover .wedoo-n{
    display: none;
}
.wedoo-col:hover .wedoo-a{
    display: block;
    margin: auto;
}
.wedoo-col:hover .wedoo-col__img{
    border-bottom: 2px solid #000000;
}
.wedoo-col:hover .wedoo-squer{
    border: 2px solid #fbce01;
    background: #fbce01;
}
.wedoo__btn-wrapp{
    text-align: center;
}


/*section-howit*/
.section-howit{
    background: #fbce01;
    padding: 25px 15px;
}
.section-howit .container{
    padding: 0;
}
.howit-row{

}
.howit-col{
    position: relative;
}
.howit-col__img{
    position: absolute;
    top: -55px;
    width: 100%;
}
.howit-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    color: #000000;
    font-weight: 900;
}
.howit-step{
    margin-top: 25px;
    display: flex;
}
.howit-numb{
    width: 61px;
    height: 61px;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.howit-numb span{
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    color: #ffffff;
    font-weight: 900;
}
.howit-ithem{
    width: calc(100% - 61px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 35px;
}
.howit-ithem__title{
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}
.howit-ithem__text{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}


/*section-price*/
.section-price{
    padding: 100px 0;
}
.section-price .container {
    padding: 0;
}
.price-row{

}
.price-col{

}
.price-col:first-of-type{
    padding-right: 130px;
}
.price__title{
    font-size: 35px;
    color: #000000;
    font-weight: 900;
    margin-bottom: 35px;
}
.price__text{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-weight: 400;
}
.price-col__checked{
    display: flex;
    align-items: center;
}
.price-col__text-wrap{
    margin-left: 18px;
}
.price-col__checked + .price-col__checked{
    margin-top: 25px;
}



/*section-gallery*/
.section-gallery{
    margin-right: 10px;
}
.gallery-ithem{
    width: 100%;
    display: block;
    height: 275px;
    background-position: center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    transition: all .4s ease-in-out;
    margin: 7px;
}
.gallery-ithem:hover{
    transform: scale(1.03);
}
.gallery__slider div{
    display: block;
    height: 500px;
    overflow: hidden;
}
.slick-slide img {
    width: 100%;
    display: block;
}


/*section-contact*/
.section-contact{
    padding: 90px 0;
}
.page-contact{
    margin-top: 100px;
}
.section-contact .container{
    padding: 0;
}
.contact__title{
    font-size: 35px;
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}
.contact-row{
    margin-top: 80px;
}
.contact-col{

}
.contact__slider{

}
.slider__ithem{
    margin-bottom: 45px;
}
.slider__text{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-weight: 400;
}
.slider__autor{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-weight: 700;
    font-style: italic;
    margin-top: 20px;
}
.slick-dots{

}
.slick-dots li{
    width: 11px;
    height: 11px;
    border: 2px solid #ababab;
}
.slick-dots li button{
    display: none;
}
.slick-dots .slick-active{
    width: 11px;
    height: 11px;
    background: #fbce01;
    border: 2px solid #fbce01;
}
.contact__form{
    padding: 40px 30px;
    border: 1px solid #000000;
    border-top: 7px solid #fbce01;

}
.contact__form-title{
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.contact__form-text{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}
.contact__form .row{
    margin-top: 35px;
    margin-left: 0;
    margin-right: 0;
}
.contact__form .row div{
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}
.form_input{
    padding: 10px 20px;
    border: 1px solid #000000;
    margin-bottom: 13px;
    background-color: #ffffff!important;
    outline: none;
}
.err_input{
    color: red;
    font-size: 13px;
    margin-top: -13px;
    display: none;
}
.contact__btn-wrapp{
    text-align: center;
    margin-top: 40px;
}
.contact__form textarea{
    height: 85px;
}



/*section-footer*/
.section-footer{
    padding: 35px 0;
    background: #000000;
    position: relative;
}
.section-footer .container{
    padding: 0;
}
.footer__copyright{
    margin-top: 35px;
    font-size: 13px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 300;
}
.footer-row{

}
.footer-col{
    display: flex;
}
.footer-col .btn{
    margin-bottom: 25px;
}
.footer-col-l{
    width: 50%;
}
.footer-col-r{
    width: 50%;
}
.footer-nav{
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 300;
}
.footer-col-l .footer-nav{
    margin-left: 30px;
    position: relative;
}
.footer-col-l .footer-nav img{
    position: absolute;
    left: -30px;
    top: 5px;
}
.footer-left__bg{
    position: absolute;
    width: 35%;
    right: 0;
    top: 0;
    background: #fbce01;
    height: 100%;
}
.footer-social__wrapp{
    justify-content: flex-end;
    align-items: flex-end;
}
.footer-social a + a{
    margin-left: 10px;
}
.soc-mob{
    display: none;
}
.footer-social{
    display: flex;
    z-index: 11;
}
.footer__master{
    position: absolute;
    bottom: -95px;
    left: -125px;
    z-index: 10;
}




/*loader*/
.loader__wrapp{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
}
.loader__ring
{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /*box-shadow:1px 5px 2px #ff002e;*/
    background: transparent;
    animation: ani 2s linear infinite;
}
.loader__text
{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    color:#fff;
    position: absolute;
    text-align: center;
    line-height: 300px;
    top:0;
    left: 0;
    font-size:2em;
    background: transparent;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
@keyframes ani {
    0%{
        transform: rotate(0deg);
        box-shadow:1px 5px 2px #ff002e;
    }

    50%{
        transform: rotate(180deg);
        box-shadow:1px 5px 2px #18a401;
    }
    100%{
        transform: rotate(360deg);
        box-shadow:1px 5px 2px #033e8e;
    }

}

.to-upp{
    right: 30px;
    bottom: 25px;
    position: fixed;
    cursor: pointer;
    z-index: 9998;
}

/*-------  модальная форма -------*/
.overlay {
    z-index: 100;
    position: fixed;
    background-color: #000;
    background-position-y: center !important;
    background-position-x: center !important;
    background-repeat: no-repeat !important;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    cursor: pointer;
    display: block;
    overflow-y: hidden;
    opacity: .5;
}
.modal_form{
    position: fixed;
    height: 100vh;
    width: 100%;
    display: none;
    z-index: 999;
    top: 0;
    left: 0;
}
.callback-container_f{
    position: absolute;
    z-index: 101;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 100%;
    max-width: 1150px;
    padding: 50px 15px;
    border-top: 7px solid #fbce01;
}
.callback-container_f .contact__form{
    border-top: 1px solid #000000;
}
.callback-container{
    position: absolute;
    z-index: 101;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 100%;
    max-width: 415px;
}
.btn-close{
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}
.col-mod-t{
    padding: 35px;
}
.col-mod-r{
    padding-right: 35px;
}

.col-mod-t p{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-weight: 400;
}


/*section-jobs*/
.section-jobs{
    padding: 70px 0 100px;
    margin-top: 100px;
}
.job-col{
    padding: 0 35px;
}
.jobs-img img{
    width: 100%;
}
.job-phone{
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 900;
}
.job-phone-text{
    font-size: 20px;
    color: #000000;
    font-weight: 300;
}
.job-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fbce01;
    padding: 35px 10px;
    margin-top: 15px;
}
.job-title{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 900;
    text-align: left;
}
.job-list{
    list-style-type: square;
    width: 100%;
    max-width: 320px;
    margin: auto;
    margin-top: 30px;
    margin-left: 15px;
}
.job-list li{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    font-weight: 300;
    margin-bottom: 2px;
}



/*contact__phones*/
.contact__phones {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 375px;
    margin: auto;
    padding: 80px 51px;
    position: relative;
}
.contact__top:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    display: block;
    top: -2px;
    left: -2px;
    border-top: 3px solid #fbce01;
    border-left: 3px solid #fbce01;
}
.contact__top:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    display: block;
    top: -2px;
    right: -2px;
    border-top: 3px solid #fbce01;
    border-right: 3px solid #fbce01;
}

.contact__bottom:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    display: block;
    bottom: -2px;
    left: -2px;
    border-bottom: 3px solid #fbce01;
    border-left: 3px solid #fbce01;
}
.contact__bottom:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    display: block;
    bottom: -2px;
    right: -2px;
    border-bottom: 3px solid #fbce01;
    border-right: 3px solid #fbce01;
}
.contact__phones-title{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}
.contact__phones-p{
    font-size: 26px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}
.contact__phones-emeil{
    margin-top: 5px;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    text-align: center;
}
.contact-soc{
    margin: auto;
    margin-top: 40px;
}
#map{
    height: 550px;
}




/*buget-wrap*/
.buget-wrap{
    padding: 0 25px;
}
.modal_buget .callback-container_f{
    padding: 50px 0 0;
}
.buget-title{
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 900;
    margin-bottom: 30px;
}
.buget-text{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}
.show-buget{
    cursor: pointer;
}
.buget-call{

}
.buget-call__cont{
    background: #fbce01;
    width: 100%;
    max-width: 460px;
    padding: 35px 10px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.buget-call__cont-title{
    font-size: 20px;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.buget-call__cont-phone{
    font-size: 35px;
    color: #000000;
    font-weight: 900;
}
.buget-call__cont-call{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}


/*section-price*/
.section-price{
    padding: 80px 0px;
    margin-top: 100px;
}
.price__ithem{
    margin-bottom: 15px;
}
.price__ithem-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border: 1px solid #000000;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.price__ithem.active .price__ithem-top{
    border: 1px solid #fbce01;
    background: #fbce01;
}
.price__ithem-cont{
    display: none;
}
.price__ithem-title{
    font-size: 17px;
    color: #000000;
    font-weight: 700;
}
.price__ithem-ico{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.price__ithem.active .price__ithem-ico{
    transform: rotateX(180deg);
}
.price__ithem-ico img{

}
.price__text-wrapp{
    padding: 15px 25px;
}
.price__text-wrapp p{
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}
.price__l-line{
    border-left: 4px solid #fbce01;
}
.price__text-wrapp-tl{
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
}
.price__table-wrapp{
    overflow-x: auto;
}
.price__table{
    width: 100%;
    min-width: 545px;
    margin-bottom: 25px;
    margin-top: 15px;
}
.price__table th{
    background: #a7a7a7;
    border: 1px solid #a7a7a7;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.price__table td{
    border: 1px solid #a7a7a7;
    padding: 7px;
}
.price__table tr:hover{
    background: #fff3ba;
}

#myVideo{
    object-fit: cover;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}








@media (max-width: 1249px){
    .section-header .header__logo img {
        width: 280px;
    }
    .btn-nav {
        padding: 5px 5px;
    }
    .btn-nav span {
        font-size: 14px;
    }
    .price-col:first-of-type {
        padding-right: 50px;
    }
    .gallery-ithem {
        height: 205px;
    }
    .gallery__slider div{
        height: 300px;
    }
    .footer__master {
        left: -80px;
    }
    .footer-left__bg {
        width: 27%;
    }
}


@media (max-width: 991px){
    .header__nav-wrapp {
        display: none;
    }
    .section-header .header__logo img {
        width: 240px;
    }
    .section-header.scrol-it .header__logo img {
        width: 230px;
    }
    .mob-menu{
        display: block;
    }
    .section-inner{
        margin-top: 90px;
    }
    .section-choice .container{
        max-width: 500px;
    }
    .choice__col + .choice__col{
        margin-top: 25px;
    }
    .col-r__subtitle {
        padding: 15px 0 10px;
    }
    .otdelca-text {
        padding: 30px 0 30px 0;
    }
    .otdelca-title,
    .otdelca-subtitle{
        text-align: center;
    }
    .otdelca__btn-wrapp{
        text-align: center;
        margin-bottom: 25px;
    }
    .wedoo-col:first-of-type {
        padding-left: 0;
    }
    .wedoo-col__wrapp {
        padding: 30px 18%;
    }
    .wedoo-col:last-of-type {
        padding-right: 0;
    }
    .howit-col__img {
        display: block;
        position: relative;
        top: 60px;
        max-width: 590px;
        margin: auto;
        padding-top: 20px;
    }
    .howit-col__img-wrapp{
        margin-top: -55px;
    }
    .section-price {
        padding: 50px 15px;
    }
    .price__title {
        text-align: center;
    }
    .price-row .price-col + .price-col{
        margin-top: 20px;
    }
    .gallery-ithem {
        height: 215px;
    }
    .section-contact {
        padding: 50px 15px;
    }
    .contact-row {
        margin-top: 35px;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 70px;
    }
    .footer-left__bg {
        display: none;
    }
    .section-footer .container {
        padding: 0 40px;
    }
    .footer__copyright {
        margin-top: 14px;
        text-align: center;
    }
    .soc-desc{
        display: none;
    }
    .soc-mob{
        display: block;
        width: 40px;
    }
    .footer-social__wrapp {
        justify-content: center;
        align-items: flex-end;
        margin-top: 20px;
    }
    .footer__master{
        display: none;
    }
    .section-jobs {
        padding: 40px 0 50px;
    }
    .job-col{
        margin-bottom: 25px;
    }
    .col-cont-p{
        margin-bottom: 30px;
    }
    .contact__phones {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 100%;
        margin: auto;
        padding: 50px 15px;
        position: relative;
    }
    .col-cont-p .soc-desc {
        display: block;
    }
    .col-cont-p  .soc-mob {
        display: none;
    }
    .col-mod-t{
        display: none;
    }
    .callback-container_f{
        max-width: 450px;
        top: 0;
        transform: translate(-50%, 0)
    }
    .callback-container_f .contact__form{
        webkit-box-shadow: none;
        -moz-box-shadow: none;
         box-shadow: none;
    }
    .modal_form {
        overflow-y: auto;
    }
    
    .section-inner {
        height: 450px;
    }
}


@media (max-width: 768px) {

    .header__logo img {
        width: 225px;
    }
    .inner__title {
        font-size: 40px;
    }
    .inner__subtitle {
        font-size: 25px;
    }
    .gallery-ithem {

    }
    .section-header.scrol-it {
        padding: 10px 15px 10px;
    }
    .section-header .header__logo img {
        width: 165px;
    }
    .section-header.scrol-it .header__logo img {
        width: 155px;
    }
}


@media (max-width: 550px) {
    .btn {
        font-size: 14px;
    }
    .m-close {
        top: 10px;
        right: 10px;
    }
    .inner__title {
        font-size: 30px;
    }
    .header__logo img {
        width: 140px;
    }
    .section-header {
        padding: 15px;
    }
    .inner__subtitle {
        font-size: 20px;
    }
    .col-l {
        width: 50px;
    }
    .col-l img{
        width: 50px;
    }
    .col-r__title {
        font-size: 16px;
        height: 52px;
    }
    .col-r {
        width: calc(100% - 50px);
    }
    .col-r__subtitle {
        font-size: 14px;
        padding: 20px 0 10px;
    }
    .section-otdelca {
        padding: 40px 0;
    }
    .otdelca__img {
        height: 260px;
    }
    .otdelca-title {
        font-size: 30px;
    }
    .otdelca-subtitle {
        font-size: 20px;
    }
    .otdelca-text {
        font-size: 14px;
    }
    .wedoo-title {
        font-size: 25px;
    }
    .wedoo-col__wrapp {
        padding: 30px 15%;
    }
    .howit-title {
        font-size: 28px;
    }
    .howit-numb {
        width: 50px;
        height: 50px;
    }
    .howit-ithem {
        width: calc(100% - 50px);
        margin-left: 20px;
    }
    .howit-ithem__title {
        font-size: 15px;
    }
    .howit-ithem__text {
        font-size: 15px;
    }
    .price-col:first-of-type {
        padding-right: 15px;
    }
    .section-price {
        padding: 30px 15px;
    }
    .price__title {
        font-size: 31px;
    }
    .price__text {
        font-size: 14px;
    }
    .gallery-ithem {
        width: 100%;
    }
    .contact__title {
        font-size: 31px;
    }
    .slider__text {
        font-size: 14px;
    }
    .slider__autor {
        font-size: 15px;
    }
    .contact__form {
        padding: 30px 10px;
    }
    .contact__form-title {
        font-size: 24px;
    }


    .footer-col {
        flex-direction: column;
    }
    .footer-col-l{
        margin-bottom: 30px;
    }
    .footer-col .btn{
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
    .footer-col-l,
    .footer-col-r{
        width: 100%;
        max-width: 200px;
    }
    .footer-col {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-col-r {
        text-align: center;
    }
    .job-col {
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .job-title {
        font-size: 22px;
    }
    .job-list li {
        font-size: 14px;
        line-height: 21px;
    }
    .job-phone {
        font-size: 25px;
    }

    .buget-title{
        font-size: 27px;
    }
    .buget-text{
        font-size: 14px;
    }
    .buget-call__cont-title{
        font-size: 18px;
    }
    .buget-call__cont-phone{
        font-size: 28px;
    }
    .buget-call__cont-call{
        font-size: 14px;
    }
    .page-contact {
        margin-top: 30px;
    }
}
@media (max-width: 475px){
    .section-inner{
        height: 100vh;
    }
    .section-choice {
        margin-top: -15px;
    }
    .inner__col {
        margin-top: 135px;
    }
    .section-inner {
        margin-top: 70px;
    }
}




