/**
*
  Сброс CSS стилей
*
**/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html {
  -webkit-text-size-adjust: none;
}
html._hidden {
  overflow: hidden;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
 /* list-style: none; */
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
input,
textarea,
button,
select {
  resize: none;
  border: none;
  background-color: transparent;
  outline: none;
  padding: 0;
}
img {
  border: 0;
  vertical-align: top;
}
html,
body {
  min-height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body {
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/**
*
  Flex
*
**/
.flex_w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex_w._ai_fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex_w._ai_fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex_w._ai_c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex_w._jc_sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex_w._jc_sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex_w._jc_c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/**
*
  Функции
*
**/
/**
*
  Переменные
*
**/
/**
*
  Bootstrap
*
**/
.container {
  margin-right: auto;
  margin-left: auto;
}
.container:after {
  content: '';
  display: block;
  clear: both;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
[class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1240px;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2-5 {
    width: 20%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
}
.alpha {
  padding-left: 0;
}
.omega {
  padding-right: 0;
}
/**
*
  Подключение шрифтов
*
**/
@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url('../fonts/Gilroy-ExtraBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url('../fonts/Gilroy-SemiBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url('../fonts/Gilroy-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Light";
  src: url('../fonts/Gilroy-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
*
  Общие классы
*
**/
.show {
  display: block !important;
}
.hide,
.xs-show,
.sm-show,
.md-show {
  display: none !important;
}
.flf {
  float: left !important;
}
.flr {
  float: right !important;
}
.clear {
  display: block;
  clear: both;
}
.t_center {
  text-align: center;
}
.t_right {
  text-align: right;
}
.pos_rel {
  position: relative;
}
.ypos_ab {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
}
.xpos_ab {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
}
.pos_absc {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.c_img {
      max-width: none !important;
    height: 100% !important;
    width: 100% !important;
	object-fit:cover;
	object-position: center;
    border-radius: 15px;
}
.c_img.pro{
   /* width: auto !important;
    max-height: none !important;*/
    margin:auto;
}
.b_img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/**
*
  Кнопки
*
**/
/**
*
  Новые элементы
*
**/
.af a {
    color: #202234;
    font: 16px/1.3 'Gilroy-Regular', Arial, sans-serif;
	margin-bottom:5px;
	display:block;
	cursor:pointer;
}
.socials{
	margin-top:20px;
}
.socials a img{margin-right:5px}
.socials a{
	display:inline-flex;
	align-items:center;color:inherit;
	    font: 12px 'Gilroy-Regular', Arial, sans-serif;
	margin-right:15px;
}
a.wh-m {
    background: #25d366;
    text-align: center;
    padding: 5px;
    border-radius: 50%;height: 35px;
    width: 35px;
}
a.wh-m svg path{
   fill:#fff;
}
#sales {
  margin-top: 7px;
  padding: 70px 0 40px;
  background: #f4f4f7;
  border-bottom: 3px solid #ece9f3;
}
#sales .s_title {
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
  font: 36px 'Gilroy-ExtraBold', Arial, sans-serif;
}
#related{
	padding:40px 0;
}
#related .s_title{
	position: relative;
  z-index: 3;
  margin-bottom: 40px;
  font: 36px 'Gilroy-ExtraBold', Arial, sans-serif;
}
#related .s_caption{
	position: relative;
  z-index: 3;
  margin-bottom: 20px;
  font: 18px 'Gilroy-Regular', Arial, sans-serif;
}
#related .owl-dots {
    text-align: center;
    margin-top: 15px;
}
#related .owl-dots button.active{
background-color:#f4f4f7;	
}
#related .owl-dots button {
    width:15px;
	height:15px;
	display:inline-block;
	margin-right:10px;
	border-radius:50%;
	border:none;
	background-color:#f4f4f7;	
}
#related .owl-dots button.active{
background-color:#283383;
}
#related .owl-stage-outer {
    width: 100%;
}
#related  a.item {
    height: 190px;
    display: block;
    overflow: hidden;
}
#related a.item img{
	height:100%;
	width:100%;
	object-fit:cover;
	object-position:center;
}
#sales .item {
  width: 100%;
  background: #fff;
  border-radius: 0 30px 0 30px;
  overflow: hidden;
  margin-bottom: 30px;
}
#sales .item__img {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 310px;
  position: relative;
  color: #fff;
  padding: 0 40px 40px;
  font: 18px/1.3 'Gilroy-SemiBold', Arial, sans-serif;
}
#sales .item__img svg {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}
#sales .item__img path {
  fill: #fff;
}
#sales .item__img:before {
  content: '';
  background: rgba(32, 35, 38, .7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
#sales .item__img:after {
  content: '';
  border-radius: 0 30px 0 0;
  background: rgba(248, 179, 41, .1);
  position: absolute;
  width: 96px;
  height: 90%;
  left: 0;
  bottom: 0;
  z-index: -2;
}
#sales .item__img .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}
#sales .item__des {
  padding: 25px 30px;
  font: 14px 'Gilroy-SemiBold', Arial, sans-serif;
  color: #171d1f;    text-align: center;
}
#sales .item__des .button {
  color: #fff;
  padding: 16px 40px;
  font: 15px 'Gilroy-SemiBold', Arial, sans-serif;
  display: inline-block;
  margin-top: 25px;
  border-radius: 100px;
  background-image: linear-gradient( 0deg, rgb(255,185,45) 0%, rgb(250,206,121) 100%);
}


