/* Fonts START */
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Light.woff2');
    font-weight: 300;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.woff2');
    font-weight: 400;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Semibold.woff2');
    font-weight: 600;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Bold.woff2');
    font-weight: 700;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Black.woff2');
    font-weight: 900;
	font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro Condensed';
    src: url('../fonts/MyriadPro-LightCond.woff2');
    font-weight: 300;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro Condensed';
    src: url('../fonts/MyriadPro-Cond.woff2');
    font-weight: 400;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro Condensed';
    src: url('../fonts/MyriadPro-SemiboldCond.woff2');
    font-weight: 600;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro Condensed';
    src: url('../fonts/MyriadPro-BoldCond.woff2');
    font-weight: 700;
	font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Myriad Pro Condensed';
    src: url('../fonts/MyriadPro-BlackCond.woff2');
    font-weight: 900;
	font-style: normal;
    font-display: swap;
}
/* Fonts END */


/* Normalize START */
html {line-height: 1.15;-webkit-text-size-adjust: 100%;}body {margin: 0;}main {display: block;}h1 {font-size: 2em;margin: 0.67em 0;}hr {box-sizing: content-box;height: 0;overflow: visible;}pre {font-family: monospace, monospace;font-size: 1em;}a {background-color: transparent;}abbr[title] {border-bottom: none;text-decoration: underline;text-decoration: underline dotted;}b, strong {font-weight: bolder;}code, kbd, samp {font-family: monospace, monospace;font-size: 1em;}small {font-size: 80%;}sub, sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sub {bottom: -0.25em;}sup {top: -0.5em;}img {border-style: none;}button, input, optgroup, select, textarea {font-family: inherit;font-size: 100%;line-height: 1.15;margin: 0;}button, input {overflow: visible;}button, select {text-transform: none;}button, [type="button"], [type="reset"], [type="submit"] {-webkit-appearance: button;}button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}fieldset {padding: 0.35em 0.75em 0.625em;}legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}progress {vertical-align: baseline;}textarea {overflow: auto;}[type="checkbox"], [type="radio"] {box-sizing: border-box;padding: 0;}[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {height: auto;}[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}details {display: block;}summary {display: list-item;}template {display: none;}[hidden] {display: none;}
/* Normalize END */

/* Global START */
:root {
	--font: 'Myriad Pro', sans-serif;
	--font-2: 'Myriad Pro Condensed', sans-serif;
	--color-black: #212529;
	--color-1: #191E4E;
	--color-1-hover: #0c0e21;
	--color-2: #48eac9;
	--color-2-hover: #3abaa0;
	--color-3: #242a65;
	--color-4: #df21d3;
}

.color-text-1 {
	color: var(--color-1) !important;
}
.color-text-2 {
	color: var(--color-2) !important;
}
.color-text-3 {
	color: var(--color-3) !important;
}
.color-text-4 {
	color: var(--color-4) !important;
}

.size-18 {
	font-size: 18px !important;
}

.weight-light {
	font-weight: 300 !important;
}
.weight-regular {
	font-weight: 400 !important;
}
.weight-medium {
	font-weight: 500 !important;
}
.weight-semibold {
	font-weight: 600 !important;
}
.weight-bold {
	font-weight: 700 !important;
}

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	min-width: 320px;
	margin: 0;
	padding: 0;
    overflow-x: hidden;
	color: var(--color-black);
}

.container {
	max-width: 1400px;
	padding: 0 20px;
	margin: 0 auto;
}

.title-center {
	text-align: center;
	margin-bottom: 60px;
}
.title-icon {
	margin-bottom: 30px;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-2);
}
h1, .h1 {
	font-size: 64px;
	font-weight: 700;
}
h2, .h2 {
	font-family: var(--font-2);
	font-size: 72px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color-1);
	line-height: 1.1;
}
h3, .h3 {
	font-size: 40px;
	font-weight: 400;
	color: var(--color-1);
}
a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: none;
	color: var(--color-1);
}
.desc {
	font-size: 18px;
}

