body {
  margin:0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  cursor: default;
  width: 100%;
  outline: none !important;
  background: #000;
}
a{
  text-decoration:none;
  -webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
a:active,
a:focus,
a:hover {
  outline: none;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
	position: absolute;
	content: "";
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
* {
    margin: 0;
	padding: 0;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
.clearfix {
  clear: both;
  margin-bottom: 40px;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
ol,ul {
  list-style: none;
  margin:0;
  padding:0;
}
hr {
	position: relative;
    height: 0;
	margin: 10px 0;
    -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
    border: 0;
}
.container {
    width: 100%;
    max-width: 100%;
	padding: 0 200px;
    margin: 0 auto;
}

.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  background-color: #000;
}

.preloader__item {
  content: "";
  display: block;
  position: absolute;
  background-color: #EB5D43;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  z-index: 999;
}

.preloader__item1 {
  animation-name: orbit-top-left;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.preloader__item2 {
  animation-name: orbit-top-right;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.preloader__item3 {
  animation-name: orbit-down-left;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.preloader__item4 {
  animation-name: orbit-down-right;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@keyframes orbit-top-left {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(150%, 150%, 0);
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(150%, 150%, 0);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
  }
}
@keyframes orbit-top-right {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(150%, -150%, 0);
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(150%, -150%, 0);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
  }
}
@keyframes orbit-down-left {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(-150%, -150%, 0);
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(-150%, -150%, 0);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
  }
}
@keyframes orbit-down-right {
  0% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(0, 0, 0);
  }
  20% {
    transform: rotate3d(0, 0, 1, 0deg) translate3d(-150%, 150%, 0);
  }
  80% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(-150%, 150%, 0);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg) translate3d(0, 0, 0);
  }
}
/* -------------------------------- 

modal-box

-------------------------------- */

.modal, .modal-box {
    z-index: 9999;
}
.modal-sandbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
}
.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
}
.modal-box {
  display: table;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-body {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    z-index: 9999;
}
.modal-body .modal_container {
    background: #000;
    padding: 50px;
    margin: 0 auto;
    width: 30%;
    height: auto;
    position: relative;
	display: table;
	animation-name: modalbox;
    animation-duration: .3s;
    animation-timing-function: ease-out;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}
.modal h2 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4;
	margin-bottom: 30px;
}
.modal h3 span {
    color: #ED4C67;
}
/* Close Button */
.close-modal {
    position: absolute;
    top: 7px;
    right: 7px;
    background: url(../img/close.svg) no-repeat;
        background-size: auto auto;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 9999;
	opacity: 0.65;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    transition: all 0.25s linear;
    background-size: contain;
}
.close-modal:hover {
    opacity: 1;
}
/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

.modal-info {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    overflow: auto;
	z-index: 999;
}
.modal-info .modal_container {
    background: #fff;
    padding: 50px;
    margin: 0 auto;
    width: 40%;
    height: auto;
    position: relative;
	display: table;
	animation-name: modalbox;
    animation-duration: .3s;
    animation-timing-function: ease-out;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}
.modal-info .close-modal {
    background: url(../img/cd-icon-close.svg) no-repeat;
	right: 12px;
}
.modal-info h2 {
    text-transform: uppercase;
    margin-bottom: 15px;
}
.modal-info p {
    font-size: 16px;
	line-height: 1.4;
	margin-bottom: 25px;
}

/* -------------------------------- 

header

-------------------------------- */