#about {
  padding: 60px 0;
  border-bottom: 12px solid #f4f4f7;
}
#about p {
  padding-right: 50px;
  color: #5f6b86;
  font: 18px/1.5 'Gilroy-Regular', Arial, sans-serif;
}
#about .s_title {
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
  font: 36px 'Gilroy-ExtraBold', Arial, sans-serif;
}
#about .img {
  position: absolute;
  height: calc(100% - 40px);
}
#about .img--1 {
      top: -26px;
    left: 54%;
    width: 40%;
    height: auto;
}
#about .img--2 {
    top: 203px;
    left: calc(70%);
    width: 40%;
    height: auto;
}
#about .img--3 {
  left: 50%;
  bottom: -100px;
  width: 560px;
}
.form-block input.phone{
	    width: 270px;
    padding: 23px 23px 23px;
    font: 16px 'Gilroy-Light',Arial,sans-serif;
    border-radius: 50px;
    background: #fff;
    margin-right: 15px;
}
.form-block .agree {
    cursor: pointer;
    margin: 15px 0 0;
    padding-left: 24px;
    color: #fff;
    position: relative;
    font: 12px/20px 'Gilroy-Regular',Arial,sans-serif;
}
.form-block .agree:after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 2px;
    left: 0;
    background-image: url(/wp-content/themes/main/static/styles/../imgs/icons/agree_check_1.svg);
}
.form-block .agree:before {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #e9eff3;
    position: absolute;
    top: 3px;
    left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}
footer {
  padding: 60px 0 45px;
}
footer .s_title {
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
  font: 36px 'Gilroy-ExtraBold', Arial, sans-serif;
}
footer .c_item {
  margin-bottom: 30px;
  padding-left: 45px;
  display: block;
  position: relative;
  color: #1b1c2860;
  font: 12px 'Gilroy-Regular', Arial, sans-serif;
}
footer .c_item svg {
  width: 30px;
  height: 30px;
  left: 0;
}
footer .c_item path {
  fill: #e1a93c;
}
footer .c_item span {
  display: block;
  margin-bottom: 5px;
  color: #1b1c28;
  font-size: 20px;
}
footer .c_item .bold {
  font: 20px 'Gilroy-ExtraBold', Arial, sans-serif;
}
footer .conf {
  color: #1b1c2860;
  font: 12px 'Gilroy-Regular', Arial, sans-serif;
}
footer .map {
  position: absolute;
  bottom: -45px;
  left: 51%;
  right: 0;
  top: 40px;
}
footer .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}




/**
*
  Основная часть
*
**/
main {
  height: 100%;
  background-image:url('../imgs/bg/1.jpg');
 background-position:  50% 50%;
 background-repeat: no-repeat;
  -ms-background-size: cover;
  background-size: cover;
}
main .header .top {
  padding: 7px 0;
  background-color: #f0f0f4;
  color: #202234;
  font: 13px 'Gilroy-Regular', Arial, sans-serif;
}

main .header .top b {
  font-family: 'Gilroy-Regular', Arial, sans-serif;
}
main .header .top .item {
  position: relative;
  padding-left: 30px;
}
main .header .top .item a {
  color: inherit;
}
main .header .top .item b {
  padding: 0 0 0 6px;
}
main .header .top .item svg {
  width: 18px;
  height: 18px;
  left: 0;
}
main .header .top .item path {
  fill: #262c39;
}
.sticky{
	padding-top:44px;
}
.sticky main .header .top{
	position:fixed;
	top:0;    left: 0;
    right: 0;z-index: 999;
	    background-color: #283383;
	color:#fff !important;
	box-shadow:0 0 15px rgba(0,0,0,.3);
}
.sticky main .header .top a{
	color:#fff !important;
}
.sticky main .header .top a span{
	color:#fff !important;
}
.sticky main .header .top svg path{
	fill: rgb(255,255,255);
}
.sticky main .header .top .item b {
    padding: 0;
    display: block;
}
main .header .top  .logo{
	display:none;
}
.wrap.links a {
    color: #fff;
	text-decoration:underline;
    font: 18px 'Gilroy-ExtraBold', Arial, sans-serif;
    margin-right: 15px;
}

