html {
    -webkit-text-size-adjust: none;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-size: 16px;
	text-align: center;
	color: #000000;
	line-height: 1.2;
	background: #fff;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-family: 'Inter Tight', Arial, sans-serif;
	font-size: 19px;
	font-weight: normal;
	overflow: hidden;
	padding-top: 144px;
}

@supports (overflow:clip) {
	#mainWrapper {
		overflow: clip;
	}
}

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	padding: 0 6.25%;
	z-index: 100000;
	background: #fff;
	-webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	        box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	font-size: 22px;
}

#header:before {
	content: "";
	position: absolute;
	background: #236aaa;
	top: 0;
	left: -9999em;
	right: -9999em;
	height: 70px;
	z-index: -1;
}

#header .section {
	position: relative;
	max-width: 100%;
	height: 145px;
}

#header .section:before {
	content: "";
	position: absolute;
	left: 0;
	top: -17px;
	width: 0; 
	height: 0;
	border-style: solid;
	border-width: 0px 92px 89px 93px;
	border-color: transparent transparent #ffffff transparent;
	z-index: -1;
}

#header .logo {
	position: absolute;
	width: 146px;
	top: 10px;
	left: 16px;
}

#header .logo img {
	display: block;
	width: 100%;
}

#header .contacts {
	position: absolute;
	right: 0;
	top: 21px;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#header .contacts li {
	margin: 0 0 0 130px;
	padding: 0;
	list-style: none;
	font-weight: 500;
}

#header .contacts li a {
	position: relative;
	display: inline-block;
	color: #fff;
	padding-left: 2.5em;
}

#header .contacts li a:before {
	content: "";
	position: absolute;
	left: 0;
	top: -0.2727272727272727em;
	width: 1.818181818181818em;
	height: 1.818181818181818em;
	background: #fff no-repeat center;
	border-radius: 100%;
}

#header .contacts li.phone a:before {
	background-image: url(../images/phone-ico.svg);
	background-size: 1em;
}

#header .contacts li.email a:before {
	background-image: url(../images/email-ico.svg);
	background-size: 1.363636363636364em;
}

#header #navigation {
	position: absolute;
	right: 0;
	bottom: 24px;
}

#header #navigation ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#header #navigation ul li {
	position: relative;
	margin: 0 0 0 26px;
	padding: 0;
	list-style: none;
	font-weight: 600;
	text-transform: uppercase;
}

#header #navigation ul li a {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #3f4043;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#header #navigation ul li.Current a,
#header #navigation ul li.Parent a,
#header #navigation ul li:hover a {
	color: #000;
}

#header #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: -15px;
	padding: 24px 0 0;
	min-width: calc(100% + 15px);
	border-bottom: 0.2105263157894737em solid #065b99;
	border-radius: 0.2631578947368421em;
	z-index: 1;
	display: block;
	-webkit-transition: padding-top 0.3s;
	transition: padding-top 0.3s;
}

#header #navigation ul li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	background: #236aaa;
	color: #000;
}

#header #navigation ul li ul li a {
	display: block;
	padding: 0.5263157894736842em 15px;
	line-height: 1.2;
	white-space: nowrap;
	color: #fff !important;
	min-width: 100%;
	height: auto;
    font-size: 16px;
}

#header #navigation ul li ul li a {
	display: block;
	padding: 0.5263157894736842em 15px;
	line-height: 1.2;
	white-space: nowrap;
	color: #fff !important;
	min-width: 100%;
	height: auto;
}

#header #navigation ul li ul li a:before  {
	display: none;
}

#header #navigation ul li ul li:hover {
	background-color: #3171b2;
	color: #fff;
}

#header #navigation ul li ul { 
	visibility: hidden;
	opacity: 0;
	margin-left: 0;
	-webkit-transform: translateX(-2%);
	-ms-transform: translateX(-2%);
	    transform: translateX(-2%);
	-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

#header #navigation ul li:hover ul {
	visibility: visible; 
	opacity: 1;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	    transform: translateX(0%);
	-webkit-transition-delay: 0s, 0s, 0.3s;
	   transition-delay: 0s, 0s, 0.3s;
}

#header #navigation ul li.hasSub ul a:after {
	display: none
}

#header #navigation ul li.hasSub>a {
	padding-right: 0.9em;
}

#header #navigation ul li.hasSub>a:before {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.25em;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.5789473684210526em 0.3157894736842105em 0 0.3157894736842105em;
	border-color: #3f4043 transparent transparent transparent;
	pointer-events: none;
	-webkit-transition: transform 0.3s, border-color 0.3s;
	-webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
	transition: border-color 0.3s, -webkit-transform 0.3s;
	transition: transform 0.3s, border-color 0.3s;
	transition: transform 0.3s, border-color 0.3s, -webkit-transform 0.3s;
}

