@import url('https://fonts.googleapis.com/css?family=Montserrat+Alternates:300i,400,400i,600|Montserrat:300,400,400i,600,800&display=swap');
body {
    font-family: "Montserrat",  sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}

a {color: inherit;}
a:hover, a:focus, a:active {
    color: inherit;
    outline: none;
    text-decoration: none;
}
p, label, span, a, select {
    line-height: normal;
    margin-bottom: 0px;
}
.site_box {
    padding-left: 8vw;
    padding-right: 8vw;
}
.site_box_2 {
    padding-left: 5vw;
    padding-right: 5vw;
}
.rel {position: relative;}
.disable {
    pointer-events: none;
    cursor: default;
}
.show_hidden {cursor: pointer;}
.hidden_objects {display: none;}
.bg_white {
    background-color: #f0eef3;
    color: #000;
    padding-top: 2em;
    padding-bottom: 2em;
}
.bg_white2 {
    padding-top: 2em;
    padding-bottom: 2em;
}
.bg_violet {
    background-color: #0a0528;
    padding-top: 2em;
    padding-bottom: 2em;
}


/* FORMS CUSTOMIZATION */
input, input:hover, input:focus, input:active,
button, button:hover, button:focus, button:active,
textarea, textarea:hover, textarea:focus, textarea:active,
select, select:hover, select:focus, select:active {outline: none;}

/* placeholder stylization */
input:-moz-placeholder, textarea:-moz-placeholder {font-weight: 300; font-style: italic; color: rgba(0,0,0,0.3)}
input::-moz-placeholder, textarea::-moz-placeholder {font-weight: 300; font-style: italic; color: rgba(0,0,0,0.3)}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {font-weight: 300; font-style: italic; color: rgba(0,0,0,0.3)}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {font-weight: 300; font-style: italic; color: rgba(0,0,0,0.3)}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {font-weight: 300; font-style: italic; color: rgba(0,0,0,0.3)}
input::placeholder, textarea::placeholder {font-weight: 300; font-style: italic; color: rgba(0,0,0,0.3)}

input, textarea {
    border: 1px solid #d2d2d3;
    background-color: #fff;
    border-radius: 1em;
    padding: .5em .75em;
    width: 100%;
    line-height: normal;
}

/* SELECT simple */
select {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    border: 1px solid #eaeaeb;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15) inset;
    font-style: italic;
    background: url(../images/sample/down.png) no-repeat #f8f8f8;
    background-position: 95% 50%;
    background-size: auto 30%;
    width: 100%;
    padding: .5em .75em;
}
select::-ms-expand { /* for IE 11 */display: none;}
select:hover {cursor: pointer;}


/* checkbox customization */
.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}
input[type="checkbox"] {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    box-shadow: none;
    border: 1px solid #888888;
    border-radius: 0;
    background-color: #e8e8e8;
    height: .7em;
    width: .7em;
    position: relative;
    box-sizing: content-box;
    margin-right: .25em;
}
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: url(../images/icons/mark_0.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* radiobutton customization */
.radio {
    display: flex;
    justify-content: flex-start;
    align-items: end;
}
input[type="radio"] {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    box-shadow: none;
    border: 1px solid gray;
    border-radius: 50%;
    height: 1em;
    width: 1em;
    position: relative;
    box-sizing: content-box;
    margin-right: .25em;
}
input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: gray;
    border-radius: 50%;
}

