body {
	font-family: Roboto, Ubuntu, Commissioner, Arial;
	font-size: 16px;
	font-weight: 300;
	color: #343;
	padding: 0;
	margin: 0;
}

body * {
	outline: none;	
}

body.with-menu {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}

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

h1, h2, h3, h4, h5 {
	font-family: Montserrat;
	font-weight: 500;
	color: #143;
	text-align: center;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 35px;
}

h3 {
	font-size: 25px;
}

a {
	text-decoration: none;
	transition: 0.2s;
	color: #184;
}

a:hover {
	color: #4d7;
}

p {
	line-height: 1.5;
}

.justify {
	text-align: justify;
}

.left {
	text-align: left;
}

.right {
	text-align: left;
}

.center {
	text-align: left;
}

.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: max-content;
}


.flex { display: flex; }
.space-between { display: flex; justify-content: space-between; }
.space-evenly { display: flex; justify-content: space-evenly; }
.space-around { display: flex; justify-content: space-around; }
.vcenter { display: flex; align-items: center; }

header {
	background: rgba(20,50,0,0.4);
	color: #fff;
	font-weight: 500;
	height: 120px;
	position: fixed;
	z-index: 9999;
	width: 100vw;
	box-sizing: border-box;
	transition: 0.4s;
}

header.scroll {
	height: 95px;
	background: #fcfcfa;
	color: #554;
	box-shadow: 0 0 10px rgba(0,0,0,0.25)
}

header a:not(:hover) {
	color: inherit;
}


.header-inner {
	max-width: 1440px;
	height: 100%;
	padding: 15px 30px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.header-inner > div:not(:first-child) {
	margin-left: 30px;
}

.header-logo {
	font-weight: 600;
	text-align: center;
	font-size: 125%;
}

.header-logo img {
	height: 60px;
	display: block;
	margin: 0 auto;
	transition: 0.2s;
}

.header-logo:hover img {
	filter: brightness(1.2);
}

.header-inner .main-column {
	flex-grow: 10;
}

.header-contact {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
    margin-top: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 10px;
}

header.scroll .header-contact {
	border-color: rgba(20,50,0,0.3);
}

.header-contact .phone {
	font-size: 110%;
	font-weight: 600;
}


.header-inner .shedule, .header-inner .shedule a {
	display: flex;
	align-items: center;
}

.header-inner .shedule i {
	display: block;
	font-size: 150%;
	margin-right: 15px;
}

.header-inner .shedule p {
	margin: 0 auto;
	font-size: 90%;
	display: block;
	text-align: center;
	
}

.header-inner .shedule span {
	margin: 0 auto;
	font-size: 80%;
	display: block;
	text-align: center;
	opacity: 0.8;
}


.B_crumbBox {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	font-weight: 300;
	color: #ddd;
	font-size: 70%;
	align-items: center;

}

.B_crumbBox li {
	margin: 0 10px;
	display: block;
	font-weight: 400;
	color: #eee;
	font-size: 140%;
}

header.scroll .B_crumbBox {
	display: none;
}



.menu-toggler, .menu-close, .menu-toggler.visible, .menu-close.visible {
	display: none;
}

.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	padding: 0 20px 10px 20px;
}



.menu li.has-childs {
	position: relative;	
}

