:root {
	--text: #333333;
	--highlight: #53c3e5;
	--hover: #0088c1;
	--alt: #47c088;
	
	--light: #f5f5f5;
	--transition: all .2s ease;
	--margin: 20px;
	--font-text: 'Montserrat', Arial, serif;	
	--boxshadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.1);

}
body {
	font-family: var(--font-text);
	font-size: 13px;
	line-height: 18px;
	color: var(--text);
	margin: 0 0;
	padding: 0px 0 0 0px;
	background-color: #FFFFFF;
}
@media (max-width: 1024px) {
	body {
		/*
		text-align: justify;
		*/
	}
}
body.blocked {
	overflow: hidden !important;
}

*, ::after, ::before {
    box-sizing: border-box;
}
a {
	color: var(--alt);
}
@media (min-width:1024px) {
	.hide-desktop {
		display: none !important;
	}
}
@media (max-width: 1024px) {
	.hide-mobile {
		display: none !important;
	}
}
img {
	max-width: 100%;
}
/* Default styles */
a { text-decoration: none; color: var(--alt); }
a:hover { text-decoration: none; }
h1 {
	line-height: 1.2em;
}
h2 {
	font-size: 16px;
	line-height: 24px;
}
h4 {
    font-size: 16px;
    margin: .5em 0 0.5em
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.alert {
    font-size: 20px;
    font-weight: 600;
    padding: 35px;
}
.fluid,
.container {
	position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin-right:-15px;
	margin-left:-15px
}
.container {
	padding-left: 30px;
	padding-right: 30px;
}
.row.center {
	align-items: center;
	
}
.col {
	flex: 0 0 auto; padding: 0 15px;
}
.col-2 {
	flex: 0 0 16.666667%; max-width: 16.666667%; padding: 0 15px;
}
.col-3 {
	flex: 0 0 25%; max-width: 20%; padding: 0 15px;
}
.col-4 {
	flex: 0 0 33.333334%; max-width: 33.333334%; padding: 0 15px;
}
.col-5 {
	flex: 0 0 41.666667%; max-width:41.666667%; padding: 0 15px;
}
.col-6 {
	flex: 0 0 50%; max-width: 50%; padding: 0 15px;
}
.col-7 {
	flex: 0 0 58.333334%; max-width: 58.333334%; padding: 0 15px;
}
.col-8 {
	flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px;
}
.col-9 {
	flex: 0 0 75%; max-width: 75%; padding: 0 15px;
}
.col-12 {
	flex: 0 0 100%; max-width: 100%; padding: 0 15px;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pb-5 {
	padding-bottom: 25px;
}
.p-3 {
	padding: 15px;
}
.p-5 {
	padding: 25px;
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container-lg, .container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.container-lg, .container {
		max-width: 1160px;
	}
}
@media (min-width: 1400px) {
	.container-lg, .container {
		max-width: 1320px;
	}
}

header.header {
	padding-left: 15px;
	padding-right: 15px;
}
header.header .container {
    border-top: 5px var(--highlight) solid;
    padding: 15px 15px;
    margin: 0 auto;
    width: calc(100% - 30px);
}
header.header .logo {
	width: 265px;
	display: block;
	max-width: 60%;
}
.header .menu-call {
	position: absolute;
	top: 25px;
	right: 25px;	
	padding: 5px;
	height: 48px;
	border: 3px var(--highlight) solid;
}
.header .menu-call svg {
	width: 32px;
	height: 32px;
	fill: var(--hover);
}
svg {
	max-width: 100%;
}
.header .links {
	display: none;
}
.main-nav {
	display: none;
}
.main-nav.on {
    display: block;
    position: absolute;
    z-index: 990;
    background: var(--highlight);
    top: 110px;
    border-top: 1px #ddd solid;
    width: 100%;
    height: calc(100% - 110px);
    text-align: right;
}
.main-nav.on ul {
	list-style: none;
	padding: 30px 10px;
	font-size: 18px;
	overflow: hidden;
}
.main-nav.on ul li {
    padding: 15px 0;
    border-bottom: 1px rgba(255,255,255,.2) solid;
    max-width: 80%;
    margin: 0 0 0 auto;
	transition: all .25s ease;
	opacity: 0;
	position: relative;
	transform: translateX(-50px);
}
.main-nav ul li:nth-of-type(1) { transition-delay: .2s; }
.main-nav ul li:nth-of-type(2) { transition-delay: .4s; }
.main-nav ul li:nth-of-type(3) { transition-delay: .6s; }
.main-nav ul li:nth-of-type(4) { transition-delay: .8s; }
.main-nav ul li:nth-of-type(5) { transition-delay: 1s; }
.main-nav ul li:nth-of-type(6) { transition-delay: 1.2s; }
.main-nav ul li:nth-of-type(7) { transition-delay: 1.4s; }
.main-nav ul li:nth-of-type(8) { transition-delay: 1.6s; }

.main-nav.on ul li:nth-of-type(1) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(2) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(3) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(4) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(5) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(6) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(7) { opacity: 1; transform: translateX(0px); }
.main-nav.on ul li:nth-of-type(8) { opacity: 1; transform: translateX(0px); }
.main-nav ul li a {
	text-transform: uppercase;
	color: #FFF;
	font-weight: 600;
	display: block;
	padding: 5px;
}
.mobile-bar {
	display: none;
}

#cookieinfo {
	font-size: 12px;
	position: fixed;
	bottom: 20px;
	left: 0px;
	max-width: 75%;
	padding: 20px;
	z-index: 999;
	background-color: var(--light);
	line-height: 15px;
}
#cookieinfo a:last-of-type {
	background-color: var(--hover);
	display:inline-block;
	padding: 5px 10px;
	color: #ffffff;
}
.slider-wrap, .slider, .slider .item {
	height: calc(100vh - 250px);
	max-height: 600px;
	min-height: 300px;
}
.slider-wrap .item {
	position: relative;
}
.slider-wrap .item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.slider-wrap .item .text {
	position: absolute;
	bottom: 5px;
	right: 25px;
	padding: 25px 25px 25px;
	background-color: rgba(0 0 0 / 60%);
	min-width: 200px;
	max-width: 75%;
	color: #FFFFFF;
	text-align: left;
}
.slider-wrap .item .text p,
.slider-wrap .item .text div {
	font-size: 11px;
	font-weight: 300;
	line-height: 16px;
	color: rgba(255 255 255 / 70%);
	letter-spacing: .5px;
}
.slider-wrap .item .text h1,
.slider-wrap .item .text h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 0 0 10px;
}


