/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro/GothamPro.woff2') format('woff2'),
      url('../fonts/GothamPro/GothamPro.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro/GothamPro-Medium.woff2') format('woff2'),
      url('../fonts/GothamPro/GothamPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/GothamPro/GothamPro-Bold.woff2') format('woff2'),
      url('../fonts/GothamPro/GothamPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.page{
	overflow: hidden;
}

.wrapper{
	max-width: 1200px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
}

.popup{
	display: none;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #253346;
	font-family: 'Gotham Pro', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

sup{
	top: -.5em;
  left: -.5em;
  font-size: 60%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background: #fff;
}

body.m-panel{
	overflow: hidden;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

nav ul{
	margin: 0;
	padding: 0;
}

ul {
	list-style: disc;
}

nav ul{
	list-style-type: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

.list{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.list li{
	color: #253346;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	position: relative;
	padding-left: 17px;
	margin-bottom: 6px;
}

.list li:before{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
	background-color: #eb1429;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.btn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 370px;
	background-color: #eb1429;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.3px;
	border: 0;
	padding: 25px;
	padding-bottom: 21px;
	cursor: pointer;
	transition: .2s ease-out;
}

.btn-white{
	border: 1px solid #f4f4f4;
	background-color: #fff;
	color: #253346;
}

.btn-trans{
	border: 2px solid #253346;
	background-color: transparent;
	color: #253346;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: #cf1427;
	border-color: #cf1427;
	color: #fff;
}

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

.btn:active, .btn:focus,
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	outline: none;
}

.btn:disabled,
button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
	pointer-events: none;
	background-color: grey;
}

.btn-trans:disabled{
	background-color: #253346;
  color: #fff;
  opacity: .7;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	width: 100%;
	min-height: 68px;
	border: 1px solid #e6e6e6;
	background-color: #fff;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.38px;
	text-align: center;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.form-control{
	margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Forms @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.btn,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 12px;	
		padding: 20px;
  	padding-bottom: 17px;
	}

	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	input[type="range"],
	input[type="date"],
	input[type="month"],
	input[type="week"],
	input[type="time"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="color"],
	textarea {
		min-height: 55px;
		font-size: 12px;
		letter-spacing: 0.3px;
	}
}

/*--------------------------------------------------------------
# Form Aggreement
--------------------------------------------------------------*/
.form-control-aggree {
  display: flex;
}

.form-control-aggree p,
.form-control-aggree a{
	font-size: 11px;
	font-weight: 400;
	line-height: 1.64;
	letter-spacing: 0.28px;
	margin: 0;
}

/*--------------------------------------------------------------
# Styled Checkbox
--------------------------------------------------------------*/
.styled-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin-right: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}

.styled-checkbox input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.styled-checkbox input:disabled ~ .checkmark {
  border-color: gray;
}

.styled-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #253346;
}

.styled-checkbox input:checked ~ .checkmark {
  border: 1px solid #253346;
}

.styled-checkbox .checkmark:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #eb1429;
  top: 2px;
  left: 2px;
  display: none;
}

.styled-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/*--------------------------------------------------------------
# Styled Checkbox @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.styled-checkbox{
		margin-right: 15px;
	}
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #253346;
	transition: .2s ease-out;
}

a:hover, a:focus, a:active {
	outline: 0;
}

.link-arrow{
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	text-decoration: none;
}

.link-arrow:hover{
	border-color: #fff;
	color: #fff;
}

.link-text{
	border-bottom: 2px solid transparent;
	transition: .2s ease-out;
}

.link-arrow:hover .link-text{
	border-color: #fff;
}

.link-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
	margin-left: 20px;
}

.link-icon:after{
	content: "";
	background-image: url(../img/icons/arrow-right.svg);
	width: 14px;
	height: 6px;
	transition: .2s ease-out;
}

.link-arrow:hover .link-icon:after{
	transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after{
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after{
	clear: both;
}

/*--------------------------------------------------------------
# Fancybox
--------------------------------------------------------------*/
body.compensate-for-scrollbar{
	overflow: visible;
}

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