.menu > li.has-childs:after {
	display: inline-block;
    content: "\f078";
    /* transform: rotate(90deg); */
    font-size: 70%;
    /* padding-left: 0.3rem; */
    margin-left: 6px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


.sub-menu {
	padding: 10px 0;
	background: rgba(255,255,255,1);
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	border-radius: 5px;
	color: #222;
	opacity: 0;
	transform: scale(0);
	z-index: -1;
	position: absolute;
	list-style: none;
	top: 100%;
	transition: opacity 0.2s;
	width: max-content;
	box-sizing: border-box;
}

.sub-menu li {
	padding: 5px 30px 5px 20px;
	font-weight: 400;
}

.sub-menu .has-childs:hover, .sub-menu a:hover {
	color: #184;
}

.has-childs:hover > .sub-menu {
	transform: none;
	opacity: 1;
	z-index: 1;
}

.sub-menu .has-childs .sub-menu {
	top: -10px;
	left: 100%;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	transition: 0;
}

.has-childs .has-childs:after {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
    content: "\f054";
    font-size: 70%;
    margin-left: 6px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
	transition: 0.2s;
}

.has-childs .has-childs:hover:after {
	color: #4d7;
}


.header-social {
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 15px;
}

.header-social i {
	font-size: 150%
}

.header-social a:not(:first-child) {
	margin-left: 10px;
}


.button-link {
	display: flex;
	align-items:center;
	justify-content: center;
	padding: 10px 20px;
	box-sizing: border-box;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	background: transparent;
	border: 2px solid #184;
	text-decoration: none;
	font-family: "Nunito Sans";
	font-weight: 600;
	font-size: inherit;
	line-height: 1;
	color: inherit;
	width: max-content;
	transition: 0.2s;
	cursor: pointer;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.button-link:hover {
	background: #4d7;
	border-color: #4d7;
	color: #22211D;
}


header .button-link {
	background: #184;
}

header.scroll .button-link {
	background: transparent;
}

header .button-link:hover {
	color: inherit;
	background: none;
}

header.scroll .button-link:hover {
	color: #4d7;
}



.first-screen {
	position: relative;
	height: 800px;
	max-height: 80vw;
	z-index: 10;
	color: #fff;
	

}

.first-screen.other {
	height: 500px;
}

.first-screen.other h1.height-122 { height: 200px; }


.first-screen.contact {
	height: 550px;
}



.first-screen .background-image, .first-screen-content, .first-screen .overlay {
	width: 100%;
	height: 100%;
	z-index: 11;
}

.first-screen-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 50px 250px 50px;
	box-sizing: border-box;
	z-index: 20;
	max-width: 1440px;
	margin: 0 auto;
}

.first-screen.other .first-screen-content {
	padding: 120px 50px 0 50px;
}
	

.first-screen-content * {
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,0.8);
	text-transform: uppercase;
	color: inherit;
	transition: 1s;
}

.first-screen h1 {
	height: 0px;
	transform: scale(1);
	overflow: hidden;
}

.first-screen h1.height-122 { height: 122px; }
.first-screen h1.scale-1 { transform: scale(1); }

.first-screen h2 { opacity: 0;}
.first-screen h2.opacity-1 { opacity: 1; }

.first-screen .button-link {
	background: #184;
	transform: translateY(300px);
	transition: 0.4s;
	margin: 20px auto;
	text-shadow: none;
}

.first-screen .button-link:hover {
	color: inherit;
	background: none;
}

.first-screen .button-link.visible {
	transform: scale(1.3);
}

.background-container {
	overflow: hidden;
	position: relative;
}

.background-container:hover .background-image {
	transform: scale(1.1);
}

.tile:hover .background-container .background-image {
	transform: scale(1.05);
}

.tile:hover .background-container:hover .background-image {
	transform: scale(1.1);
}

.background-image, .overlay {
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.4s;
	z-index: 1;
}

.first-screen .overlay {
	background: rgba(100,50,0,0.3);
}


.second-screen {
	margin-top: -200px;
	background: #fff;
	box-shadow: 0 0px 35px rgba(0,0,0,0.1);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-radius: 8px;
	position: relative;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	z-index: 10;
}

.first-screen.contact + .second-screen {
	margin-top: -250px;
}

.grass-border {
	position: absolute;
	width: calc(100% - 16px);
	height: 35px;
	top: 0px;
	left: 8px;
	opacity: 0;
	background-image: url(/img/grass.svg);
	background-image: url(/img/round-trees.png);
	background-image: url(/img/real-estate.png);
	background-image: url(/img/border-icons-35.png);
	background-size: auto 35px;
	background-repeat: repeat;
	background-color: transparent;
	transition: 1s;
}