.wrap.links {
    text-align: center;
}
.sticky  main .header .top .logo{
	display:block;
	max-width:150px;
	width:100%
}
.sticky  main .header .top .logo img{
	
	max-width:100%;
}
.sticky main .header .top .item b {
    padding: 0;
    display: block;
}
main .header .bottom .wrap {
  width: 20%;
}
main .header .bottom .wrap._big {
  width: 40%;
}
main .header .bottom .logo img {
  max-width: 100%;
  max-height: 75px;
}
main .header .bottom .logo p {
  color: rgba(0, 0, 0, 0.6);
  font: 14px 'Gilroy-SemiBold', Arial, sans-serif;
}
main .header .bottom .contacts {
 
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
main .header .bottom .contacts .item {
  padding: 25px 15px;
  width: 40%;
  color: #fff;
  position: relative;
  font: 17px 'Gilroy-Regular', Arial, sans-serif;
}
main .header .bottom .contacts .item img {
  left: 25px;
  display: none;
}
main .header .bottom .contacts .item span {
  margin: 0 0 3px;
  font: 14px 'Gilroy-Regular', Arial, sans-serif;
  display: block;
  color: #fff;
}

main .header .bottom .button {
      color: #fff;
    font: 14px 'Gilroy-Regular', Arial, sans-serif;
    padding: 15px 10px;
    background: #283383;
    border-radius: 100px;
    min-width: 170px;
    display: block;
    text-align: center;
    margin-bottom: 7px;
}


main .content {
  padding: 70px 0;
  color: #fff;
}
main .content h1 {
  font: 48px/1.2 'Gilroy-ExtraBold', Arial, sans-serif;
  margin: 0 0 35px;
}
main .content p {
  font: 22px/1.3 'Gilroy-Light', Arial, sans-serif;
  margin: 0 0 20px;
}
main .content .sub_offer {
  margin: 0 18px 20px;
  font: 30px 'Gilroy', Verdana, sans-serif;
}
main .content .sub_offer span {
  color: #27222e;
  display: inline-block;
  padding: 9px 22px 18px;
  margin-left: 5px;
  background: url('../imgs/offer_bg.png') 50% 50% no-repeat;
  background-size: contain;
}
main .content .button {
  display: inline-block;
  padding: 20px 50px;
  color: #fff;
  font: 19px 'Gilroy-SemiBold', Arial, sans-serif;
  background-color: #283383;
  border-radius: 100px;
  position: relative;
}
main .content .button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 rgba(0, 128, 0, .5);
          box-shadow: 0 0 0 rgba(0, 128, 0, .5);
  border-radius: 100px;
   animation: pulse 1.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 #fff;
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px #fff;
  }
  100% {
    /*transform: scale(1.2);*/
    -webkit-box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px #fff;
            box-shadow: 0 0 0 15px #fff;
  }
  100% {
    /*transform: scale(1.2);*/
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
}
main .content .icon {
  right: 53px;
  width: 300px;
  margin-top: -58px;
}
main .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
main .footer .item {
  padding: 43px 0 43px 123px;
  width: 25%;
  position: relative;
  color: #fff;
  font: 18px/1.3 'Gilroy-Light', Arial, sans-serif;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
main .footer .item img {
  position: absolute;
  top: 48px;
  left: 30px;
  width: 60px;
}
main .footer .item b {
  font-family: 'Gilroy-SemiBold', Arial, sans-serif;
}
main .footer .item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
main .cnt {
  z-index: 5;
}
main:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 37, 51, 0.8);
}


/**
*
  Слайдер видео
*
**/
#vid_slider {
  padding: 10px 0 60px
}
#vid_slider .item {
  background-color: #eee;
  height: 390px;
}
#vid_slider .item .open_popup {
  position: relative;
  height: 100%;
}
#vid_slider .item .open_popup .pos_absc {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#vid_slider .item .open_popup .pos_absc svg {
  width: 44px;
  height: 44px;
}
#vid_slider .item .open_popup .pos_absc path {
  fill: #ffb92e;
}
#vid_slider .owl-nav {
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
}
#vid_slider .owl-nav button {
  width: 60px;
  height: 60px;
  position: absolute;
}
#vid_slider .owl-nav .owl-next {
  right: 0;
}
#vid_slider .owl-nav button path {
  fill: #d9d7de;
}
#vid_slider .owl-dots {
  margin: 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#vid_slider .owl-dots button {
  margin: 0 8px;
  height: 5px;
  width: 198px;
  background-color: #e5e3ec;
  border-radius: 10px;
}
#vid_slider .owl-dots button.active {
  background-color: #ffb92e;
}
#vid_slider .item iframe {
  width: 100%;
  height: 100%;
}


/**
*
  Слайдер
*
**/
.slider {
  padding: 10px 0;
}
.slider .item {
  display: block;
  font-size: 16px;
  color: #333;
  background: #eee;
  font-family: "Gilroy-Regular";
}
.owl-carousel.slider-click .owl-stage{
	display:flex;
	align-items:stretch;
}
.owl-carousel.slider-click .item .content{
  display:flex;
  align-items:center;
  justify-content: space-between;
      height: 75px;
}
.owl-carousel.slider-click .item .content .price{
 width:60%;
}
.owl-carousel.slider-click .item .content .price-val{
  width:52%;
  text-align: right;
}
.slider-click .item {
	height:100%;
}
.slider .item .img {
  height: 210px;
  display: block;
  overflow:hidden;
}

.slider .item .content {
  display: block;
  padding: 15px;
}
.slider .item .price {
  font-family: "Gilroy-Regular";
}
span.price-val {
    font-weight: bold;
    color: #1e73be;
    display: block;
    float:right;
	font-size: 14px;
	text-decoration: underline;
}
.slider .item .title {
  display: block;
  font-size: 18px;
  font-family: "Gilroy-SemiBold";
}
.slider .item iframe {
  width: 100%;
  height: 100%;
}
.socs{
	display:flex;
	align-items:center;
	margin:15px 0;
}
.socs a {
    width: 68px;
    height: 40px;
    background-color: #f0f0f4;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	margin-right:5px;
}

