/* MAIN LAYOUT */
/* ----------------------------------------- */

/* ---------------------------------------
   			Vars
--------------------------------------- */

:root {
	--font: 'Ubuntu', sans-serif;
	--sub-font: 'Ubuntu Sans', sans-serif;
	--main-color: #205993;
	--sub-color: #232323;
	--text-color: #393939;
}




/* ---------------------------------------
	HTML
--------------------------------------- */

*,*::before,*::after {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	position: static !important;
	display: flex;
	flex-direction: column;
	height: auto;
	font-family: var(--font);
	min-height: 100vh;
	margin: 0;
	color: #232323;
	font-size: 16px;
	line-height: 1.5;
}

main {
	display: block;
}

*:last-child {
	margin-bottom: 0;
}


/* ---------------------------------------
	Preloader
--------------------------------------- */

.preloader {
	position: fixed;
	z-index: 100000000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	visibility: visible;
	opacity: 1;
	background-color: #fff;
	color: #222;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader--hidden {
	visibility: hidden;
	opacity: 0;
}

.position-center {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

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

img {
	transition: opacity 0.3s ease-in-out;
}

img.pre-lazyload, &[data-lazy-src] {
	opacity: 0;
}

img.lazyloaded {
	opacity: 1;
}

/* ---------------------------------------
   			Container
--------------------------------------- */

.container {
	width: 100%;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

.main-content {

}

.two-columns {
	columns: 2;
}

@media (max-width: 767px) {
	.two-columns {
		columns: 1;
	}
}



/* ---------------------------------------
   			Typography
--------------------------------------- */

p {
	font-size: 16px;
	line-height: 24px;
	margin: 0;
}

p:not(:last-child) {

}

@media (max-width: 767px) {

}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	font-family: var(--sub-font);
	margin: 0 0 0.6rem 0;
}


/*H1*/

h1 {
	font-size: 55px;
	line-height: 1.4;
}
@media (max-width: 992px) {
	h1 {
		font-size: 46px;
	}
}
@media (max-width: 767px) {
	h1 {
		font-size: 42px;
	}
}
@media (max-width: 576px) {
	h1 {
		font-size: 35px;
	}
}

/*H2*/


h2 {
	font-size: 48px;
	line-height: 1.4;
}
@media (max-width: 992px) {
	h2 {
		font-size: 40px;
	}
}
@media (max-width: 767px) {
	h2 {
		font-size: 35px;
	}
}
@media (max-width: 576px) {
	h2 {
		font-size: 28px;
	}
}

h2 strong {
	font-weight: 700;
}

/*H3*/

h3 {
	font-size: 32px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h3 {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
	h3 {
		font-size: 28px;
	}
}
@media (max-width: 576px) {
	h3 {
		font-size: 24px;
	}
}

/*H4*/

h4 {
	font-size: 30px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h4 {
		font-size: 27px;
	}
}
@media (max-width: 767px) {
	h4 {
		font-size: 24px;
	}
}
@media (max-width: 576px) {
	h4{
		font-size: 22px;
	}
}

/*H5*/

h5 {
	font-size: 24px;
	line-height: 1.16;
}
@media (max-width: 992px) {
	h5 {
		font-size: 22px;
	}
}
@media (max-width: 767px) {
	h5 {
		font-size: 20px;
	}
}
@media (max-width: 576px) {
	h5 {
		font-size: 18px;
	}
}

/*H6*/

h6 {
	font-size: 20px;
	line-height: 1.16;
}
@media (max-width: 992px) {
	h6 {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	h6 {
		font-size: 18px;
	}
}
@media (max-width: 576px) {
	h6 {
		font-size: 16px;
	}
}

p a {
	text-decoration: underline;
	font-size: inherit;
	line-height: inherit;
	transition: all 0.2s ease-in-out;
}

ul, ol {
	list-style-position: inside;
}

ul {

}

.button {
	border: 1px solid var(--main-color);
	padding: 15px 30px;
	display: inline-block;
	text-align: center;
	color: var(--sub-color);
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 20px;
	background-color: var(--main-color);
}

.button:hover {
	background-color: var(--sub-color);
	color: var(--main-color);
	border-color: var(--main-color);
}

.button:focus {
	opacity: 0.8;
}

/* ---------------------------------------
			Header
--------------------------------------- */

.header {

}

.header-scrolled {
}

.header-fixed {
	
}

.header__logo h1 {
	font-size: 0;
	line-height: 1;
}

.logo h1 a {
	max-height: 120px;
	object-fit: contain;
}

.menu-item .sub-menu {
	display: none;
	top: 100%;
	right: auto;
	left: 0;
}

.header-menu .current_page_item > a {
	color: #666970;
}

.menu-item a {
	color: #232323;
	font-size: 16px;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
}

.menu-item a:hover {
	color: #666970;
}

.header-contacts {
	background-color: #123D68;
	padding: 5px 0;
	z-index: 150;
}

.header__row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}

.header-contacts__row {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}


.contact-link {
	font-size: 16px;
	line-height: 1.4;
	color: white;
	display: flex;
	gap: 5px;
	text-decoration: none;
	align-items: center;
}

.contact-link:hover {
	opacity: 0.8;
}

.header-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	gap: 40px;
	padding: 0;
	list-style: none;
}

.header-button {
	color: #004F9F;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	font-family: var(--sub-font);
	border: 2px solid #004F9F;
	border-radius: 12px;
	display: inline-block;
	padding: 9px 20px 9px 20px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: -0.03em;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.header-button:hover {
	border-color: #004F9F;
	background-color: #004F9F;
	color: white;
}

.header__btn {
	display: none;
}

#clickWrapper {
	cursor:pointer;
	height:27px;
	width:27px;
}

/* menu start */
.menu {
	position: absolute;
	background-color: #123D68;
	width: 27px;
	height: 2px;
	margin-top:12px;
}

.animate.menu{
	animation-name: menu-menu;
	animation-duration: 0.3s;
}

@keyframes menu-menu {
	0% {
		width:0;
		height:0;
	}
	50% {
		width:0;
		height:0;
	}
	51%{
		position: absolute;
		background-color: #123D68;
		width: 27px;
		height: 2px;
	}
}

.menu:after {
	content: "";
	position: absolute;
	background-color: #123D68;
	width: 27px;
	height: 2px;
	margin-top: -12px;
}

.animate.menu:after {
	animation-name: menu-after;
	animation-duration: 0.3s;
}

@keyframes menu-after {
	0% {
		transform: rotate(-45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top:-12px;
	}
}

.menu:before {
	content: "";
	position: absolute;
	background-color: #123D68;
	width: 27px;
	height: 2px;
	margin-top: 12px;
}

.animate.menu:before{
	animation-name: menu-before;
	animation-duration: 0.3s;
}
@keyframes menu-before {
	0% {
		transform: rotate(45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top: 12px;
	}
}
/* menu end */

/* close start */
.close {
	position: absolute;
	margin-top: 12px;
	margin-left: 0;
	opacity: 1 !important;
	text-shadow: none;
}

.close.animate{
	animation-name: close-close;
	animation-duration: 0.3s;
}

@keyframes close-close {
	0% {
		position: absolute;
		background-color: #123D68;
		width: 27px;
		height: 2px;
		margin-top: 12px;
	}
	50% {
		display:none;
		width:27px;
		height: 2px;
	}
	100%{
		width:0;
		height:0;
	}
}

.close:after {
	content: "";
	position: absolute;
	background-color: #123D68;
	width: 27px;
	height: 2px;
	transform: rotate(45deg);
}

.animate.close:after {
	animation-name: close-after;
	animation-duration: 0.3s;
}

@keyframes close-after {
	0% {
		transform: rotate(0deg);
		margin-top: 14px;
	}
	50% {
		transform: rotate(0deg);
		margin-top: 0;
	}
	100%{
		transform: rotate(45deg);
	}
}

.close:before {
	content: "";
	position: absolute;
	background-color: #123D68;
	width: 27px;
	height: 2px;
	transform: rotate(-45deg);
}

.animate.close:before {
	animation-name: close-before;
	animation-duration: 0.3s;
}

@keyframes close-before {
	0% {
		transform: rotate(0deg);
		margin-top:-12px;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(-45deg);
	}
}
/* close end */

.mega-header {
	display: none;
}

@media (max-width: 1240px) {
	.header-menu {
		gap: 15px;
	}
}

@media (max-width: 992px) {
	.header-contacts__row {
		gap: 15px;
		justify-content: space-between;
	}
	.header__menus {
		display: none;
	}
	.header__btn {
		display: flex;
	}
	.header__button {
		display: flex;
		gap: 15px;
		align-items: center;
	}
	.header-button {
		padding: 8px 15px;
		font-size: 14px;
		line-height: 1;
	}
	.mega-header {
		position: fixed;
		top: 0;
		padding-top: 100px;
		padding-bottom: 100px;
		right: 0;
		height: 100vh;
		width: 100%;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		z-index: -1;
		overflow: scroll;
		display: block;
		visibility: hidden;
	}
	.bg {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--main-color);
	}
	.header-button {
		display: block;
	}
	.header__menus {
		display: none;
	}
	.mega-header-active {
		opacity: 1;
		z-index: 104;
		visibility: visible;
	}
	.mega-header__block {
		padding: 15px;
		justify-content: center;
		display: flex;
		height: 100%;
		flex-direction: column;
	}
	.header-menu-nav {
		overflow: scroll;
		height: calc(100vh - 61px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		z-index: 200;
	}
	.header-menu li a {
		color: white;
		font-size: 22px;
		line-height: 25px;
	}
	.mega-header__container {
		height: 100%;
	}
	.header-menu .sub-menu {
		display: none;
	}
	.header-menu {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 767px) {
	.contact-link {
		font-size: 14px;
		line-height: 1.2;
	}
	.header-contacts__row .contact-link:last-child {
		display: none;
	}
	.header-contacts__row {
		justify-content: center;
	}
	.header-button {
		padding: 8px 5px;
		font-size: 12px;
		line-height: 1;
	}
	.header-contacts__row .contact-link:first-child {
		display: none;
	}
}


/* ---------------------------------------
			Footer
--------------------------------------- */

.footer {
	margin-top: auto;

}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.socials a:hover {
	opacity: 0.8;
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu li a {

}

.footer-menu li a:hover {

}

.footer__logo {
	margin-bottom: 14px;
}

.footer__links {
	display: inline-flex;
	flex-direction: column;
	gap: 10px;
}

.footer__links a {

}



.main-content-text {
	padding: 96px 0;
}

.footer-menu .sub-menu {
	position: relative !important;
	width: auto;
	display: block !important;
	top: 0 !important;
	left: 0 !important;
}

.footer-menu .menu-item {
	flex-direction: column;
}

@media (max-width: 1240px) {

}

@media (max-width: 992px) {

}

@media (max-width: 767px) {

}

/* ---------------------------------------
				Slider
--------------------------------------- */

.slick-dots {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -100%);
	list-style: none;
	gap: 10px;
	z-index: 60;
}


.slick-dots li {

}


.slick-dots li button {
	background-color: white;
	padding: 0;
	font-size: 0;
	width: 8px;
	height: 8px;
	border: 1px solid white;
	border-radius: 50%;
	cursor: pointer;

	position: relative;
}

.slick-dots li button:after {
	width: 16px;
	height: 16px;
	background: transparent;
	border: 1px solid white;
	content: '';
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.slick-dots .slick-active button:after {
	opacity: 1;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	outline: none;
	box-shadow: none;
	font-size: 0 !important;
	border: none !important;
	background: transparent !important;
	z-index: 80;
	transform: translate(0%, -50%);
	cursor: pointer;
	padding: 0 !important;
	line-height: 1 !important;
}

.slick-arrow:after {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-arrow:hover {
	border-color: #004F9F;
}

.slick-prev {
	left: 0;
}

.slick-prev:after {
	content: url("../images/left-arrow.png");

}

.slick-next {
	right: 0;
}

.slick-next:after {
	content: url("../images/right-arrow.png");
}

.hero-slider .slick-prev {
	transform: translate(-60%, -50%);
}

.hero-slider .slick-next {
	transform: translate(60%, -50%);
}

/* ---------------------------------------
			Home
--------------------------------------- */



.fade-slider > .e-con-inner .slick-slide > div {
	display: flex;
}

.fade-slider > .e-con-inner .slick-slide p a {
	text-decoration: underline;
}

.text-link p a {
	text-decoration: underline;
}

.text-link span a {
	text-decoration: underline;
}

.header-fixed-menu li a {
	border: 1px solid transparent;
	border-radius: 16px;
	transition: all 0.3s ease-in-out;
}

.header-fixed-menu li a:hover {
	border-color: #338B61;
}

.header-menu li a {
	border: 1px solid transparent;
	border-radius: 16px;
	transition: all 0.3s ease-in-out;
}

.header-menu .current-menu-item > a {
	border-color: #338B61;
}

.header-menu li a:hover {
	border-color: #338B61;
}

.header-scrolled .header-container {
	transition: all .3s ease-in-out;
}

.header-scrolled .header-container {
	background-color: rgba(0, 0, 0, .4);
}

.header-container > .e-con-inner {
	transition: all 0.3s ease-in-out;
}

.header-scrolled .header-container > .e-con-inner {
	padding: 15px 0;
}

footer {
	margin-top: auto;
}

.our-history {
	position: relative;
	overflow: hidden;
}




@media (min-width: 767px) {
	.our-history-line:after {
		width: 16px;
		height: 16px;
		background-color: #121318;
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0);
		border-radius: 50%;
	}



	.our-history-section:after {
		position: absolute;
		top: 50%;
		background-color: #1213184D;
		height: 1px;
		right: 50%;
		transform: translate(50%, -50%) rotate(90deg);
		content: '';
		width: 1000%;
	}
}

.my-tabs {

}

.my-tabs .e-n-tabs-heading > button {
	flex: 1 1 5%;
}

.my-tabs .e-n-tabs-heading > button:hover {
	border-radius: 16px 16px 0 0 !important;
	border-color: #338B61 !important;
	cursor: pointer;
}

.my-tabs .e-n-tabs-heading > button:focus {
	border-radius: 16px 16px 0 0 !important;
	border-color: #338B61 !important;
	cursor: pointer;
}

#gform_1 {
	max-width: 590px;
	margin: 0 auto;
}

.gform_wrapper form .gform_fields {
	grid-row-gap: 48px !important;
}

#gform_1 .gform-body  {

}

.gform_wrapper form  .gfield--type-text input {
	border: 1px solid #121318 !important;
	height: 32px !important;
	border-radius: 100px !important;
	color: black !important;
	font-size: 16px !important;
	line-height: 1.25 !important;
	letter-spacing: 0.8px !important;
}

.gform_wrapper form  .gfield--type-text input::placeholder {
	color: #C5D8CE !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--type-text input:focus {
	border-color: #338B61 !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--type-text label {
	padding-left: 15px;
	color: #121318 !important;
	font-size: 16px !important;
	letter-spacing: 0.5px !important;
	line-height: 1.25px !important;
	display: block !important;
	padding-bottom: 6px;
}

.gform_wrapper form  .gfield_required {
	display: none !important;
}

.gfield--input-type-email {

}

.gform_wrapper form  .gfield--input-type-email input {
	border: 1px solid #121318 !important;
	height: 32px !important;
	border-radius: 100px !important;
	color: black !important;
	font-size: 16px !important;
	line-height: 1.25 !important;
	letter-spacing: 0.8px !important;
}

.gform_wrapper form  .gfield--input-type-email input::placeholder {
	color: #C5D8CE !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--input-type-email input:focus {
	border-color: #338B61 !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--input-type-email label {
	padding-left: 15px;
	color: #121318 !important;
	font-size: 16px !important;
	letter-spacing: 0.5px !important;
	line-height: 1.25px !important;
	display: block !important;
	padding-bottom: 6px;
}

.gfield--input-type-phone {

}

.gform_wrapper form  .gfield--input-type-phone input {
	border: 1px solid #121318 !important;
	height: 32px !important;
	border-radius: 100px !important;
	color: black !important;
	font-size: 16px !important;
	line-height: 1.25 !important;
	letter-spacing: 0.8px !important;
}

.gform_wrapper form  .gfield--input-type-phone input::placeholder {
	color: #C5D8CE !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--input-type-phone input:focus {
	border-color: #338B61 !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--input-type-phone label {
	padding-left: 15px;
	color: #121318 !important;
	font-size: 16px !important;
	letter-spacing: 0.5px !important;
	line-height: 1.25px !important;
	display: block !important;
	padding-bottom: 6px;
}

.gform_wrapper form  .gfield--input-type-textarea textarea {
	border: 1px solid #121318 !important;
	height: 111px !important;
	min-block-size: 111px !important;
	border-radius: 16px !important;
	color: black !important;
	font-size: 16px !important;
	line-height: 1.25 !important;
	letter-spacing: 0.8px !important;
}

.gform_wrapper form  .gfield--input-type-textarea textarea::placeholder {
	color: #C5D8CE !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper form  .gfield--input-type-textarea textarea:focus {
	border-color: #338B61 !important;
	outline: none !important;
	box-shadow: none !important;
}
.gform_wrapper form  .gfield--input-type-textarea label {
	padding-left: 15px;
	color: #121318 !important;
	font-size: 16px !important;
	letter-spacing: 0.5px !important;
	line-height: 1.25px !important;
	display: block !important;
	padding-bottom: 6px;
}

.gform_wrapper form  .gfield--input-type-consent legend {
	display: none !important;
}

.gform_wrapper form  .gfield--input-type-consent label {
	color: #121318 !important;
	font-size: 14px !important;
	line-height: 1.25 !important;
	font-weight: 300 !important;
}

.gform_wrapper form  .gfield--input-type-consent label a {
	font-weight: 600;
	text-decoration: underline;
	color: #121318 !important;
}

.gform_wrapper form  .gfield--input-type-consent label a:hover {
	color: #338B61 !important;
}

.ginput_container_consent {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 385px !important;
}

/* Скрываем стандартный checkbox */
.ginput_container_consent input[type="checkbox"] {
	position: relative;
	width: 18px !important;
	height: 18px !important;
	-webkit-appearance: none;
	border-radius: 50% !important;
	border: 1px solid #000 !important;
	cursor: pointer !important;
	transition: all 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.ginput_container_consent input[type="checkbox"]:hover {
	border-color: #555;
}

.ginput_container_consent input[type="checkbox"]:checked:after {

}

.ginput_container_consent input[type="checkbox"]:before {
	display: none !important;
}

.ginput_container_consent input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	background-color: black !important;
	border-radius: 50% !important;
}

#field_1_10 {
	margin-top: -25px;
}

.gform_wrapper form  .gform-footer {
	margin-top: 56px !important;
}

.gform_wrapper form  .gform-footer .gform_button  {
	background-color: #121318 !important;
	border: 1px solid #121318 !important;
	padding: 5px 5px !important;
	min-height: 32px !important;
	min-width: 184px !important;
	color: white !important;
	border-radius: 100px !important;
}

.gfield--input-type-fileupload label  {
	color: #121318 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-decoration: underline !important;
	position: relative;
	display: flex !important;
	align-items: flex-start !important;
}

.gfield--input-type-fileupload label:before {
	background-image: url("../images/arrow-top.png");
	content: '';
	left: 0;
	top: 0;
	width: 12px;
	height: 20px;
}

.post-content-product {

}

.post-content-product p {
	font-size: 18px;
	line-height: 36px;
}

.post-content-product li {
	font-size: 18px;
	line-height: 36px;
}

.download-button {
	color: #121318 !important;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	font-family: "Nunito", Sans-serif;
	text-decoration: underline !important;
	letter-spacing: 0.10em !important;
}

.download-button:hover {
	color: #338B61 !important;
}

.slider-for-item {
	border-radius: 16px;
	background: black;
}

.slider-for-item img {
	border-radius: 16px !important;
	width: 100%;

	object-fit: cover;
}

.slick-arrow {
	padding: 0;
	background: transparent;
	border: none;
}

.slick-arrow:hover:after {
	filter: brightness(0) saturate(100%) invert(29%) sepia(96%) saturate(473%) hue-rotate(112deg) brightness(94%) contrast(98%);
}

.slider-nav-item {
	border-radius: 16px !important;
	overflow: hidden;
	height: 136px !important;
}

.slider-nav .slick-list {
	margin: 0 -10px;
}

.slider-nav .slick-track {
	margin: 0;
}

.slider-nav .slick-slide {
	margin: 0 10px;
	opacity: 0.8;
	cursor: pointer;
}

.slider-nav .slick-current {
	opacity: 1;
}

.product-sliders {
	overflow: hidden;
}

.product-slider {
	overflow: hidden;
	max-width: 592px;
}

.slider-for {
	margin-bottom: 7px;
}

.slider-nav-item img {
	width: 100% !important;
	height: 100% !important;
	border-radius: 16px !important;
}

.table-sizes {
	border: 1px solid #121318;
	border-radius: 16px;
	padding: 0 10px 15px 10px;
}

.table-sizes-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 5px;

}

.table-sizes-grid:not(:last-child) {
	border-bottom: 1px solid #12131833;
}

.table-sizes-block__heading {

}

.table-sizes-header__item {
	padding: 10px 0;
}

.table-sizes-block-item {
	padding: 10px 0;
}

.table-sizes-block__heading {
	padding: 10px 10px;
}

.table-sizes-header__item span {
	color: #121318;
	letter-spacing: 0.02em;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 700;
}

.table-sizes-header__item strong {
	font-weight: 700;
}

.table-sizes-block__heading strong {
	font-weight: 700;
}

.table-sizes-block__heading {
	color: #121318;
	letter-spacing: -0.02em;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 700;
}

.product-item__link {
	position: relative;
	background-color: #121318;
	height: 388px;
	border-radius: 16px 16px 0 0;
	display: flex;
	width: 100%;
	overflow: hidden;
}

.product-item__link img {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 1;
	transition: all 0.3s ease-in-out;
	border-radius: 16px 16px 0 0;
}

.product-item-image-hover {
	z-index: 2;
	opacity: 0;
}

.product-item:hover .product-item-image-hover {
	opacity: 1;
}

.product-item {
	border-radius: 16px;
}

.products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 70px 15px;
}