.btn, 
.slider-wrap .item .text a.btn {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	padding: 15px 25px;
	color: var(--highlight);
	border-top: 2px var(--highlight) solid;
	border-left: 2px var(--highlight) solid;
	border-right: 2px var(--hover) solid;
	border-bottom: 2px var(--hover) solid;
	transition: all .25s ease;
}
.btn:hover,
.slider-wrap .item .text a.btn:hover {
	border-top-color: var(--hover);
	border-left-color: var(--hover);
	border-right-color: var(--highlight);
	border-bottom-color: var(--highlight);
	color: var(--hover);
	box-shadow: 5px 0px 5px rgba(0,0,0,.1);
	text-shadow: 0px 2px 0px rgba(0,0,0,.2);
	border-radius: 0 15px 0 15px;
}
.slider-wrap a.btn + a.btn {
	margin-top: 8px;
}
.btn:before {
	
}



.text-header {
	text-align: center;
	margin: 0 0;
	padding: 35px 0 20px 0;
}
.map-wrap .text-header {
	padding-bottom: 30px;
}
.text-header h1, .text-header h2 {
    font-size: 24px;
    line-height: 30px;
    color: var(--alt);
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 5px;
    letter-spacing: -.5px;
}
.text-header h3 {
	font-size: 14px;
	line-height: 20px;
	color: var(--highlight);
	font-weight: 700;
	letter-spacing: .2px;
	margin: 0 0 5px;
}