/**
*
  Модалки
*
**/
/**
*
  Pop Up
*
**/
.popup_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 39, 51, 0.7);
  z-index: 1000;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.popup_block .wrapper {
  z-index: 51;
  width: 94%;
  max-width: 440px;
  background: #fff;
  padding: 50px 30px 30px;
  position: relative;
}
.popup_block .wrapper .title {
  font: 42px/1.2 'Gilroy-Light', Arial, sans-serif;
  margin-bottom: 30px;
}
.popup_block .wrapper .field {
  width: 100%;
}
.popup_block .wrapper .field .input {
  border: 2px solid #eaeff4;
  font: 14px 'Gilroy-Light', Arial, sans-serif;
}
.popup_block .wrapper._small {
  max-width: 380px;
}
.popup_block .wrapper._small .btn {
  width: 100%;
}
.popup_block .wrapper._wide {
  max-width: 1170px;
}
.popup_block .wrapper:after {
  content: '';
  display: block;
  clear: both;
}
.popup_block .close_popup_icon,.popup_block .close_popup_icon_cus{
     position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    z-index: 500;
    cursor: pointer;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
}
.popup_block .close_popup_icon path, .popup_block .close_popup_icon_cus path {
  fill: #000;
}
.popup_block._visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#project_mdl .wrapper {
  padding: 0 !important;
  max-width: 836px;
  background-color: #fff;
}
#project_mdl #clbk_slider {
  height: 100%;
  max-height: 413px;
}
#project_mdl #clbk_slider img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
#project_mdl #clbk_slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
#project_mdl #clbk_slider .owl-stage-outer,
#project_mdl #clbk_slider .owl-stage,
#project_mdl #clbk_slider .owl-item,
#project_mdl #clbk_slider .item {
  height: 100%;
}
#project_mdl #clbk_slider .owl-stage {
  display: flex;
}
#project_mdl .info {
  padding: 30px 60px 30px 15px;
}
#project_mdl .info .title {
  font-size: 30px;
  margin-bottom: 15px;
}
#project_mdl .info .price-1 {
  font: 20px/1.4 'Gilroy-ExtraBold', Arial, sans-serif;
}
#project_mdl .info .order_callback {
  width: 100%;
}
#project_mdl .info .sub_title {
  color: #212839;
  font: 23px/30px 'Gilroy-ExtraBold', Arial, sans-serif;
}
#project_mdl .info .devider {
  height: 2px;
  width: 100%;
  background-color: #e7e9f2;
  margin: 18px 0 7px;
}
#project_mdl .info .price {
  margin: 20px 0;
  color: #2d2f3f;
  font: 16px/22px 'Gilroy-Regular', Arial, sans-serif;
}
#project_mdl .info .price a {
  color: inherit;
}
#project_mdl .info .price .f_heavy {
  margin-top: 5px;
  font-size: 26px;
}
#project_mdl .info input {
  background-color: #e9eff3;
  margin: 0 0 15px;
  width: 100%;
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  padding: 15px 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}
#project_mdl .info input::-webkit-input-placeholder {
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  color: #1b2a34;
}
#project_mdl .info input::-moz-placeholder {
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  color: #1b2a34;
}
#project_mdl .info input:-moz-placeholder {
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  color: #1b2a34;
}
#project_mdl .info input:-ms-input-placeholder {
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  color: #1b2a34;
}
#project_mdl .info .button {
  color: #fff;
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  padding: 15px 60px;
  background: #283383;
  border-radius: 100px;
  cursor: pointer;
}
#project_mdl .info .agree {
  cursor: pointer;
  margin: 15px 0 0;
  padding-left: 24px;
  color: #495866;
  position: relative;
  font: 12px/20px 'Gilroy-Regular', Arial, sans-serif;
}
#project_mdl .info .agree:before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #e9eff3;
  position: absolute;
  top: 3px;
  left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
#project_mdl .info .agree:after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 2px;
  left: 0;
  background-image: url('../imgs/icons/agree_check_1.svg');
}