header {
  position: fixed;
  background: rgba(0,0,0,0.75);
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  -webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.flex-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: 100px;
	padding: 0 30px;
	-webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
header.shrink .flex-header {
    height: 60px;
}
.logo {
    width: 62px;
	-webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.logo img {
    width: 100%;
}
header.shrink .logo {
    width: 50px;
}
h1 {
    position: absolute;
    left: 150px;
	font-size: 24px;
	text-transform: uppercase;
}
.nav {
    position: relative;
    display: inline-block;
    vertical-align: middle;
	margin-right: 50px;
}
.header-phone {
    position: relative;
    display: inline-block;
    vertical-align: middle;
	color: #fff;
}
.nav li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    font-size: 10px;
    text-transform: uppercase;
}
.nav li:last-child {
    margin-right: 0px;
}
.nav li.logo-nav {
    display: none;
}
.ico-phone {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.header-phone span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
	font-size: 18px;
	font-weight: 100;
}
.nav li a {
    position: relative;
	color: rgba(255,255,255,0.5);
}
.nav li a:before {
    width: 0;
	height: 1px;
	background: rgba(255,255,255,0.5);
	bottom: -6px;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.nav li a:hover:before {
    width: 100%;
}
.nav li a:hover {
    color: rgba(255,255,255,1);
}
.nav li a.active {
    color: rgba(255,255,255,1);
}
.nav li a.active:before {
	width: 100%;
}


/*----------------------------

BURGER

----------------------------*/
.burger {
    position: relative;
    width: 45px;
    height: 18px;
    cursor: pointer;
    z-index: 10;
	display: none;
    -webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.burger::before, .burger span, .burger::after {
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    opacity: 1;
}
.burger:before, .burger:after {
    transition: .15s linear;
	-webkit-transition: .15s linear;
	content: "";
}
.burger::before {
    top: 0px;
}
.burger span {
	top: 9px;
	width: 75%;
	-webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.burger:after {
	top: 18px;
	width: 50%;
	-webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
/* Hover */
.burger:hover span {
	width: 100%;
}
.burger:hover:after {
	width: 100%;
}
/* Click */
.burger.cross span {
	opacity: 0;
}
.burger.cross:before, .burger.cross:after {
	top: 50%;
	width: 100%;
}
.burger.cross:before {
	-webkit-transform: rotate(45deg); 
    -moz-transform: rotate(45deg);  
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5); /*for IE*/
}
.burger.cross:after {
	-webkit-transform: rotate(-45deg); 
    -moz-transform: rotate(-45deg);  
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5); /*for IE*/
}
.burger:focus {
	outline: none;
}

/* -------------------------------- 

intro

-------------------------------- */
#intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  color: #fff;
}
.slide-1 {
	background: url(../img/slide-1.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.slide-2 {
	background: url(../img/slide-2.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.slide-3 {
	background: url(../img/slide-3.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.slide-4 {
	background: url(../img/slide-4.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.slide-5 {
	background: url(../img/slide-5.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.overlay {
	position: absolute;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.flex-intro {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  height: 100vh;
  width: 50%;
  padding-bottom: 100px;
}
#number-slide {
    position: relative;
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 20px 0;
	opacity: 0;
	will-change: transform;
}
#number-slide::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.5);
    width: 0;
    height: 1px;
    top: 20px;
    left: 50px;
	will-change: transform;
}
.slick-current #number-slide {
    -webkit-animation: transit-top 0.25s linear;
    -moz-animation: transit-top 0.25s linear;
    animation: transit-top 0.25s linear;
	-webkit-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    animation-delay: 0.15s;
	animation-fill-mode: forwards;
}
.slick-current #number-slide::after {
    -webkit-animation: transit-left 0.25s linear;
    -moz-animation: transit-left 0.25s linear;
    animation: transit-left 0.25s linear;
	-webkit-animation-delay: 0.55s;
    -moz-animation-delay: 0.55s;
    animation-delay: 0.55s;
	animation-fill-mode: forwards;
}
@keyframes transit-top {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
	opacity: 1;
  }
}
@-webkit-keyframes transit-top {
   0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
	opacity: 1;
  }
}
@keyframes transit-left {
  0% {
   width: 0;
  }
  100% {
    width: 122px;
  }
}
@-webkit-keyframes transit-left {
   0% {
   width: 0;
  }
  100% {
    width: 122px;
  }
}
#intro h2 {
    font-size: 64px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
    margin: 0 0 35px 0;
}
.subtitle {
    font-size: 18px;
    font-weight: 500;
	margin: 0 0 35px 0;
}
.btn-dark {
    position: relative;
    width: 203px;
    padding: 15px 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
	text-transform: uppercase;
    border: 1px solid #EB5D43;
    display: block;
    text-align: center;
	cursor: pointer;
	z-index: 1;
	-webkit-transition: 0.15s linear;
     -moz-transition: 0.15s linear;
     -o-transition: 0.15s linear;
     transition: 0.15s linear;	
}
.btn-dark:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	background: #EB5D43;
	transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-dark:hover {
	color: #fff;
}
.btn-dark:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}

.btn {
    position: relative;
	font-family: 'Montserrat', sans-serif;
    width: 203px;
    padding: 15px 0;
    background: transparent;
    color: #EB5D43;
    font-size: 12px;
	text-transform: uppercase;
    border: 1px solid #EB5D43;
    display: block;
    text-align: center;
	cursor: pointer;
	z-index: 1;
	-webkit-transition: 0.15s linear;
     -moz-transition: 0.15s linear;
     -o-transition: 0.15s linear;
     transition: 0.15s linear;	
}
.btn:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	background: #EB5D43;
	transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn:hover {
	color: #fff;
}
.btn:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}
/* -------------------------------- 

advantage

-------------------------------- */
#advantage {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 70px 0;
}
.title-block {
    position: relative;
    width: 40%;
    float: left;
    height: 340px;
    display: flex;
    align-items: center;
}
.count-block {
    position: relative;
    width: 60%;
    float: left;
	padding-left: 60px;
	height: 340px;
    display: flex;
    align-items: center;
}
.logo-adv {
    position: absolute;
    top: 0;
    left: 0;
}
#advantage h2 {
    position: relative;
    font-size: 36px;
    text-transform: uppercase;
    padding-left: 70px;
}
.count-grid {
    position: relative;
    width: 100%;
    display: table;
}
.count-cols {
    width: 33.333%;
	float: left;
	padding: 0 30px;
	text-align: center;
}
.stats-counter-value {
    position: relative;
    font-size: 72px;
	color: #EB5D43;
    font-weight: 700;
}
.stats-title {
    font-size: 18px;
    font-weight: 700;
}

/* -------------------------------- 

catalog

-------------------------------- */
#catalog {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.grid {
	position: relative;
	display: table;
	margin: 0 auto;
	width: 100%;
	list-style: none;
	text-align: center;
}
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0;
    width: 50%;
    height: 460px;
}
.grid figure:nth-child(5) {
	width: 100%;
}
.grid figure h2 {
    position: absolute;
    font-size: 48px;
    color: #fff;
    text-align: center;
    bottom: 50px;
    text-transform: uppercase;
    left: 0;
    right: 0;
    margin: 0 auto;
	-webkit-transition: 0.15s linear;
     -moz-transition: 0.15s linear;
     -o-transition: 0.15s linear;
     transition: 0.15s linear;	
}
.grid figure img.img-effect {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	object-fit: cover;
}
.effect-overlay {
	position: absolute;
	background: rgba(0, 0, 0, 0.15);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	--webkit-transition: 0.15s linear;
     -moz-transition: 0.15s linear;
     -o-transition: 0.15s linear;
     transition: 0.15s linear;	
}
.grid figure figcaption {
	padding: 3em;
	color: #fff;
	font-size: 16px;
	text-align: center;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption img {
	margin-top: 12%;
	margin-bottom: 30px;
	height: 90px;
}
.catalog-btn{
    position: absolute;
	bottom: 80px;
	left: 0;
	right: 0;
	margin: 0 auto;
    width: 203px;
    padding: 15px 0;
    background: transparent;
    color: #fff;
    font-size: 12px;
	text-transform: uppercase;
    border: 1px solid #EB5D43;
    display: block;
    text-align: center;
	cursor: pointer;
	z-index: 1;
	-webkit-transition: 0.15s linear;
     -moz-transition: 0.15s linear;
     -o-transition: 0.15s linear;
     transition: 0.15s linear;	
}
.catalog-btn:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	background: #EB5D43;
	transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.catalog-btn:hover {
	color: #fff;
}
.catalog-btn:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}
.btn-all {
    position: absolute;
    width: 100%;
    height: 100%;
	top: 0;
    left: 0;
}
/*---------------*/
/***** hover *****/
/*---------------*/