/* кнопки */
.btn_main {
    border-radius: 0;
    border: none;
    color: #fff;
    background: linear-gradient(to bottom, #58498d 40%, #2d2449);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    line-height: normal;
    padding: 0 1.5em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    min-height: 2em;
    border-radius: 2em;
}
.btn_main:hover, .btn_main:focus, .btn_main:active {
    color: #fff;
    box-shadow: 0 1px 12px 3px #5e5787;
    cursor: pointer;
}
.btn_main img {
    height: 1em;
    margin-left: .4em;
}
.btn_light {
    border-radius: 0;
    border: none;
    color: #141236;
    background: linear-gradient(to bottom, #fff 50%, #9b8fb3);
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    line-height: normal;
    padding: 0 1.5em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    min-height: 2em;
    border-radius: 2em;
}
.btn_light:hover, .btn_light:focus, .btn_light:active {
    color: #141236;
    box-shadow: 0 1px 12px 3px #5e5787;
    cursor: pointer;
}
.btn_group {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}
.btn_group .btn_main, .btn_group .btn_light {margin-right: .75em;}

/* Текстовые стили */
h1 {
    font-size: .8em;
    margin-bottom: 0;
    text-align: center;
    color: #f5f3ff;
    font-weight: 300;
}
h2 {
    color: #0a0528;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    font-size: 1.75em;
    margin-bottom: .5em;
}

.alt {font-family: "Montserrat",  sans-serif;}
.f_07 {font-size: .7em;}
.f_08 {font-size: .8em;}
.f_09 {font-size: .9em;}
.f_11 {font-size: 1.1em;}
.f_12 {font-size: 1.2em;}
.f_13 {font-size: 1.3em;}
.f_14 {font-size: 1.4em;}
.f_15 {font-size: 1.5em;}
.f_20 {font-size: 2em;}
.white {color:#fff;}
.black {color: #000;}
.violet {color: #554b8a;}
.lilac {color: #c8c2eb;}
.blue {color: #1463b1;}

.fw_1 {font-weight: 100;} /* thin */
.fw_2 {font-weight: 200;} /* extra-light */
.fw_3 {font-weight: 300;} /* light */
.fw_4 {font-weight: 400;} /* regular */
.fw_5 {font-weight: 500;} /* medium */
.fw_6 {font-weight: 600;} /* semi-bold */
.fw_7 {font-weight: 700;} /* bold */
.fw_8 {font-weight: 800;} /* extra-bold */
.fw_9 {font-weight: 900;} /* black */
.itlc2 {font-style: italic;}
.norm {font-style: normal;}

.tt_up {text-transform: uppercase;}
.td_lth {text-decoration: line-through;}
.lh_n {line-height: normal;}
.bb_1 {border-bottom: 1px solid;}
.t_ind {text-indent: 2rem;}
.op_3 {opacity: .3;}
.ti-20{
  text-indent: 20px;
  text-align: justify;
}



/* Главный экран */
.main {
    background: url(../images/bg/bg1.png) no-repeat center;
    background-size: cover;
    margin-bottom: 2em;
}
/* Шапка */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.top {
    width: 100%;
    background-color: #0a0528;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1em;
}
.slogan {
    background: linear-gradient(to bottom, #63539d, #56438e, #54428c);
    border-bottom-left-radius: 3em;
    border-bottom-right-radius: 3em;
    padding: .5em 1em;
    width: 40%;
    align-self: flex-start;
}
.icons {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1em;
    width: 30%;
}
.icons img {
    width: 2.2em;
    margin-right: .5em;
}
.top_btn {
    width: 30%;
    text-align: right;
    padding-top: 1em;
}

.menu_wrap {
    position: relative;
    background-color: #0a0528;
    border-top: 1px solid #554b8a;
    border-bottom: 1px solid #554b8a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}
.logo_menu {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}
.logo_top {
    width: 14em;
    margin-right: 1em;
}
.entrance {
    width: fit-content;
}
.entrance a {
    opacity: .7;
    border-bottom: 1px solid #fff;
    font-size: 1.1em;
}
.entrance a:hover {opacity: 1;}


/* Меню */
nav {
    width: fit-content;
    padding: 0 !important;
}
.navbar-nav {
    width: 100%;
    justify-content: space-between;
}
.nav-link {
    color: #fff;
    text-transform: uppercase;
    padding: 0.4em 1em !important;
    margin: 0;
    font-size: 1.1em;
    border-bottom: 1px solid transparent;
    font-weight: 600;
}
.nav-link:hover, .nav-link:focus, .nav-link:active, .active .nav-link {
    background-color: rgba(85, 66, 141, 0.85);
}
.navbar-toggler .navbar-toggler-icon {
    display: block;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #fff;
}
.navbar-collapse {width: 100%;}

/* меню появляющееся при наведении */
.rel {position: relative;}
.toggle-menu {
    cursor: pointer;
}
#drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    width: max-content;
    max-width: 95vw;
    z-index: 10;
    background-color: rgba(85, 66, 141, 0.85);
}
#drop-menu ul {
    padding: 0px;
    width: 100%;
}
#drop-menu li {
    width: 100%;
    list-style: none;
    text-align: left;
}
#drop-menu li>a {
    color: #fff;
    font-size: .9em;
    font-weight: 400;
    padding: 0px 10px;
    width: 100%;
    display: inline-block;
}
#drop-menu li>a:hover {
    font-weight: 600;
}
#drop-menu li:hover {
  background: #0a0528;
}

/* Main banner */
.main_banner {
    background-color: #0a0528;
    padding-top: 2em;
    padding-bottom: 2.5em;
}
.carousel-indicators li {
    border: 2px solid #554b8a;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    background-color: transparent;
}
.carousel-indicators li.active {
    background-color: #554b8a;
}
.carousel-control-next, .carousel-control-prev {
    width: fit-content;
    opacity: 1;
}
.carousel-control-next:hover, .carousel-control-prev:hover {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(255,255,255,.5));
}
.carousel-control-next img, .carousel-control-prev img {width: auto;}
.carousel-control-prev {left: -2em;}
.carousel-control-next {right: -2em;}
.carousel-indicators {
    bottom: -1.5em;
    margin: 0;
}
.carousel-item {padding: 1em;}
.banner_img {
    width: 100%;
    border-radius: 1em;
    box-shadow: 0 0 15px 4px #5e5787;
}



#sect_3 {
    border-bottom-left-radius: 50% 10em;
    border-bottom-right-radius: 50% 10em;
    padding-bottom: 14em;
}
/* О нас */
.v_separator {
    padding-right: 1.5rem;
    border-right: 1px solid #5e5787;
}
.plus {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    margin: 2em 0;
}
.plus>div {
    width: 19%;
    background-color: #fff;
    text-align: center;
    color: #554b8a;
    font-family: "Montserrat",  sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: .75em;
}

/* Как это происходит? */
.order {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1em;
}
.order>div {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 16.58vw;
}
.point {
    background-color: #fff;
    border-radius: 50%;
    height: 5em;
    width: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.point_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.point:hover {
    cursor: pointer;
    box-shadow: 0 1px 12px 3px #5e5787;
    transition: width 0.3s linear .5s, height 0.3s linear .5s;
    width: 100%;
    height: 100%;
}
.point:hover .point_bg {
    transition: opacity .5s linear 0s;
    opacity: .15;
}
.point .text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    color: #000;
    padding: 2em;
    font-family: "Montserrat",  sans-serif;
    font-style: italic;
    opacity: 0;
    display: flex;
    flex-flow: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.point:hover .text {
    transition: opacity 0.5s ease 1s;
    opacity: 1;
}

/* Наши работы */
#works {
    background-color: #fff;
    padding: 2em 3vw;
    box-shadow: 0 1px 12px 3px rgba(94, 87, 135, 0.25);
    margin-top: -12em;
    position: relative;
    z-index: 10;
    margin-bottom: 3em;
}

#works p {
    color:#000;
}