.grass-border.scroll {
	top: -35px;
	opacity: 1;
}

.cards {
	/*display: flex;
	justify-content: space-between;
	align-items: stretch;*/
	padding: 30px 20px;
	box-sizing: border-box;
}

.categories .cards {
	padding: 0 50px;
}

.categories .card .background-container {
	width: 100%;
	height: 250px;
	transition: 0.2s;
}

.categories .card:hover .background-container .background-image {
	transform: scale(1.1);
}

.categories .owl-theme .owl-nav {
	top: 30%;
}

.categories .owl-theme .owl-dots {
	bottom: -75px;
	position: relative;
}


.categories.container {
	margin-bottom: 100px;
}

.cards .card:not(:first-child) {
	border-left: 1px solid rgba(10,50,10,0.1);
}

.cards .owl-item:not(:first-child) .card {
	border-left: 1px solid rgba(10,50,10,0.1);
}

.cards .card {
	padding: 0 30px;
	display: block;
	box-sizing: border-box;
	/*width: 25%;*/
}

.cards video {
	width: 150px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	filter: hue-rotate(290deg);
}

.cards h3 {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-weight: 300;
	color: #0b3d2c;
}

.cards p {
	text-align: center;
}

.container {
	max-width: 1500px;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 75px auto;
}

.container-tight {
	max-width: 1000px;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 75px auto;
}

.container-fit {
	max-width: 100%;
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	margin: 75px auto;
}

*.no-padding {
	padding: 0;
}

*.no-margin {
	margin: 0;
}

.green {
	background: #184;
	color: #fff;
	padding: 50px;
	position: relative;
}

.green > div {
	margin-top: 0;
	margin-bottom: 0;
}

.green ul.checklist li:not(:hover):before {
	color: #fff;
}

.green h2 {
	color: #fff;
	font-weight: 100;
}

.green.visible .overlay-pic-right,
.green.visible .overlay-pic-left {
	opacity: 0.25;
}


.first-screen.counters {
	position: relative;
	height: 500px;
	max-height: initial;
}


.counters h1 {
	font-weight: 100;
}
.counters.visible h1 {
	height: 90px;
}

.first-screen.counters .overlay {
	background: rgba(0,50,0,0.5);
	transition: 1s;
}

.first-screen.counters.visible .overlay {
	background: rgba(0,50,0,0.75);
}

.counters .first-screen-content {
	padding: 100px 50px;
}

.counter {
	width: 33%;
	padding: 0 30px;
	cursor: pointer;
}

.counter:not(:first-child) {
	border-left: 1px solid rgba(255,255,255,0.5);
}

.counter:hover {
	background: rgba(255,255,255,0.05);
}

.counter-number {
	font-size: 75px;
	font-weight: 600;
}

.counter p {
	text-transform: none;
}

.overlay-pic-right,
.overlay-pic-left {
	position: absolute;
	top: 25%;
	width: 10%;
	height: 50%;
	background-repeat: no-repeat;
	background-image:url(/img/plants.svg);
	background-position: center;
	background-size: contain;
	z-index: 12;
	opacity: 0;
	filter: brightness(10);
	transition: 4s;
}

.overlay-pic-right {
	right: 10%;
}

.overlay-pic-left {
	left: 10%;
	transform: scale(-1,1);
}

.counters.visible .overlay-pic-right,
.counters.visible .overlay-pic-left {
	opacity: 0.5;
}


ul { padding-left: 20px; }

ul.checklist {
	list-style: none;
	padding-left: 0;
}

ul.checklist li {
	padding-left: 1.5em;
	cursor: pointer;
	position: relative;
	margin-bottom: 1em;
	line-height: 1.3em;
	transform: translateY(200px);
	opacity: 0;
	transition: 1s;
}

