/*!
Theme Name: Marine Life
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: marinelife
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Marine Life is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--container: 1140px;
	--gap: 30px;

	--text-size: 14px;
	--text-size-sm: 12px;
	--h1-size: 36px;
	--h2-size: 32px;
	--h3-size: 22px;
	--h4-size: 16px;
	--h5-size: 14px;
	--h6-size: 13px;

	--text-color: #333333;
	--heading-color: #222222;
	--white: #FFFFFF;
	--blue: #0076ff;
	--blue-2: #5aa1e3;
	--blue-3: #4092df;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.85;
	color: var(--text-color);
	background: var(--white);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--blue-2);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', serif;
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.2;
	letter-spacing: .1em;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote {
	margin: 0 0 20px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.form-col {
	flex: 0 0 100%;
	max-width: 100%;
}
.form-col-50 {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -3) calc(var(--gap) / -1.5);
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 calc(var(--gap) / 3);
	margin-bottom: calc(var(--gap) / 1.5);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	display: block;
	margin-bottom: 6px;
	line-height: 1.25;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: #ffffff;
	border: 1px solid #eeeeee;
	color: var(--black);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 12px 24px;
	min-height: 48px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 120px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size: var(--text-size-sm);
	line-height: 1.25;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 16px;
	line-height: 1.25;
}
.wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.wpcf7-list-item {
	margin: 0;
}


.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}


.heading {
	position: relative;
	margin-bottom: calc(var(--gap) * 2);
	color: var(--heading-color);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.white {
	color: var(--white);
}
.heading.center {
	text-align: center;
}
.heading h2 {
	position: relative;
	font-size: var(--h2-size);
	text-transform: uppercase;
	line-height: 1.1;
	z-index: 1;
}
.heading p:first-child {
	font-size: var(--h4-size);
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-bottom: 16px;
	line-height: 1.1;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Open Sans', serif;
	font-weight: 700;
	line-height: 1.5;
	border: none;
	padding: 10px 24px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	outline: none;
	min-height: 48px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn-primary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--blue-2);
	border-color: var(--blue-2);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	font-weight: 400;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 4px;
	min-height: inherit;
}
.btn.btn-link:hover {
	color: var(--blue-2);
}

/*
.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}*/

.swiper-navigation {
	position: absolute;
	width: 100%;
	top: calc(50% - 20px);
	opacity: 0;
	transition: .5s;
	z-index: 9;
}
.swiper-navigation button {
	position: absolute;
	font-size: 20px;
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--blue);
	color: var(--white);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.swiper-navigation button:hover {
	background: var(--blue-2);
}
.swiper-navigation button:disabled {
	background: var(--blue);
	color: var(--white);
	opacity: .15;
	cursor: no-drop;
}
.swiper-navigation button.swiper-navigation-prev {
	left: -20px;
}
.swiper-navigation button.swiper-navigation-next {
	right: -20px;
}

.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	font-size: 18px;
	color: var(--white);
	text-decoration: none;
}
.soc-links li a:hover {
	color: var(--blue);
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	transform: translateX(100%);
	padding: 40px calc(var(--gap) / 2) calc(var(--gap) / 2);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	background: none;
	color: #888888;
	font-size: 24px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-mobile-close:hover {
	color: var(--heading-color);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid #f8f8f8;
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--blue);
}
.mobile-menu-toggle {
	order: 2;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	color: var(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	color: var(--blue);
	transform: rotate(180deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0 0 10px;
	padding: 0 0 0 20px;
	list-style: none;
	text-transform: none;
	z-index: 9;
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 480px;
	margin: 1.75rem auto;
	cursor: pointer;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5) var(--gap) var(--gap);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--heading-color);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h3-size);
	color: var(--heading-color);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: var(--gap);
	text-align: center;
	text-transform: uppercase;
}
.modal-close {
	position: absolute;
	background: none;
	color: #888888;
	font-size: 24px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	color: var(--heading-color);
}


.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
	line-height: 1.25;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - 30px) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - 30px * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - 30px * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - 30px * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - 30px * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - 30px * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - 30px * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - 30px * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}



.wrapper {
	position: relative;
	z-index: 1;
}