#project_mdl .owl-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 67px;
}
#project_mdl .owl-nav button {
  position: relative;
  width: 52px;
  height: 67px;
  margin-left: 10px;
  background-color: #f03131;
}
#project_mdl .owl-nav button svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
#project_mdl .owl-nav button svg path {
  fill: #fff;
}
#project_mdl .owl-nav button.disabled {
  background-color: #fff;
}
#project_mdl .owl-nav button.disabled svg path {
  fill: #1b2a34;
}
#modal-privacy .wrapper{
  font: 16px/1.5 'Gilroy-Regular', Arial, sans-serif;
}
#clbk .wrapper .field {
  margin-right: 0;
  max-width: 100%;
  margin-bottom: 20px;
}
#clbk .wrapper .input {
  width: 100%;
  padding: 13px 23px 12px;
  font: 16px 'Gilroy-Light', Arial, sans-serif;
  border-radius: 50px;
}
#clbk .wrapper .btn {
  width: 100%;
  color: #fff;
  cursor: pointer;
  padding: 15px 0;
  font: 16px 'Gilroy-Regular', Arial, sans-serif;
  background-color: #c24046;
  border-radius: 100px;
}
#clbk .wrapper p {
  font-size: 16px;
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}
#clbk .wrapper .agree {
  margin-top: 20px;
  color: #7e7e7e;
  font: 12px/20px 'Gilroy-Light', Arial, sans-serif;
  letter-spacing: .1px;
}
#clbk .wrapper .agree a {
  color: inherit;
  text-decoration: underline;
}
#clbk_sucs p {
  color: #80808d;
  font: 18px/1.4 'Gilroy-Light', Arial, sans-serif;
  margin-bottom: 45px;
}
#clbk_sucs .social p {
  color: #32323f;
  font-family: 'Gilroy-ExtraBold', Arial, sans-serif;
  margin-bottom: 25px;
}
#clbk_sucs .social .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#clbk_sucs .social a {
  background-color: #c24046;
  width: 31%;
  height: 40px;
  position: relative;
  display: inline-block;
  border-radius: 50px;
}
#clbk_sucs .social a svg {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
#clbk_sucs .social a path {
  fill: #fff;
}

#video_mdl .close_popup_icon,.popup_block .close_popup_icon_cus {
  top: -35px;
  right: 0;
}
#video_mdl .wrapper {
  border: none;
  padding: 10px;
  max-width: 800px;
}
#video_mdl .close_mdl {
  top: -35px;
  right: 0;
}
#video_mdl .video {
  height: 400px;
}
#video_mdl .video iframe {
  width: 100%;
  height: 100%;
}


#work_step {
  padding: 120px 0 0;
}
#work_step .wrapper {
  margin: 100px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#work_step .wrapper .item {
  width: 48%;
}
#work_step .wrapper:first-child {
  margin: 0;
}
#work_step .img_wrapper {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 353px;
}
#work_step .img_wrapper .play_btn {
  width: 158px;
}
#work_step .img_wrapper .play_btn img {
  width: 100%;
}
#work_step .s_title {
  margin: -30px 0 0;
  color: #b2964a;
  font: 52px 'Gilroy-ExtraBold', Arial, sans-serif;
}
#work_step .s_title:after {
  content: '';
  margin: 26px 0 36px;
  height: 3px;
  width: 180px;
  display: block;
  background-color: #df2934;
}
#work_step p {
  font: 16px/1.5 'Gilroy-Regular', Arial, sans-serif;
  color: #000;
}
#work_step .date {
  margin: 15px 0 0;
  color: #1c222d;
  font: 19px 'Gilroy-Regular', Arial, sans-serif;
}
#work_step .date span {
  color: #e03b3b;
  font: 74px 'Gilroy-ExtraBold', Arial, sans-serif;
}

#serv {
  background-color: #f4f4f7;
  padding: 60px 0 0;
  /*Изменения тут, убрал margin */
}
#serv .s_title {
  position: relative;
  z-index: 3;
  margin: 0 0 80px;
  font: 28px 'Gilroy-ExtraBold', Arial, sans-serif;
}
#serv .item {
  margin: 0 0 70px;
  width: 24%;
  padding: 140px 20px 20px;
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 5px 5px 5px 45px;
}
#serv .item._empty {
  height: 0;
  margin: 0;
  padding: 0;
}
#serv .item .circle {
  position: absolute;
  top: -66px;
  left: 5px;
  z-index: 0;
  width: 220px;
  height: 220px;
  background: url('../imgs/serv/circle.png') 50% 50% no-repeat;
  -ms-background-size: cover;
  background-size: cover;
}
#serv .item .img {
  z-index: 2;
  position: absolute;
  top: -30px;
  right: 0;
  height: 145px;
  overflow: hidden;
  width: calc(100% - 20px);
  border-radius: 100px 0 0 100px;
}
#serv .item .title {
  color: #202234;
  font: 16px/1.3 'Gilroy-ExtraBold', Arial, sans-serif;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}
#serv .item .text {
  margin: 0 0 20px;
  color: #727482;
  font: 16px/1.3 'Gilroy-Regular', Arial, sans-serif;
}
#serv .item .btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 12px 10px;
  color: #202234;
  -webkit-box-shadow: inset 0 0 0 2px #ffcd11;
  box-shadow: inset 0 0 0 2px #ffcd11;
  cursor: pointer;
  letter-spacing: .4px;
  text-transform: uppercase;
  font: 12px 'Gilroy-SemiBold', Arial, sans-serif;
  border-radius: 100px;
}
#serv .item .btn:hover {
  background-color: #ffcd11;
}
#serv .item._empty {
  display: block !important;
  height: 0;
  margin: 0;
  padding: 0;
}
#serv .item:hover {
  -webkit-box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}
#serv .item:hover .btn {
  background-color: #ffcd11;
}
#serv .load_more {
  padding: 20px 45px 18px;
  width: 100%;
  margin: -30px 0 0;
  text-align: center;
}