figure.effect img.img-effect {
	max-width: none;
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-50px,0,0);
	transform: translate3d(-50px,0,0);
}
figure.effect figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-20px,0,0);
	transform: translate3d(-20px,0,0);
}
figure .catalog-btn {
	opacity: 0;
}
.no-touch figure.effect:hover img.img-effect {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.no-touch figure.effect:hover figcaption::before {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.no-touch figure.effect:hover h2 {
	transform: translateY(-220px);
}
.no-touch figure.effect:hover .catalog-btn {
	opacity: 1;
}
.no-touch figure.effect:hover .folio-btn:before {
	width: 56px;
	opacity: 1;
}
.no-touch figure.effect:hover .effect-overlay {
	background: rgba(0, 0, 0, 0.75);
}
.no-touch .folio-btn:hover:before {
	width: 100% !important;
}


/* -------------------------------- 

google-container

-------------------------------- */

#google-container-contact {
  position: relative;
  width: 100%;
  height: 85vh;
  background: #000;
}
#cd-google-map {
  position: relative;
}
#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 30px;
  background-color: #6FC0E7;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../img/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  background-color: #6FC0E7;
}
#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}
#cd-zoom-out {
  background-position: 50% -32px;
}
#google-map {
  position: relative;
}
#zoom-in, #zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 30px;
  background-color: #EB5D43;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../img/cd-icon-controller.svg");
}
.no-touch #zoom-in:hover, .no-touch #zoom-out:hover {
  background-color: #EB5D43;
}
#zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}
#zoom-out {
  background-position: 50% -32px;
}
.gm-control-active.gm-fullscreen-control {
    display: none;
}