.topbar {
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	z-index: 93;
}
.topbar-wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
	height: 62px;
	z-index: 1;
}
.topbar-menu {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.topbar-menu li {
	height: 100%;
}
.topbar-menu li a {
	display: inline-flex;
	align-items: center;
	padding: 15px;
	height: 100%;
	color: var(--white);
	text-decoration: none;
}
.topbar-menu li a:hover {
	background: rgba(0, 0, 0, .4);
}


.header {
	position: sticky;
	top: 0;
	background: transparent;
	transition: .5s;
	z-index: 92;
}
.header.fixed {
	background: rgba(255,255,255,0.95);
}
.header-wrap {
	display: flex;
	justify-content: space-between;
	height: 76px;
	gap: var(--gap);
}
.header-logo {
	flex: 0 0 210px;
	max-width: 210px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header-logo img {
	max-height: 76px;
}
.main-menu {
	max-width: calc(100% - 210px - var(--gap));
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	font-size: var(--text-size-sm);
}
.main-menu li {
	position: relative;
	height: 100%;
	padding: 25px 10px;
	margin-top: -1px;
	z-index: 1;
}
.main-menu > li:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: -1;
}
.main-menu > li:hover:before,
.main-menu > li.current-menu-item:before {
	background: var(--blue);
}
.main-menu li a {
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 7px 15px;
	text-decoration: none;
	text-transform: uppercase;
}
.header.fixed .main-menu li a {
	color: var(--heading-color);
}
.main-menu li.current-menu-item > a,
.header.fixed .main-menu li.current-menu-item > a {
	color: var(--blue);
}
.main-menu li.menu-item-has-children > a:after {
	content: "\f078";
	font-family: var(--fa-family-classic);
	font-weight: 900;
	font-size: 8px;
	transition: .5s;
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--white);
	color: var(--black);
	border-top: 2px solid var(--blue);
    -moz-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease-out;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
	width: 200px;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.main-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.main-menu ul li {
	padding: 0;
	margin: 0;
	height: auto;
	border-bottom: 1px solid #eeeeee;
}
.main-menu ul li:last-child {
	border-bottom: none;
}
.main-menu ul li a {
	padding: 0;
	padding: 10px calc(var(--gap) / 1.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #888888;
	text-transform: none;
}
.main-menu ul li a:hover {
	color: #888888;
	background: #fafafa;
}
.main-menu ul ul {
	top: calc(var(--gap) / 1.5);
	left: 100%;
}
.header-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header-toggle button {
	background: no-repeat;
	border: none;
	padding: 0;
	color: var(--white);
	font-size: 24px;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.header.fixed .header-toggle button {
	color: var(--heading-color);
}
.header-toggle button:hover,
.header.fixed .header-toggle button:hover {
	color: var(--blue);
}


.main {
	position: relative;
	overflow: hidden;
	margin-top: -139px;
	z-index: 1;
}


.hero-section,
.heroSlider-item {
	position: relative;
	height: calc(100vw / 2.4);
	min-height: 480px;
	z-index: 1;
}
.heroSlider-item:after {
	content: '';
	position: absolute;
	background: var(--heading-color);
	opacity: .3;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-section:hover .hero-navigation {
	opacity: 1;
}
.hero-navigation button.swiper-navigation-prev {
	left: 20px;
}
.hero-navigation button.swiper-navigation-next {
	right: 20px;
}


.services-section {
	background: #f8f8f8;
}
.services-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.services-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.services-item__wrap {
	position: relative;
	height: 100%;
	text-decoration: none;
	overflow: hidden;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.services-item__image {
	flex: 0 0 calc((var(--container) - var(--gap) * 3) / 4 / 1.6);
	max-height: calc((var(--container) - var(--gap) * 3) / 4 / 1.6);
	overflow: hidden;
}
.services-item__wrap:hover .services-item__image img {
	transform: scale(1.1);
}
.services-item__title {
	background: var(--blue);
	font-size: var(--h4-size);
	font-weight: 400;
	padding: 15px 25px;
	text-align: center;
	color: var(--white);
	line-height: 1.2;
}
.services-item__wrap:hover .services-item__title {
	background: var(--blue-3);
}



.partners-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.partners-left {
	flex: 1;
}
.partners-right {
	flex: 3;
}
.partners-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.partners-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.partners-item__wrap {
	position: relative;
	height: 100%;
	text-decoration: none;
	overflow: hidden;
	z-index: 1;
}
.partners-item__image {
	overflow: hidden;
	width: 100px;
	height: 100px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin: 0 auto 16px;
	transition: .5s;
}
.partners-item__wrap:hover .partners-item__image {
	box-shadow: 0 0 0 5px var(--blue);
}
.partners-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	text-align: center;
	color: var(--heading-color);
	text-transform: uppercase;
	line-height: 1.1;
}
.partners-item__wrap:hover .partners-item__title {
	color: var(--blue);
}



.advantages-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.advantages-bg:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--text-color);
	opacity: .35;
	z-index: 1;
}




.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.advantages-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.advantages-item__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--white);
	text-align: center;
}
.advantages-item__icon {
	flex: 0 0 34px;
	max-height: 34px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.advantages-item__wrap img {
	max-height: 34px;
}
.advantages-item__value {
	position: relative;
	font-size: var(--h2-size);
	font-weight: 700;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	z-index: 1;
}
.advantages-item__value:after {
	content: '';
	display: inline-block;
	width: 50px;
	height: 5px;
	background: var(--white);
	margin-top: 10px;
}
.advantages-item__text {
	font-size: var(--h4-size);
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
}



.reviews-section {
	background: #f8f8f8;
}
.reviews-carousel {
	position: relative;
	z-index: 1;
}
.reviews-swiper {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.reviews-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	z-index: 1;
}
.reviews-item__photo {
	position: relative;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.5);
	z-index: 1;
}
.reviews-item__image {
	position: relative;
	width: 100px;
	height: 100px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	border: 5px solid var(--white);
	margin: -50px auto 10px;
	z-index: 1;
}
.reviews-item__rating {
	padding: 0 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}