.button-v1 {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 30px;
	color: #fff;
	padding: 8px 32px;
	font-family: var(--font-1);
	font-size: 18px;
	transition: background-color 0.5s ease, color 0.5s ease;
	text-decoration: none;
}
.button-v1:hover {
	background-color: #fff;
	color: var(--color-black);
	text-decoration: none;
}

.button-v2 {
	display: inline-block;
	border: 1px solid var(--color-1);
	border-radius: 30px;
	color: var(--color-1);
	padding: 8px 40px;
	font-family: var(--font-1);
	font-size: 18px;
	transition: background-color 0.5s ease, color 0.5s ease;
	text-decoration: none;
}
.button-v2:hover {
	background-color: var(--color-1);
	color: #fff;
	text-decoration: none;
}

.swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
	width: 10px;
	height: 10px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid var(--color-2);
}
.swiper-pagination-static.swiper-pagination {
	position: static;
	margin-top: 30px;
}

fieldset {
	padding: 0;
	margin: 0;
	appearance: none;
}
.form-group {
	margin-bottom: 15px;
}
.form-group label {
	font-size: 18px;
	margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
	background: none;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 10px 20px;
    display: block;
    width: 100%;
    color: #fff;
}
.form-group textarea {
	height: 200px;
	border-radius: 20px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #fff;
}
.form-group p {
	margin-bottom: 0;
}
.form-group button {
	width: 100%;
	padding: 12px;
	background-color: var(--color-2);
	border-radius: 30px;
	border: none;
	color: var(--color-1);
	transition: background-color 0.5s ease;
	font-weight: 600;
}
.form-group button:hover {
	background-color: var(--color-2-hover);
}
/* Global END */

/* Breadcrumbs START */
.breadcrumbs-wrap {
	background-color: #f6f6f6;
	padding: 10px 0;
}
.breadcrumbs-wrap #breadcrumbs {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 600;
}
.breadcrumbs-wrap #breadcrumbs a {
	color: var(--color-1);
	font-weight: 400;
}
.breadcrumbs-wrap #breadcrumbs > span {
	display: flex;
	column-gap: 5px;
}
/* Breadcrumbs END */

/* Header START */
.site-header {
	background-color: #fff;
}
.site-header.header-home {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
	background-color: rgba(48, 45, 45, 0.4);
}
.header-row {
	display: flex;
	align-items: center;
	column-gap: 40px;
	padding: 10px 0;
}
.header-logo a,
.header-logo img {
	display: block;
}
.header-logo img {
	max-width: 80px;
	height: auto;
}