.product-item-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.product-item-grid p {
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.10em;
	color: #121318;
}

.product-item__info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.product-item-grid span {
	font-size: 17px;
	line-height: 1;
	color: #121318;
}

.product-item-grid span strong {
	font-size: 21px;
	font-weight: 700;
}

.product-item__title {
	display: block;
	font-size: 17px;
	line-height: 1.5;
	color: #121318;
	font-weight: 700;
}

.product-item {
	border: 1px solid #338B61;
}

.product-item__info {
	padding: 30px 20px;
}

.product-item__button {
	color: #121318 !important;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	border: 1px solid #338B61;
	border-radius: 100px;
	text-decoration: none;
	display: inline-block;
	padding: 6px 33px;
	letter-spacing: 0.10em;
	transition: all 0.3s ease-in-out;
}

.product-item__button:hover {
	background-color: #338B61;
	border-color: #338B61;
	color: white !important;
}

.product-link {
	color: #338B61;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-decoration: underline !important;
}

.product-link:hover {
	opacity: 0.8;
}

.product-item__links {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.products-sections {
	padding-bottom: 96px;
}

.filter-title {
	width: 100%;
	max-width: 203px;
}

.filters {
	display: flex;
	margin-bottom: 70px;
}

.filter-title span {
	color: #121318;
	font-size: 21px;
	line-height: 1.25;
	font-weight: 400;
	display: block;
	padding-left: 45px;
	letter-spacing: 0.02em;
}

.volume label {
	display: block;
	margin-bottom: 3px;
}

.height label {
	display: block;
	margin-bottom: 3px;
}

.forms label {
	display: block;
	margin-bottom: 3px;
}

.clear-filters .clear-filter {
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s ease-in-out;
}

.filters .active {
	opacity: 1;
	z-index: 2;
	visibility: visible;
	pointer-events: auto;
}

.volume {

}



.select-wrapper {
	position: relative;
}

.select-wrapper:after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-10px, -50%);
	content: '';
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../images/arrow-green.svg");
	width: 13px;
	height: 7px;
}