.reviews-item__rating span {
	font-size: var(--text-size-sm);
	color: var(--blue);
}
.reviews-item__name {
	padding: 0 20px;
	margin-bottom: 9px;
	font-size: var(--h4-size);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	text-align: center;
}
.reviews-item__text {
	color: #bebebe;
	line-height: 1.35;
	text-align: center;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	padding: 0 20px;
	margin-bottom: 4px;
}
.reviews-item__more {
	text-align: center;
	padding: 0 20px 30px;
}
.reviews-carousel:hover .swiper-navigation {
	opacity: 1;
}

.reviews-button {
	text-align: center;
	margin-top: var(--gap);
}



.footer {
	position: relative;
	background: #060c17;
	color: var(--white);
	z-index: 1;
}
.footer-main {
	position: relative;
	padding: 70px 0;
	display: flex;
	gap: var(--gap);
	z-index: 1;
}
.footer-widget {
	flex: 1;
	line-height: 1.2;
}
.footer-widget-title {
	font-size: var(--h6-size);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footer-map iframe {
	width: 100%;
	height: 150px;
}
.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}
.footer-contact:before {
	content: '';
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex: 0 0 42px;
	max-height: 42px;
	width: 42px;
}
.footer-contact.phone:before {
	background-image: url(images/phone.png);
}
.footer-contact.e-mail:before {
	background-image: url(images/mail.png);
}
.footer-contact-label {
	color: #bebebe;
	letter-spacing: .5px;
}
.footer-contact-value {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}
.footer-contact-value a {
	color: var(--white);
	text-decoration: none;
}
.footer-contact-value a:hover {
	color: var(--blue);
}


.footer-bottom {
	position: relative;
	padding: 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	z-index: 1;
}
.copyright {
	margin: 0;
	font-size: var(--h6-size);
	letter-spacing: 1px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: var(--gap);
	letter-spacing: 1px;
	font-size: var(--h6-size);
}
.footer-menu li a {
	color: var(--white);
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--blue);
}
.footer-menu ul {
	display: none;
}



.page-header {
	position: relative;
	padding: 180px 0 60px;
	z-index: 1;
}
.page-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-header-bg:after {
	content: '';
	background: var(--heading-color);
	opacity: .3;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-breadcrumbs {
	text-align: center;
	color: var(--white);
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: calc(var(--gap) / 3);
}
.page-breadcrumbs a {
	color: var(--white);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--blue);
}
.page-title {
	font-size: calc(var(--h1-size) * 1.5);
	text-transform: uppercase;
	line-height: 1.2;
	text-align: center;
	color: var(--white);
	letter-spacing: .15em;
}
.page-body.section {
	padding-top: 70px;
}



.pageContacts-items {
	display: flex;
	flex-wrap: wrap;
}
.pageContacts-item {
	flex: 1;
	line-height: 1.2;
	letter-spacing: 1px;
}
.pageContacts-item__label {
	color: #888888;
	text-align: center;
	margin-bottom: 10px;
}
.pageContacts-item__value {
	font-size: var(--h4-size);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}
.pageContacts-item__value a {
	color: var(--heading-color);
	text-decoration: none;
}
.pageContacts-item__value a:hover {
	color: var(--blue);
}
.pageContacts-map {
	margin-top: calc(var(--gap) * 2);
}
.pageContacts-map iframe {
	width: 100%;
	height: calc(var(--container) / 2);
	min-height: 480px;
}