#header #navigation ul li.hasSub:hover>a:before {
	border-color: #000 transparent transparent transparent;
	background-position: left bottom;
	-webkit-transform: rotate(180deg);	
	-ms-transform: rotate(180deg);	
	    transform: rotate(180deg);	
}

#header #navigation ul li.Current>a:before,
#header #navigation ul li.Parent>a:before {
	border-color: #000 transparent transparent transparent;
}

/* Services */

#services {
	background: #f9f7f3;
}

#services .section {
	padding-top: 37px;
	padding-bottom: 37px;
}

/* Services Slider */

.servicesSlider {
	background: #fff;
	padding: 15px;
	border-radius: 22px;
}

.servicesSlider .slides {
	margin: 0;
	padding: 0;
}

.servicesSlider .slides li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.servicesSlider .slides li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: flex-star;
	    -ms-flex-align: flex-star;
	        align-items: flex-star;
}

.servicesSlider .slides li .image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 160px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
}

.servicesSlider .slides li .image img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}

.servicesSlider .slides li a:hover .image img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.servicesSlider .slides li .desc {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-left: 18px;
	padding-top: 13px;
	padding-bottom: 17px;
	min-height: 160px;
	-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;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.servicesSlider .slides li .desc:after {
	content: "";
	position: absolute;
	left: 165px;
	bottom: 20px;
	width: 27px;
	height: 27px;
	border-radius: 100%;
	background: #000 url(../images/arrow-right.svg) no-repeat center;
}

.servicesSlider .slides li .desc .title {
	font-size: 22px;
	font-weight: 600;
	color: #000;
	line-height: 1.2;
	padding-bottom: 15px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	word-break: break-word;
	max-height: 3.6em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
 	 -webkit-box-orient: vertical;  
  	overflow: hidden;
}

.servicesSlider .slides li a .desc .linkBtn {
	margin: 0;
}

.servicesSlider .slides li a:hover .desc .linkBtn {
	background-color: #3b79ba;
	margin: 15px 0 0;
}

.servicesSlider .slides .owl-nav {
	position: absolute;
	left: -77px;
	right: -77px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	pointer-events: none;
}

.servicesSlider .slides .owl-nav button {
	margin: 0;
	padding: 0;
	width: 46px;
	height: 46px;
	border-radius: 100%;
	background: url(../images/slider-arrow.svg) no-repeat center;
	border: 1px solid #2c70ad;
	outline: none;
	pointer-events: auto;
}

.servicesSlider .slides .owl-nav button span {
	display: none;
}

.servicesSlider .slides .owl-nav button.owl-prev {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg)
}

/* Slider */

#slider {
	background: #000;
}

#slider .slides {
	margin: 0;
	padding: 0;
}

#slider .slides li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

#slider .slides img {
	display: block;
	width: 100%;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,1)));
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,1) 100%);
    mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.5)), to(rgba(0,0,0,1)));
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,1) 100%);
}

#slider .slides li .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

#slider .slides li .overlay .section {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#slider .slides li .overlay .text {
	max-width: 19.82758620689655em;
	color: #fff;
	font-size: 29px;
	font-weight: 500;
}

#slider .slides li .overlay .text .title {
	font-size: 2.862068965517241em; /* 83px */
	font-weight: 600;
	margin-bottom: 0.3012048192771084em;
}

/* Banner */

#banner img {
	display: block;
	width: 100%;
}

/* Content */

#content>.section {
	padding-top: 40px;
	padding-bottom: 180px;
}

/* Footer */

#footer {
	background: #fff;
	border-radius: 50px 50px 0 0;
	margin-top: -50px;
	padding-top: 1px;
}

#footer .top {
	-webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.13);
	        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.13);
	border-radius: 50px;
	background: #f9f7f3;
	margin-top: -85px;
	margin-bottom: 40px;
	padding: 19px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#footer .top .logo {
	width: 160px;
}

#footer .top .options {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: 500;
}

#footer .top .options .reviews {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #000;
	margin-right: 46px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

#footer .top .options .reviews img {
	display: block;
	height: 28px;
	margin-right: 12px;
}

#footer .top .options .reviews:hover {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

#footer .top .options .getQuote {
	position: relative;
	font-size: 25px;
	color: #000;
	padding-right: 63px;
}