ul.checklist li.visible {
	opacity: 1;
	transform: none;
}

ul.checklist li:before {
	position: absolute;
	content: '\f058';
	font-size: 1em;
	line-height: 1.65em;
	left: 0;
	transition: .5s;
	color: #184;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

ul.checklist li:hover:before {
	color: #4d7;
}

ul.big {
	font-size: 20px;
}

.services {
	background: #f5f5eb;
	width: 100%;
	margin: 0;
	padding: 50px 0;
	box-sizing: border-box;
}

.services > div {
	margin-top: 0;
	margin-bottom: 0;
}

.services + div {
	margin-top: 0;
}

.tiles {
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
	flex-wrap: wrap;
}

.tile {
	display: block;
	width: 18%;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	cursor: pointer;
	margin-bottom: 30px;
	background: transparent;
	transition: 0.5s;
	opacity: 0;
}

.tile.visible {
	opacity: 1;
}

.tile:hover {
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	background: #fff;
}

.tile .background-container {
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	width: 100%;
	height: 250px;
	transition: 0.2s;
}

.tile:hover .background-container {
	border-bottom-right-radius: 0;
}

.tile-content {
	padding: 0 20px 20px 20px;
}

.tile-content p {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-weight: 500;
}

.tile-content span {
	display: block;
	color: #686;
	font-weight: 300;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


.works {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}

.work {
	width: 25%;
	margin: 0;
	padding: 0;
	position: relative;
	transition: 0.5s;
	opacity: 0;
}

.work.visible {
	opacity: 1;
}


.work .background-container {
	width: 100%;
	height: 250px;
	z-index: 10;
}

.work:hover .background-container .background-image {
	transform: scale(1.1);
}

.work-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,25,0,0.6);
	z-index: 20;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.5s;
	cursor: pointer;
	font-size: 120%;
	padding: 20px;
	box-sizing: border-box;
}

.work-content p {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-weight: 500;
	transform: translateY(200px) scale(0);
	opacity: 0;
	transition: 0.25s;
}

.work-content span {
	display: block;
	font-weight: 300;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	transform: translateY(200px) scale(0);
	opacity: 0;
	transition: 0.25s;
}

.work:hover .work-content, .work-content:hover {
	opacity: 1;
	color: #fff;
}

.work-content:hover p,
.work-content:hover span {
	opacity: 1;
	transform: none;
}