.select-wrapper  {
	width: 100%;
	max-width: 187px;
}

.select-wrapper select {
	height: 32px;
	appearance: none;
	color: #121318;
	font-size: 16px;
	line-height: 1.25;
	background-color: transparent;
	border: 1px solid #338B61;
	border-radius: 100px;
	text-align: left;
}

.filters select {
	width: 100%;
	padding-left: 18px;
	padding-right: 18px;
}

.volume .select-wrapper  {
	width: 100%;
	max-width: 112px;
}

.clear-filter {
	background-color: transparent !important;
	padding: 0 !important;
	color: #121318 !important;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0.10em;
	border: none !important;
	font-weight: 400;
	cursor: pointer;
}

.volume-blocks {
	display: flex;
	align-items: center;
	gap: 9px;
}

.volume {
	width: 100%;
	max-width: 295px;
}

.filters .height {
	width: 100%;
	max-width: 223px;
}

.filters .forms {
	width: 100%;
	max-width: 223px;
}

#products-loading img {
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	filter: brightness(0) saturate(100%) invert(38%) sepia(98%) saturate(284%) hue-rotate(99deg) brightness(99%) contrast(84%);
}


#products-loading {
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 100%;
	height: 100vh;
	position: fixed;
	display: flex !important;
	justify-content: center;
	align-items: center;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(255,255,255,0.6);
}