.error-404-number {
	font-size: calc(var(--h1-size) * 6);
	font-weight: 700;
	color: #f1f1f1;
	text-align: center;
	line-height: 1;
	margin-bottom: var(--gap);
}
.error-404-button {
	text-align: center;
}




.page-body-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}
.page-body-sidebar {
	flex: 0 0 calc(100% / 3 - var(--gap) / 2);
	max-width: calc(100% / 3 - var(--gap) / 2);
}
.page-body-main {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap) / 2);
	max-width: calc(100% / 3 * 2 - var(--gap) / 2);
}



.widget {
	position: relative;
	margin-bottom: var(--gap);
	z-index: 1;
}
.widget:last-child {
	margin-bottom: 0;
}
.widget-title {
	font-size: var(--h3-size);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.widget_archive ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1px;
}
.widget_archive ul li a {
	font-size: var(--text-size);
	font-weight: 700;
	line-height: 1.2;
	display: block;
	text-transform: uppercase;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	letter-spacing: 1px;
	background: #f8f8f8;
	color: #b9b9b9;
	padding: 15px 22px;
	text-decoration: none;
}
.widget_archive ul li a:hover {
	background: var(--blue);
	color: var(--white);
}

.recent-posts-items {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.recent-post-item a {
	display: flex;
	gap: 10px;
	text-decoration: none;
}
.recent-post-thumb {
	flex: 0 0 80px;
	max-width: 80px;
}
.recent-post-thumb img {
	max-height: 80px;
}
.recent-post-info {
	flex: auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.recent-post-info p {
	margin-bottom: 0;
}
.recent-post-title {
	color: var(--text-color);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: .5s;
}
.recent-post-title:hover {
	color: var(--blue);
}
.recent-post-date {
	font-size: var(--text-size-sm);
	color: var(--blue);
}



.news-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) * 2);
}
.news-item__image {
	text-align: center;
	background: rgba(0, 0, 0, 0.03);
	margin-bottom: 20px;
}
.news-item__image img {
	max-height: 420px;
}
.relatedNews-carousel .news-item__image img {
	max-height: 240px;
}
.news-item__title {
	font-size: var(--h3-size);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2xp;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.news-item__title a {
	color: var(--heading-color);
	text-decoration: none;
}
.news-item__title a:hover {
	color: var(--blue);
}
.news-item__date {
	font-size: var(--text-size-sm);
	margin-bottom: 12px;
}
.news-item__date i {
	color: #bebebe;
}
.news-item__excerpt {
	color: #bebebe;
	margin-bottom: 12px;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 1.5);
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: calc(var(--gap) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	min-width: 44px;
	height: 44px;
	font-weight: 500;
	color: var(--heading-color);
	border: 1px solid #cccccc;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}



.singleNews-title {
	font-size: var(--h2-size);
	letter-spacing: 2px;
	color: var(--heading-color);
	margin-bottom: 20px;
	text-transform: uppercase;
}
.singleNews-date {
	margin-bottom: 20px
}
.singleNews-date i {
	color: #bebebe;
}
.singleNews-image {
	margin-bottom: 24px;
}
.singleNews-image img {
	max-height: 480px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.addtoany_header {
	font-weight: 700;
	color: var(--heading-color);
	text-transform: uppercase;
	margin-bottom: 8px !important;
}

.relatedNews-carousel {
	position: relative;
	z-index: 1;
}
.relatedNews-swiper {
	overflow: hidden;
}
.relatedNews-carousel:hover .relatedNews-navigation {
	opacity: 1;
}




@media (max-width: 1199px) {
	:root {
		--container: 910px;
		--gap: 30px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 22px;
		--h4-size: 16px;
		--h5-size: 14px;
		--h6-size: 13px;
	}


	.section {
		position: relative;
		padding-top: 80px;
		padding-bottom: 80px;
		z-index: 1;
	}
	.section-md {
		position: relative;
		padding-top: 60px;
		padding-bottom: 60px;
		z-index: 1;
	}

	.topbar-wrap {
		height: 50px;
	}
	.topbar-menu li a {
		padding: 10px;
	}
	.header-wrap {
		height: 66px;
	}
	.header-logo {
		flex: 0 0 180px;
		max-width: 180px;
	}
	.header-logo img {
		max-height: 66px;
	}
	.main-menu {
		max-width: calc(100% - 180px - var(--gap));
	}
	.main-menu li {
		padding: 15px 5px;
	}
	.main-menu li a {
		padding: 8px 5px;
	}

	.main {
		margin-top: -117px;
	}
	.footer-menu {
		gap: 12px;
	}
	.copyright,
	.footer-menu {
		font-size: var(--text-size-sm);
	}
	.page-body.section {
		padding-top: 50px;
	}
	.page-header {
		padding: 150px 0 60px;
	}
}




@media (max-width: 991px) {
	:root {
		--container: 690px;
		--gap: 30px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 22px;
		--h4-size: 16px;
		--h5-size: 14px;
		--h6-size: 13px;
	}
	.heading {
		margin-bottom: calc(var(--gap) * 1.5);
	}
	.topbar {
		display: none;
	}
	.header-wrap {
		height: 50px;
	}
	.header-logo img {
		max-height: 50px;
	}
	.main-menu {
		display: none;
	}
	.main {
		margin-top: -50px;
	}
	.services-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.services-item__image {
		flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.6);
		max-height: calc((var(--container) - var(--gap)) / 2 / 1.6);
	}
	.partners-left,
	.partners-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.partners-left .heading {
		text-align: center;
	}
	.advantages-item__text {
		font-size: var(--h5-size);
	}
	.reviews-item__photo {
		height: calc((var(--container) - var(--gap)) / 2 / 1.5);
	}
	.footer-main {
		padding: 50px 0;
		flex-direction: column;
	}
	.footer-widget {
		text-align: center;
	}
	.footer-soc {
		justify-content: center;
	}
	.footer-widget-title {
		margin-bottom: 15px;
	}
	.footer-bottom {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}
	.footer-menu {
		display: none;
	}
	.page-header {
		padding: 70px 0 40px;
	}
	.page-title {
		font-size: calc(var(--h1-size) * 1.15);
	}
	img.alignleft, img.alignright, img.aligncenter {
		max-width: 50%;
	}
	.page-body-wrap {
		gap: calc(var(--gap) * 2);
	}
	.page-body-main {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.page-body-sidebar {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
	}
	.pageContacts-items {
		flex-direction: column;
		align-items: center;
		gap: var(--gap);
	}
	.swiper-navigation {
		opacity: 1;
	}
}




@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 30px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 20px;
		--h4-size: 16px;
		--h5-size: 14px;
		--h6-size: 13px;
	}
	.form-col {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.gallery-columns-3 .gallery-item,
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item,
	.gallery-columns-6 .gallery-item,
	.gallery-columns-7 .gallery-item,
	.gallery-columns-8 .gallery-item,
	.gallery-columns-9 .gallery-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.gallery-columns-3 .gallery-item > *,
	.gallery-columns-4 .gallery-item > *,
	.gallery-columns-5 .gallery-item > *,
	.gallery-columns-6 .gallery-item > *,
	.gallery-columns-7 .gallery-item > *,
	.gallery-columns-8 .gallery-item > *,
	.gallery-columns-9 .gallery-item > * {
		height: calc((var(--container) - var(--gap)) / 2 / 1.4);
	}
	.partners-item {
		flex: 0 0 calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.advantages-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.advantages-item__icon {
		margin-bottom: 12px;
	}
	.advantages-item__value {
		margin-bottom: 10px;
	}
	.advantages-item__value:after {
		height: 4px;
		margin-top: 8px;
	}
	.news-item__image img,
	.singleNews-image img {
		max-height: 360px;
	}
}




@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 30px);
		--gap: 20px;

		--text-size: 14px;
		--text-size-sm: 12px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 20px;
		--h4-size: 16px;
		--h5-size: 14px;
		--h6-size: 13px;
	}
	.section {
		position: relative;
		padding-top: 60px;
		padding-bottom: 60px;
		z-index: 1;
	}
	.section-md {
		position: relative;
		padding-top: 45px;
		padding-bottom: 45px;
		z-index: 1;
	}

	.services-item__title {
		padding: 10px 15px;
	}

	.modal-dialog {
		max-width: var(--container);
	}

	img.alignleft, img.alignright, img.aligncenter {
		max-width: 100%;
		float: none;
		display: block;
	}
	.swiper-navigation button.swiper-navigation-prev {
    	left: -10px;
	}
	.swiper-navigation button.swiper-navigation-next {
    	right: -10px;
	}
	.hero-navigation button.swiper-navigation-prev {
		left: 10px;
	}
	.hero-navigation button.swiper-navigation-next {
		right: 10px;
	}
}