/* import fonts */

@font-face {
    font-family: 'Tactic Sans';
    src: url('../fonts/TacticSans/TACTICSANS-BLD.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Tactic Sans';
    src: url('../fonts/TacticSans/TACTICSANS-MED.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* import fonts END */

/* **************************************************************************************************************************************** */

/* css reset */

*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

img, picture {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

address {
    font-style: normal; 
}

input, button, textarea, select {
    font: inherit;
    outline: none;
    color: #A1A1A1;
}

input, button, select {
    width: 100%;
    margin: 0;
    border: 1px solid #232729;
    box-shadow: none;
    border-radius: 2px;
    padding: 5px 15px;
    background: transparent;
}

input::-moz-placeholder { color: #A1A1A1; }
input::-webkit-input-placeholder { color: #A1A1A1; }
input:-ms-input-placeholder { color: #A1A1A1; }
input::placeholder { color: #A1A1A1; } 

button {
    cursor: pointer;
    padding: 0;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url(../img/ico_select.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    display: block;
    color: #A1A1A1;
    width: 100%;
    padding-left: 15px;
    padding-right: 35px;
    border: 1px solid #A1A1A1;
}

.select::-ms-expand {
    display: none;
}

.select:hover {
    border-color: #A1A1A1;
}

.select:focus {
    border-color: #A1A1A1;
    box-shadow: none;
    box-shadow: none -moz-mac-focusring;
    color: inherit;
    outline: none;
}

.select option {
    font-weight: normal;
}

body {
    min-height: 100vh;
    line-height: 1.3;
}

ul, ol {
  list-style: none;
}

:focus {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote, q {
    quotes: none;
}

q:before, q:after {
    content: '';
}

a, ins {
    text-decoration: none;
    color: inherit;
}

sub, sup {  
    vertical-align: baseline;
    position: relative;
    font-size: .8em;
}

sup {
    top: -5px;
}

sub {
    bottom: -2px;
}

pre {
    font: inherit;
}

/* css reset END */

/* **************************************************************************************************************************************** */


/* common styles */



body {
    font-family: "TacticSans", Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    background: #000;
    position: relative;
    font-weight: 400;
    padding: 0px;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

.compensate-for-scrollbar {
    margin: 0 auto !important;
    overflow: auto !important;
}

.fancybox-button svg {
    pointer-events: none;
}

.resp_table{width:100%;}
.resp_table tr td:before{display:none;}
.resp_table img {
    max-width: unset;
    width: unset;
    display: block;
    width: 100%;
}


.form_title {color: inherit;font-size: 20px;padding: 0px;margin: 0px;text-align: center;padding-bottom: 20px;}

.form_title span {
    display: block;
    white-space: nowrap;
}

input, textarea, select, button, .btn {
    height: 50px;
}

form .form-group {
    margin-bottom: 10px;
    position: relative;
}

.has-danger input,
.has-danger select,
.has-danger textarea
{
	border-width:2px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c86461;
}

#form_popup { display:none; }

.popup_container {width: 520px;max-width:100%;padding: 30px;padding-top: 50px;overflow: hidden !important;position: relative;box-sizing: border-box;background: #000;text-align: center;padding-bottom: 30px;}

.alert.fancybox-content {
    overflow: hidden;
    background: none;
}

.not_agree button {
    background-color: #A1A1A1 !important;
    cursor: auto !important;
    color: white !important;
}

.agree_field {
    font-size: 12px;
    line-height: 100%;
    position: relative;
    display: inline-block;
    padding-left: 15px;
    top: 0px;
}

.agree_field a {
    color: inherit;
    text-decoration: underline;
}

.agree_field input {
    position: absolute;
    top: -1px;
    left: -1000px;
    margin: -0px;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: -1;
}

.agree_field input + .input-check {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #30363A;
    z-index: 1;
    left: 0;
}
.agree_field input:checked + .input-check {}
.agree_field input:checked + .input-check:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
}

.agree_field > span {
    padding-left: 25px;
    display: inline-block;
}

.main {}

.container {
    width: 100%;
    max-width: 1580px;
    padding: 0 30px;
    margin: 0 auto;
}

.raw {
    display: flex;
}

.column-2 {
    width: 50%;
}

.column-3 {
    width: 33.333%;
}

.column-4 {
    width: 25%;
}

.bg_color1 {
}

.title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.title:before {
    content: "";
    display: block;
    position: absolute;
    top: -75px;
    left: calc(50% - 350px);
    width: 700px;
    height: 274px;
    border-radius: 50%;
    background: #C78E664D;
    filter: blur(150px);
    -webkit-filter: blur(150px);
    opacity: .7;
    z-index: -1;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {}
.logo-text {
    font-size: 14px;
    padding-left: 20px;
    border-left: 1px solid #fff;
}
.logo-text__text1 {
    font-weight: 500;
}
.logo-text__text2 {
}
.addr {}
.addr_text1 {
    color: #A1A1A1;
    font-size: 14px;
    padding-bottom: 3px;
}
.addr_text2 {
}
.phone {}
.phone_text1 {
    color: #A1A1A1;
    font-size: 14px;
    padding-bottom: 3px;
}
.phone_text2 {}

.wave-anim {
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    -o-transition: all .1s linear;
}

.btn {
    background: #fff;
    font-size: 14px;
    color: #17181A;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.btn:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 5%;
    bottom: 0;
    background: #C78E66;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    z-index: -1;
}

.btn span {
    display:inline-block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.btn:hover:before {
    height: 100%;
}

.btn_black {
    background: #17181A;
    color: #fff;
}

.btn_black:hover {
    color: #17181A;
}

/* common styles END */



/*************************************************************************************************************************/


.header .mob-menu-btn {
    display: none;
}

.header {
    background: #17181A;
    padding: 30px 0;
}
.header__container {}
.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo-block {}
.header__logo {}
.header__logo-text {}
.header__logo-text1 {}
.header__logo-text2 {}
.header__addr {}
.header__addr_text1 {}
.header__addr_text2 {}
.header__phone {}
.header__phone_text1 {}
.header__phone_text2 {}
.header__btn {width: 260px;background-color: #000;}


/**************************************************************************************************************/


.menu {
    background: #000000CC;
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
}
.menu__container {}
.menu__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu__item {
    padding: 14px 0;
    padding-top: 16px;
    font-family: NunitoSans, Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    transition: all .3s linear;
    color: #A1A1A1;
    position: relative;
}

.menu__item:before {
    content: "";
    width: 0;
    height: 2px;
    background: #C78E66;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    position: absolute;
    bottom: 0;
    left: 0;
}

.menu__item:hover {
    color: #fff;
}
.menu__item:hover:before {
    width: 100%;
}
.menu__item span {}


/**************************************************************************************************************/


.banner {
    position: relative;
    z-index: 1;
}

.banner__erid {
    position: absolute;
    bottom: 18px;
    left: 20px;
    font-size: 12px;
    color: #ffffff;
}
.banner__slider {}
.banner__slider .swiper-wrapper {}
.banner__item {
}
.banner__item_1 {}
.banner__item_2 {}
.banner__bg {}
.banner__bg img {}
.banner__container {
    position: relative;
    display: flex;
    justify-content: center;
}
.banner__content {
    border: 1px solid;
    border-image: linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background: linear-gradient(93.18deg, rgba(0, 0, 0, 0.51) 11.09%, rgba(0, 0, 0, 0.78) 44.25%, rgba(14, 18, 20, 0.44) 85.26%);
    border-radius: 5px;
   
    padding: 56px 120px 28px 50px;
    display: flex;
    flex-direction: column;
    width: 56.5%;
    position: absolute;
    z-index: 1;
    top: 275px;
}

.banner__content:before {
    content: url(../img/logo_banner1.svg);
    position: absolute;
    right: 40px;
    top: 20px;
}
.banner__title-block {}
.banner__title1 {
    font-size: 57px;
    background: #C78E66;
    position: absolute;
    font-weight: 600;
    padding: 4px 14px 0 20px;
    border-radius: 5px;
    top: -37px;
}
.banner__title2 {
    font-size: 40px;
}
.banner__title3 {
    font-size: 73px;
    text-align: right;
}

.banner__title3 b {
    text-transform: uppercase;
}
.banner__btn {
    position: absolute;
    width: 260px;
    bottom: -26px;
    right: 120px;
}
.banner__pag {
    bottom: 70px !important;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.banner__pag .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    position: relative;
    width: 12px;
    height: 12px;
}

.banner__pag .swiper-pagination-bullet svg {
    position: absolute;
    top: -100%;
    left: -100%;
}


/**************************************************************************************************************/


.specs {
    margin-top: 150px;
}
.specs__container {}
.specs__title {}
.specs__content {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.specs__item {
    padding: 20px 20px 30px 20px;
    border: 1px solid;
    border-image: linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all .3s linear;
    position: relative;
    overflow: hidden;
}

.specs__item:hover {
    /* background: #17181A; */
}
.specs__ico {
    width: 109px;
    height: 110px;
    border-radius: 5px;
    background: #17181A;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: all .3s linear;
}
.specs__item:hover .specs__ico {
    width: 120%;
    height: 120%;
}
.specs__ico img {
    position: absolute;
    left: calc(50% - 32px);
    top: 24px;
}
.specs__item-title {
    text-align: center;
    font-size: 20px;
    margin-top: 130px;
    transition: all .3s linear;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.specs__title-text_sm {
    font-size: 14px;
    line-height: 1;
}

.specs__item:hover .specs__item-title {
    color: #C78E66;
}
.specs__sepline {
    margin-top: 30px;
    margin-bottom: 40px;
    height: 1px;
    width: 100%;
    background: #17181A;
    transition: all .3s linear;
    position: relative;
    z-index: 1;
}

.specs__item:hover .specs__sepline {
    background: #C78E66;
}
.specs__btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.specs__btn {}


/**************************************************************************************************************/


.services {
    margin-top: 150px;
}
.services__container {}
.services__title {}
.services__content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.services__item {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.services__img {
    overflow: hidden;
    border-radius: 5px;
}
.services__img img {
    transition: all .5s linear;
}

.services__img:hover img {
    transform: scale(1.05);
}
.services__img-block {
    position: relative;
}
.services__item-title-ico {padding-bottom: 15px;}
.services__item-title-ico img {}
.services__item-title {
    position: absolute;
    bottom: 43px;
    left: 40px;
    font-size: 32px;
    text-transform: uppercase;
}
.services__main-block {
    height: 442px;
    width: 55%;
    margin: unset !important;
    padding-right: 20px !important;
}

.services__main-block .swiper-wrapper {
}
.services__main-item {
    height: 134px !important;
    /* background: #17181A;
    border: 1px solid;
    border-image: linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%); */
    padding: 0 60px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
    background: linear-gradient(to right, #17181A, #17181A), linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    /*border-top: 2px solid #C78E66;
    */:;
}
.services__main-title {
    font-size: 20px;
    padding-left: 20px;
    position: relative;
    padding-bottom: 7px;
}

.services__main-title:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: calc(50% - 5px);
    background: #C78E66;
}

.services__main-title:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #C78E66;
    transition: all .3s linear;
}

.services__main-title:hover:after {
    width: 100%;
}
.services__main-title span {}
.services__main-link-popup {
    font-size: 14px;
    color: #C78E66;
    padding-right: 25px;
    padding-bottom: 7px;
    background: url(../img/arrow_btn.svg) 100% 10% no-repeat;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    position: relative;
}
.services__main-link-popup:hover {
    color: #fff;
    background: url(../img/arrow_btn_hover.svg) 100% 10% no-repeat;
}
.services__main-link-popup:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #C78E66;
    transition: all .3s linear;
}

.services__main-link-popup:hover:before {
    width: 100%;
}

.services__main-scrollbar {
    position: absolute !important;
    top: 0px !important;
    right: 0px !important;
    display: block !important;
    width: 10px !important;
    background: #17181A !important;
    height: 100% !important;
}

.services__main-scrollbar .swiper-scrollbar-drag {
    background: #C78E66;
}


/**************************************************************************************************************/


.adds {
    margin-top: 150px;
}
.adds__container {}
.adds__title {}
.adds__content {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.adds__item {
    width: calc(50% - 10px);
}
.adds__info-block {
    display: flex;
    gap: 20px;
}
.adds__info-item {
    /*background: #17181A;
    */padding: 47px 20px 20px 20px;
    width: calc(33.333% - 10px);
    border: 1px solid transparent;
    background: linear-gradient(to right, #17181A, #17181A), linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.adds__ico {}
.adds__ico img {}
.adds__sepline {
    height: 2px;
    background: linear-gradient(to right, #C78E66 0% 50%, #000 50% 100%);
    background-size: 200%;
    margin: 20px 0;
    transition: all .3s linear;
    background-position-x: 100%;
}
.adds__info-item:hover .adds__sepline {
    background-position-x: 0%;
}
.adds__item-text {
    font-size: 20px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}
.adds__item-text:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
    background: #C78E66;
}
.adds__img-block {}
.adds__img {
    overflow: hidden;
    border-radius: 5px;
}
.adds__img img {
    transition: all .5s linear;
}

.adds__img:hover img {
    transform: scale(1.05);
}


/**************************************************************************************************************/


.corp {
    margin-top: 150px;
}
.corp__bg {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.corp__bg img {
    transition: all .5s linear;
}

.corp__bg:hover img {
    transform: scale(1.05);
}
.corp__container {
    position: relative;
    z-index: 2;
}
.corp__content {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -200px;
}
.corp__item {
    padding: 40px;
    width: 515px;
    border: 1px solid transparent;
    background: linear-gradient(to right, #17181A, #17181A), linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-top: 2px solid #C78E66;
}
.corp__item-title {
    text-transform: uppercase;
    font-size: 38px;
}
.corp__info {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.corp__info-item {
    background: #000;
    border-radius: 5px;
    padding: 15px;
    font-size: 14px;
    min-height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.corp__info-ico {}
.corp__info-ico img {}
.corp__info-text {
    margin-top: 15px;
}
.corp__btn {
    margin-top: 20px;
}


/**************************************************************************************************************/


.about {
    margin-top: 150px;
}
.about__container {}
.about__title {}
.about__content {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.about__item {
    width: calc(33% - 10px);
    border-radius: 5px;
    overflow: hidden;
}
.about__item-info {
    /* background: #17181A; */
    padding: 0 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    /* border: 1px solid; */
    /* border-image: linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%); */

    border: 1px solid transparent;
    background: linear-gradient(to right, #17181A, #17181A), linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}
.about__item-title {
    font-size: 28px;
    text-transform: uppercase;
}
.about__item-sepline {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #C78E66 0% 50%, #000 50% 100%);
    background-size: 202%;
    transition: all .3s linear;
    background-position-x: 100%;
}
.about__item:hover .about__item-sepline {
    background-position-x: 0%;
}

.about__item-text {
    font-size: 24px;
    color: #A1A1A1;
    padding-left: 20px;
    position: relative;
}

.about__item-text:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
    background: #C78E66;
}
.about__item-img {
    overflow: hidden;
}
.about__item-img img {
    transition: all .5s linear;
}

.about__item-img:hover img {
    transform: scale(1.05);
}


/**************************************************************************************************************/


.reviews {
    margin-top: 150px;
}
.reviews__container {}
.reviews__title {}
.reviews__content {
    margin-top: 60px;
}
.reviews .swiper-wrapper {padding-bottom: 60px;}
.reviews__item {
    /*background: #17181A;
    */padding: 60px 40px;
    /*border-radius: 5px;
    */overflow: hidden;
    /*border: 1px solid;
    *//*border-image: linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    */height: auto !important;
    border: 1px solid transparent;
    background: linear-gradient(to right, #17181A, #17181A), linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.reviews__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    height: 60px;
}
.reviews__autor {
    font-size: 20px;
    text-transform: uppercase;
}
.reviews__date {
    font-size: 14px;
    color: #A1A1A1;
}
.reviews__sepline {}
.reviews__text {
    font-size: 16px;
    color: #A1A1A1;
    margin-top: 40px;
}
.reviews__pag {
    bottom: 15px !important;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.reviews__pag .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    position: relative;
    width: 12px;
    height: 12px;
}
.reviews__pag .swiper-pagination-bullet-active:before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 300%;
    height: 300%;
    border: 1px solid #fff;
    position: absolute;
    top: -100%;
    left: -100%;
}


/**************************************************************************************************************/


.contacts {
    margin-top: 200px;
    margin-bottom: -150px;
    position: relative;
    z-index: 1;
}
.contacts__container {}
.contacts__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.contacts__item {
    width: 50%;
    /* background: url(../img/logo_contacts1.svg)  98% 50% no-repeat #17181A;
    border-radius: 0 0 5px 5px;
    border-top: 2px solid #C78E66; */
    padding: 40px;

    border: 1px solid transparent;
    background: linear-gradient(to right, #17181A, #17181A), linear-gradient(217.62deg, #232729 0.81%, #2A2A2C 99.19%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-top: 2px solid #C78E66;
}
.contacts__item-title {
    font-size: 38px;
    text-transform: uppercase;
}
.contacts__info {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.contacts__addr {}
.contacts__addr_text1 {}
.contacts__addr_tex2 {}
.contacts__phone {}
.contacts__phone_text1 {}
.contacts__phone_text2 {
    font-size: 20px;
}

.contacts__addr_text2 {
    font-size: 20px;
}
.contacts__item-desc {
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 10px;
}
.contacts__form {
    margin-top: 20px;
    max-width: 450px;
}


/**************************************************************************************************************/



#map1 {
    height: 630px;
    width: 100%;
    max-width: 100%;
}

#map1 canvas {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}


/**************************************************************************************************************/



.footer {
    padding: 40px 0;
    color: inherit;
    font-size: 14px;
    background: #17181A;
}
.footer__container {}
.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #A1A1A1;
}
.footer__copyright {}
.footer__dislamer-btn {
    color: inherit;
    text-decoration: none;
}
.footer__comp-info {}
.footer__madein {}
.footer__policy {
    color: inherit;
    text-decoration: none;
}
.footer__disclamer {font-size:14px;display: none;text-align: left;padding-top: 35px;}


/* **************************************************************************************************************************************** */

/* media */


/* desktop and laptops */

@media only screen and (min-width: 768px) and (max-width: 1920px) { 
}
@media only screen and (min-width: 768px) and (max-width: 1800px) {

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {}
    .specs__item {}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {
}
    .adds__item {}
    .adds__info-block {}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {}
    .corp__item-title {}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {}
    .about__item-info {}
    .about__item-title {}
    .about__item-sepline {}
    .about__item-text {}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}

}
@media only screen and (min-width: 768px) and (max-width: 1600px) { 

    .container {
        max-width: 1200px;
    }

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {
    flex-direction: column;
    align-items: flex-start;
}
    .header__logo {}
    .header__logo-text {
    padding: 0;
    border: none;
}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {
    top: 120px;
    width: 85%;
}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {}
    .specs__item {}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {
    justify-content: center;
}
    .adds__item {
}
    .adds__info-block {
    width: 100%;
}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {
}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {}
    .corp__item-title {}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {}
    .about__item-info {}
    .about__item-title {
    font-size: 1.4vw;
}
    .about__item-sepline {}
    .about__item-text {
    font-size: 1.2vw;
}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {
    flex-direction: column;
    padding-bottom: 20px;
}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {
    font-size: 2vw;
}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}

}
@media only screen and (min-width: 768px) and (max-width: 1536px) { 

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {}
    .specs__item {}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {}
    .adds__item {}
    .adds__info-block {}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {}
    .corp__item-title {}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {}
    .about__item-info {}
    .about__item-title {}
    .about__item-sepline {}
    .about__item-text {}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}

}
@media only screen and (min-width: 768px) and (max-width: 1440px) { 

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {}
    .specs__item {}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {}
    .adds__item {}
    .adds__info-block {}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {}
    .corp__item-title {}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {}
    .about__item-info {}
    .about__item-title {}
    .about__item-sepline {}
    .about__item-text {}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}

}
@media only screen and (min-width: 768px) and (max-width: 1366px) { 
    .container {
        max-width: 1082px;
        padding: 0 15px;
    }

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {
    display: none;
}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {
    width: 100%;
}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {}
    .specs__item {}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    align-items: flex-start;
}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {
    margin-left: 20px;
}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {}
    .adds__item {}
    .adds__info-block {}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {}
    .corp__item-title {}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {}
    .about__item-info {}
    .about__item-title {}
    .about__item-sepline {}
    .about__item-text {}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}
}

/* tablets */

@media only screen and (min-width: 768px) and (max-width: 1112px) { 
    .container {
        max-width: 930px;
    }

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {
    flex-wrap: wrap;
}
    .specs__item {
    width: 48%;
}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {}
    .adds__item {}
    .adds__info-block {}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {}
    .corp__item-title {
    font-size: 3vw;
}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {
    width: 48.5%;
}
    .about__item-info {}
    .about__item-title {}
    .about__item-sepline {}
    .about__item-text {}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
    .container {
        max-width: 738;
    }

    .title {}    
    .logo-block {}
    .logo {}
    .logo-text {}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */
    
    
    
    /*************************************************************************************************************************/
    
    .header {}
    .header__container {}
    .header__content {}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {}
    .header__phone_text1 {}
    .header__phone_text2 {}
    .header__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .menu {}
    .menu__container {}
    .menu__content {}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {}
    .banner__bg img {}
    .banner__container {}
    .banner__content {}
    .banner__title-block {}
    .banner__title1 {}
    .banner__title2 {}
    .banner__title3 {}
    .banner__btn {}
    .banner__pag {}
    
    
    /**************************************************************************************************************/
    
    
    .specs {}
    .specs__container {}
    .specs__title {}
    .specs__content {}
    .specs__item {}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {}
    .services__container {}
    .services__title {}
    .services__content {}
    .services__item {}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {}
    .services__item-title-ico img {}
    .services__item-title {}
    .services__main-block {}
    .services__main-item {}
    .services__main-title {}
    .services__main-title span {}
    .services__main-link-popup {}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {}
    .adds__container {}
    .adds__title {}
    .adds__content {}
    .adds__item {}
    .adds__info-block {}
    .adds__info-item {}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {}
    .corp__item {
    width: 48%;
}
    .corp__item-title {}
    .corp__info {}
    .corp__info-item {}
    .corp__info-ico {}
    .corp__info-ico img {}
    .corp__info-text {}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {}
    .about__container {}
    .about__title {}
    .about__content {}
    .about__item {}
    .about__item-info {}
    .about__item-title {}
    .about__item-sepline {}
    .about__item-text {}
    .about__item-img {}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {}
    .reviews .swiper-wrapper {}
    .reviews__item {}
    .reviews__info {}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {}
    .contacts__container {}
    .contacts__content {}
    .contacts__item {}
    .contacts__item-title {}
    .contacts__info {}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {}
    .contacts__form {}
}

/* mobiles */

@media only screen and (max-width: 767px) { 

    html {
        overflow-x: hidden;
    }

    .container {
        max-width: 610px;
        padding: 0 15px;
    }

    .fancybox-type-image {width: 100% !important;margin: 0px !important;left: 0px !important;}
	.fancybox-close {right: 9px !important;top: 9px !important;}
	.fancybox-inner {width: 100% !important;margin: 0px !important;padding: 0px !important;}
	.fancybox-wrap {margin:0px !important;width: 100% !important;left: 0px !important;top: 20px !important;}
	.fancybox-type-image .fancybox-close {top: -8px !important;}

	.simple_slider .btn_left {display:none !important;}
	.simple_slider .btn_right {display:none !important;}
	
	.popup_container {width:100%;}

    .btn {
        width: 100%;
    }

    .title {
    font-size: 6vw;
}    
    .logo-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
    .logo {}
    .logo-text {
    padding-left: 0;
    border: none;
}
    .logo-text__text1 {}
    .logo-text__text2 {}
    .addr {}
    .addr_text1 {}
    .addr_text2 {}
    .phone {
    width: 100%;
}
    .phone_text1 {}
    .phone_text2 {}
    
    
    /* common styles END */

    /************************************************************************/

    .header .mob-menu-btn {
        display: block;
        position: relative;
        width: 30px;
        height: 22px;
        z-index: 1;
    }

    .header .mob-menu-btn span {
        position: absolute;
        display: block;
        width: 30px;
        height: 3px;
        background: #fff;
        transition: all .2s linear;
    }

    .header .mob-menu-btn span:nth-child(1) {
        top: 0;
    }

    .header .mob-menu-btn span:nth-child(2) {
        top: calc(50% - 1px);
        opacity: 1;
    }

    .header .mob-menu-btn span:nth-child(3) {
        bottom: 0;
    }

    .header .mob-menu-btn.active span:nth-child(1) {
        transform-origin: top right;
        transform: rotate(-45deg);
        top: -1px;
    }
    
    .header .mob-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header .mob-menu-btn.active span:nth-child(3) {
        transform-origin: bottom right;
        transform: rotate(45deg);
        bottom: -1px;
    }


    .header {
    padding: 10px 0;
}
    .header__container {}
    .header__content {
    flex-wrap: wrap;
}
    .header__logo-block {}
    .header__logo {}
    .header__logo-text {}
    .header__logo-text1 {}
    .header__logo-text2 {}
    .header__addr {
    display: none;
}
    .header__addr_text1 {}
    .header__addr_text2 {}
    .header__phone {
    order: 1;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}
    .header__phone_text1 {
    display: none;
}
    .header__phone_text2 {}
    .header__btn {
    display: none;
}
    
    
    /**************************************************************************************************************/
    
    
    .menu {
    background: #000;
    transition: all .2s linear;
    left: 100%;
    padding: 30px 0;
}

.menu.active {
    left: 0;
}
    .menu__container {}
    .menu__content {
    flex-direction: column;
}
    .menu__item {}
    .menu__item span {}
    
    
    /**************************************************************************************************************/
    
    
    .banner {}
    .banner__erid {
        bottom: 30px;
        left: 10px;
        font-size: 10px;
    }
    .banner__slider {}
    .banner__slider .swiper-wrapper {}
    .banner__item {
    display: flex !important;
    flex-direction: column;
    padding-bottom: 50px;
}

.banner__content:before {
    display: none;
}
    .banner__item_1 {}
    .banner__item_2 {}
    .banner__bg {
    order: -1;
}
    .banner__bg img {}
    .banner__container {}
    .banner__content {
    position: relative;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: unset;
    top: 0;
}
    .banner__title-block {}
    .banner__title1 {
    top: -17vw;
    font-size: 8vw;
}
    .banner__title2 {
    font-size: 5vw;
}
    .banner__title3 {
    font-size: 10vw;
}
    .banner__btn {
    position: static;
    margin-top: 10px;
}
    .banner__pag {
    bottom: 12px !important;
}
    
    
    /**************************************************************************************************************/
    
    
    .specs {
    margin-top: 50px;
}
    .specs__container {}
    .specs__title {}
    .specs__content {
    flex-wrap: wrap;
    margin-top: 30px;
}
    .specs__item {
    width: 100%;
}
    .specs__ico {}
    .specs__ico img {}
    .specs__item-title {}
    .specs__sepline {
    margin: 10px 0;
}
    .specs__btns {}
    .specs__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .services {
    margin-top: 50px;
}
    .services__container {}
    .services__title {}
    .services__content {
    margin-top: 30px;
}
    .services__item {
    flex-wrap: wrap;
}
    .services__img-block {}
    .services__img {}
    .services__img img {}
    .services__item-title-ico {
    width: 10vw;
}
    .services__item-title-ico img {}
    .services__item-title {
    font-size: 5vw;
    left: 5vw;
    bottom: 5vw;
}
    .services__main-block {
    width: 100%;
    margin-top: 20px !important;
    /* height: auto; */
}
    .services__main-item {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}
    .services__main-title {
    font-size: 3.5vw;
}
    .services__main-title span {}
    .services__main-link-popup {
    padding-left: 20px;
}
    .services__main-scrollbar {}
    
    
    /**************************************************************************************************************/
    
    
    .adds {
    margin-top: 50px;
}
    .adds__container {}
    .adds__title {}
    .adds__content {
    margin-top: 30px;
}
    .adds__item {
    width: 100%;
}

.adds__item:nth-child(3) {
    display: none;
}
    .adds__info-block {
    flex-wrap: wrap;
}
    .adds__info-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
}
    .adds__ico {}
    .adds__ico img {}
    .adds__sepline {
    display: none;
}
    .adds__item-text {}
    .adds__img-block {}
    .adds__img {}
    .adds__img img {}
    
    
    /**************************************************************************************************************/
    
    
    .corp {
    margin-top: 50px;
}
    .corp__bg {}
    .corp__bg img {}
    .corp__container {}
    .corp__content {
    margin-top: 20px;
    flex-wrap: wrap;
}
    .corp__item {
    width: 100%;
    padding: 15px 10px;
}
    .corp__item-title {
    font-size: 6vw;
}
    .corp__info {
    flex-wrap: wrap;
}
    .corp__info-item {
    flex-direction: revert;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    min-height: 0;
    padding: 15px 10px;
    width: 100%;
}
    .corp__info-ico {max-width: 35px;}
    .corp__info-ico img {
}
    .corp__info-text {
    margin: 0;
}
    .corp__btn {}
    
    
    /**************************************************************************************************************/
    
    
    .about {
    margin-top: 50px;
}
    .about__container {}
    .about__title {}
    .about__content {
    margin-top: 30px;
}
    .about__item {
    padding: 0;
    width: 100%;
}
    .about__item-info {
    gap: 10px;
    padding: 15px 10px;
}
    .about__item-title {
    font-size: 6vw;
}
    .about__item-sepline {}
    .about__item-text {
    font-size: 4vw;
}
    .about__item-img {
    display: flex;
    justify-content: center;
}
    .about__item-img img {}
    
    
    /**************************************************************************************************************/
    
    
    .reviews {
    margin-top: 50px;
}
    .reviews__container {}
    .reviews__title {}
    .reviews__content {
    margin-top: 30px;
}
    .reviews .swiper-wrapper {}

.reviews__pag {
    gap: 10px;
}
    .reviews__item {
    padding: 15px 10px;
}
    .reviews__info {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
    padding-bottom: 15px;
}
    .reviews__autor {}
    .reviews__date {}
    .reviews__sepline {}
    .reviews__text {
    margin-top: 15px;
}
    
    
    /**************************************************************************************************************/
    
    
    .contacts {
    margin-top: 50px;
    margin-bottom: 0;
}
    .contacts__container {}
    .contacts__content {
    flex-direction: column;
}
    .contacts__item {
    width: 100%;
    padding: 15px 10px;
    background-size: 5%;
}
    .contacts__item-title {
    font-size: 6vw;
}
    .contacts__info {
    margin-top: 30px;
    gap: 20px;
}
    .contacts__addr {}
    .contacts__addr_text1 {}
    .contacts__addr_tex2 {}
    .contacts__phone {}
    .contacts__phone_text1 {}
    .contacts__phone_text2 {}
    .contacts__item-desc {
    font-size: 4vw;
}
    .contacts__form {}


    /************************************************************************/
    
    
	#map1 {
        margin-left: 0;
        width: 100%;
        max-width: none;
        height: 350px;
        background-position: 50% 50% !important;
        margin-top: 30px;
    }

.footer__content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer__logo-block {
    align-items: center;
    text-align: center;
}

.footer__info {
    width: 100%;
    text-align: center;
}
    
    
    /************************************************************************/


}
@media only screen and (max-width: 640px) { 
}
@media only screen and (max-width: 592px) {
}
@media only screen and (max-width: 568px) { 
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 414px) { 
}
@media only screen and (max-width: 375px) { 
}
@media only screen and (max-width: 360px) { 
}
@media only screen and (max-width: 320px) { 
}


/* **************************************************************************************************************************************** */

/* media END*/