/**
*
  Адаптивка
*
**/
@media only screen and (max-width: 1199px) {
  .md-show {
    display: block !important;
  }
  .md-hide {
    display: none !important;
  }

  main .header .top {
    padding: 10px 0;
  }
  main .header .top .item {
    width: 25%;
  }
  main .header .top .item b {
    padding: 0;
    display: block;
    margin: 3px 0 0;
  }

  main .header .bottom .logo img {
    max-width: 190px;
    max-height: 50px;
  }
  main .header .bottom .contacts .item {
    font-size: 16px;
    padding: 15px 15px 15px 10px;
  }
  main .header .bottom .contacts .item span {
    font-size: 12px;
    margin: 0 0 5px;
  }
  main .header .bottom .contacts .item img {
    left: 15px;
  }
  main .header .bottom .button {
    padding: 14px 10px;
  }
	main .header .bottom .button {
    color: #fff;
    font: 12px 'Gilroy-Regular', Arial, sans-serif;
    padding: 15px 10px;
    background: #283383;
    border-radius: 100px;
    min-width: 188px;
    display: block;
    text-align: center;
    margin-bottom: 7px;
}
  main .content {
    padding: 40px 0 60px;
  }
  main .content h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 40px;
  }
  main .content p {
    font-size: 20px;
  }
  main .content .sub_offer span {
    margin: 0;
  }
  main .content .icon {
    width: 240px;
    margin-top: -120px;
  }
  main .footer .item {
    font-size: 16px;
    line-height: 1.3;
    padding: 20px 10px 20px 70px;
  }
  main .footer .item img {
    width: 40px;
    top: 25px;
    left: 15px;
  }
  
  #vid_slider .owl-nav {
    display: none;
  }
  #vid_slider .item {
    height: 320px;
  }


  #work_step {
    padding: 90px 0 0;
  }
  #work_step .s_title:after {
    margin: 10px 0 30px;
  }
  #work_step .wrapper {
    margin: 70px 0 0;
  }
  #work_step .img_wrapper {
    height: 310px;
  }
  #work_step p {
    font-size: 14px;
  }
  #work_step .date span {
    font-size: 60px;
  }

  #serv .item {
    padding: 90px 15px 15px;
    border-radius: 5px 5px 5px 25px;
  }
  #serv .item .img {
    height: 110px;
  }
  #serv .item .title {
    font-size: 20px;
  }
  #serv .item .text {
    font-size: 14px;
  }


  /* Изменения тут */
  #sales .item__img {
    height: 250px;
    font-size: 24px;
    padding: 0 30px 30px;
  }
  #sales .item__des {
    padding: 20px;
    font-size: 18px;
  }
  #sales .item__des .button {
    padding: 13px 30px;
  }

 
  /* до сюда */
}
@media only screen and (max-width: 991px) {
  .sm-show {
    display: block !important;
  }
  .sm-hide {
    display: none !important;
  }
  main .header .top .item {
    width: 33%;
  }

  main .header .bottom {
    padding: 10px 0;
  }
  main .header .bottom .logo {
    width: 30%;
  }
  main .header .bottom .logo img {
    max-width: 190px;
    max-height: 50px;
  }
  main .header .bottom .contacts {
    border: none;
  }
  main .header .bottom .contacts .item {
    width: 100%;
    padding: 0 15px 0 60px;
  }
  main .header .bottom .wrap._big {
    width: 40%;
  }
  main .header .bottom .button {
    padding: 12px 26px;
  }
  main .content h1 {
    margin: 0 0 30px;
  }
  main .content p {
    margin: 0 0 10px;
  }
  main .content .sub_offer {
    font-size: 24px;
    margin: 0 0 20px;
  }
  main .content .button span {
    padding: 12px 50px;
  }
  main .content .button span {
    padding: 12px 40px;
  }
  main .footer .item {
    padding: 10px 10px 10px 80px;
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  main .footer .item img {
    top: 15px;
  }
  main .footer .item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }


  #vid_slider .item {
    height: 260px;
  }

  #work_step .s_title {
    font: 40px/1 'Gilroy-ExtraBold', Arial, sans-serif;
  }
  #work_step .img_wrapper {
    height: 260px;
  }
  #work_step .img_wrapper .play_btn {
    width: 100px;
  }
  #work_step .date span {
    font-size: 50px;
  }

  #serv .item {
    width: 32%;
  }
  #serv .item .title {
    margin: 0 0 15px;
  }


  /* Изменения тут */
  #sales {
    padding: 40px 0 20px;
  }
  #sales .item__img {
    height: 220px;
    font-size: 22px;
    padding: 0 20px 20px;
  }
  #sales .item__img svg {
    width: 26px;
    height: 26px;
    margin-bottom: 15px;
  }
  #sales .item__des {
    font-size: 16px;
  }
  #sales .item__des .button {
    margin-top: 15px;
  }

  #about {
    padding: 40px 0 50px;
  }
  #about .s_title {
    margin-bottom: 20px;
  }
  #about p {
    margin-bottom: 30px;
    font-size: 16px;
    padding: 0;
  }
  #about .img {
    width: 49% !important;
    margin-left: 1%;
    height: 200px;
    position: relative;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    float: left;
    margin-top: 9px;
  }

  footer {
    padding-top: 40px;
    padding-bottom: 0;
  }
  footer .s_title {
    margin-bottom: 30px;
  }
  footer .c_item {
    margin-bottom: 15px;
  }
  footer .map {
    position: relative;
    width: 100%;
    height: 280px;
    left: auto;
    top: auto;
    bottom: 0;
    right: auto;
    margin-top: 30px;
  }
  /* до сюда */
}
@media only screen and (max-width: 767px) {
	main .header .bottom .logo a{
		display:block;
		height:100%;
		width:100%;    padding-right: 20px;
	}
	.af li {
    width: 50%;
    display: block;
    float: left;
}
	main .header .bottom .wrap.links{
		order:3;
	}
	.c_img {
    max-width: none !important;
    max-height: 100% !important;
    width: 75% !important;
}
	body{
		padding-top:56px;
	}
	main .header .top {
    padding: 10px 0;
    position: fixed;
    width: 100%;
		z-index:600;
		box-shadow:0 0 15px rgba(0,0,0,.4);
    top: 0;
		font: 12px 'Gilroy-Regular', Arial, sans-serif;
}
	
	.popup_block .wrapper {
		width: 65%;
	}
	div#project_mdl .wrapper {
    width: 90%;
}
	#clbk .wrapper .input {
    padding: 8px 15px 8px;
    font: 14px 'Gilroy-Light',Arial,sans-serif;
}
	#clbk .wrapper .btn {
  padding: 10px 0;
    font: 14px 'Gilroy-Regular',Arial,sans-serif;
}
	#clbk .wrapper .field {
    margin-bottom: 10px;
}
	#clbk .wrapper .agree {
    margin-top: 10px;
    color: #7e7e7e;
    font: 10px/12px 'Gilroy-Light',Arial,sans-serif;
    letter-spacing: .1px;
}
	#sales .item__img {
    height: 110px !important;
    font-size: 14px !important;
}
	#sales .item__img svg {
    width: 15px;
    height: 21px;
    margin-bottom: 5px;
}
	.s_title {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    font: 26px 'Gilroy-ExtraBold',Arial,sans-serif !important;
}
	#sales .item__des {
    font-size: 14px;
    padding: 10px;
}
	#sales .item__des .button {
    padding: 10px 13px !important;
    font-size: 12px !important;
}
	#serv .item .btn {
    padding: 9px 10px;
    font: 10px 'Gilroy-SemiBold',Arial,sans-serif;
}
	#serv .item .title {
    font-size: 14px;    margin: 0 0 5px;
}
	#serv .item .text {
		margin: 0 0 10px;font-size: 12px;}
	.form-block input.phone{
	width: 40%;
    padding: 11px;
    font: 14px 'Gilroy-Light',Arial,sans-serif;
    border-radius: 50px;
    background: #fff;
    margin-right: 5px;
}
.form-block button {
    padding: 10px 10px !important;
	font-size:13px !important;
	
}
.form-block button:before {
   animation:none !important;
}
.form-block .agree {
    width: 70%;
}

	 .owl-carousel.slider-click .item .content {
    border-radius:5px;
}
 .owl-carousel.slider-click .item .content {
    height: auto;
    flex-wrap: wrap;
}
	.owl-carousel.slider-click .item .content .price {
   width: 100%;
    float: left;
    height: 63px;
    overflow: hidden;
		
}
	.owl-carousel.slider-click .item .content .price-val {
    width: 100%;
		float:left;
}
	.owl-nav{
		text-align: right;
    padding-right: 15px;
		margin-top:10px;
	}
	.owl-nav button{
		width:30px;
		height:30px;
		line-height:30px !important;
		margin-left:10px;
		font-size:18px !important;
		background-color:#9a1c1d !important;
		color:#fff !important;
	}
	.owl-nav button span{
		display:inline-block;
		height:auto;
	}
	.xs-show {
    display: block !important;
  }
  .xs-hide {
    display: none !important;
  }
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .xs-center {
    text-align: center;
  }

  main .header .top .item {
    width: 45%;
  }
	main .header .top .item.burger{
		      width: 10%;
    padding: 0 5px;
    text-align: right;
	}