.fancybox-bg{
	background-color: #f7f7f7;
}

.fancybox-is-open .fancybox-bg{
	opacity: 1;
}

.fancybox-slide--html .fancybox-close-small{
	background-color: transparent;
  color: #253346;
  opacity: 1;
  transition: .2s ease-out;
  padding: 2px;
}

.fancybox-slide--html .fancybox-close-small:hover{
	background-color: transparent;
	color: #cf1427;
}

.fancybox-button[disabled], 
.fancybox-button[disabled]:hover{
	color: #ccc;
}

/*--------------------------------------------------------------
# Popups
--------------------------------------------------------------*/
.fancybox-content{
	padding: 45px;
	background-color: transparent;
}

.popup-inner{
	padding: 40px;
	background-color: #fff;
}

.popup-form .popup-inner{
	max-width: 370px;
}

.popup-title{
	margin-bottom: 20px;
}

.popup-title p{
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0;
}

.popup-subtitle{
	margin-bottom: 30px;
}

.popup-subtitle p{
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
}

/*--------------------------------------------------------------
# Popups @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.fancybox-content{
		padding: 45px 15px;
	}

	.popup-inner{
		padding: 20px;
	}

	.popup-subtitle{
		max-width: 235px;
	}

	.popup-subtitle p{
		font-size: 12px;
		line-height: 1.82;
		letter-spacing: 0.28px;
	}
}

/*--------------------------------------------------------------
# Slick
--------------------------------------------------------------*/
.slick-arrow{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	position: absolute;
	top: 0;
	width: 50px;
	height: 50px;
	background-color: #e8e8ec;
	border-radius: 50%;
	z-index: 1;
	padding: 0;
}

.slick-arrow.slick-disabled{
	pointer-events: none;
	opacity: .6;
}

.slick-arrow:hover{
	background-color: #eb1429;
}

.slick-arrow path{
	transition: .2s ease-out;
}

.slick-arrow:hover path{
	fill: #fff;
}

.slick-prev{
	left: 0;
}

.slick-next{
	right: 0;
}

.slick-dots{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  height: 17px;
}

.slick-dots li{
	margin: 0 10px;
	line-height: 0;
}

.slick-dots li button{
	font-size: 0;
	padding: 0;
	background-color: #253346;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.slick-dots li.slick-active button{
	background-color: #e5132d;
	transform: scale(1.3);
}