#works .slider__block {
    position: relative;
    margin: 0 -3vw;
    padding: 0 3vw;
}
.swiper_works {
    position: unset;
    overflow: hidden;
}
.swiper-button-next:after, .swiper-button-prev:after {content: unset;}
.swiper-button-prev, .swiper-button-next {
    background: unset;
}
.work_preview {
}
.work_preview img {
    width: 100%;
    margin-bottom: 1em;
    object-fit: cover;
}
.wpv_text {
    overflow: hidden;
    max-height: 5.2em;
    position: relative;
    color: #000;
}
.wpv_text p {
    line-height: 1.3em;
    font-weight: 400;
}
.wpv_readmore {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fff;
    font-weight: 400;
    text-decoration: underline;
    line-height: 1.3em;
    color: #245193;
}


/* Подвал */
footer {background-color: #141236;}
.footer_top {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #554b8a;
    padding-top: .75em;
    padding-bottom: .75em;
}
.footer_top img {width: 25%;}
.footer_main {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2em;
}
.footer_menu {width: fit-content;}
.footer_info {width: 50%;}
.footer_icons img {
    width: 2.2em;
    margin-right: .5em;
    margin-bottom: .4em;
}
.footer_bottom {
    background: linear-gradient(to bottom, #3a266d 25%, #4f4384 75%);
    text-align: center;
    font-weight: 400;
    padding-top: .75em;
    padding-bottom: .75em;
}


/*************** ВНУТРЕННИЕ СТРАНИЦЫ ****************/

/* Отзывы*/
.review {
    background-color: #554b8a;
    padding: 1em 1em 1.5em;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}
.rv_img {
    width: 20%;
    border: 1px solid #fff;
    border-radius: 50%;
}
.rv_text {
    width: 77%;
}


/* Контакты */
.contacts_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}
.contacts {
    width: 45%;
    height: 26em;
    padding: 1em;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.left_img, .right_img {
    width: 34%;
    overflow: hidden;
}
.left_img img, .right_img img {
    width: 100%;
    height: 20em;
    object-fit: cover;
}
.left_img {
    border-top: 1px solid #554b8a;
    border-right: 1px solid #554b8a;
    border-bottom: 1px solid #554b8a;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
}
.right_img {
    border-top: 1px solid #554b8a;
    border-left: 1px solid #554b8a;
    border-bottom: 1px solid #554b8a;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
}
#map {
    width: 100%;
    margin-bottom: 2em;
}
.social img {filter: drop-shadow(0px 4px 10px rgba(0,0,0,.3));}


/* Услуги */
#uslugi {
    background: url(../images/bg/bg4.jpg) no-repeat center;
    background-size: cover;
    padding-top: 1em;
    padding-bottom: 2em;
}
.usluga {
    text-align: center;
    color: #554b8a;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.4em;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 1em;
}
.usluga_img {
    position: relative;
}
.uslg_bg {
  width: 100%;
  height: 135px;
  object-fit: cover;
}
.uslg_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
}
.uslg_icon img {
    max-width: 100%;
    max-height: 100%;
}