blockquote {
    background: var(--light);
    padding: 1em 2em;
    font-size: 13px;
    line-height: 18px;
    border-left: 5px var(--highlight) solid;
    margin: 1em 0px;
}



.icons {
	
}
.icons .text {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
}
.icons .flex {
	background-image: linear-gradient( #b4e9ff, #FFF );
}
.icons .flex .container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 25px 15px;
}
.icons .flex .container .item {
	flex: 0 0 48%;
	background-color: #FFF;	
	border-radius: 10px;
	box-shadow: 0px 5px 10px rgba(163,228,255,.25);
	padding: 15px;
	height: 200px;
	text-align: center;
	margin: 0 auto 10px;
}
.icons .flex .container .item img {
    width: 100%;
    height: 60px;
    object-fit: scale-down;
    margin: 15px auto 15px;
}
.icons .flex .item .text {
	display: block;
	text-align: center;
	font-weight: 600;
	color: var(--text);
	font-size: 14px;
	line-height: 18px;
}
.icons .flex .item .text em {
	font-style: normal;
	color: var(--alt);
}



.mod-37 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}



.text-wrap {
	margin: 25px 0;
	padding: 20px 0;
}
.text-wrap + .text-wrap,
.text-wrap + .gallery-cols,
.gallery-cols + .text-wrap {
    margin-top: -50px;
}

.text-wrap .frame {
	width: 400px;
	height: 350px;
	max-width: 85%;
	display: block;
	padding: 10px;
	margin: 10px auto;
	position: relative;
}
.text-wrap .frame:before {
	content: "";
	display: block;
	width: 70px;
	height: 5px;
	background-color: var(--highlight);
	position: absolute;
	top: -5px;
	left: -5px;
}
.text-wrap .frame:after {
	content: "";
	display: block;
	width: 5px;
	height: 70px;
	background-color: var(--highlight);
	position: absolute;
	top: -5px;
	left: -5px;
}
.text-wrap .content {
	padding-bottom: 15px;
}
.text-wrap img.left-img,
.text-wrap img.right-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.text-wrap .frame span:before {
	content: "";
	display: block;
	width: 70px;
	height: 5px;
	background-color: var(--hover);
	position: absolute;
	bottom: -5px;
	right: -5px;
}
.text-wrap .frame span:after {
	content: "";
	display: block;
	width: 5px;
	height: 70px;
	background-color: var(--hover);
	position: absolute;
	bottom: -5px;
	right: -5px;
}
.picture.py-3 {
	padding-top: 30px;
	padding-bottom: 30px;
}



.parallax {
    position: relative;
    background-color: #004977;
    color: #FFF;
    font-size: 16px;
    line-height: 22px;
	padding: 50px 0;
}
.parallax img.bg-pic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
	object-fit: cover;
}
.parallax .btn {
	color: #FFF;
}



.twocols {
	padding: 30px 20px;
}



.gallery-cols {
	padding-bottom: 50px;
}




.items-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.items-gallery .item {
	width: 49.5%;
	height: 140px;
	flex: 0 0 49.5%;
	margin: 0 auto 5px;	
	overflow: hidden;
}
.items-gallery .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .25s ease;
}
.items-gallery .item:hover img {
	transform: scale(1.1);
	filter: contrast(1.25);
}



