@import url('https://fonts.googleapis.com/css?family=Exo+2:300,400,700|Open+Sans+Condensed:300,700|Open+Sans:300,400,700|Roboto+Condensed:300,400,700|Roboto:300,400,700&subset=cyrillic');

/* 
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Exo 2', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Open Sans Condensed', sans-serif; 

Color plate: 
#fbf138
#967101
#e7eaed
#0b0b0b
*/

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #0b0b0b;
    background-color: #fff;
}

a {
    color: #967101
}

a:hover,
a:focus,
a:active {
    color: #967101
}

input[type=text],
textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
}

input[type=text]:focus,
textarea:focus {
    /*box-shadow: 0 0 5px #fbf138;*/
}

@media (min-width: 768px) {
    .vertical-center {
        display: inline-block;
        float: none;

        margin-right: -4px;

        vertical-align: middle;
    }
}

.btn {
    -webkit-transition: all .3s ease-out;
    /* Saf3.2+, Chrome */
    -moz-transition: all .3s ease-out;
    /* FF4+ */
    -ms-transition: all .3s ease-out;
    /* IE10 */
    -o-transition: all .3s ease-out;
    /* Opera 10.5+ */
    transition: all .3s ease-out;
    outline: none !important;
}

.btn-grad-orange {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #0b0b0b;
    border: 0;
    border-radius: 18px;
    background: #977301;
    background: -moz-linear-gradient(left, #977301 0%, #977301 40%, #faef37 100%);
    background: -webkit-linear-gradient(left, #977301 0%, #977301 40%, #faef37 100%);
    background: linear-gradient(to right, #977301 0%, #977301 40%, #faef37 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#977301', endColorstr='#faef37', GradientType=1);
}

.btn-grad-orange:hover,
.btn-grad-orange:active,
.btn-grad-orange:focus {
    background: #faef37;
    background: -moz-linear-gradient(left, #faef37 0%, #977301 40%, #977301 100%);
    background: -webkit-linear-gradient(left, #faef37 0%, #977301 40%, #977301 100%);
    background: linear-gradient(to right, #faef37 0%, #977301 40%, #977301 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faef37', endColorstr='#977301', GradientType=1);
}






/* header-line */

.header-logo,
.header-contacts,
.header-menu {
    display: inline-block;
    margin-right: -4px;
    vertical-align: middle;
}

.header-logo {
    width: 30%;
}

@media (max-width: 1400px) {
    .header-logo {
        width: 100%;
        display: block;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .header-logo {
        width: 60%;
        display: block;
        margin: 0 auto;
    }
}

.header-logo__img {
    display: inline-block;
    max-width: 100%;
    padding-left: 32px;
}

.header-contacts {
    width: 62%;
}

@media (max-width: 1400px) {
    .header-contacts {
        width: 80%;
    }
}

@media (max-width: 992px) {
    .header-contacts {
        width: 100%;
        display: block;
    }
}

.header-contacts__item {
    display: inline-block;
    width: 25%;
    margin-right: -4px;
    padding: 0 16px;
    vertical-align: middle;
}

@media (max-width: 992px) {
    .header-contacts__item {
        width: 50%;
        text-align: center;
        padding: 8px 0;
    }
}

.header-contacts__city {
    font-size: 1.125em;
    font-weight: 700;
    /* margin-bottom: 4px; */
}

.header-contacts__phone-link {
    font-size: 1.4em;
    text-decoration: none;
    color: #0b0b0b;
}

@media (max-width: 1125px) and (min-width: 993px) {
    .header-contacts__phone-link {
        font-size: 1.2em;
    }
}

.header-contacts__btn {
    width: 80%;
    padding: 8px;
}

.header-contact__work-time-title {
    font-weight: 700;
    text-transform: uppercase;
}

.header-contact__work-time {
    font-size: .875em;
}













/* header-menu */

.header-menu {
    width: 8%;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 1400px) {
    .header-menu {
        width: 20%;
    }
}

@media (max-width: 992px) {
    .header-menu {
        width: 100%;
    }
}

.header-menu__inner {
    width: 100%;
    padding: 28px 0;
    text-transform: uppercase;
    color: #fff;
    background-color: #0b0b0b;
}

@media (max-width: 992px) {
    .header-menu__inner {
        padding: 16px 0;
    }
}

.header-menu__inner i {
    font-size: 1.2em;
    margin-right: 8px;
}











/* slider */

.slider {
    background-color: #0b0b0b;
}

.slider .container {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .slider .container {
        position: unset;
        top: unset;
        left: unset;
        transform: unset;
    }

    .slider img {
        display: none;
    }
}

.slider .container .col-xs-12,
.slider .container .row {
    height: 100%;
}

.slider__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .slider__inner {
        /*tra*/
        text-align: center;
        padding: 8px 0;
    }
}

.slider__img {
    width: 100%;
}

.slider__main-area {
    color: #FFFFFF;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
}

@media (max-width: 992px) {
    .slider__main-area {
        position: unset;
        top: unset;
        transform: unset;
    }
}

.slider__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 992px) {
    .slider__title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .slider__title {
        font-size: 1.2em;
    }
}

.slider__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6em;
    margin-bottom: 24px;
    color: #faef37;
}

@media (max-width: 992px) {
    .slider__text {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .slider__text {
        margin-bottom: 8px;
        font-size: 1em;
    }
}

.slider__btn {
    padding: 8px 48px;
}












/* banner-area */

.banner-area {
    /*background-color: #0b0b0b;*/
}

.banner-area__item {
    float: left;
    /*background-color: #ffffff;*/
    width: 20%;
}

.banner-area__item33 {
    width: 33.333%;
}

@media (max-width: 992px) {
    .banner-area {
        text-align: center;
    }

    .banner-area__item33,
    .banner-area__item {
        width: 50%;
        /* float: none;
        display: inline-block;
        margin-right: -4px;*/
    }

    .banner-area__item:nth-child(5) {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .banner-area__item33,
    .banner-area__item {
        width: 100%;
    }
}

.banner-item {
    position: relative;
    padding: 16px 0;
    padding: 128px 0 64px;
    cursor: pointer;
}

.banner-item__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    position: absolute;
    top: 24px;
    width: 100%;
    margin-bottom: 64px;
    text-align: center;
}

@media (max-width: 1450px) {
    .banner-item__title {
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .banner-item__title {
        padding: 0 4px;
    }
}


.banner-item__line {
    position: relative;
    display: block;
    width: 100%;
    height: 48px;
    background-color: #faef37;
}

.banner-item__img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    transform: translateX(-50%) translateY(-50%);
}



.banner-item__line_active {
    position: relative;
    display: none;
    width: 100%;
    height: 48px;
    background-color: #faef37;
}

.banner-area__item:hover .banner-item {
    background-color: #0b0b0b;
}

.banner-area__item:hover .banner-item__line {
    display: none;
}

.banner-area__item:hover .banner-item__line_active {
    display: block;
    padding: 0 32px;
    box-shadow: 0 0 16px #faef37;
}

.banner-area__item:hover .banner-item__title {
    color: #fff;
}

.banner-area__item:hover .banner-item__img {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 140px;
    transform: translateY(-50%);
}

@media (min-width: 993px) and (max-width: 1450px) {
    .banner-area__item:hover .banner-item__img {
        width: 100px;
    }
}

@media (min-width: 993px) and (max-width: 1100px) {
    .banner-area__item:hover .banner-item__img {
        width: 80px;
    }
}

.banner-item__img__text {
    line-height: 50px;
    float: right;
    width: 50%;
    text-align: right;
    vertical-align: middle;
    text-transform: uppercase;
    ;
}








/* services */

.services {
    padding: 64px 0;
    background-color: #0b0b0b;
    background-image: url('/img/areas/services/img_bg.png');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
}

@media (max-width: 992px) {
    .services {
        padding: 32px 0;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 16px 0;
    }
}

.servives__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    color: #977301;
}

@media (max-width: 992px) {
    .servives__title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .servives__title {
        font-size: 1.4em;
    }
}

.services__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    margin: 24px 0;
    text-align: center;
    color: #fff;
}

@media (max-width: 992px) {
    .services__text {
        margin: 16px 0;
    }
}

@media (max-width: 768px) {
    .services__text {
        font-size: 1em;
        margin: 8px 0;
    }
}

.services__buttons {
    display: inline-block;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #faef37;
    border-radius: 24px;
}

.services__btn {
    padding: 8px 64px;
}

@media (max-width: 768px) {
    .services__btn {
        padding: 8px 16px;
    }
}

.services__btn_inactive {
    color: #fff;
    background: transparent !important;
}

.services-address {
    margin-top: 32px;
    background-color: #fff;
}

.services-address_nonActive {
    display: none;
}

@media (max-width: 992px) {
    .services-address {
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .services-address {
        margin-top: 8px;
    }
}

.services-address__img {
    width: 100%;
}

.services-address__inner {
    padding: 32px;
    text-align: center;
    height: 320px;
}

@media (max-width: 992px) {
    .services-address__inner {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .services-address__inner {
        padding: 8px;
    }
}

.services-address__title {
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b0b0b;
}

@media (max-width: 1199px) {
    .services-address__title {
        font-size: 1.4em;
    }
}

@media (max-width: 992px) {
    .services-address__title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .services-address__title {
        font-size: 1.2em;
    }
}

.services-address__text {
    font-size: 1.2em;
    margin: 24px 0;
}

@media (max-width: 992px) {
    .services-address__text {
        margin: 8px 0;
    }
}

@media (max-width: 992px) {
    .services-address__text {
        font-size: 1em;
    }
}

.services-address__phone {
    font-size: 1.2em;
    font-weight: 700;
}

.services-address__phone-link {
    text-decoration: none;
    color: #0b0b0b;
}

.services-address__phone-link:hover,
.services-address__phone-link:active,
.services-address__phone-link:focus {
    color: #0b0b0b;
}

.services-address__more {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    display: block;
    width: 100%;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #0b0b0b;
    background: #977301;
    background: -moz-linear-gradient(left, #977301 0%, #977301 40%, #faef37 100%);
    background: -webkit-linear-gradient(left, #977301 0%, #977301 40%, #faef37 100%);
    background: linear-gradient(to right, #977301 0%, #977301 40%, #faef37 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#977301', endColorstr='#faef37', GradientType=1);
}

@media (max-width: 992px) {
    .services-address__more {
        font-size: 1em;
    }
}

.services-address__more:hover,
.services-address__more:active,
.services-address__more:focus {
    text-decoration: none;
    color: #0b0b0b;
    background: #faef37;
    background: -moz-linear-gradient(left, #faef37 0%, #977301 40%, #977301 100%);
    background: -webkit-linear-gradient(left, #faef37 0%, #977301 40%, #977301 100%);
    background: linear-gradient(to right, #faef37 0%, #977301 40%, #977301 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faef37', endColorstr='#977301', GradientType=1);
}











/*
    main-content
    */

.main-content {
    padding: 48px 0;
}

@media (max-width: 992px) {
    .main-content {
        padding: 16px 0;
    }
}

.main-content__subtitle {
    position: absolute;
    right: 0;
    top: 32px;
    color: #977301;
    font-size: 1.4em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 32px;
}

@-webkit-keyframes blink {
    10% {
        transform: scale(1, 1) rotate(80deg);
    }

    20% {
        transform: scale(0, 0) rotate(160deg);
    }

    100% {
        transform: scale(0, 0) rotate(0deg);
    }
}

@keyframes blink {
    10% {
        transform: scale(1, 1) rotate(80deg);
    }

    20% {
        transform: scale(0, 0) rotate(160deg);
    }

    100% {
        transform: scale(0, 0) rotate(0deg);
    }
}

.blink__img,
#blink {
    display: inline-block;
    vertical-align: middle;
}

.blink__img {
    width: 100px;
    margin-right: 12px;
}

#blink {
    position: relative;
    display: inline-block;
    color: rgba(151, 115, 1, 1);
}

#blink:after,
#blink:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100px;
    height: 100px;
    background-image:
        radial-gradient(rgba(151, 115, 1, 1), rgba(151, 115, 1, 0) 30%),
        linear-gradient(45deg, rgba(0, 0, 0, 0) 49%, rgba(151, 115, 1, .4) 50%, rgba(0, 0, 0, 0) 51%),
        linear-gradient(135deg, rgba(0, 0, 0, 0) 49%, rgba(151, 115, 1, .4) 50%, rgba(0, 0, 0, 0) 51%);
    -webkit-animation: blink 10s linear infinite;
    animation: blink 10s linear infinite;
    transform: scale(0, 0) rotate(0deg);
}

#blink:before {
    top: -30%;
    right: 0;
    left: auto;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

@media (max-width: 992px) {
    .main-content__subtitle {
        text-align: center;
    }
}

.main-content__title {
    font-family: 'Open Sans', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 1125px) {
    .main-content__title {
        font-size: 1.6em;
        margin-bottom: 4px;
    }
}

@media (max-width: 992px) {
    .main-content__title {
        font-size: 2em;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .main-content__title {
        margin-bottom: 8px;
        font-size: 1.4em;
    }
}

.main-content__text-bold {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .main-content__text-bold {
        font-weight: 700;
        font-size: 1em;
    }
}

.main-content__list {
    margin: 24px 0;
    padding: 0 0 0 24px;
}

@media (max-width: 768px) {
    .main-content__list {
        margin: 8px 0;
        padding: 0 0 0 24px;
    }
}

.main-content__btn {
    padding: 8px 52px;
}

@media (max-width: 992px) {
    .main-content__buttons {
        margin: 16px auto;
        text-align: center;
    }
}

.main-content__btn-grey {
    text-decoration: underline;
    color: #0b0b0b;
    font-weight: 700;
}

.main-content__img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}








/* search-area */

.search-area {
    padding: 64px 0;
    background: #977301;
    background: -moz-linear-gradient(left, #977301 0%, #faef37 100%);
    background: -webkit-linear-gradient(left, #977301 0%, #faef37 100%);
    background: linear-gradient(to right, #977301 0%, #faef37 100%);
    /* background-color: #faef37; */
    background-image: url('../img/areas/search-area/img_bg.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#977301', endColorstr='#faef37', GradientType=1);
}

@media (max-width: 992px) {
    .search-area {
        padding: 32px 0;
    }
}

@media (max-width: 768px) {
    .search-area {
        padding: 16px 0;
    }
}

.search-area__title {
    font-size: 2.250em;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

@media (max-width: 992px) {
    .search-area__title {
        font-size: 1.6em;
    }
}

@media (max-width: 768[x]) {
    .search-area__title {
        font-size: 1.3em;
    }
}

.search-block__brand,
.search-marka {
    float: left;
}

.search-block__brand {
    line-height: 52px;
    z-index: 999;
    height: 52px;
    width: 100%;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    vertical-align: middle;
    color: #0b0b0b;
    border-radius: 24px 24px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .search-block__brand {
        width: 100%;
        border-radius: 0;
    }
}

.search-block__brand:hover,
.search-block__brand:focus,
.search-block__brand:active {
    border-radius: 24px 24px 0 0;
}

.search-block__brand-logo,
.search-block__brand-text,
.search-block__brand-arrow {
    display: inline-block;
    margin-right: -4px;
    vertical-align: middle;
}

.search-block__brand-logo {
    width: 10%;
}

.search-block__brand-text {
    width: 80%;
    text-align: center;
}

.search-block__brand-arrow {
    width: 10%;
    text-align: right;
}

.search-brand__list {
    position: absolute;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    /*top: 50%;*/
    /*z-index: 888;*/
    left: 0;
    z-index: 0;
    padding: 0 0;
    /*margin: 0;*/
    list-style: none;
    width: 100%;
}

.search-block__brand:hover .search-brand__list,
.search-block__brand:focus .search-brand__list,
.search-block__brand:active .search-brand__list {
    display: block;
}


.search-brand__item {
    color: #fff;
    background-color: #0b0b0b;
    padding: 4px 16px;
    border-bottom: 1px solid #fff;
}

.search-brand__item-img {
    margin-right: 16px;
}

.search-brand__item:hover,
.search-brand__item:focus,
.search-brand__item:active {
    color: #0b0b0b;
    background-color: #fff;
}

.search-brand__item:last-child {
    border-bottom: none;
}

.search-marka {
    /*line-height: 54px;*/
    width: 60%;
    padding: 0 16px 0 32px;
    cursor: pointer;
    vertical-align: middle;
    color: #fff;
    border-radius: 0 24px 24px 0;
    background-color: #0b0b0b;
    ;
}

.search-marka__input {
    border: none;
    padding: 8px;
    background-color: transparent;
    line-height: 42px;
    width: 100%;
    height: 52px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .search-marka {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .search-marka {
        width: 100%;
        padding: 0px 8px;
        border-radius: 0;
    }
}

.search-marka__text,
.search-marka__arrow {
    display: inline-block;
}

.search-marka__text {
    width: 96%;
}

.search-marka__arrow {
    text-align: right;
}

.search-block__search-btn {
    line-height: 52px;
    float: right;
    width: 52px;
    margin-left: 32px;
    cursor: pointer;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
}

@media (max-width: 992px) {
    .search-block__search-btn {
        line-height: 64px;
        width: 64px;
        float: none;
        font-size: 1.6em;
        margin: 16px auto 0;
        cursor: pointer;
        text-align: center;
        border-radius: 50%;
        background-color: #fff;
    }
}

@media (max-width: 768px) {
    .search-block__search-btn {
        line-height: 48px;
        width: 48px;
        float: none;
        font-size: 1.2em;
        margin: 16px auto 0;
        cursor: pointer;
        text-align: center;
        border-radius: 50%;
        background-color: #fff;
    }
}

.search-block__search-btn:hover,
.search-block__search-btn:focus,
.search-block__search-btn:active {
    background-color: #0b0b0b;
    color: #ffffff;
}









/* callback-form */

.callback-form {
    padding: 72px 0;
    background-color: #0b0b0b;
    background-image: url('../img/areas/callback-form/img_bg.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

@media (max-width: 992px) {
    .callback-form {
        padding: 32px 0;
    }
}

.callback-form .help-text {
    font-size: 0.874em;
    text-align: center;
    color: #ffffff;
    padding: 4px;
}

.callback-form__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.225em;
    font-weight: 700;
    text-transform: uppercase;
    color: #faef37;
    background: linear-gradient(to right, #977301 0%, #faef37 100%);
    background: -moz-linear-gradient(left, #977301 0%, #faef37 100%);
    background: -webkit-linear-gradient(left, #977301 0%, #faef37 100%);
    background: linear-gradient(to right, #977301 0%, #faef37 100%);
    /* background: -webkit-linear-gradient(#977301, #faef37); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .callback-form__title {
        font-size: 1.6em;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .callback-form__title {
        font-size: 1.3em;
        margin-bottom: 8px;
    }
}

.callback-form__row {
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .callback-form__row {
        margin-bottom: 16px;
    }
}

@media (max-width: 992px) {
    .callback-form__row {
        margin-bottom: 8px;
    }
}

.callback-form__input {
    width: 100%;
    padding: 16px;
    border: 0;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: #ffffff;
    background-color: transparent;
    border-bottom: 3px solid #faef37;
}

@media (max-width: 992px) {
    .callback-form__input {
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .callback-form__input {
        font-size: 0.875em;
    }
}

.callback-form__input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.callback-form__input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.callback-form__input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.callback-form__input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

.callback-form__left-side,
.callback-form__right-side {
    padding: 8px;
    width: 50%;
}

@media (max-width: 768px) {

    .callback-form__left-side,
    .callback-form__right-side {
        padding: 8px;
        width: 100%;
    }

    .callback-form__left-side {
        text-align: center;
    }
}

.callback-form__btn {
    padding: 8px 48px;
    font-size: 1.125em;
}

@media (max-width: 768px) {
    .callback-form__btn {
        margin: 0 auto;
    }
}

.callback-form__contacts {
    float: right;
}

@media (max-width: 768px) {
    .callback-form__contacts {
        float: none;
    }
}

.callback-form__text {
    color: #faef37;
    text-shadow: 0 0 8px #333;
}

.callback-form__contacts-row {
    margin-top: 16px;
}

.callback-form__icon-img,
.callback-form__link {
    display: inline-block;
    vertical-align: middle;
}

.callback-form__link {
    color: #ffffff;
    margin-left: 16px;
    font-size: 1.125em;
}

.callback-form__link span {
    font-weight: 700;
}

.callback-form__work-time {
    font-size: 1.125em;
    color: #ffffff;
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .callback-form__work-time {
        margin-top: 8px;
    }
}

.copyright {
    font-size: 0.875em;
    padding: 8px 0;
}

.modal-main {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-main__bg {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.8)
}

.modal-main__inner {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 16px;
    background-color: #ffffff;
}

@media (max-width: 480px) {
    .modal-main__inner {
        width: 98%;
    }
}

.modal-main__title {
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
}

.modal-main__row {
    margin: 8px 0;
}

.modal-main__input {
    border: 1px solid #967101;
    padding: 6px;
    width: 100%;
}

.modal-main__btn {
    padding: 8px 16px;
}

.modal-main__button {
    text-align: center;
}

.modal-main .help-text {
    font-size: 0.875em;
    text-align: center;
}




/*MENY*/

.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Stay on top */
    top: 0;
    right: 0;
    background-color: #111;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}



/* The navigation menu links */

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s
}



/* When you mouse over the navigation links, change their color */

.sidenav a:hover,
.offcanvas a:focus {
    color: #f1f1f1;
}



/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}



/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

#main {
    transition: margin-left .5s;
    padding: 20px;
}



/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.mar-area img {
    width: 100%;
}


/*.inside__mod {
    padding: 0;
    margin: 0;
}*/

.inside__mod li {
    font-size: 0.9em;
    font-weight: 600;
    font-family: inherit;
}

.marki__list {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.marki__img {
    width: 100%;
}

.adress__item {
    color: #faef37;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    margin-bottom: 12px;
    text-shadow: 0 0 8px #000;
}

.adress__item a {
    color: #fff;
}

.adress__item a:hover {
    color: #977301;
}

.banner-item-full {
    width: 100%;
}

.banner-item-half {
    width: 50%;
}

@media (max-width: 768px) {
    .banner-item-half {
        width: 100%;
    }
}