.offer {
    border-radius: 1em;
    border: 1px solid #554b8a;
    background-color: #f6f6f9;
    padding: 1em;
    margin-bottom: .5em;
    color: #000;
}


/* Калькулятор услуг */
.calculator {
    border-radius: 1em;
    border: 1px solid #554b8a;
    padding: 1em;
    margin-bottom: 2em;
}

.tab-content {color: #000;}
.nav-tabs {
    border-bottom: unset;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: stretch;
}
#myTab2.nav-tabs {
    border-bottom: unset;
    width: 80%;
    margin-left: 20%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}
#lbz_2 #myTab_1 .nav-link,
#lbz_2 #myTab_2 .nav-link,
#lbz_2 #myTab_3 .nav-link,
#lbz_2 #myTab_4 .nav-link {font-size: 1.75em;}
.nav-tabs .nav-item {
    width: 20%;
    padding: .1em;
    margin: 0 !important;
}
#myTab2.nav-tabs .nav-item {width: 25%;}
.nav-tabs .nav-link{
    border: none;
    background-color: unset;
    padding: 0em !important;
    color: #554b8a;
    text-align: center;
    font-size: 1em;
    font-weight: 400;
    border: 1px solid #554b8a;
    border-radius: 1rem;
    background-color: #f4f4f8;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:active {
    border: 1px solid #0a0528;
    color: #ffffff;
    font-weight: 600;
    background-color: #a994ec;
}

.tank_img{
    height: 11vw;
    padding: 1em !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tank_img img {
    max-width: 100%;
    max-height: 100%;
}

.opt label{
  font-weight: 600;
  letter-spacing:1px;
}

#tab1 .tab_box, #tab2 .tab_box, #tab3 .tab_box, #tab4 .tab_box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}
#myTab_1, #myTab_2, #myTab_3, #myTab_4 {
    width: 20%;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
}
#myTab_1 .nav-item, #myTab_2 .nav-item, #myTab_3 .nav-item, #myTab_4 .nav-item {width: 100%;}
#myTab_1 .nav-link, #myTab_2 .nav-link, #myTab_3 .nav-link, #myTab_4 .nav-link {
    font-weight: 600;
    font-size: 2.5em;
    font-family: "Montserrat",  sans-serif;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#myTab_1_cnt, #myTab_2_cnt, #myTab_3_cnt, #myTab_4_cnt {width: 80%;}

.calc_options {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    font-size: 17px;
}
.opt {
    width: 25%;
    padding: .1em;
}
.opt_box {
    border: 1px solid #554b8a;
    border-radius: 1em;
    height: 3rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: .5em 1em;
}
.price {font-weight: 600;}

.calc_result {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5em .5em 1em;
}

.us__item{
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}