/*--------------------------------------------------------------
# Slick @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.slick-arrow{
		width: 33px;
		height: 33px;
	}

	.slick-arrow svg{
		width: 5px;
		height: 7px;
	}

	.slick-dots li{
		margin: 0 5px;
	}

	.slick-dots li button{
		width: 5px;
		height: 5px;
	}
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.section h1, 
.section h2, 
.section h3, 
.section h4, 
.section h5, 
.section h6{
	margin: 0;
}

.title{
	color: #253346;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.38;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.title-small{
	font-size: 30px;
	line-height: 1.33;
	letter-spacing: 0.6px;
}

.title-big{
	font-size: 48px;
	line-height: 1.25;
	letter-spacing: 0.84px;
}

.title-white{
	color: #fff;
}

.section p{
	margin: 0;
}

/*--------------------------------------------------------------
# Sections @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.title{
		font-size: 36px;
	}
}	
@media screen and (max-width:768px){
	.title-big{
		font-size: 36px;
	}
}
@media screen and (max-width:576px){
	.title-big{
		font-size: 30px;
		line-height: 1.33;
		letter-spacing: 0.52px;
	}

	.title{
		font-size: 25px;
		line-height: 1.4;
		letter-spacing: 0.5px;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header{
	position: fixed;
	width: 100%;
	z-index: 10;
}

.header-block{
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	border: 1px solid #f4f4f4;
}

.header-logo{
	display: flex;
	align-items: center;
	padding: 0 50px;
	border-right: 1px solid #f4f4f4;
}

.header-logo a{
	border-bottom: 2px solid transparent;
}

.header-logo a:hover{
	border-color: #253346;
}

.header-nav{
	flex-grow: 1;
	padding: 0 50px;
	position: relative;
}

.header-nav ul{
	display: flex;
	justify-content: space-between;
}

.header-nav ul li{

}

.header-nav ul li a{
	height: 98px;
	display: flex;
	align-items: center;
	color: #253346;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.28px;
	transition: .4s ease-out;
}

.header.fixed .header-nav ul li a{
	height: 68px;
}

.header-nav-line{
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #e5132d;
	transition: .5s ease-out;
}

.header-phone{
	display: flex;
	align-items: center;
	padding: 0 50px;
	border-left: 1px solid #f4f4f4;
}

.header-phone:before{
	content: "";
	background-image: url(../img/icons/phone.svg);
	width: 14px;
	height: 14px;
	margin-right: 13px;
}

.header-phone a{
	color: #253346;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.header-phone a:hover{
	border-color: #253346;
}

.header-btn{
	display: none;
}

/*--------------------------------------------------------------
# Header @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.header .wrapper{
		padding: 0;
	}

	.header-block{
		justify-content: flex-start;
	}

	.header-logo{
		padding: 0 15px;
	}

	.header-logo a{
		width: 65px;
	}

	.header-nav{
		position: fixed;
		width: 100%;
		height: calc(100% - 50px);
		top: 52px;
		left: 0;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
		/*transition: .2s ease-out;*/
		z-index: -1;
	}

	body.m-panel .header-nav{
		opacity: 1;
		visibility: visible;
		z-index: 1;
	}

	.header-nav ul{
		height: 100%;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	}

	.header-nav ul li{
		margin-bottom: 40px;
	}

	.header-nav ul li:last-of-type{
		margin-bottom: 0;
	}

	.header-nav ul li a{
		font-size: 16px;
		height: auto;
	}

	.header.fixed .header-nav ul li a{
		height: auto;
	}

	.header-phone{
		padding: 0 15px;
	}

	.header-btn{
		display: block;
		margin-left: auto;
	}
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.header-nav ul li a{
		font-size: 14px;
	}

	.header-phone a{
		font-size: 14px;
	}
}

@media screen and (max-width:340px){
	.header-phone a {
	  font-size: 11px;
	  padding-top: 2px;
	}
}

/*--------------------------------------------------------------
# Mobile Panel
--------------------------------------------------------------*/
.mobile-panel-btn{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #e5132d;
	text-align: center;
	padding: 0;
}

.mobile-panel-btn span{
	display: block;
	width: 16px;
	height: 2px;
	background-color: #fff;
	margin-bottom: 5px;
	transition: .2s ease-out;
}

.mobile-panel-btn.active span:nth-of-type(1){
	transform: translateY(7px) rotate(45deg);
}

.mobile-panel-btn.active span:nth-of-type(2){
	opacity: 0;
}

