/* import fonts */

@font-face {
    font-family:"NunitoSans";
    src: url(../fonts/nunitosans/NunitoSans-Light.ttf) format("truetype");
    font-weight:300;
    font-style:normal;
    font-display: swap;
}
@font-face {
    font-family:"NunitoSans";
    src: url(../fonts/nunitosans/NunitoSans-Regular.ttf) format("truetype");
    font-weight:400;
    font-style:normal;
    font-display: swap;
}
@font-face {
    font-family:"NunitoSans";
    src: url(../fonts/nunitosans/NunitoSans-ExtraBold.ttf) format("truetype");
    font-weight:800;
    font-style:normal;
    font-display: swap;
}
@font-face {
    font-family:"NunitoSans";
    src: url(../fonts/nunitosans/NunitoSans-Black.ttf) format("truetype");
    font-weight:900;
    font-style:normal;
    font-display: swap;
}

@font-face {
    font-family:"TacticSans";
    src: url(../fonts/tacticsans/TacticSansExd-Bld.ttf) format("truetype"),
        url(../fonts/tacticsans/TacticSansExd-Bld.eot) format("opentype"),
        url(../fonts/tacticsans/TacticSansExd-Bld.woff) format("woff"),
        url(../fonts/tacticsans/TacticSansExd-Bld.woff2) format("woff2");
    font-weight:700;
    font-style:normal;
    font-display: swap;
}

/* 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: #cccccc;
}

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

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

button {
    cursor: pointer;
}

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: #cccccc;
    width: 100%;
    padding-left: 15px;
    padding-right: 35px;
    border: 1px solid #cccccc;
}

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

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

.select:focus {
    border-color: #cccccc;
    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: "NunitoSans", Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    position: relative;
    font-weight: 400;
    padding: 0px;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    background: #181B1D;
}

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

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

.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: 42px;
}

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: 5px 29px;overflow: hidden !important;position: relative;box-sizing: border-box;background: inherit;text-align: center;padding-bottom: 30px;}

.popup_container .btn {
    width: 100%;
}

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

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

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

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

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

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

.main {}

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

.raw {
    display: flex;
}

.column-2 {
    width: 50%;
}

.column-3 {
    width: 33.333%;
}

.column-4 {
    width: 25%;
}


.btn {
    background: #181B1D;
    color: white;
    text-align: center;
    width: 202px;
    display: flex;
    align-items: center;
    border: 1px solid #D88E64;
    position: relative;
    text-decoration: none;
    transition:  all .2s linear;
}

.btn span {
    display:inline-block;
    width: 100%;
}

.btn:hover {
    background-color: #D88E64;
    border-color: #D88E64;    
    color: #fff;
}

/* common styles END */



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



.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #181B1D;
    padding: 25px 0;
    z-index: 10;
}
.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo-block {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    font-weight: 300;
}
.header__logo {
    padding-right: 20px;
    border-right: 1px solid #D88E64;
}
.header__addr {
    font-size: 12px;
    font-weight: 300;
    padding-left: 20px;
    background: url(../img/ico_loc.png) 0 50% no-repeat;
}
.header__phone {
    font-size: 18px;
    font-weight: 800;
    padding-left: 20px;
    background: url(../img/ico_phone.png) 0 50% no-repeat;
}



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


.banner {
    padding-top: 92px;
    position: relative;
    overflow: hidden;
}
.banner__bg {position: relative;width: 1920px;transform: translateX(-50%);left: 50%;}

.banner__bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 40%;
    background: repeating-linear-gradient(to bottom, #fff, transparent);
    position: absolute;
    top: 0;
    left: 0;
}
.banner__container {
    position: relative;
}
.banner__content {
    position: absolute;
    bottom: 465px;
    width: 100%;
}
.banner__title-block {
    width: 100%;
    text-align: center;
    color: #000;
    font-family: "TacticSans", Arial, sans-serif;
    font-weight: 900;
    font-size: 36px;
}


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