.footer {
	background-color: #333333;
	color: #FFF;
	padding: 35px 20px;
	position: relative;
	overflow: hidden;
}
.footer img.logo {
    width: 300px;
    height: 100px;
    object-fit: scale-down;
    margin: 0 auto 15px;
    display: block;
}
.footer img.bg {
    width: 300px;
    height: 100px;
    object-fit: scale-down;
	transform: scale(2);
	position: absolute;
	bottom: -15px;
	right: -35%;
    margin: 0 auto 15px;
    display: block;
	z-index: 1;
	opacity: .05;
}
.footer .navi {
	position: relative;
	z-index: 5;
}
.footer .navi ul {
	color: var(--highlight);
}
.footer .navi ul li {
	margin: 3px 0;
}
.footer .navi ul a {
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
	letter-spacing: 1px;
	font-weight: 400;
	font-size: 11px;
}
.footer .navi ul li a:hover {
	color: var(--highlight);
}
.footer .contacts a {
	position: relative;
	display: block;
	padding: 5px 20px 5px 35px;
	margin: 0 auto 10px;
	width: initial;
}
.footer .contacts svg {
    fill: var(--highlight);
    width: 22px;
    height: 22px;
	transition: all .25s ease;
	position: absolute;
	top: 8px;
	left: 0;
}
.footer .contacts a span:first-of-type {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .5px;	
	font-weight: 400;
	color: var(--highlight);
}
.footer .contacts a span:last-of-type {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	display: block;
	text-transform: uppercase;
	transition: all .25s ease;
}
.footer .contacts a.phone span:last-of-type {
	font-size: 24px;
	margin-top: 4px;
}
.footer .contacts a:hover span:last-of-type {
	color: var(--hover);
}
.footer h5 {
	font-size: 17px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 35px 0 5px;
}
.subfooter {
	text-align: center;
	font-size: 11px;
	padding: 35px 0;
}
.thanks {
    background: var(--highlight);
    padding: 1em 2em;
    text-align: center;
    display: none;
}

form#contact-form-web {
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    padding: 0px 5%;
    background-color: var(--light);
}
.contactForm {
	background-color: var(--light);
	padding: 2em 1em;
}
form#contact-form-web.on {
	display: flex;
}
form#contact-form-web .close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 10px;
}
form#contact-form-web .close-btn svg {
	width: 24px;
	height: 24px;
}
.contactForm label,
form#contact-form-web label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 5px 0 2px;
}
.contactForm input, .contactForm textarea, 
form#contact-form-web input[type=text],
form#contact-form-web input[type=tel],
form#contact-form-web input[type=email],
form#contact-form-web textarea {
    width: 100%;
    display: block;
    padding: 10px;
	font-family: var(--font-text);
	height: initial;
	border: 1px #a9a9a9 solid;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 500;
}
.contactForm textarea,
form#contact-form-web textarea {
	height: 150px;
}
.contactForm .agreement,
form#contact-form-web .reg {
	font-size: 11px;
	line-height: 14px;
	font-weight: 400;
}
.ajaxInfo {
	display: none;
}


#site-preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #FFF;
}
#indicator {
  width: 100px;
  height: 100px;
  position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
  animation: spin 1s linear infinite;
}

#circle {
  fill: none;
  stroke: rgba(0,0,100,0.5);
  stroke-linecap: round;
  stroke-width: 4;
  animation: draw 3s ease-in-out infinite;
}

@keyframes draw {
  0% { stroke-dasharray: 20, 282.6;}
  50% { stroke-dasharray: 200, 282.6; }
  100% { stroke-dasharray: 20, 282.6; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



.ul-modify {
	padding: 30px 0 30px;
}
.services {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin: 25px auto;
	text-align: center;
}
.services .service {
    flex: 0 0 98%;
	margin: 0 auto 2em;
	max-width: 90%;
}
.services .service img {
	width: 250px;
	height: 150px;
	display: block;
	object-fit: cover;
	margin: 0 auto;
	box-shadow: 7px 7px var(--light);
}
.services .service .title {
	font-size: 18px;
	font-weight: 700;
	color: var(--highlight);
	margin: 1em 0 .5em;
}
.services .service .price {
	display: inline-block;
	background-color: var(--light);
	padding: .5em .75em;
	font-size: 15px;
	margin: 0 0;
}
.services .service .price strong {
	font-size: 19px;
}
.services .desc {
	margin: 1em 0;
	text-align: justify;
}
.shopForm {
	display: none;
}
.contactForm input.service {
    border: 0;
    background: transparent;
    padding: 0 0 20px;
    font-size: 16px;
    color: var(--hover);
    font-weight: 700;
}