/* -------------------------------- 

contact-page

-------------------------------- */

#contact-page {
    position: relative;
	padding: 0 0 70px 0;
}
.contact-list {
    position: relative;
	display: table;
    background: #fff;
	box-shadow: 12px 12px 15px rgba(0,0,0,0.35);
	width: 90%;
    margin: -210px auto 0 auto;
	padding: 56px;
}
.list-description {
	position: relative;
	width: 45%;
	float: left;
	border-right: 1px solid rgba(0, 0, 0, 0.15);
	padding-right: 30px;
}
.list-form {
	position: relative;
	width: 55%;
	float: left;
	padding-left: 50px;
}
.list-item {
	position: relative;
	margin-bottom: 25px
}
.list-item h2 {
	font-size: 24px;
	color: #2F3542;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.list-item p {
	font-size: 16px;
	line-height: 1.8;
	color: #57606F;
	display: inline-block;
	vertical-align: middle;
}
.list-item p span.inline {
	display: inline-block;
	vertical-align: middle;
	width: 80%;
	font-weight: 400;
}
.list-item li {
   display: block;
   margin-bottom: 15px;
}
.list-item li img {
   display: inline-block;
   vertical-align: middle;
   margin-right: 10px;
}
.list-item li span {
   display: inline-block;
   vertical-align: middle;
}
.list-item a {
	font-size: 16px;
	line-height: 1.8;
	color: #57606F;
}
.list-item p span {
	font-weight: 700;
}
.list-item img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}
.phone-item {
    position: relative;
}
.list-form h2 {
	font-size: 24px;
	color: #2F3542;
	text-transform: uppercase;
	margin-bottom: 25px;
}
.list-form .form {
    max-width: 100%;
}
.list-form input[type="text"] {
    color: #2F3542;
    border-bottom: 1px solid rgba(87, 96, 111, 0.35);
}
.list-form textarea {
    color: #2F3542;
    border-bottom: 1px solid rgba(87, 96, 111, 0.35);
}
.list-form .agrement-txt {
    color: #57606F;
}
hr.line {
    border-top: 3px solid #EB5D43;
    width: 115px;
    margin: 20px 0 30px 0;
}
.form {
    position: relative;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
	display: table;
}
.modal_container .form {
    max-width: 100%;
}
.form-group {
    position: relative;
	width: 100%;
}
input[type="text"] {
	font-family: 'Montserrat', sans-serif;
	position: relative;
	font-size: 14px;
	color: #fff;
	display: block;
	width: 100%;
	height: 40px;
	margin-bottom: 40px;
	margin-top: 10px;
	background: transparent;
	padding: 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.35);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