.mob-menu a {
    font: 16px/1.2 'Gilroy-ExtraBold', Arial, sans-serif;
    display: block;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase;
    color: inherit;
}

.mob-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
	transition:all .4s ease 0s;
}
.mob-menu span.close {
    position: absolute;
    right: 10px;
    top: 10px;
}
  main .header .bottom .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    height: 70px;
  }
  main .header .bottom .logo img {
    max-width: 100%;
    max-height: 100%;
  }
  main .header .bottom .wrap {
    width: 50%;
  }
  main .header .bottom .wrap._big {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    text-align: right;
  }
  main .header .bottom .contacts .item {
    border: none !important;
    text-align: right;
    display: block;
    padding: 0;
    margin: 25px 0 0;
  }
  main .header .bottom .contacts .item span {
    font-size: 11px;
  }
  main .header .bottom .button {
    display: inline-block;
    padding: 10px 10px;
    font-size: 12px;
  }

  main .content {
    padding: 30px 0 40px;
  }
  main .content h1 {
    font-size: 35px;
  }
  main .content p {
    font-size: 16px;
  }
  main .content p br {
    display: none;
  }
  main .content .sub_offer {
    font-size: 22px;
  }
  main .content .button {
    padding: 15px 26px;
  }
  main .footer .item {
    font-size: 14px;
    padding: 10px 10px 10px 60px;
  }
  main .footer .item img {
    width: 36px;
    left: 10px;
  }
  .popup_block .wrapper {
    padding: 18px 15px 15px;
  }
	
  .popup_block .wrapper .title {
    font-size: 21px;
  }
  #clbk_sucs p {
    font-size: 16px;
    margin: 0 0 20px;
  }

  #vid_slider {
    padding: 10px 0 30px;
  }
  #vid_slider .owl-dots button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