.articles {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


.article {
	width: 48%;
	display: flex;
	border-bottom: 1px solid rgba(10,50,10,0.1);
	padding-top: 25px;
	padding-bottom: 25px;
}

.article .background-container {
	width: 250px;
	height: 250px;
	transition: 0.2s;
	margin-right: 50px;
}

.article:hover .background-container .background-image {
	transform: scale(1.1);
}

.article h3 {
	text-align: left;
}



.slider-and-text {
	padding-bottom: 70px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(10,50,10,0.1)
}

.slider.owl-carousel .owl-item img {
	width: 512px;
	max-width: 100%;
}

.slider-and-text .slider.owl-carousel {
	width: 512px;
	padding: 0 50px;
	margin-left: -50px;
	margin-right: 30px;
}

.slider-and-text .slider.owl-theme .owl-nav {
	top: 35%;
}

.slider-and-text .slider, .slider-and-text .slider-text {
	order: 1;
}

.slider-and-text:nth-of-type(2n) .slider {
	order: 10;
	margin-right: -50px;
	margin-left: 30px;
}

.slider-adt-text .owl-theme .owl-dots {
	position: absolute;
}

.slider-and-text .slider-text {
	max-width: calc(100% - 682px);
}

.slider.owl-theme .owl-dots {
	padding-top: 20px;
	padding-bottom: 20px;
}


.slider.owl-carousel {
	padding: 0 50px;
	box-sizing: border-box;
}

.slider-work.owl-theme .owl-nav {
	width: 100%;
	left: 0;
	top: 35%;
}

.contact-box {
	padding: 30px;
	box-sizing: border-box;
	font-size: 130%;
}

.contact-box i {
	font-size: 150%;
	margin-right: 25px;
}


.about {
	padding: 30px 50px 50px 50px;
	box-sizing: border-box;
}

.table-container {
	border: 1px solid #184;
	border-top: 20px solid #184;
	border-bottom: 20px solid #184;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.table {
	border-spacing: 0;
	border-collapse: collapse;
}

.table td {
	/*border: 1px solid #699;*/
	padding: 10px 20px;
}

.table thead tr {
	border-bottom: 1px solid rgba(10,50,10,0.1);
}

.table thead th {
	text-align: left;
	padding:  10px 20px;
	background: #def;
	background: #f3fbf5;
}


.table thead th:first-child {
}

.table tbody tr {
	background: #f3fbf5;
	border-bottom: 1px solid rgba(10,50,10,0.1);
}

.table tbody tr:nth-child(2n+1) {
	background: #fff;
}

.table tbody tr:last-child {
	border-bottom: none;
}


.table tbody tr:hover, .table tbody tr:nth-child(2n+1):hover {
	background: #f3fff5;
}

.table tbody td:last-child {
	text-align: right;
}













.footer {
  position: relative;
  width: 100%;
  background: #3586ff;
  background: #1c8844;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  box-sizing: border-box;
}

.footer a:not(:hover) {
	color: #fff;
}

.footer .menu-item:not(:last-child) {
	margin-right: 30px;
}






.owl-theme .owl-nav {
	margin: 0;
	position: absolute;
	left: -1.875rem;
	left: 2.5%;
	top: calc(50% - 1.875rem);
	width: calc(100% + 3.75rem);
	width: 95%;
	z-index: 200;
	display: flex;
	justify-content: space-between;
}

.owl-theme .owl-dots {
	/*position: absolute;*/
	width: 100%;
	left: 0;
	bottom: -2.5rem;
}

.owl-theme .owl-dots .owl-dot span {
	display: none;
}

.owl-theme .owl-dots .owl-dot {
	border-radius: 1px;
	border: 1px solid #184;
	background: #FFFFFF;
	transition: 0.2s;
	width: 0.9375rem;
	height: 0.9375rem;
	box-sizing: border-box;
	border-top-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.owl-theme .owl-dots .owl-dot:not(:last-child) {
	margin-right: 0.5469rem;
}

.owl-theme .owl-dots .owl-dot.active {
	background: #184;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 1px solid #184;
	border: none;
	box-shadow: 0px 0.3125rem 1.5625rem rgba(0, 0, 0, 0.08);
	box-shadow: none;
	border-radius: 2px;
	box-sizing: border-box;
	font-size: 0;
	color: transparent;
	background: transparent;
	/*background-image: url(/assets/img/icons/shape-left.svg);
	background-position: center;
	background-size: 0.7777rem;
	background-repeat: no-repeat;*/
	font-size: 1.5rem;
	line-height: 1;
	color: #184;
	transition: 0.2s;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin: 0;
}

.owl-carousel .owl-nav button.owl-prev {
	content: "\f104";
	left: 0;
}

.owl-carousel .owl-nav button.owl-next {
	content: "\f105";
	right: 0;
}

.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
	background: none;
	color: #184;
}











.popup {
	position:fixed;
	top:0;
	left:0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.6);
	z-index: 99999998;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
}

.popup-content {
	padding: 20px;
	position: relative;
	border-radius: 4px;
	background: #fff;
	max-width: 800px;
	min-width: 330px;
	min-height: 200px;
	max-height: 95vh;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 9999;
}

.popup-content .button-link,
.popup-content input[type=text],
.popup-content input[type=phone], 
.popup-content input[type=email], 
.popup-content input[type=password] {
	height: 40px;
	min-height: 40px;
	margin-bottom: 10px;
}