input[type="text"]:hover {
	border-bottom: 1px solid rgba(0,0,0,0.75);
	color: #000;
}
.modal_container input[type="text"] {
    border-bottom: 1px solid rgba(255,255,255,0.35);
}
.modal_container input[type="text"]:hover {
    border-bottom: 1px solid rgba(255,255,255,0.75);
	color: #fff;
}
textarea {
	font-family: 'Montserrat', sans-serif;
	position: relative;
	font-size: 14px;
	color: #fff;
	display: block;
	width: 100%;
	height: 40px;
	margin-bottom: 30px;
	margin-top: 10px;
	background: transparent;
	border: none;
	resize: vertical;
    border-bottom: 1px solid rgba(0,0,0,0.35);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
textarea:hover {
	border-bottom: 1px solid rgba(0,0,0,0.75);
	color: #000;
}
.modal_container textarea {
    border-bottom: 1px solid rgba(255,255,255,0.35);
}
.modal_container textarea:hover {
    border-bottom: 1px solid rgba(255,255,255,0.75);
	color: #fff;
}
input[type="checkbox"] {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder {
	font-family: 'Montserrat', sans-serif;
}
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-moz-placeholder,
textarea:-ms-input-placeholder {
	font-family: 'Montserrat', sans-serif;
}
.agreement {
    margin-bottom: 40px;
}
.agrement-txt {
    text-transform: none;
    font-size: 12px;
	font-weight: 300;
    color: #fff;
    line-height: 1.3;
    width: 90%;
    display: inline-block;
    vertical-align: middle;
}
.agrement-txt a {
	position: relative;
    color: #EB5D43;
	font-weight: 700;
}
.agrement-txt a:before {
    background: #6FC0E7;
	width: 0;
	height: 2px;
	bottom: -6px;
	right: 0;
	-webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
     -moz-transition: 0.25s cubic-bezier(.23,1,.32,1);
     -o-transition: 0.25s cubic-bezier(.23,1,.32,1);
     transition: 0.25s cubic-bezier(.23,1,.32,1);
}
.no-touch .agrement-txt a:hover:before {
    width: 50%;
}
.answers-contact {
    font-size: 18px !important;
	text-transform: none !important;
    font-weight: 500;
    line-height: 1.4;
	margin: 0;
	color: #fff;
	text-align: center;
}
.answers-proect {
    font-size: 18px !important;
	text-transform: none !important;
    font-weight: 500;
    line-height: 1.4;
	margin: 0;
	color: #fff;
	text-align: center;
}
.name label#name-error.form-input--invalid {
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: #3B3B98;
    border: 0;
    color: #fff;
    padding: 6px 8px 6px 8px;
    text-align: center;
    font-size: 10px;
	line-height: 1;
    transition: all 0.25s linear;
}	
.name label#name-error.form-input--invalid::before {
    content: "";
    position: absolute;
    background: #3B3B98;
    width: 7px;
    height: 7px;
    left: -4px;
    top: 8px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.phone label#phone-error.form-input--invalid {
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: #3B3B98;
    border: 0;
    color: #fff;
    padding: 6px 8px 6px 8px;
    text-align: center;
    font-size: 10px;
	line-height: 1;
    transition: all 0.25s linear;
}	
.phone label#phone-error.form-input--invalid::before {
    content: "";
    position: absolute;
    background: #3B3B98;
    width: 7px;
    height: 7px;
    left: -4px;
    top: 8px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.subject label#subject-error.form-input--invalid {
    display: block;
    position: absolute;
    right: 0;
    top: 8px;
    background: #3B3B98;
    border: 0;
    color: #fff;
    padding: 6px 8px 6px 8px;
    text-align: center;
    font-size: 10px;
	line-height: 1;
    transition: all 0.25s linear;
}	
.subject label#subject-error.form-input--invalid::before {
    content: "";
    position: absolute;
    background: #3B3B98;
    width: 7px;
    height: 7px;
    left: -4px;
    top: 8px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.agreement label#agreement-error.form-input--invalid {
    display: block;
    position: absolute;
    left: 0;
    top: -30px;
    background: #3B3B98;
    border: 0;
    color: #fff;
    padding: 6px 8px 6px 8px;
    text-align: center;
    font-size: 10px;
	line-height: 1;
    transition: all 0.25s linear;
}	
.agreement label#agreement-error.form-input--invalid::before {
    content: "";
    position: absolute;
    background: #3B3B98;
    width: 7px;
    height: 7px;
    left: 0;
    bottom: -3px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: 0;
    margin: 0 auto;
}

/* -------------------------------- 

about

-------------------------------- */
#about {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #000;
}
.about-content {
    position: relative;
    width: 35%;
    float: left;
    background: #fff;
    padding: 0 70px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-slider {
    position: relative;
    width: 65%;
    float: left;
    height: 100vh;
	overflow: hidden;
}
.about-content h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
	font-weight: 700;
}
.about-content h2 {
    font-size: 36px;
	font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.about-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.about-content hr {
    border-top: 1px solid #EB5D43;
    width: 160px;
    margin-bottom: 30px;
}

.cb-slideshow,
.cb-slideshow:after {
    position: relative;
    width: 100%;
    height: 100%;
}
.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 24s linear infinite 0s;
    -moz-animation: imageAnimation 24s linear infinite 0s;
    -o-animation: imageAnimation 24s linear infinite 0s;
    -ms-animation: imageAnimation 24s linear infinite 0s;
    animation: imageAnimation 24s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) span { 
    background-image: url(../img/a1.jpg) 
}
.cb-slideshow li:nth-child(2) span {
    background-image: url(../img/a2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../img/a3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../img/a4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	}
	25% {
	    opacity: 1;
	}
	75% {
	    opacity: 1;
	}
	100% { 
	    opacity: 0; 
        -webkit-transform: scale(1.1) rotate(-2deg);		
	}
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	}
	25% {
	    opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% { 
	    opacity: 0;
        transform: scale(1.1) rotate(-2deg);		
	}
}