#footer .top .options .getQuote:after {
	position: absolute;
	content: "";
	width: 38px;
	height: 38px;
	background: #236aaa url(../images/arrow-right.svg) no-repeat center;
	right: 0;
	top: -3px;
	border-radius: 100%;
	background-size: 16px;
	-webkit-transform: rotate(-40deg);
	    -ms-transform: rotate(-40deg);
	        transform: rotate(-40deg);
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}

#footer .top .options .getQuote:hover:after {
	-webkit-transform: rotate(0);
	    -ms-transform: rotate(0);
	        transform: rotate(0);
}

#footer .bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#footer .bottom .title {
	font-size: 25px;
	font-weight: 500;
}

#footer .bottom .info {
	width: 390px;
	color: #454545;
	margin-right: 46px;
}

#footer .bottom .info .licenses {
	margin: 0;
	padding: 0;
}

#footer .bottom .info .licenses li {
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

#footer .bottom .info .licenses li a {
	display: inline-block;
	font-weight: 500;
	color: #000;
	border: 1px solid #6597c4;
	padding: 8px 12px;
	border-radius: 50px;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s; 
}

#footer .bottom .info .licenses li a:hover {
	color: #fff;
	background: #6597c4;
}

#footer .bottom .contact ul {
	margin: 0;
	padding: 0;
}

#footer .bottom .contact ul li {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

#footer .bottom .contact ul li a {
	display: inline-block;
	color: #454545;
	padding-left: 33px;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#footer .bottom .contact ul li.phone a {
	background: url(../images/phone-ico.svg) no-repeat 0 2px;
	background-size: 20px;
}

#footer .bottom .contact ul li.email a {
	background: url(../images/email-ico.svg) no-repeat 0 7px;
	background-size: 23px;
}

#footer .bottom .contact ul li a:hover {
	color: #000;
}

#footer .bottom .hours {
	margin-left: auto;
	margin-right: 140px;
}

#footer .bottom .hours ul {
	margin: 0;
	padding: 0;
}

#footer .bottom .hours ul li {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

#footer .bottom .hours ul li span {
	font-weight: 500;
}

#footer .copyright {
	text-align: center;
	color: #454545;
	border-top: 1px solid #4c4c4c;
	padding: 16px 0;
	margin-top: 50px;
}

#footer .copyright>:last-child {
	margin: 0;
}

/* Mobile Navigation */

#menuBtn {
	display: none;
	position: absolute;
	width: 30px;
	outline: none;
	z-index: 10;
	top: 10px;
	left: -10px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#menuBtn span {
	display: block;
	height: 4px;
	margin-bottom: 4px;
	background: #236aaa;
	border-radius: 10px;
}

.mm-hasnavbar-top-1 .mm-panels, .mm-navbar-top-2 {
	background: #236aaa;
}

.mm-menu {
	text-align: left;
}

.mm-menu ul {
	color: #000;
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu ul li.Current,
.mm-menu ul li.Parent,
.mm-menu ul li.active {
	background: #005997;
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next), .mm-menu .mm-listview>li.mm-selected>span {
	background: none;
}

.mm-menu ul li svg {
	display: none;
}

.mm-menu *:after, .mm-menu *:before {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.mm-navbar {
	background: #000 !important;
	font-size: 16px;
}

.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
	color: #fff;
}

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
	border-color: #fff;
}

.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a, .mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span, .mm-menu.mm-multiline .mm-listview>li>a, .mm-menu.mm-multiline .mm-listview>li>span {
	color: #fff;
	font-size: 16px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.mm-listview .mm-next:before {
	background: #fff;
}

.mm-menu .mm-listview>li .mm-arrow:after, .mm-menu .mm-listview>li .mm-next:after {
	border-color: #fff;
}

.mm-menu em.mm-counter {
	color: #fff;
	font-size: 16px;
}

.mm-listview>li:not(.mm-divider):after {
	background-color: #fff;
}

.mm-menu .mm-listview img {
	display: block;
	width: 100%;
}

.mm-menu .mm-listview p span {
	display: block;
}

/* Styling MMenu */

.mm-menu .mm-listview img {
	float: left;
	width: 95px;
}

.mm-menu .mm-listview p {
	position: relative;
	margin: 0 0 0 110px;
	font-size: 12px;
	min-height: 103px;
	padding-bottom: 30px;
}

.mm-menu .mm-listview p:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 8px;
	border-color: transparent transparent transparent #f03f28;
}

.mm-menu .mm-listview p span {
	display: block;
	font-size: 14px;
	font-weight: bold;
}

#ContactForm {
	max-width: 400px;
}

#ContactForm .form-group{
	margin-left: 0;
	margin-right: 0;
}
label.error {
    color: red;
    font-size: 12px;
}