.popup-content p, .popup-content h4 {
	text-align: center;
	margin-bottom: 1em;
}

.popup-close {
	font-size: 36px;
	font-weight: 500;
	color: #555;
	position: absolute;
	top: 0;
	right: 20px;
	cursor: pointer;
	z-index: 1000;
}

.popup-close:hover {
	color:#f23;
}

		@media screen and (max-width: 1199px) {
			.popup-content h4 {
				margin-bottom: 0;
			}
			
			.popup-content label {
				margin-top: .5em;
			}
			
			.popup-content button {
				margin-top: 0;
			}
			
			.popup-content .terms {
				font-size: 13px;
			}
			
			.popup-content {
				width: 600px;
			}
		}
		
        @media screen and (max-width: 767px) {
            
            .popup {
                /*padding-left: 10px;
                padding-right: 10px;*/
            }
            
			
            .popup-content h4 {
                font-size: 16px;
                margin-bottom: 0;
            }
            
            .popup-content {
                /*padding-top: 60px;*/
                width: 100%;
                max-width: 480px;
                min-width: 280px;
            }

			.popup.question .popup-content {
				padding-bottom: 60px;
			}


			.popup-content label {
				margin: .25em 0 0.1em 1em;
				font-size: 14px;
			}
			
            .popup-close {
                position: absolute;
                right: 15px;
                /*top: 30px;
                font-size: 24px;*/
                font-weight: 500;
                color: #222;
            }            
            .popup-content .container {
                padding-left: 1em;
                padding-right: 1em;
            }
            .popup-content .submit {
                width: 100%;
                padding-left: 1em;
                padding-right: 1em;
            }
                  
            .popup-content p.notes {
                font-size: 12px;   
            }
            
            .popup2 .popup-shedule {
                overflow-x: hidden;
                overflow-y: scroll;
                max-height: 300px;            
            }
        }
 
.popup-header {
	width: calc(100% + 40px);
	background: #184;
	padding: 15px;
	margin-top: -20px;
	margin-left: -20px;
	box-sizing: border-box;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	margin-bottom: 30px;
}

.popup-header h3 {
	text-align: center;
	margin-bottom: 20px;
	color: #fff;
}
	


.sk-three-bounce {
  width: 8em;
  margin: auto;
  text-align: center;
}
.sk-three-bounce .sk-child {
  width: 2em;
  height: 2em;
  background-color: #184;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
          animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce .sk-bounce-1 {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce-2 {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}




























.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("/img/wavee.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
}

.wave#wave2 {
  z-index: 999;
  filter: brightness(0.9);
  bottom: 10px;
}

.wave#wave3 {
  z-index: 998;
  filter: brightness(0.8);
  bottom: 15px;
}

.wave#wave4 {
  z-index: 997;
  filter: brightness(0.7);
  bottom: 20px;
}

.wave#wave1.visible {
  animation: animateWaves 12s linear infinite;
}

.wave#wave2.visible {
  animation: animate 15s linear infinite !important;
}

.wave#wave3.visible {
  animation: animateWaves 20s linear infinite;
}

.wave#wave4.visible {
  animation: animate 25s linear infinite;
}



@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}