/* -------------------------------- 

advant

-------------------------------- */
#advant {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #fff;
	padding: 110px 0;
}
.advant-grid {
    position: relative;
    width: 100%;
    margin: 0 -30px;
}
.advant-item {
    width: 25%;
    padding: 0 30px;
    float: left;
}
.advant-item h3 {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
}
.advant-item h3::before {
    background: #EB5D43;
    width: 65px;
    height: 1px;
    bottom: -20px;
    left: 0;
}
.advant-item p {
    font-size: 16px;
	font-weight: 100;
    line-height: 1.4;
}
#advant h2 {
    position: relative;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 70px;
}

/* -------------------------------- 

timing

-------------------------------- */
#timing {
  position: relative;
  width: 100%;
  background: #fff;
  color: #000;
  overflow: hidden;
}
.timing-container {
    position: relative;
    width: 80%;
	float: left;
    padding: 100px 50px 100px 200px;
}
#timing h2 {
    position: relative;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 70px;
}
#timing .sub-title:before {
    position: absolute;
	top: -60px;
    right: -528px;
	content: "";
	background: url(../img/bg8.svg) no-repeat center center; 
	background-size: contain;
	width: 1560px;
	height: 186px;
}
.timing-content {
	position: relative;
	display: table;
}
.timing-item {
    position: relative;
    width: 33.3%;
    float: left;
	height: 240px;
	margin-bottom: 30px;
}
.timing-item:nth-of-type(4) {
    float: right;
	margin-bottom: 0;
}
.timing-item:nth-of-type(5) {
    float: right;
	margin-bottom: 0;
}
.timing-item:before {
    position: absolute;
    top: 65px;
    right: -150px;
    content: "";
    width: 300px;
    height: 2px;
    background: #000;
}
.timing-item:nth-of-type(3):before {
    width: 140px;
	right: 0px;
}
.timing-item:nth-of-type(4):before {
    width: 140px;
	right: 0px;
}
.timing-content:before {
    position: absolute;
    top: 65px;
    right: 0;
    content: "";
    width: 2px;
    height: 272px;
    background: #000;
}
.timing-icon {
	z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    background: #000;
    width: 132px;
    height: 132px;
    border-radius: 50%;
	margin-bottom: 15px;
}
.timing-icon::after {
    position: absolute;
    top: 40px;
    right: -40px;
    font-size: 14px;
	font-weight: 700;
    color: #EB5D43;
}
.timing-item:nth-of-type(1) .timing-icon:after {
    content: "01";
}
.timing-item:nth-of-type(2) .timing-icon:after {
    content: "02";
}
.timing-item:nth-of-type(3) .timing-icon:after {
    content: "03";
}
.timing-item:nth-of-type(4) .timing-icon:after {
    content: "04";
}
.timing-item:nth-of-type(5) .timing-icon:after {
    content: "05";
}
.timing-icon img {
    width: 60px;
}
.timing-item p {
    font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	text-align: center;
	padding: 0 30px;
}
.timing-bg {
    position: absolute;
    width: 20%;
    background: url(../img/timing-bg.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    height: 100%;
    top: 0;
    right: 0;
}

/* -------------------------------- 

category

-------------------------------- */
#category {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../img/bg-cat.svg) no-repeat center center;
  background-size: cover;
  color: #fff;
}

.slider-nav.slick-slider {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    width: 90%;
}
.slick-slide img.img-category {
    margin: 0 auto;
	width: 90%;
}
.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
	height: 350px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
#category .btn-dark {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 260px;
}


/* -------------------------------- 

footer

-------------------------------- */
footer {
    position: relative;
    background: #000;
	width: 100%;
    color: #fff;
    overflow: hidden;
}
.flex-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 70px 0;
	text-align: center;
}
.logo-footer {
    margin-bottom: 30px;
}
.flex-footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 10px 0;
  line-height: 1.6;
}

@media (max-width: 1600px) {
.container {
    padding: 0 100px;
}
.title-block {
    height: 300px;
}
.logo-adv {
    width: 300px;
}
.count-block {
    height: 300px;
}
.about-content h2 {
    font-size: 32px;
}
#advant {
    padding: 70px 0;
}
.timing-container {
    width: 80%;
    padding: 70px 50px 70px 100px;
}
.modal-body .modal_container {
    width: 45%;
}
#category .btn-dark {
    bottom: 180px;
}
.slider-overlay {
    height: 250px;
}
.slider-nav.slick-slider {
    bottom: 20px;
}







}