.mobile-panel-btn.active span:nth-of-type(3){
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel-btn span:last-of-type{
	margin-bottom: 0;
}

.mobile-panel{
  display: none;
}

/*--------------------------------------------------------------
# Mobile Panel @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
.welcome{
	background-image: url(../img/welcome-bg-new.jpg);
	background-position: top;
	background-size: cover;
}

.welcome-block{
	padding-top: 200px;
	padding-bottom: 100px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.welcome-text{
	margin-left: auto;
	margin-top: -20px;
}

.welcome-link{
	margin-top: 35px;
}

/*--------------------------------------------------------------
# Welcome @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.welcome-text{
		margin-top: 20px;
	}
}
@media screen and (max-width:992px){
	.welcome-img{
		max-width: 60%;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.welcome-block{
		padding-top: 100px;
		flex-direction: column-reverse;
	}

	.welcome-text{
		margin: 0 auto;
		margin-bottom: 85px;
		text-align: center;
	}

	.welcome-link{
		display: none;
	}

	.welcome-img{
		max-width: 202px;
		margin: 0 auto;
	}
}

/*--------------------------------------------------------------
# Doit
--------------------------------------------------------------*/
.doit{
	display: none;
}

.doit .wrapper{
	padding: 0;
}

.doit-btns{
	display: flex;
}

.doit-btns .btn{
	width: 50%;
	max-width: 100%;
}

/*--------------------------------------------------------------
# Doit @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.doit{
		display: block;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.doit-btns .btn{
		font-size: 12px;
		letter-spacing: 0.2px;
		padding: 17px 15px;
	}
}

@media screen and (max-width:340px){
	.doit-btns .btn{
		font-size: 11px;
	}
}

/*--------------------------------------------------------------
# Overall
--------------------------------------------------------------*/
.overall{
	padding: 80px 0;
}

.overall-block{
	display: flex;
}

.overall-title{
	margin-right: 100px;
	flex-shrink: 0;
}

.overall-title-badge{
	display: inline-block;
  background-color: #e5132d;
  padding: 3px 6px;
  color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.52px;
  transform: translate(5px, -5px);
	display: none;
}

.overall-items{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.overall-item{
	margin: 0 15px;
}

.overall-item-title{
	margin-bottom: 10px;
}

.overall-item-title p{
	color: #253346;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.38px;
	line-height: 1.67;
}

.overall-item-value p{
	color: #eb1429;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.6px;
}

/*--------------------------------------------------------------
# Overall @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.overall{
		padding-bottom: 50px;
	}
	.overall-item{
		width: calc(100% / 2 - 30px);
		margin-bottom: 30px;
	}
}
@media screen and (max-width:992px){
	.overall-block{
		flex-wrap: wrap;
	}
	.overall-title{
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.overall{
		padding: 35px 0;
	}

	.overall-title-badge{
		display: inline-block;
	}

	.overall-item {
	  width: calc(100% / 2 - 30px);
	}

	.overall-item:nth-of-type(2){
		display: none;
	}

	.overall-item-title{
		margin-bottom: 0;
	}

	.overall-item-title p{
		font-size: 12px;
		letter-spacing: 0.3px;
	}

	.overall-item-value p{
		font-size: 20px;
		letter-spacing: 0.4px;
	}
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features{
	padding: 80px 0;
	background-color: #253346;
}

.features-title{
	margin-bottom: 50px;
}

.features-items{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.features-item{
	margin: 0 15px;
}

.features-item sup{
	left: 0em;
}

.features-item p, .features-item li{
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	margin-bottom: 25px;
}
.features-item ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.features-item li{
	position: relative;
	padding-left: 17px;
}
.features-item li.no-margin{
	margin-bottom: 0px;
}
.features-item li:before{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
	background-color: #f9b233;
}
.features-item p:last-of-type{
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.features-item{
		flex-grow: 1;
		margin-bottom: 30px;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.features{
		padding: 35px 0;
	}

	.features-title{
		margin-bottom: 30px;
	}

	.features-item{
		width: calc(100% / 1 - 30px);
		margin-bottom: 20px;
	}

	.features-item p{
		font-size: 11px;
		line-height: 1.82;
		letter-spacing: 0.28px;
		margin-bottom: 5px;
	}
}

/*--------------------------------------------------------------
# Location
--------------------------------------------------------------*/
.location .wrapper{
	max-width: 100%;
	padding: 0;
}

.location-block{
	display: flex;
}

.location-left{
	width: 40%;
}

.location-img{
	height: 100%;
}

.location-img img{
	width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-right{
	width: 60%;
	position: relative;
	padding: 84px 100px;
}

.location-map{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #f7f7f7;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	line-height: 0;
}

.location-text{
	width: 100%;
	max-width: 370px;
}

.location-text-body{
	padding: 55px;
	background-color: #fff;
}

.location-desc{
	margin-bottom: 50px;
}

.location-desc p{
	color: #253346;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	margin-bottom: 25px;
}

.location-desc p:last-of-type{
	margin-bottom: 0;
}

.location-address{
	margin-bottom: 25px;
	position: relative;
	padding-left: 40px;
}

.location-address:before{
	content: "";
	background-image: url(../img/icons/pin.svg);
	background-position: center;
	background-size: cover;
	width: 14px;
	height: 20px;
	position: absolute;
	top: 7px;
	left: 0;
}

.location-address p{
	color: #253346;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.4px;
	line-height: 1.35;
}

.location-phone{
	position: relative;
	padding-left: 40px;
}

.location-phone:before{
	content: "";
	background-image: url(../img/icons/phone.svg);
	background-position: center;
	background-size: cover;
	width: 17px;
	height: 17px;
	position: absolute;
	top: 8px;
	left: 0;
}

.location-phone a{
	color: #253346;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.location-phone a:hover{
	border-color: #253346;
}

/*--------------------------------------------------------------
# Location @media
--------------------------------------------------------------*/
@media screen and (max-width:1600px){
	.location-map img{
	  transform: translateX(145px);
	}
}
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	.location-left{
		display: none;
	}
	.location-right{
		width: 100%;
		padding: 50px;
	}
}	
@media screen and (max-width:768px){
	
}
@media screen and (max-width:576px){
	.location-block{
		display: block;
	}

	.location-right{
		padding: 0;
	}

	.location-map{
		position: static;
		line-height: 0;
	}

	.location-map img{
		transform: translateX(0);
	}

	.location-text{
		max-width: 100%;
	}


	.location-text-body{
		padding: 30px 15px;
		background-color: #f7f7f7;
	}

	.location-desc{
		display: none;
	}

	.location-address{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.location-address:before{
		width: 8px;
		height: 12px;
		top: 3px;
	}

	.location-address p,
	.location-phone a{
		font-size: 12px;
		letter-spacing: 0.24px;
	}

	.location-phone{
		padding-left: 25px;
	}

	.location-phone:before{
		width: 11px;
		height: 11px;
	}

	.location-btn{
		display: none;
	}
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery{
	padding: 100px 0;
}

.gallery .wrapper{
	max-width: 100%;
	padding: 0;
}

.gallery-block{
	display: flex;
}

.gallery-left{
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	flex-shrink: 0;
	padding-right: 110px;
}

.gallery-title{
	margin-bottom: 48px;
}

.gallery-arrows{
	position: relative;
	width: 120px;
	height: 50px;
}

.gallery-right{
	width: 60%;
}

.gallery-items{
	width: 1700px;	
}

.gallery-item a{
	display: block;
	margin-right: 50px;
}

/*--------------------------------------------------------------
# Gallery @media
--------------------------------------------------------------*/
@media screen and (max-width:1400px){
	.gallery-items{
		width: 100%;
	}
}
@media screen and (max-width:1200px){
	.gallery .wrapper{
		padding: 0 15px;
	}

	.gallery-item a{
		margin-right: 0;
	}
}
@media screen and (max-width:992px){
	.gallery-left{
		padding-right: 30px;
	}
}	
@media screen and (max-width:768px){
	.gallery-block{
		flex-wrap: wrap;
	}

	.gallery-left{
		width: 100%;
		display: block;
		padding-right: 0;
		margin-bottom: 35px;
	}

	.gallery-left-inner{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}

	.gallery-title{
		margin-bottom: 0;
	}

	.gallery-right{
		width: 100%;
	}
}
@media screen and (max-width:576px){
	.gallery{
		padding: 35px 0;
	}

	.gallery-arrows{
		width: 78px;
  	height: 33px;
	}

	.gallery-items{
		margin-bottom: 30px;
	}

	.gallery-items .slick-dots{
		bottom: -30px;
	}

	.gallery-items .slick-dots li{
		margin: 0 5px;
	}

	.gallery-items .slick-dots li button{
		width: 5px;
		height: 5px;
	}

	.gallery-item a{
		height: 288px;
	}

	.gallery-item a img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
}

/*--------------------------------------------------------------
# Offers
--------------------------------------------------------------*/
.offers{
	background-color: #f7f7f7;
	padding: 80px 0;
}

.offers-title{
	margin-bottom: 60px;
}

.offers-title-badge{
	width: 50px;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #eb1429;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.4px;
	transform: translate(7px, -7px);
}

.offers-items{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.offers-item{
	width: calc(100% / 3 - 30px);
	margin: 0 15px;
	margin-bottom: 60px;
	display: none;
}

.offers-item .slick-slide > div{
	line-height: 0;
}

.offers-item.active{
	display: block;
}

.offy-gallery-item a{
	display: block;
	width: 100%;
	height: 370px;
}

.offy-gallery-item a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.offers-item-main{
	padding: 35px;
	background-color: #fff;
}

.offers-item-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 30px;
	min-height: 90px;
}

.offers-item-title p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.5px;
}

.offers-item-expand{
	background-image: url(../img/icons/next-arrow.svg);
	width: 6px;
	height: 9px;
	transform: rotate(90deg);
	margin-right: 2px;
	display: none;
}

.offers-item-row{
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	padding: 35px 0;
}

.offers-item-row:last-of-type{
	padding-bottom: 0;
	border-bottom: 0;
}

.offers-item-info{
}

.offers-item-info:first-of-type{
	width: calc(56% - 15px);
	max-width: 155px;
}

.offers-item-info:last-of-type{
	width: calc(45% - 15px);
	max-width: 125px;
}

.offers-item-row:last-of-type .offers-item-info{
	width: 100%;
	max-width: 100%;
}

.offers-item-info-title{
	margin-bottom: 5px;
}

.offers-item-info-title p{
	color: #373737;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.3px;
}

.offers-item-info-title sup{
	top: -0.5em;
  left: 0;
  font-size: 65%;
}

.offers-item-info-value p{
	color: #253346;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.offers-item-footer .btn{
	max-width: 100%;
}

.offers-more{
	text-align: center;
}

/*--------------------------------------------------------------
# Offers @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.offers-items{
		justify-content: center;
	}

	.offers-item {
  	width: calc(100% / 2 - 30px);
  	max-width: 370px;
	}
}
@media screen and (max-width:992px){
	.offers-item-info-value p{
		font-size: 18px;
	}
}	
@media screen and (max-width:768px){
	.offers-item{
		width: calc(100% / 1 - 30px);
	}
}
@media screen and (max-width:576px){
	.offers{
		padding: 35px 0;
	}

	.offers-title{
		margin-bottom: 30px;
	}

	.offers-title-badge{
		width: 33px;
		height: 33px;
		font-size: 14px;
		letter-spacing: 0.43px;
		transform: translate(5px, -5px);
	}

	.offers-item{
		margin-bottom: 35px;
	}

	.offy-gallery-item a{
		height: 288px;
	}

	.offers-item-main{
		padding: 20px;
	}

	.offers-item-header{
		padding-bottom: 0;
		min-height: auto;
		transition: .4s ease-in-out;
	}

	.offers-item.expand .offers-item-header{
		padding-bottom: 15px;
	}

	.offers-item-title{
		padding-right: 30px;
	}

	.offers-item-title p{
		font-size: 15px;
		line-height: 1.67;
		letter-spacing: 0.38px;
	}

	.offers-item-expand{
		display: block;
		transition: .2s ease-out;
	}

	.offers-item.expand .offers-item-expand{
		transform: rotate(-90deg);
	}

	.offers-item-body{
		display: none;
	}

	.offers-item-row{
		padding: 20px 0;
	}

	.offers-item-info:first-of-type{
		max-width: 100px;
	}

	.offers-item-info:last-of-type{
		max-width: 100px;
	}

	.offers-item-info:last-of-type .offers-item-info-title{
		max-width: 80px;
	}

	.offers-item-row:last-of-type .offers-item-info-title{
		max-width: 160px;
	}

	.offers-item-info-value p{
		font-size: 15px;
		letter-spacing: 0.3px;
	}
}

/*--------------------------------------------------------------
# Setting
--------------------------------------------------------------*/
.setting{
	padding: 80px 0;
}

.setting-title{
	margin-bottom: 60px;
}

.setting-item{
	display: flex;
	align-items: center;
}

.setting-item:first-of-type{
	justify-content: space-between;
	margin-bottom: 80px;
}

.setting-item:last-of-type{
	flex-direction: row-reverse;
	justify-content: flex-end;
	margin-bottom: 0;
}

.setting-item:first-of-type .setting-item-text{
	padding-right: 100px;
}

.setting-item:last-of-type .setting-item-text{
	padding-left: 100px;
}

.setting-item-title{
	margin-bottom: 35px;
}

.setting-item-title p{
	color: #253346;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.setting-item-img{
	flex-shrink: 0;
}

.setting-item-nav{
	display: none;
}

/*--------------------------------------------------------------
# Setting @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	.setting-item-img{
		max-width: 50%;
	}
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	.setting-item{
		display: block;
	}

	.setting-item:first-of-type .setting-item-text{
		padding-right: 0;
	}

	.setting-item:last-of-type .setting-item-text{
		padding-left: 0;
	}

	.setting-item-text{
		margin-bottom: 35px;
	}

	.setting-item-img{
		max-width: 100%;
	}

	.setting-item-img img{
		width: 100%;
	}
}
@media screen and (max-width:576px){
	.setting{
		padding: 35px 0;
	}

	.setting-title{
		margin-bottom: 35px;
	}

	.setting-items{
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.setting-item{
		flex-direction: column;
  	flex-wrap: wrap;
  	display: none;
	}

	.setting-item.active{
		display: flex;
	}

	.setting-item:first-of-type{
		margin-bottom: 0;
		order: 1;
	}

	.setting-item:last-of-type{
		flex-direction: row;
		order: 0;
	}

	.setting-item-img{
		order: 0;
		height: 320px;
		margin-bottom: 30px;
		width: calc(100% + 30px);
		max-width: calc(100% + 30px);
  	
	}

	.setting-item:first-of-type .setting-item-img{
		transform: translateX(-15px);
	}

	.setting-item:last-of-type .setting-item-img{
		transform: translateX(15px);
	}

	.setting-item-img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.setting-item-nav{
		display: block;
		width: calc(100% - 30px);
		transform: translateX(-15px);
		order: 1;
	}

	.setting-item-nav ul{
		display: flex;
		justify-content: space-between;
		margin: 0 -15px;
	}

	.setting-item-nav ul li{
		margin: 0 15px;
	}

	.setting-item-nav ul li a{
		color: #253346;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0.38px;
		border-bottom: 3px solid transparent;
		text-decoration: none;
		padding-bottom: 5px;
	}

	.setting-item-nav ul li.active a{
		border-color: #e5132d;
	}

	.setting-item-text{
		width: calc(100% - 30px);
		transform: translateX(-15px);
		order: 2;
		margin-bottom: 0;
		margin-top: 30px;
	}

	.setting-item-title{
		display: none;
	}

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer{
	border-top: 1px solid #f4f4f4;
	padding: 50px 0;
}

.footer-block{
	display: flex;
	align-items: center;
}

.footer p,
.footer a{
	color: #253346;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.67;
	letter-spacing: 0.38px;
	margin: 0;
}

.footer a{
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.footer a:hover{
	border-color: #253346;
}

.footer-logo a{
	border-bottom: 2px solid transparent;
}

.footer-links{
	margin-left: 40px;
}

.footer-info{
	margin-left: auto;
}

/*--------------------------------------------------------------
# Footer @media
--------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
}
@media screen and (max-width:992px){
	
}	
@media screen and (max-width:768px){
	.footer-block{
		display: block;
		text-align: center;
	}

	.footer-block > div{
		margin-bottom: 30px;
	}

	.footer-block > div:last-of-type{
		margin-bottom: 0;
	}

	.footer-links{
		margin-left: 0;
	}
}
@media screen and (max-width:576px){
	.footer{
		padding: 35px 0;
	}

	.footer-block > div{
		margin-bottom: 25px;
	}

	.footer p, .footer a{
		font-size: 11px;
		line-height: 1.82;
		letter-spacing: 0.28px;
	}
}