.banner-props {
    background: #E3E3E3;
    color: #000;
    padding: 40px 0;
}
.banner-props__content {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
}
.banner-props__item {
    text-align: center;
    font-size: 18px;
    padding-top: 80px;
    background-position: 50% 0;
    background-repeat: no-repeat;
}
.banner-props__item span {}
.banner-props__item b {
    font-size: 1.225em;
    font-weight: 900;
}
.banner-props__item_ico1 {
    background-image: url(../img/ico_banner_props_1.png);
}
.banner-props__item_ico2 {
    background-image: url(../img/ico_banner_props_2.png);
}
.banner-props__item_ico3 {
    background-image: url(../img/ico_banner_props_3.png);
}
.banner-props__item_ico4 {
    background-image: url(../img/ico_banner_props_4.png);
}
.banner-props__item_ico5 {
    background-image: url(../img/ico_banner_props_5.png);
}


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


.chat {
    margin-top: 60px;
}

.dw_chat {
    margin: 0 auto;
}

.dw_chat_message-list ul {
    justify-content: flex-start !important;
}

.dw_card {
    max-width: 16rem !important;
}

.chat .submit-button {
    font-family: "NunitoSans", Arial, sans-serif !important;
    background: #181B1D !important;
    color: white !important;
    text-align: center !important;
    width: 202px !important;
    display: flex !important;
    align-items: center !important;
    border: 1px solid #D88E64 !important;
    position: relative !important;
    text-decoration: none !important;
    transition: all .2s linear !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    padding: 11px 25px !important;
    box-sizing: border-box;
    text-transform: none !important;
}

.chat .submit-button:hover {
    background-color: #D88E64 !important;
    border-color: #D88E64 !important ;
    color: #fff !important;
    outline: none !important;
    box-shadow: unset !important;
    background-color: #c78e66 !important;
    transition: box-shadow .3s,background-color .3s !important;
}

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



.footer {
    padding: 40px 0;
}
.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__logo-block {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    font-weight: 300;
}
.footer__logo {
    padding-right: 20px;
    border-right: 1px solid #D88E64;
}
.footer__addr {
    font-size: 12px;
    font-weight: 300;
    padding-left: 20px;
    background: url(../img/ico_loc.png) 0 50% no-repeat;
}
.footer__addr span {}
.footer__phone {
    font-size: 18px;
    font-weight: 800;
    padding-left: 20px;
    background: url(../img/ico_phone.png) 0 50% no-repeat;
}

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

/* media */


/* desktop and laptops */

@media only screen and (min-width: 768px) and (max-width: 1680px) {
    .banner__bg {
    width: 100%;
}

.banner__content {
    bottom: 22vw;
}

.banner__title-block {
    font-size: 2.3vw;
}
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
    .container {
        max-width: 1082px;
        padding: 0 15px;
    }
.header__addr {
    display: none;
}
.banner__title {}

}

/* tablets */

@media only screen and (min-width: 768px) and (max-width: 1112px) { 
    .container {
        max-width: 930px;
    }
.footer__content {
    flex-flow: column;
    align-items: center;
    gap: 25px;
}

/* **************************************************************************************************************************************** */
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
    .container {
        max-width: 100%;
    }
.header__phone {
    font-size: 16px;
}
.header__btn {
    max-width: 160px;
}
.banner-props__item {
    font-size: 16px;
}
}

/* mobiles */

@media only screen and (max-width: 767px) { 
    .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%;
    }

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

        .header {
        padding: 10px 0;
    }
    .header__content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .header__logo-block {
        font-size: 10px;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .header__logo {
        padding-right: 10px;
        max-width: 36%;
    }
    .header__addr {
        display: none;
    }
    .banner {
        padding-top: 155px;
        display: flex;
        flex-flow: column-reverse;
        gap: 20px;
    }
    .banner__bg {
        width: 120%;
    }
    .banner__content {
        position: static;
    }
    .banner__title-block {
        font-size: 5vw;
        color: #fff;
    }
    .banner-props__content {
        flex-flow: column;
        align-items: center;
    }
    .banner-props__item {
        padding: 0;
        padding-left: 90px;
        background-position: 0 50%;
        min-height: 85px;
        display: flex;
        align-items: center;
        text-align: left;
        font-size: 16px;
        width: 300px;
    }
    .banner-props__item b {
        font-size: 1.1em;
    }
    .footer__content {
        flex-flow: column;
        gap: 25px;
    }

    .chat__container {
        padding: 0;
    }
}


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

/* media END*/