.product-item {
	transition: all 0.3s ease-in-out;
}

.product-item:hover {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.active-loading {
	z-index: 100 !important;
	visibility: visible !important;
	opacity: 1 !important;
	display: flex !important;
}


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

.not-found-products {
	text-align: center;
	font-size: 18px;
	line-height: 36px;
	background-color: #EBF6F1;
	grid-column: 4 span;
}

.not-found-products {

}

.white-filter-oktoja {

}

.white-filter-oktoja .filter-title span {
	color: white;
}

.white-filter-oktoja .volume {
	color: white;
}

.white-filter-oktoja .select-wrapper select {
	color: white;
	background: #121318;
}

.white-filter-oktoja .clear-filter {
	color: white !important;
}

.white-filter-oktoja .clear-filter img {
	filter: brightness(0) saturate(100%) invert(98%) sepia(7%) saturate(48%) hue-rotate(279deg) brightness(119%) contrast(100%);
}

.white-filter-oktoja .product-item-grid p {
	color: white;
}

.white-filter-oktoja .product-item-grid span {
	color: white;
}

.white-filter-oktoja .product-item__title {
	color: white;
}

.white-filter-oktoja .product-item__button {
	color: white !important;
}

@media (max-width: 992px) {
	#field_1_10 {
		margin-top: 0 !important;
	}
}