.slider .item .img {
   height: 210px;
display: block;
overflow: hidden;
  }
  #project_mdl .owl-nav {
    display: flex;
    height: 30px;
    justify-content: space-between;
  }
  #project_mdl .owl-nav button {
    width: 50%;
    height: 30px;
    margin: 0;
  }
  #project_mdl .price {
	      margin: 5px 0 10px;
    color: #2d2f3f;
    font: 14px/18px 'Gilroy-Regular',Arial,sans-serif;
	}
	
	
  #project_mdl .owl-nav button svg {
    width: 14px;
    height: 14px;
  }
  #project_mdl .info {
    padding: 10px 25px;
}
#project_mdl #clbk_slider img {
    max-height: none;
  }
	#project_mdl #clbk_slider .owl-nav{
		padding-right:0;
	}
	#project_mdl .owl-nav button svg path {
		fill: white !important;
	}
  #project_mdl #clbk_slider {
    max-height: 230px;
  }
  #project_mdl .info .title {
    font-size: 18px;
	  margin-bottom:8px;
  }
  #project_mdl .info .devider {
    margin: 5px 0;
  }
  #project_mdl .info .price-1 {
    font-size: 16px;
  }
  #project_mdl .owl-nav {
    display: flex;
    height: 30px;
    justify-content: space-between;
  }
  #project_mdl .owl-nav button {
    width: 50%;
    height: 30px;
    margin: 0;
  }
  #project_mdl .info .price {
	  margin: 10px 0;
	}
  #project_mdl .owl-nav button svg {
    width: 14px;
    height: 14px;
  }

  #video_mdl .video {
    height: 260px;
  }


  #work_step {
    padding: 30px 0 0;
  }
  #work_step .img_wrapper {
    height: 230px;
  }
  #work_step .wrapper {
    margin: 40px 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #work_step .wrapper .item {
    width: 100%;
  }
  #work_step .wrapper:nth-child(2) .item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #work_step .s_title {
    margin: 20px 0 0;
  }
  #work_step .s_title:after {
    margin: 10px 0 20px;
  }
  #work_step .date {
    margin: 0;
    font-size: 16px;
  }
.slider .item .img {
    height: auto;
}

  #serv {
    /*Изменения тут, убрал margin */
    padding: 30px 0 0;
  }
  #serv .item {
    width: 49% !important;
    margin: 0 0 50px;
  }
  #serv .item .circle {display: none;}
  #serv .s_title {
    margin: 0 0 50px;
  }


  /* Изменения тут */
  #sales .item {
    width: 100%;
    margin-bottom: 15px;
  }
  #sales .item__img {
    height: 200px;
    font-size: 20px;
  }
  #sales .item__des .button {
    padding: 10px 25px;
    font-size: 14px;
  }

  #about .img {
    width: 47% !important;
    margin-left: 2%;
    height: 140px;
  }
  #about p {
    font-size: 14px;
  }

  footer .map {
    height: 240px;
  }
  /* до сюда */
}
@media only screen and (max-width: 375px) {
  main .header .bottom .logo {
    height: 70px;
  }
  main .content h1 {
    font-size: 30px;
  }
  main .footer .item br {
    display: none;
  }
  
    main .content .button {
    font-size: 16px;
  }
  
   main .content .sub_offer {
    font-size: 22px;
  }

  #vid_slider .item {
    height: 220px;
  }

  #video_mdl .video {
    height: 230px;
  }

  #work_step .img_wrapper {
    height: 210px;
  }
  #work_step .img_wrapper .play_btn {
    width: 80px;
  }
  #work_step .s_title {
    font-size: 36px;
  }
  #work_step .date span {
    font-size: 40px;
  }
}
@media only screen and (max-width: 320px) {
  main .header .top .item {
    padding-left: 0;
  }
  main .header .top .item svg {
    display: none;
  }

  main .content h1 {
    font-size: 29px;
  }
  main .content .button {
    font-size: 16px;
  }
  main .footer .item {
    width: 80%;
    border: none !important;
  }

 

  #vid_slider .item {
    height: 190px;
  }

  #video_mdl .video {
    height: 200px;
  }

  #work_step .img_wrapper {
    height: 180px;
  }

  #serv .item {
    width: 100%;
    margin: 0 0 40px;
  }


  /* Изменения тут */
  footer .map {
    height: 200px;
  }
  /* до сюда */
}
/**
*
  Owl Carousel
*
**/
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
      This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the owl-item that breaks page layouts
     */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
SUP, SUB {

    vertical-align: baseline;
    position: relative;
    font-size: .6em;
    line-height: 1;

}
SUP {

    bottom: 1.4ex;
}

body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}