@media (max-width: 767px) {
	
	/*.cards {
		overflow-x: scroll;
	}

	.cards .card {
		width: 50%;
	}*/
	
	/*.checklist.big {
		display: flex;
		overflow-x: scroll;
	}
	
	.checklist.big li {
		padding-top: 70px;
		min-width: 60vw;
	}
	
	ul.checklist.big li:before {
		position: absolute;
		content: '\f058';
		font-size: 40px;
		line-height: 1.65em;
		top: 0;
		left: calc(50% - 15px);
	}	*/
	
	body {
		overflow-x: hidden;
	}
	
	h1 {
		font-size: 35px;
		max-width: 90vw;
		margin-left: auto;
		margin-right: auto;
	}
	
	.mobile-column {
		flex-direction: column;
		max-width: 100vw;
	}
	
	.header-inner .shedule,
	.header-inner > div:last-child,
	.header-inner .menu {
		display: none;
	}
	
	.menu-toggler.visible, .menu-close.visible {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		font-size: 35px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.menu-close.visible {
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 99999999;
		color: #fff;
	}
	
	.header-inner .menu.visible {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-evenly;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 999999;
		width: 100vw;
		height: 100vh;
		background: rgba(0,0,0,0.9);
		color: #fff;
		font-size: 20px;
		text-transform: uppercase;
		margin: 0;
		box-sizing: border-box;
		padding: 0;
	}
	
	.has-childs:hover > .sub-menu, .sub-menu, .has-childs .has-childs:after, .menu > li.has-childs:after {
		display: none;
	}
	
	.header-contact {
		justify-content: flex-end;
	}
	
	
	.first-screen {
		height: initial;
		max-height: initial;
	}
	.first-screen.contact {
		height: 500px;
	}
	
	.first-screen-content {
		padding: 120px 25px 150px 25px;
	}
	
	.first-screen.other .first-screen-content {
		padding: 140px 25px 0px 25px;
	}
	
	.first-screen.contact .first-screen-content {
		padding: 140px 25px 0px 25px;
	}
	
	.first-screen.main h1 {
		font-size: 28px;
	}
	
	.first-screen h2 {
		font-size: 28px;
		margin-bottom: 50px;
	}
	
	.second-screen, .first-screen.contact + .second-screen {
		margin-top: -20px;
	}
	
	.green {
		padding: 20px 0;
	}
	
	.services .container {
		padding: 0 10px;
	}
		
	.tile {
		width: 45%;
		margin-bottom: 15px;
	}
	
	.work {
		width: 50%;
	}
	
	.work .work-content, .work-content {
		opacity: 1;
		color: #fff;
	}
	
	.work-content p,
	.work-content span {
		opacity: 1;
		transform: none;
	}
	
	.first-screen.counters {
		height: auto;
	}
	
	.counters .first-screen-content {
		padding: 50px 20px;
	}	
	
	.counter {
		width: initial;
		padding: 0 25px 30px 25px;
	}
	
	.counter h3 {
		margin-top: 0;
		margin-bottom: 10px;
	}
	
	.counter:not(:first-child) {
		border-left: none;
		border-top: 1px solid rgba(255,255,255,0.5);
		padding-top: 30px;
	}
	
	.categories.container {
		padding: 0;
	}
	
	.categories .cards .card {
		padding: 0;
	}
	
	.cards .owl-item:not(:first-child) .card {
		border: none;
	}

	.article {
		flex-wrap: wrap;
		width: 100%;
		border-bottom: 1px solid rgba(10,50,10,0.1);
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.article .background-container {
		width: 100%;
		height: 250px;
		margin-right: 0;
	}

	.article:hover .background-container .background-image {
		transform: scale(1.1);
	}

	.article h3 {
		text-align: left;
	}
	


	.slider-and-text .slider.owl-carousel,
	.container .slider-work.owl-carousel {
		width: 100%;
		padding: 0 25px;
		box-sizing: border-box;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.slider-and-text .slider, .slider-and-text .slider-text {
		order: 1;
	}
	
	.slider.owl-theme .owl-nav {
		width: 110%;
		left: -5%;
		top: 30%;
	}

	.slider-and-text:nth-of-type(2n) .slider {
		order: 1;
		margin-right: 0;
		margin-left: 0;
	}

	.slider-and-text .slider-text {
		max-width: 100%;
	}


	.table-container {
		overflow-x: scroll;
		max-width: 100%;
	}





	.footer {
		box-sizing: border-box;
		padding: 20px;
	}
	
	.footer .menu {
		display: block;
		columns: 2;
	}
	
	.footer .menu li a {
		padding-top: 10px;
		padding-bottom: 10px;
		display: block;
	}
	
}