@media (max-width: 1400px) {
.advant-item {
    width: 50%;
	height: 200px;
}
.advant-item p {
    font-size: 14px;
}
.flex-header {
    height: 70px;
}
.logo {
    width: 50px;
}
.timing-item p {
    font-size: 14px;
}



}


@media (max-width: 1200px) {
.container {
    padding: 0 30px;
}
h1 {
    left: 120px;
    font-size: 18px;
}
.burger {
    display: inline-block;
    vertical-align: middle;
}
.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 100vh;
    background: #000;
	color: #fff;
	margin-right: 0;
    display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: auto;
	will-change: transform;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.24), 0px 9px 18px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    visibility: hidden;	
	z-index: 1;
    -webkit-transition: 0.25s ease;
    -moz-transition: 0.25s ease;
    -o-transition: 0.25s ease;
    transition: 0.25s ease;
}
.show {
    transform: translateX(0px) !important;
    visibility: visible !important;
}
.visible {
	visibility: visible;
}
.header-phone {
    margin-right: 40px;
}
.nav li {
    display: block;
    margin-right: 0;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}
.nav li.logo-nav {
    display: block;
    width: 140px;
    margin-bottom: 40px;
}
.nav li.logo-nav img {
    width: 100%;
}
.flex-intro {
    width: 100%;
}
.title-block {
    height: auto;
    width: 100%;
    justify-content: center;
}
.logo-adv {
    left: 0;
    right: 0;
    margin: 0 auto;
}
#advantage h2 {
    padding-left: 0;
    text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
}
.count-block {
    height: auto;
    width: 100%;
    padding-left: 0;
	margin-bottom: 30px;
}
#advantage .btn {
    margin: 0 auto;
}
.grid figure h2 {
    font-size: 28px;
	transform: translateY(0px);
	font-size: 24px;
    bottom: 58%;
}
figure.effect:hover h2, .no-touch figure.effect:hover h2 {
    transform: translateY(0px);
}
figure .catalog-btn, .no-touch figure .catalog-btn {
    opacity: 1;
}
figure.effect .effect-overlay, .no-touch figure.effect .effect-overlay {
    background: rgba(0, 0, 0, 0.75);
}
.no-touch figure.effect figcaption::before, figure.effect figcaption::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.contact-list {
    width: 100%;
    margin: -170px auto 0 auto;
    padding: 50px;
}
.list-description {
    width: 100%;
    border-right: 0;
    padding-right: 0;
}
.list-form {
    width: 100%;
    padding-left: 0;
}
#contact-page {
    padding: 0;
}
#intro h2 {
    font-size: 56px;
}
.btn {
    width: 200px;
    padding: 12px 0;
    font-size: 10px;
}
.about-content {
    padding: 0 30px;
}
.about-content h2 {
    font-size: 24px;
}
#advant h2 {
    font-size: 28px;
    margin-bottom: 50px;
}
#timing h2 {
    font-size: 28px;
    margin-bottom: 50px;
}
.timing-container {
    padding: 70px 50px 70px 30px;
}
.timing-item {
    height: 320px;
}
.timing-content::before {
    height: 350px;
}
#catalog {
    padding-top: 70px;
}
.modal-body .modal_container {
    width: 55%;
}

}

@media (max-width: 991px) {
.container {
    padding: 0 30px;
}
#number-slide {
    font-size: 24px;
}
#number-slide::after {
    top: 14px;
}
#intro h2 {
    font-size: 46px;
}
.grid figure h2 {
    font-size: 24px;
    bottom: 58%;
}
.about-content p {
    font-size: 14px;
}
.advant-item {
    height: 250px;
}
.timing-item {
    height: auto;
    width: 100%;
}
.timing-item::before {
    display: none;
}
.timing-content::before {
    display: none;
}
.timing-container {
    width: 60%;
}
.timing-bg {
    width: 40%;
}
.timing-icon::after {
    display: none;
}
.timing-item:nth-of-type(4) {
    margin-bottom: 30px;
}
#timing h2 {
    text-align: center;
}
.modal-body .modal_container {
    width: 65%;
}
#category {
    height: auto;
    padding-bottom: 140px;
}


}