.header-menu-nav {
	border-radius: 30px;
}
.header-menu-nav > ul {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.header-menu-nav ul li {
	position: relative;
}
.header-menu-nav > ul > li > a {
	color: var(--color-3);
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.35s ease, background-color 0.35s ease;
	display: inline-block;
	padding: 8px 22px;
	border-radius: 30px;
}
.site-header.header-home .header-menu-nav > ul > li > a {
	color: #fff;
}
.header-menu-nav > ul > li:hover > a {
	background-color: var(--color-2);
}
.header-menu-nav > ul > li.current_page_item > a {
	background-color: var(--color-2);
	border-color: #fff;
}

	/* Submenu Level 1 START */
	.header-menu-nav > ul > li.menu-item-has-children > .sub-menu {
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		list-style-type: none;
		margin: 0;
		padding: 20px;
		background-color: var(--color-2);
		border-radius: 20px;
		white-space: nowrap;
		visibility: hidden;
		transition: opacity 0.5s ease, visibility 0.5s ease;
		opacity: 0;
	}
	.header-menu-nav ul li.menu-item-has-children:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
	}
	.header-menu-nav > ul > li.menu-item-has-children > .sub-menu::before {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 9px 0 9px 11px;
		border-color: transparent transparent transparent var(--color-2);
		position: absolute;
		top: -13px;
		left: 50px;
		transform: rotate(-90deg);
	}
	.header-menu-nav .sub-menu li a {
		color: var(--color-1);
		display: block;
		padding: 5px 20px;
		transition: color 0.35s ease, opacity 0.35s ease;
		text-decoration: none;
		opacity: 0.7;
	}
	.header-menu-nav .sub-menu li a:hover {
		color: var(--color-1);
		opacity: 1;
	}
	/* Submenu Level 1 END */

	/* Submenu Level 2 START */
	.header-menu-nav .sub-menu .sub-menu {
		position: absolute;
		top: -12px; 
		left: calc(100% + 30px);
		list-style-type: none;
		margin: 0;
		padding: 20px;
		background-color: var(--color-2);
		border-radius: 20px;
		white-space: nowrap;
		visibility: hidden;
		transition: opacity 0.5s ease, visibility 0.5s ease;
		opacity: 0;
	}
	.header-menu-nav .sub-menu .sub-menu::before {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 9px 0 9px 11px;
		border-color: transparent transparent transparent var(--color-2);
		position: absolute;
		top: 25px;
    	left: -10px;
		transform: rotate(-180deg);
	}
	/* Submenu Level 2 END */

.header-cart-row {
	display: flex;
	align-items: center;
	column-gap: 20px;
	margin-left: auto;
}
.header-card-item .header-cart-link {
	color: var(--color-3);
	display: flex;
	align-items: center;
	text-decoration: none;
	column-gap: 8px;
}
.site-header.header-home .header-card-item .header-cart-link {
	color: #fff;
}
.header-card-icon {
	line-height: 1;
}

#header-cart-dropdown {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    width: 300px;
    z-index: 1000;
	right: 0;
	border-radius: 20px;
	box-shadow: 0px 12px 17.04px 6.96px rgba(19, 19, 20, 0.14);
}
.header-cart {
    position: relative;
}
#header-cart-dropdown .mini_cart_thumbnail {
	width: 50px;
	height: 50px;
	min-width: 50px;
	object-fit: cover;
	overflow: hidden;
	display: block;
	margin-right: 15px;
	border: 1px solid #eaeaea;
	border-radius: 5px;
}
#header-cart-dropdown .mini_cart_thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#header-cart-dropdown .woocommerce-mini-cart  {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#header-cart-dropdown .woocommerce-mini-cart-item {
	display: flex;
    line-height: 1.4;
    border-bottom: 1px solid var(--color-2);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
#header-cart-dropdown .mini_cart_thumb_wrap {
	display: flex;
}
#header-cart-dropdown .mini_cart_productname,
#header-cart-dropdown .quantity {
	display: block;
}
#header-cart-dropdown .mini_cart_productname {
	font-weight: 700;
    color: var(--color-1);
    line-height: 1.2;
	margin-bottom: 5px;
	max-width: 160px;
}
.mini_cart_productname, #header-cart-dropdown .quantity .woocommerce-Price-amount {
	color: #ec501b;
}
#header-cart-dropdown .woocommerce-mini-cart__buttons {
	margin-bottom: 0;
}
#header-cart-dropdown .remove_from_cart_button {
	display: block;
    margin-left: auto;
    font-size: 25px;
    color: var(--color-2);
}

#header-cart-dropdown .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}
#header-cart-dropdown .woocommerce-mini-cart__buttons {}
#header-cart-dropdown .woocommerce-mini-cart__buttons .button {
	display: block;
	padding: 10px 20px;
	border-radius: 30px;
	text-align: center;
	font-size: 14px;
	transition: background-color 0.35s ease;
}
#header-cart-dropdown .woocommerce-mini-cart__buttons .button:first-child {
	background-color: var(--color-1);
	margin-bottom: 12px;
    color: #fff;
}
#header-cart-dropdown .woocommerce-mini-cart__buttons .button:first-child:hover {
	background-color: var(--color-1-hover);
}
#header-cart-dropdown .woocommerce-mini-cart__buttons .button:last-child {
	background-color: var(--color-2);
}
#header-cart-dropdown .woocommerce-mini-cart__buttons .button:last-child:hover {
	background-color: var(--color-2-hover);
}

