* {
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
html,
body {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: "Roboto", sans-serif!important;
	display: flex;
	flex-direction: column;
}
body > main {flex-grow: 1;}
html .formcraft-css .fc-form.label-block .field-cover>span {top: -5px!important;} 
html .formcraft-css .fc-form .form-element .slider-cover .range-max {width: 53px!important;}
html .formcraft-css .fc-form .form-element .submit-cover.animate-false .submit-button {border-radius: 5px!important;}
html .formcraft-css .fc-form .form-element .form-element-html {padding: 10px 45px 15px 15px;}
html .formcraft-css .fc-form .form-element .slider-cover .range-max, html .formcraft-css .fc-form .form-element .slider-cover .range-min {top: -25px!important;}
html .formcraft-css .fc-form {border-radius: 15px!important;}
.formcraft-css .fc-form.fc-form-1 .form-element .field-cover select {border-radius: 10px!important;}
html .formcraft-css .fc-form .form-element .slider-cover .range-min {left: 1px!important;}
 html .formcraft-css .fc-form .form-element .slider-cover .ui-slider-handle-nos:after, html .formcraft-css .fc-form .form-element .slider-cover .ui-slider-handle-nos:before {content: none!important;}
html .formcraft-css .fc-form .form-element .slider-cover .ui-slider-handle-nos {top: 26px!important;}
html .formcraft-css .fc-form.label-block .oneLineText-cover.field-cover>div {margin-top: -15px;}
html .formcraft-css .fc-form.label-block .oneLineText-cover.field-cover>span {top: -20px!important;}
.final-success {
	background: rgba(0, 0, 0, 0.7);
    color: #f68933;
    padding: 10px 40px;
    border-radius: 40px;
    display: flex;
    margin: 15px;
    text-align: center;
}

.modal-content {padding: 25px;}
.modal-header {
	border: none;
	text-align: center;
	color: #4B515D;
}
.modal-header .close {
	background-color: #33b5e5;
	position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}
.modal-body {padding: 1rem 0;}
.modal-body.form form {padding: 0;}
.modal-body.form form .form-control {
	flex: 1;
	margin: 5px;
}
.modal-body.form form button {
	flex: 1 0 auto;
	margin: 5px;
}
.modal-body.form form button:hover {background: #33b5e5!important;}
.modal-heder-title {    
	font-size: 28px;
    font-weight: 700;
}
.modal-heder-subtitle {
	font-size: 18px;
    font-weight: 400;
	    padding-top: 15px;
}
.modal-footer {justify-content: center;}
.modal-footer a {color: #33b5e5;}
#privacyPolicy {z-index: 2000;}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
}

.container {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
	    overflow: hidden;
}
.arrow {
        margin: 30px 0 50px;
    display: flex;
    justify-content: center;
}
.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #33b5e5;
    border-right: 5px solid #33b5e5;
    transform: rotate(45deg);
    margin: -16px;
    animation: arrow 2s infinite;
}
.arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes arrow {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}
.header-burger {display: none;}
a.burger {
    width: 50px;
    height: 50px;
    position: relative;
    border: 3px solid #33b5e5;
    transition: all 0.5s ease-in-out;
}
a.burger:hover {border: 3px solid #33b5e5;}
a.burger:hover span,
a.burger:hover span:before,
a.burger:hover span:after {
/*  filter: brightness(0.7); */
    background: #33b5e5;
/* 	background: #f68933; */
}
a.burger span,
a.burger span:before,
a.burger span:after {
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    transition: all 0.5s ease-in-out;
}
a.burger span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
a.burger span:before {
    content: "";
    top: -10px;
}
a.burger span:after {
    content: "";
    top: 10px;
}
a.burger.active span {
    background: transparent;
}
a.burger.active span:before {
    top: 0;
    transform: rotate(945deg);
}
a.burger.active span:after {
    top: 0;
    transform: rotate(-945deg);
}
.header {
/*     background: rgba(0, 0, 0, 0.7); */
	background: #263238;
	position: fixed;
    width: 100%;
    color: #fff;
            z-index: 3;
        padding: 15px 0;
	    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}


.header a {
    color: #fff;
    font-weight: 400;
}
.header-logo, .footer-logo {max-width: 250px;}

.header-title, .footer-title {
    text-transform: uppercase;
    align-self: center;
    font-size: 28px;
    font-weight: bold;
    padding: 0px 15px;
    line-height: 28px;
}
.header-title .line-1, .footer-title .line-1 {color: #f68933;}
.header-title .line-2, .footer-title .line-2 {
	color: #0082c8;
	padding: 0px 5px;
}
.header a:hover {color: #33b5e5;}
.header-menu a {padding: 10px;}
.header-button .btn {margin: 0;}
.header-container {
    flex-direction: row;
    align-items: center;
        justify-content: space-between;
	    flex-wrap: wrap;
}
.header .tel a {font-size: 18px;}
.header-menu-container {
	flex-direction: row;
	justify-content: space-between;
}
.title {
	font-size: 38px;
	font-weight: 900;
    text-align: center;
        padding: 30px 0;
}
.subtitle {
	font-size: 24px;
	font-weight: 400;
}
.banner {
    color: #fff;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/main.webp);
	background-size: cover;
	    background-position: center;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
.banner-title {padding-top: 100px;}
.banner-title h1 {
	color: #fff;
    font-size: 38px;
    font-weight: 900;
}
.form form {
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
}
.form form .form-control {
        padding: 22px;
    margin: 15px;
}
.form form input {
	border-radius: 50px; 
	width: auto;
/*    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
*/	background: #f0f0f0;
	border: none;
    border-radius: 20px;
    transition: all 0.3s ease 0s;

}
/* html .formcraft-css .fc-form .form-element .submit-cover.animate-false .submit-button
{
	text-transform: uppercase!important;
	border-radius: 50px!important; 
	    font-weight: 400!important;
    padding: .84rem 2.14rem!important;
    font-size: .81rem!important;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12)!important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12)!important;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out!important;
	transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out!important;
}

html .formcraft-css .fc-form .form-element .submit-cover.animate-false .submit-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25)!important;
	outline: 0!important;
} */
.btn {
	background: #33b5e5!important;
	
/* 	background: #0082c8!important; */
	border-radius: 40px; 
	color: #fff;
    border: 2px solid transparent;
	margin: 15px;
	    font-size: .85rem;
    padding: 10px 30px;
}
.btn:hover {
    background: transparent!important;
    border: 2px solid #33b5e5;
/* 	border: 2px solid #0082c8; */
    color: #fff;
}
.workmap {
    color: #4B515D;
        min-height: 100vh;
background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
	justify-content: center;
    display: flex;
    flex-direction: column;
}
.workmap-container {height: 100%;}
.workmap-title {
    text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);
}
.workmap-items:hover .item {width: 15%;}
.workmap-items {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #4B515D;
}
.item-wrap {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    z-index: 2;
    padding: 20px 0;
}
.workmap-items .item {
    width: 20%;
    position: relative;
    transition: all .5s;
       height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.workmap-items .item:hover {
    width: 40%;
}
	.workmap-items .item:hover .item-text {
    top: 0;
    transform: translateY(0%);
    transition: all .5s;
}
.workmap-items .item:hover .item-title {align-self: flex-end;}
.item-number {
    position: absolute;
    top: 0;
    font-size: 200px;
        color: #bdbdbd;
    font-weight: 900;
    z-index: 1;
    text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);
	    width: 100%;
    text-align: center;
}
.workmap-items .item-title {
    font-size: 22px;
    font-weight: 700;
    align-self: flex-end;
    transition: all .5s;
}
.workmap-items .item-text {
    font-weight: 400;
    position: absolute;
        transform: translateY(100%);
    width: 400px;
    top: 100%;
} 
.workmap-link {
    text-align: center;
    padding: 30px 0;
}
.workmap-link .btn:hover {
    background: #33b5e5!important;
}
.offer-1 {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/main-2.webp);
    min-height: 100vh;
        background-size: cover;
	    background-attachment: fixed;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
        text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}

.portfolio {
    min-height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
        background-size: cover;
        text-align: center;


background-image: linear-gradient(-225deg, #FFFEFF 0%, #D7FFFE 100%);
}
.portfolio-title {
    color: #4B515D;
    margin-top: 92px;
    padding: 20px 0;
    text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);
}
.portfolio .view img {
    object-fit: cover;
        height: 300px;
    width: 100%;
}
.overlay .mask {
        opacity: .5;
        display: flex;
    flex-direction: column;
        padding: 0 15px;

    justify-content: flex-end;
}
.overlay-info {
    
        transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.overlay.view:hover .overlay-info {
    opacity: 1;
    transform: translateY(0);
}
.overlay.view:hover .portfolio-item-button {
	opacity: 0;
	visibility: hidden;
}
.overlay.view:hover .mask {
    opacity: 1
}
.overlay-text {
    font-weight: 400;
}
.portfolio-items {
    display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
    color: #fff;
}
.portfolio-items .item {
    flex: 0 0 33.333333%;
  max-width: 33.333333%;

}
.portfolio-item-title {
    position: absolute;
    z-index: 1;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
        width: 100%;
        top: 30px;
            text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}
.portfolio-item-button {
	position: absolute;
	z-index: 1;
	width: 100%;
	bottom: 0;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.portfolio-item-button .btn {
	background: transparent!important;
	    border: 2px solid #33b5e5!important;
}
.calc {
	    min-height: 100vh;
	    display: flex;
    flex-direction: column;
	background: linear-gradient(to bottom, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), linear-gradient(to bottom, rgba(0,0,0,0.02) 50%, rgba(255,255,255,0.02) 61%, rgba(0,0,0,0.02) 73%), linear-gradient(33deg, rgba(255,255,255,0.20) 0%, rgba(0,0,0,0.20) 100%);
 background-blend-mode: normal,color-burn;
}
.calc-container {
	justify-content: flex-end;
    flex: 1;
	    padding-bottom: 10px;
}
.calc-title {
	    color: #4B515D;
	text-shadow: 2px 8px 6px rgba(0,0,0,0.2), 0px -5px 35px rgba(255,255,255,0.3);
}
.calc-body {
	    width: 75%;
    margin: 0 auto;
}
.calc-body .card-body {padding: 3rem 3rem 1.5rem;}
.offer-2 {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/main-3.webp);
    min-height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
        background-size: cover;
        text-align: center;
            text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
	background-position: center;
}
.kan-kond {
    color: #fff;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5)), url(/img/main-5.webp);
    min-height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
        background-size: cover;
        text-align: center;
            text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
	background-position: center;
/* 	background-attachment: fixed; */
}
.offer-3 {
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/main-4.webp);
	    background-position: top;
    min-height: 100vh;
    justify-content: center;
    display: flex;
    flex-direction: column;
        background-size: cover;
        text-align: center;
            text-shadow: 0px 4px 3px rgba(0,0,0,0.4), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
}

.location {
	position: relative;
    display: flex;
    flex-direction: column;
    background-size: cover;
    text-align: center;
        background-image: linear-gradient(to top, #e2ebf0 0%, #cfd9df 100%);
	    color: #4B515D;
	    min-height: 90vh;
}
.location-wrapper {
	position: absolute;
	background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
	bottom: 0;
    width: 100%;
	padding: 30px 0;
}
.location .map {
    position: relative;
}
.location-info .text {
	color: #33b5e5;
    font-weight: 700;
    position: absolute;
    top: 35%;
    left: 33%;
}
.location-info-title {padding: 0;}
.location-info-text {
	padding: 15px 0;
	font-weight: 500;
}
.location-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.location-form-title {font-weight: 700;}
.location-form form {
    display: flex;
    align-items: center;
    padding: 0;
}
.location-form form .btn {flex: 0 0 auto;}
.location-form form .btn:hover {background: #33b5e5!important;}
.footer {
/*     background: #1C2331; */
	background: #263238;
	color: #fff;
    font-weight: 400;
    font-size: 18px;
    min-height: 10vh;
    align-items: center;
    display: flex;
	padding: 15px 0;
}

.footer a {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
}
.footer-tel a {border-bottom: 1px dashed #747474;}
.footer-tel a:hover {
	color: #33b5e5;
}
.footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
}
.footer-info {text-align: right;}
.form-privacy a {color: #33b5e5!important;}
.page {padding: 104px 0;}
.page__title {margin-block: 2em;}
@media (min-width: 768px) {
	.carousel-item {margin: 0;}
	.workmap-items .item {display: flex;}
	.carousel-indicators {display: none;}
	.carousel-item {width: 20%;}
}
@media (min-width: 1200px) {
	.header-menu.collapse {display: flex;}
}
@media (max-width: 1199.98px) {
	.workmap-items:hover .item {width: 10%;}
	.workmap-items .item:hover {
		width: 60%;
	}
	.header-burger {display: flex;}
	.header-menu {width: 100%;}
	.header-menu-container {
		margin-top: 15px;
		padding: 0;
	}
}
@media (max-width: 991.98px) {
	.portfolio-items .item {
		-ms-flex: 0 0 50%;
		  flex: 0 0 50%;
		  max-width: 50%;
	}
	
}
@media (max-width: 767.98px) {
	.banner {padding-top: 80px;}
	.portfolio-items .item {
		-ms-flex: 0 0 100%;
		  flex: 0 0 100%;
		  max-width: 100%;
	}
	.header-menu-container {
		flex-direction: column;
		    text-align: center;
	}
	html .formcraft-css .fc-form.label-block .field-cover>span:not(.sub-label-true) {top: -20px!important;}
	.workmap {padding-top: 90px;}
/* 	.workmap-items:hover .item, .workmap-items .item {min-width: 100%;} */
	.workmap-items .item {
/* 		width: auto; */
		min-height: 300px;
	}
	.workmap-items .item:last-child {border: none;}
	.workmap-items .item-title {font-size: 18px;}
	.workmap-items .item-text {
		transform: translateY(0%);
		width: auto;
	} 
	.workmap-items .item:hover .item-text {
		top: 100%;
	}
	.workmap-items {
		display: flex;
		flex-direction: column;
		border-bottom: none;
	}
/* 	.overlay.view .overlay-info {
		opacity: 1;
		transform: translateY(0);
	}
	.overlay.view .mask {
		opacity: 1
	} */
	.location-form-wrapper {flex-direction: column;}
	.form form {padding: 10px 0;}
	.workmap-items .item, .workmap-items:hover .item {width: 100%;}
	.carousel-indicators li {background-color: #33b5e5;}
	.carousel-indicators {margin-bottom: 0;}
	.calc-body .card-body {padding: 15px 5px;}
	.header-logo, .footer-logo {max-width: 60px;}
	.header-title {display: none;}
}
@media (max-width: 575.98px) {
	.banner-title h1 {font-size: 24px;}
	.subtitle {font-size: 20px;}
	.title {font-size: 26px;}
	.portfolio .view img {min-height: 350px;}
	.calc-body {width: 100%;}
	.form form .btn, .form form .form-control {
		margin: 5px;
		flex: 0 1 300px;
	}
	.header .tel a {font-size: 18px;}
	.offer-1, .offer-2 {padding-top: 90px;}
	.final-success {
		flex: 0 1 300px;
		margin: 5px;
	}
	#backCallModal .modal-body.form form button {flex: 0 auto;}
}
@media (max-width: 374.98px) {
	.footer-info {font-size: 15px;}
}