@media (max-width: 767px) {
.logo {
    width: 30px;
}
h1 {
    left: 80px;
    font-size: 10px;
}
.header-phone span {
    font-size: 14px;
}
.ico-phone {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}
.nav li.logo-nav {
    width: 40px;
    margin-bottom: 20px;
}
.nav li {
    font-size: 10px;
    margin-bottom: 20px;
}
.flex-header {
    height: 50px;
}
header.shrink .flex-header {
    height: 50px;
}
header.shrink .logo {
    width: 30px;
}
.flex-intro {
    padding-bottom: 30px;
}
.btn-dark {
    width: 200px;
    padding: 12px 0;
    font-size: 10px;
}
.subtitle {
    font-size: 14px;
    margin: 0 0 20px 0;
}
#intro h2 {
    font-size: 24px;
    margin: 0 0 15px 0;
}
#number-slide {
    font-size: 18px;
}
#number-slide::after {
    top: 10px;
}
.slick-next img, .slick-prev img {
    width: 25px;
    height: 25px;
}
#advantage {
    padding: 40px 0;
}
#advantage h2 {
    font-size: 24px;
	margin-bottom: 10px;
}
.stats-counter-value {
    font-size: 56px;
}
.stats-title {
    font-size: 12px;
}
.count-block {
    margin-bottom: 0;
}
.grid figure h2 {
    font-size: 18px;
}
.catalog-btn {
    bottom: 50px;
    width: 200px;
    padding: 12px 0;
    font-size: 10px;
}
#google-container-contact {
    height: 100vh;
}
.contact-list {
    width: 100%;
    margin: 0;
    padding: 0;
	box-shadow: none;
}
#contact-page {
    padding: 0;
    background: #fff;
    padding: 40px 0;
}
#about {
    height: auto;
}
.about-content {
    width: 100%;
    height: auto;
	padding: 90px 30px 40px 30px;
}
.about-slider {
    width: 100%;
}
#advant {
    padding: 40px 0;
}
.advant-item {
    height: auto;
    width: 100%;
    margin-bottom: 30px;
}
.timing-container {
    width: 100%;
}
.timing-bg {
    display: none;
}
#catalog {
    padding-top: 50px;
}
.modal-body .modal_container {
    width: 75%;
}
.slider-overlay {
    height: 126px;
}
.slider-nav.slick-slider {
    bottom: 30px;
}
#category .btn-dark {
    bottom: 160px;
}
.slider-overlay {
	position: fixed;
	height: 100px;
}
#category {
    height: auto;
    padding-top: 50px;
	background: #000;
	padding-bottom: 0px;
}
.slider-nav {
    display: none;
}
.slider.slider-for {
    position: relative;
    width: 100%;
}
.slider-for img {
    width: 100%;
    display: table;
    object-fit: cover;
}
#category .btn-dark {
    display: none;
}
.category .flex-footer {
    padding: 70px 0 90px 0;
}
.timing-container {
    padding: 70px 30px 70px 30px;
}

}

@media (max-width: 480px) {
.flex-intro {
    padding-bottom: 100px;
}
.flex-header {
    padding: 0 15px;
}
h1 {
    opacity: 0;
}
.nav {
    width: 100%;
}
.nav li.logo-nav {
    width: 80px;
    margin-bottom: 40px;
}
.nav li {
    font-size: 12px;
    margin-bottom: 40px;
}
.slick-next {
    right: auto;
    left: 70px;
    top: 70px;
}
.slick-prev {
    right: auto;
    left: 15px;
    top: 70px;
}
.container {
    padding: 0 15px;
}
.logo-adv {
    width: 100%;
}
.count-cols {
    width: 100%;
    margin-bottom: 25px;
}
.grid figure {
    width: 100%;
}
figure.effect figcaption::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
}
.list-item h2 {
    font-size: 18px;
}
.list-item p {
    font-size: 13px;
}
.list-item a {
    font-size: 13px;
}
.list-form h2 {
    font-size: 18px;
}
.form-group .btn {
    width: 100%;
}
#advant h2 {
    font-size: 24px;
    margin-bottom: 40px;
}
#zoom-in, #zoom-out {
    margin-left: 15px;
}
.modal-body .modal_container {
    width: 95%;
}
.slider-overlay {
	display: none;
}
.agrement-txt {
    width: 85%;
}
.modal-info .modal_container {
    padding: 40px 25px;
}
.modal-info h2 {
    font-size: 18px;
}
#category {
    height: 80vh;
}
#category .btn-dark {
    bottom: 0;
    position: relative;
    display: block;
    margin-top: 15px;
}
.category .flex-footer {
    padding: 40px 0;
}


}

@media (max-width: 359px) {
#intro h2 {
    font-size: 20px;
}
#advantage h2 {
    font-size: 20px;
}


}