.scroller-wrap {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 100px 100px 0 0;
	background-color: var(--color-2);
	z-index: 100;
	cursor: pointer;
	transition: background-color 0.35s ease, transform 0.5s ease;
	transform: translateX(100px);
}
.scroller-wrap.is-active {
	transform: none;
}
.scroller-wrap:hover {
	background-color: var(--color-2-hover);
}
.scroller-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.scroller-item img {
	width: 50%;

}
/* Header END */


/* Banner START */
.banner-wrap {}
.banner-item {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
}
.banner-item video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.banner-content {
	max-width: 1400px;
	width: 100%;
	padding: 0 100px;
	margin: 100px auto 0;
}
.banner-content-desc p {
	margin-bottom: 0;
	color: var(--color-2);
}
.banner-title {
	font-size: 64px;
	font-family: var(--font-2);
	font-weight: 700;
	text-transform: uppercase;
    text-shadow: -1px 1px 0px var(--color-1);
	color: var(--color-2);
	margin-bottom: 10px;
}
.banner-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.swiper-banner .swiper-button-next, .swiper-rtl .swiper-button-prev {
	right: 60px;
}
.swiper-banner .swiper-button-prev, .swiper-rtl .swiper-button-next {
	left: 60px;
}
.swiper-button-next, .swiper-button-prev {
	color: #fff;
}

.swiper-banner .swiper-pagination {
	display: flex;
    align-items: center;
    justify-content: center;
	bottom: 30px;
}
.swiper-banner .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
	width: 10px;
	height: 10px;
}
.swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 16px;
    height: 16px;
    background-color: transparent;
    border: 2px solid var(--color-2);
}
/* Banner END */


/* Clients START */
.clients-wrap {
	background-color: var(--color-3);
	padding: 80px 0;
	color: #fff;
}
.clients-wrap .container {
	position: relative;
	z-index: 1;
}
.clients-left {
	margin-right: 50px;
}
.clients-image img {
	width: 100%;
}
.clients-content {
	max-width: 700px;
	margin: 0 auto;
}

.clients-right {
	max-width: 550px;
}
/* Clients END */

/* Clients V2 START */
.clients-v2-wrap {
	padding: 50px 0;
	background-color: var(--color-1);
}
.clients-v2-logo img {
	max-width: 160px;
	width: 100%;
	margin: 0 auto;
}
/* Clients V2 END */