@media (max-width: 1240px) {
	.products-grid {
		gap: 40px 15px;
	}
}

@media (max-width: 1024px) {
	.products-grid {
		gap: 30px 15px;
		grid-template-columns: 1fr 1fr;
	}
	.not-found-products {
		grid-column: 2 span;
	}
	.filter-title span {
		padding-left: 0;
	}
	.filters {
		margin-bottom: 36px;
		flex-direction: column;
		gap: 15px;
	}
	.filters .height {
		max-width: 100%;
	}
	.filters .forms {
		max-width: 100%;
	}
	.select-wrapper {
		max-width: 100%;
	}
	.volume .select-wrapper {
		max-width: 100%;
	}
	.volume {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.gform_wrapper form  .gform-footer {
		margin-top: 1rem !important;
	}
	.gform_wrapper form  .gform_fields {
		grid-row-gap: 30px !important;
	}
	.slider-nav {
		display: none !important;
	}
	.post-content-product p {
		font-size: 16px;
		line-height: 30px;
	}
	.table-sizes-header__item span {
		font-size: 16px;
	}
	.table-sizes-block__heading {
		font-size: 16px;
	}
	.remove-br-sm br {
		display: none;
	}
	.products-grid {
		gap: 20px;
		grid-template-columns: 1fr;
	}
	.not-found-products {
		grid-column: 1 span;
	}
}