.us__item .item__img{
  width: 15%;
  object-fit: cover;
}

.us__item .item__block{
  width: 85%;
  padding-left: 16px;
}

.us__item .item__block .block__title{
  color: #2e284a;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Montserrat",  sans-serif;
  font-size: 14px;
  width: 80%;
}

.us__item .item__block .block__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.us__item .item__block .block__text{
  margin: 10px 0 5px;
  color: #000;
  font-family: "Montserrat",  sans-serif;
  font-size: 12px;
}

.us__item .item__block .block__text p{
  padding-bottom: 5px;
}

.us__item .item__block .block__price{
  color: #000;
  font-family: "Montserrat",  sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.calc_result.us_call {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
    padding: 0em .5em 1.5em;
}


/* Хлебные крошки */
.breadscrumbs {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: baseline;
    background-color: #f6f6f9;
    filter: drop-shadow(0px 2px 6px rgba(0,0,0,.15));
    padding-top: .5em;
    padding-bottom: .5em;
    position: relative;
    z-index: 10;
}
.breadscrumbs a {
    margin-right: .5em;
    line-height: normal;
    font-weight: 400;
    color: #245193;
    text-decoration: underline;
}
.breadscrumbs span:before {
    content: ">";
    font-weight: 400;
    margin-right: .5em;
    color: #000;
}
.breadscrumbs span:first-child:before {content: unset;}

/* Разворачивающиеся блоки */
.hidden_objects {display: none;}


/* Всплывающая форма обратной связи */
.modal-dialog {
    width: 75%;
    max-width: unset;
}
.modal-content {
    background-repeat: no-repeat;
    background-position: right center, left center;
    background-size: 100% 100%, auto 100%;
    border-radius: 1em;
    border: 1px solid #554b8a;
    box-shadow: 0 0px 15px #8579c3;
}
#modal_enter .modal-content {
    background-image: -webkit-linear-gradient(left, transparent 18%, #fff 40%), url(../images/bg/bg1.jpg);
    background-image: -o-linear-gradient(left, transparent 18%, #fff 40%), url(../images/bg/bg1.jpg);
    background-image: linear-gradient(to right, transparent 18%, #fff 40%), url(../images/bg/bg1.jpg);
}
#modal_registration .modal-content {
    background-image: -webkit-linear-gradient(left, transparent 18%, #fff 40%), url(../images/bg/bg2.jpg);
    background-image: -o-linear-gradient(left, transparent 18%, #fff 40%), url(../images/bg/bg2.jpg);
    background-image: linear-gradient(to right, transparent 18%, #fff 40%), url(../images/bg/bg2.jpg);
}
#modal_order .modal-content {
    background-image: -webkit-linear-gradient(left, transparent 18%, #fff 40%), url(../images/bg/bg3.jpg);
    background-image: -o-linear-gradient(left, transparent 18%, #fff 40%), url(../images/bg/bg3.jpg);
    background-image: linear-gradient(to right, transparent 18%, #fff 40%), url(../images/bg/bg3.jpg);
}
.modal-body {padding: 3em 3em 0.5em;}
.close {
    float: right;
    font-size: .9em;
    font-weight: 400;
    font-style: italic;
    border-bottom: 1px solid !important;
    line-height: 1em;
    color: #000;
    font-family: "Montserrat",  sans-serif;
    text-shadow: unset;
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}
.close:hover {
    color: #f00;
    opacity: 1;
}
.enter_modal {margin-bottom: 3em;}
.reg_modal {margin-bottom: 0em;}
.order_modal {margin-bottom: 0em;}


@-webkit-keyframes pulsate {
 50% { color: #fff; text-shadow: 0 -1px rgba(0,0,0,.3), 0 0 5px #ffd, 0 0 8px #fff; }
}
@keyframes pulsate {
 50% { color: #fff; text-shadow: 0 -1px rgba(0,0,0,.3), 0 0 5px #ffd, 0 0 8px #fff; }
}
.text-animate {
  color: rgb(245,245,245);
  text-shadow: 0 -1px rgba(0,0,0,.1);
  -webkit-animation: pulsate 1.2s linear infinite;
  animation: pulsate 1.2s linear infinite;
}

/* Шрифты */
@font-face {
    font-family: 'coco';
    src: url('../fonts/CocoBiker Regular-trial.ttf');
}