/* Reviews START */
.swiper-reviews {
	max-width: 1000px;
}
.reviews-wrap {
	padding: 100px 0 50px 0;
	background-color: var(--color-3);
	color: #fff;
}
.reviews-item {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}
.reviews-title {
	font-family: var(--font-2);
	font-size: 40px;
	line-height: 1.2;
	text-transform: uppercase;
}
.reviews-name {
	font-family: var(--font-2);
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.reviews-content {
	font-size: 18px;
}
/* Reviews END */

/* Info 1 START */
.info-1-wrap {
	padding: 100px 0;
	background-color: var(--color-4);
	color: #fff;
}
.info-1-image {
	text-align: center;
}
.info-1-image img {
	display: inline-block;
}
/* Info 1 END */


/* Info 2 START */
.info-2-wrap {
	padding: 130px 0;
}
.info-2-features-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.info-2-features-item {
	width: calc(33.333% - 40px);
	text-align: center;
}
.info-2-features-title {
	text-transform: uppercase;
	font-family: var(--font-2);
	font-weight: 400;
	color: var(--color-1);
	font-size: 40px;
}
.info-2-features-desc {
	color: var(--color-1);
	font-size: 18px;
}
/* Info 2 END */

/* Products START */
.products-wrap {
	margin-bottom: 200px;
}
.city-title-wrap {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 40px;
}
.products-offer-wrap {
	text-align: center;
	margin-bottom: 60px;
}
.products-offer-icon {
	font-size: 50px;
}
.products-offer-title {
	font-size: 24px;
	font-family: var(--font-2);
	margin-bottom: 10px;
	text-transform: uppercase;
}
.products-box {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 14px 25px 0px rgba(0, 0, 0, 0.19);
	margin-bottom: 40px;
}
.products-grid-item {
	float: left;
}
.products-grid-sizer,
.products-grid-item { 
	width: calc(50% - 40px); 
}
.grid-item img {
	max-width: 100%;
}
.products-item {
	padding: 40px 55px;
}
.products-item:nth-last-child(n+2) {
	border-bottom: 1px solid var(--color-2);
}
.products-header a {
	font-family: var(--font-2);
	padding: 40px 55px;
	background-color: var(--color-1);
	border-radius: 20px 20px 0 0;
	font-size: 50px;
	font-weight: 700;
	color: var(--color-2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
}
.products-header-arrow svg {
	width: 15px;
	height: auto;
}
.products-header-arrow svg path {
	fill: rgb(144,150,174);
}

.products-title {
	margin-bottom: 20px;
}
.products-title a {
	color: var(--color-1);
	text-decoration: none;
}

.products-variation-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.products-variation-item {
	width: 45%;
}

.products-price {
	display: block;
	font-family: var(--font-2);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	display: flex;
	column-gap: 10px;
}
.products-price del,
.products-price ins {
	display: block;
}
.products-price bdi {
	color: var(--color-4);
}
.products-price ins {
	text-decoration: none;
}
.products-price del bdi {
	color: var(--color-1);
}
.products-cart-btn {
	background-color: var(--color-1);
	padding: 5px 30px;
	border-radius: 30px;
	color: #fff;
	display: inline-block;
}
.products-cart-btn:hover {
	color: #fff;
	background-color: var(--color-1-hover);
}
/* Products END */

/* Map START */
.map-wrap {
	background-color: #f6f6f6;
	padding-top: 80px;
}
/* Map END */

/* Videos START */
.videos-wrap {
	background-color: var(--color-1);
	padding: 150px 0;
}
.videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.video-item {
	overflow: hidden;
	border-radius: 20px;
	height: 218px;
	position: relative;
	cursor: pointer;
}
.video-item video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--color-1);
	width: 70px;
	height: 70px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-play::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	transform: translate(-50%, -50%);
	background: linear-gradient(180deg, #0E4A8B 0%, #0E4A8B 100%);
	border-radius: inherit;
	opacity: 0.3;
	z-index: -1;
	animation: pulse 5s infinite;
}
.video-play::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	transform: translate(-50%, -50%);
	background: linear-gradient(180deg, #0E4A8B 0%, #0E4A8B 100%);
	border-radius: inherit;
	opacity: 0.4;
	z-index: -1;
	animation: pulseBig 5s infinite;
}
.video-play img {
	width: 40%;
}

@keyframes pulse {
	0% {
		transform: scale(0.8);
		box-shadow: 0 0 0 rgba(38, 75, 134, 0.7);
	}
	50% {
		transform: scale(1);
		box-shadow: 0 0 20px rgba(38, 75, 134, 0.3);
	}
	100% {
		transform: scale(0.8);
		box-shadow: 0 0 0 rgba(38, 75, 134, 0.7);
	}
}
@keyframes pulseBig {
	0% {
		transform: scale(0.8);
		box-shadow: 0 0 0 rgba(38, 75, 134, 0.7);
	}
	50% {
		transform: scale(1.4);
		box-shadow: 0 0 20px rgba(38, 75, 134, 0.3);
	}
	100% {
		transform: scale(0.8);
		box-shadow: 0 0 0 rgba(38, 75, 134, 0.7);
	}
}
/* Videos END */

/* Ecology START */
.ecology-wrap {
	padding: 150px 0 700px 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.ecology-content {
	max-width: 750px;
	margin: 0 auto;
}
/* Ecology END */


/* Newsletter START */
.newsletter-wrap {
	background-color: var(--color-4);
	padding: 80px 0;
	color: #fff;
}
.newsletter-wrap .desc {
	margin-bottom: 30px;
}
.newsletter-wrap div.tnp-subscription, form.tnp-subscription, form.tnp-profile {
	max-width: 650px;
}
.newsletter-wrap div.tnp-subscription .tnp-form-group {
	display: flex;
	column-gap: 10px;
}
.newsletter-wrap div.tnp-subscription .tnp-form-group .tnp-field-email {
	width: 100%;
}
.newsletter-wrap div.tnp-subscription .tnp-form-group .tnp-field-email input {
	border-radius: 50px;
	outline: none;
	background-color: #ffa4f9;
	padding: 12px 20px;
}
.newsletter-wrap .tnp-field input[type="submit"] {
	border-radius: 30px;
	background-color: var(--color-1);
	text-transform: uppercase;
	padding: 12px 20px;
	transition: background-color 0.35s ease;
}
.newsletter-wrap .tnp-field input[type="submit"]:hover {
	background-color: var(--color-2);
}
/* Newsletter END */

/* About Us START */
.banner-content-wrap {
	padding: 100px 0;
}
.banner-content-wrap .title-center h2 {
	font-size: 40px;
}
.banner-content-wrap .title-center h1 {
	font-size: 40px;
}
.banner-content-wrap .title-center h3 {
	font-size: 20px;
}

.swiper-videos .swiper-pagination {
	position: static;
	margin-top: 20px;
}
.swiper-videos .swiper-slide {}
.swiper-videos .swiper-slide video {
	display: block;
	overflow: hidden;
	width: 100%;
	border-radius: 10px;
}
.about-inner-textcontent {
	color: var(--color-2);
	font-size: 18px;
	font-weight: 500;
}
/* About Us END */

/* Sponsor START */
.sponsors-wrap {
	padding: 100px 0;
	background-color: var(--color-1);
	color: #fff;
}
/* Sponsor END */

/* Ecology V2 START */
.ecology-v2-wrap {
	padding: 100px 0 300px 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.ecology-v2-desc {
	margin-bottom: 40px;
}
.ecology-v2-image {
	text-align: center;
}
.ecology-v2-image img {
	max-width: 700px;
	display: inline-block;
}
/* Ecology V2 END */

/* News START */
.blog-page {
	padding-bottom: 100px;
}
.blog-item {
	margin-bottom: 40px;
}
.blog-item:hover .blog-thumb img {
	transform: scale(1.1);
}
.blog-thumb {
	height: 220px;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 15px;
}
.blog-thumb a {
	display: block;
	height: 100%;
    width: 100%;
}
.blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: 0.7s ease;
}

.blog-date-wrap {
	column-gap: 20px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
}
.blog-date-item {
	display: flex;
	column-gap: 10px;
	align-items: center;
}
.blog-title {
	margin-bottom: 10px;
}
.blog-title a {
	color: var(--color-1);
	text-decoration: none;
}
.blog-content p {
	margin-bottom: 0;
}

.widget {
	background-color: #fbf8f8;
	padding: 20px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.wp-block-search__label,
.widget .wp-block-heading {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--color-1);
	font-family: var(--font-2);
	margin-bottom: 10px;
}
.widget input[type="search"] {
	outline: none;
	border-radius: 30px;
	padding: 8px 15px;
}
.widget button {
	background-color: var(--color-2);
	color: var(--color-1);
	font-size: 14px;
	border: none;
	cursor: pointer;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	color: transparent;
	position: relative;
	transition: 0.35s ease;
}
.widget button:hover {
	background-color: var(--color-2-hover);
}
.widget button::before {
	font-family: 'bootstrap-icons';
	content: '\F52A';
	display: inline-block;
	color: var(--color-1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.widget ul {
	margin-bottom: 0;
	padding-left: 0;
}
.widget ul li {
	display: flex;
	column-gap: 8px;
}
.widget ul li::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	min-width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: var(--color-1);
	margin-top: 9px;
}
.widget ul li a {
	color: var(--color-1);
	text-decoration: none;
}

.widget .wp-block-latest-posts {
	margin-bottom: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:nth-last-child(n+2) {
	margin-bottom: 5px;
}
.widget .wp-block-latest-posts__post-title {
	line-height: 1.5;
    font-size: 16px;
    display: inline-block;
    color: var(--color-1);
	transition: color 0.3s ease;
}
.widget .wp-block-latest-posts__post-title:hover {
	color: var(--color-1-hover);
	text-decoration: none;
}

.wp-block-latest-comments {
	padding-left: 0;
	margin-bottom: 0;
}
.wp-block-latest-comments li a {
	color: var(--color-1);
	text-decoration: none;
}

.paginations {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 30px;
}
.paginations a,
.paginations .page-numbers {
	display: block;
    padding: 10px 15px;
    background-color: #EBEBEB;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
	line-height: 1;
	text-decoration: none;
	color: var(--color-1);
}
.paginations .page-numbers.current {
	background-color: var(--color-1);
	color: #fff;
}
/* News END */

/* News Single START */
.article-wrap {
	padding-bottom: 100px;
}
.article-thumb {
	height: 500px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}
.article-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-wrap h1,h2,h3,h4,h5,h6 {
	margin-bottom: 10px;
}

.comments-title {
	font-size: 40px;
	margin-bottom: 20px;
}
/* News Single END */

/* Contacts START */
.contacts-wrap {
	background-color: var(--color-3);
	padding: 100px 0;
	color: #fff;
}
.contacts-phone-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	max-width: 790px;
	margin: 0 auto 50px auto;
}
.contacts-phone-item {
	text-align: center;
	font-size: 50px;
	font-family: var(--font-2);
	border-right: 1px solid #fff;
	padding-bottom: 40px;
	color: #fff;
}
.contacts-phone-item:hover {
	color: #fff;
}
.contacts-phone-item:nth-child(1),
.contacts-phone-item:nth-child(2) {
	padding-top: 40px;
}
.contacts-phone-item:nth-child(2n+2) {
	border-right: none;
}

.contacts-email {
	text-align: center;
	margin-bottom: 50px;
}
.contacts-email a {
	color: var(--color-2);
	font-size: 45px;
	font-weight: 400;
	font-family: var(--font-2);
}

.contacts-line {
	height: 100px;
	width: 1px;
	border-right: 1px solid #fff;
	margin: 0 auto 50px auto;
}

.contacts-social {
	display: flex;
	justify-content: center;
	column-gap: 30px;
}
.contacts-social-item {
	--size: 60px;
	width: var(--size);
	min-width: var(--size);
	height: var(--size);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: var(--color-1);
	font-size: 30px;
	transition: background-color 0.5s ease;
}
.contacts-social-item:hover {
	background-color: var(--color-2);
}
.contacts-social-item i {
	line-height: 1;
	margin-top: 3px;
}

.form-wrap {
	background-color: var(--color-1);
	padding: 100px 0;
	color: #fff;
}
.form-container {
	max-width: 350px;
	margin: 0 auto;
}
.form-title {
	font-size: 32px;
	margin-bottom: 20px;
	color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-radius: 20px;
    padding: 20px;
    text-align: center;
}
/* Contacts END */

/* Clips START */
.clips-wrap {
	padding: 100px 0;
}
/* Clips END */

/* Recommend START */
.recommend-wrap {
	padding: 100px 0;
	background-color: #f5f5f5;
}
/* Recommend END */

/* Technical START */
.tech-wrap {
	padding: 100px 0;
}
.tech-title {
	text-align: center;
	font-weight: 700;
	font-family: var(--font-2);
	font-size: 45px;
	margin-bottom: 60px;
}
.tech-title span {
	margin: 0 15px;
}
.tech-title::before {
	content: '';
	height: 1px;
	width: 200px;
	border-bottom: 1px solid var(--color-2);
	display: inline-block;
	vertical-align: middle;
}
.tech-title::after {
	content: '';
	height: 1px;
	width: 200px;
	border-bottom: 1px solid var(--color-2);
	display: inline-block;
	vertical-align: middle;
}

.tech-card-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 80px;
	max-width: 1000px;
    margin: 0 auto 80px auto;
}
.tech-card {
	width: 45%;
	background-color: #f6f6f6;
	color: #191e4e;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0px 14px 25px 0px rgba(0, 0, 0, 0.2);
}
.tech-card p {
	margin-bottom: 0;
}
/* Technical END */

/* Woocommerce START */
.account-wrap {
	padding: 60px 0;
}
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link {
	list-style-type: none;
}
.woocommerce-MyAccount-navigation ul {
	padding-left: 0;
	margin-bottom: 0;
}
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link > a {
	padding: 10px;
	display: block;
	border-bottom: 1px solid #e5e5e5;
}

.woocommerce form .form-row {
	display: block;
	margin-bottom: 20px;
	width: 100%;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
	display: block;
    border-radius: 30px;
    border: 1px solid #d0d0d0;
    padding: 14px 18px;
}
.woocommerce form .form-row select {
	display: block;
    border-radius: 30px;
    border: 1px solid #d0d0d0;
    padding: 14px 18px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 30px;
	color: #fff;
	padding: 16px 32px;
	font-family: var(--font-1);
	font-size: 16px;
	transition: background-color 0.5s ease, color 0.5s ease;
	text-decoration: none;
	background-color: var(--color-1);
}
/* Woocommerce END */

/* Footer START */
.site-footer {
	padding: 80px 0;
	background-color: var(--color-1);
	color: #fff;
}
.footer-top {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 80px;
	margin-bottom: 60px;
}
.footer-phone-item {
	font-size: 50px;
	font-weight: 400;
	font-family: var(--font-2);
}
.footer-phone-item a {
	color: #fff;
	text-decoration: none;
}
.footer-phone-icon {
	font-size: 70px;
    color: #fff;
	display: block;
}
.footer-phone-icon:hover {
	color: #fff;
}
.footer-phone-icon img {
	width: 80px;
}

.footer-social {
	display: flex;
	justify-content: center;
	column-gap: 15px;
}
.footer-social a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: 35px;
	height: 35px;
	transition: background-color 0.5s ease;
	border-radius: 100%;
}
.footer-social a:hover {
	background-color: #e0e0e0;
}
.footer-social a img {
	display: block;
	max-width: 18px;
}

.footer-text {
	text-align: center;
	color: #fff;
	margin-top: 30px;
	font-size: 14px;
}
.footer-text a {
	color: #fff;
}
/* Footer END */


/* Responsive START */

@media screen and (max-width: 1200px) {

	/* Header 1200 START */
	.header-row {
		column-gap: 20px;
	}
	.header-menu-nav > ul > li > a {
		padding: 8px 15px;
		font-size: 16px;
	}
	/* Header 1200 END */

}

@media screen and (max-width: 992px) {

	/* Header 992 START */
	.header-menu-nav,
	.header-cart-row {
		display: none;
	}
	/* Header 992 END */

}

/* Responsive END */