/*!
Theme Name: Oliva
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: oliva
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.

Oliva 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=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--container: 1916px;
	--gap: 24px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 32px;
	--h2-size: 28px;
	--h3-size: 24px;
	--h4-size: 22px;
	--h5-size: 20px;
	--h6-size: 18px;

	--white: #FFFFFF;
	--black: #212529;
	--green: #204a20;
	--green-2: #2e582e;
	--green-3: #0d4b20;
	--green-4: #1c421c;
	--green-5: #288d08;
	--green-6: #1a6c00;
	--grey: #6b6b6b;
	--red: #af1112;
	--red-2: #8c0c0c;
	--grey-light: #f9f9f9;
	--grey-light-2: #c9c9c9;
}
*, ::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: 'Roboto', sans-serif;
	line-height: 1.5;
	color: var(--black);
	background: var(--white);
}
a {
	color: var(--green);
	transition: .5s;
}
a:hover {
	text-decoration: none;
	color: var(--green-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: 'Roboto', sans-serif;
	font-weight: 700;
	margin: var(--gap) 0 calc(var(--gap) / 1.5);
	line-height: 1.25;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
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 calc(var(--gap) / 1.5);
}
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-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px -15px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 7px;
	margin-bottom: 15px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	display: block;
	margin-bottom: 25px;
	font-family: 'Abhaya Libre', serif;
	font-weight: 400;
	font-size: var(--text-size);
	line-height: 1.25;
}
::-webkit-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
::-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-ms-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid var(--grey-light-2);
	color: var(--black);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
	height: 50px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 90px;
	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;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 16px;
}
*/



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--gap);
	padding-right: var(--gap);
}
.section {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
	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) * 1.5);
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading h2 {
	color: var(--green-3);
	font-size: var(--h1-size);
	margin: 0;
}
.heading.white h2 {
	color: var(--white);
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: calc(var(--gap) / 6);
	font-size: var(--text-size);
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	line-height: 1.5;
	border: none;
	padding: calc(var(--gap) / 3) calc(var(--gap) * 1.5);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	outline: none;
	min-height: 50px;
	cursor: pointer;
	text-transform: uppercase;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn.btn-sm {
	min-height: 40px;
	padding: calc(var(--gap) / 3) var(--gap);
}
.btn-primary {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--green-2);
	border-color: var(--green-2);
	color: var(--white);
}
/*.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	-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-dark);
}*/


.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: calc(var(--gap) / 2.5);
}
.swiper-pagination-bullet {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px !important;
	height: 16px !important;
	background: var(--grey-light) !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 50% !important;
	-webkit-border-radius: 50% !important;
	border-radius: 50% !important;
}
.swiper-pagination-bullet-active {
	background: var(--red) !important;
}


button.swiper-navigation {
	position: absolute;
	top: calc(50% - 18px);
	width: 50px;
	height: 50px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--green-5);
	outline: none;
	padding: 0;
	cursor: pointer;
	z-index: 9;
	opacity: 0;
	transition: .5s;
}
button.swiper-navigation.prev {
	left: -40px;
	transform: rotate(90deg);
}
button.swiper-navigation.next {
	right: -40px;
	transform: rotate(-90deg);
}
.swiper:hover button.swiper-navigation.prev,
.swiper-initialized:hover button.swiper-navigation.prev {
	left: var(--gap);
	opacity: 1;
}
.swiper:hover button.swiper-navigation.next,
.swiper-initialized:hover button.swiper-navigation.next {
	right: var(--gap);
	opacity: 1;
}
button.swiper-navigation:hover {
	background-color: var(--green-6);
}
button.swiper-navigation:disabled {
	background-color: var(--green-5);
	opacity: .15;
	cursor: no-drop;
}
button.swiper-navigation:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down-alt2.svg);
	mask-image: url(images/arrow-down-alt2.svg);
	background-color: var(--white);
	transition: .5s;
}

/*
.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 2.4);
}
.soc-links li.soc-mobile {
	display: none;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--white);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
	-ms-box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px 2px 6px 0 rgba(0, 0, 0, 0.08);
}
.soc-links li a:hover {
	background: var(--black);
}
.soc-links li a svg {
	flex: 0 0 20px;
	max-width: 20px;
	height: 20px;
}
.soc-links li a path {
	fill: #555555;
	transition: .5s;
}
.soc-links li a:hover path {
	fill: #FFFFFF;
}



.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: 60px var(--gap) var(--gap);
	transition: .5s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.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 var(--line);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--text-size-md);
	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;
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/expand-down.svg);
	mask-image: url(images/expand-down.svg);
	background-color: var(--black);
	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 {
	background-color: var(--blue);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-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: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	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: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h4-size);
	color: var(--black);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: #999999;
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}



.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;
}
.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;
	border: 1px solid var(--line);
}
.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: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
*/

.search-form {
	--search-form-height: 50px;
	height: var(--search-form-height);
	background: var(--grey-light);
	display: flex;
	gap: calc(var(--gap) / 6);
	padding: 0 calc(var(--gap) / 2) 0 calc(var(--gap) / 4);
}
/*.search-form select {
	width: 180px;
	flex: 0 0 180px;
	max-width: 180px;
	height: auto;
	background: none;
	border: none;
	padding: 0 calc(var(--gap) / 2);
}
.search-form-line {
	flex: 0 0 1px;
	max-width: 1px;
	height: calc(var(--search-form-height) - 10px);
	background: var(--grey);
	margin-top: 5px;
	opacity: .2;
}*/
.search-form input {
	width: auto;
	flex: auto;
	max-width: 100%;
	min-width: 240px;
	height: auto;
	background: none;
	border: none;
	padding: 0 calc(var(--gap) / 2);
}
.search-form button {
	background: url(images/search.svg) no-repeat center;
	background-size: 22px;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.search-form button:hover {
	transform: scale(1.05);
}






.wrapper {
	position: relative;
	z-index: 1;
}
.topbar {
	position: relative;
	background: var(--green-3);
	color: var(--white);
	z-index: 92;
}
.topbar-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) / 1.5);
	height: 50px;
	font-size: var(--text-size-sm);
}
.topbar-menu li {
	position: relative;
	z-index: 1;
}
.topbar-menu li a {
	padding: 0 calc(var(--gap) / 1.5);
	color: var(--white);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
	text-decoration: none;
}
.topbar-menu > li > a {
	height: 100%;
}
.topbar-menu li a:hover,
.topbar-menu li.current-menu-item > a {
	background: var(--green-4);
}
.topbar-menu li.menu-item-soc .menu-title {
	display: none;
}
.topbar-menu li .menu-image img {
	max-width: 16px;
	max-height: 16px;
}
.topbar-menu li.menu-item-soc .menu-image img {
	max-width: 20px;
	max-height: 20px;
}
.topbar-menu > li:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--yellow);
	left: 0;
	bottom: 0;
	transition: .5s;
	z-index: -1;
}
.topbar-menu > li:hover:after,
.topbar-menu > li.current-menu-item:after {
	width: 100%;
}
.topbar-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down-alt2.svg);
	mask-image: url(images/arrow-down-alt2.svg);
	background-color: var(--white);
	margin-left: -4px;
	transition: .5s;
}
.topbar-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.topbar-menu ul {
	position: absolute;
	top: 100%;
	left: calc(var(--gap) / -1.5);
	margin: 0;
	padding: calc(var(--gap) / 6) 0;
	list-style: none;
	background: var(--green-3);
	width: max-content;
	max-width: 280px;
	min-width: 100%;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.topbar-menu > li:last-child > ul {
	left: auto;
	right: calc(var(--gap) / -1.5);
}
.topbar-menu li:hover > ul {
	transform: translateY(0);
	opacity: 1;
	visibility: inherit;
	z-index: 1;
}
.topbar-menu > li:last-child > ul {
	left: auto;
	right: 0;
}
.topbar-menu ul li:last-child {
	border-bottom: none;
}
.topbar-menu ul li a {
	padding-top: calc(var(--gap) / 3);
	padding-bottom: calc(var(--gap) / 3);
	display: flex;
	align-items: center;
	color: var(--white);
	text-transform: none;
}
.topbar-menu ul li.menu-item-has-children > a:after,
.topbar-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.topbar-menu ul ul {
	top: calc(var(--gap) / 1.5);
	left: 100%;
}

.header {
	position: relative;
	height: 100px;
	background: url(images/header.jpg) no-repeat center bottom;
	background-size: cover;
	z-index: 1;
}
.header:before {
	content: '';
	background: var(--white);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .55;
	z-index: -1;
}
.header-wrap {
	display: flex;
	align-items: center;
	gap: var(--gap);
	height: 100px;
}
.header-logo {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
}
.header-logo img {
	max-height: 90px;
}
.header-contacts {
	flex: 0 0 calc(50% - var(--gap) / 2);
	max-width: calc(50% - var(--gap) / 2);
	display: flex;
	align-items: center;
	gap: var(--gap);
}
.header-contacts-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 8);
}
.header-contacts p {
	margin: 0;
	display: flex;
	font-size: var(--h6-size);
	color: var(--green-5);
	text-shadow: 0 1px 1px var(--white), 0 1px 1px var(--white), 0 1px 1px var(--white), 0 1px 1px var(--white);
}
.header-contacts p a {
	color: var(--green-5);
	text-decoration: none;
}
.header-contacts p a:hover {
	color: var(--green-3);
}
.header-contacts-value {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
}
.header-contacts-value:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.header-contacts p.schedule .header-contacts-value:before {
	background-image: url(images/clock.svg);
}
.header-contacts p.kyivstar .header-contacts-value:before {
	background-image: url(images/kyivstar.svg);
	background-size: 20px;
	background-position: center 10%;
}
.header-contacts p.vodafone .header-contacts-value:before {
	background-image: url(images/vodafone.svg);
	background-size: 16px;
}

.headerNav {
	position: sticky;
	top: 0;
	background: var(--green-5);
	color: var(--white);
	z-index: 91;
}
.admin-bar .headerNav {
	top: 32px;
}
.headerNav:after {
	content: '';
	background: var(--red);
	position: absolute;
	width: calc((100% - var(--container)) / 2 + var(--gap));
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
}
.headerNav-wrap {
	display: flex;
	height: 50px;
}
.main-menu {
	flex: auto;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	gap: calc(var(--gap) / 2);
	margin: 0 calc(var(--gap) * 2) 0 0;
	padding: 0;
	list-style: none;
	height: 100%;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	padding: 0 var(--gap);
	color: var(--white);
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
	text-decoration: none;
}
.main-menu > li > a {
	height: 100%;
}
.main-menu li a:hover,
.main-menu li.current-menu-item > a {
	background: var(--green-6);
}
.main-menu li.menu-item-has-children > a:after {
	content: '';
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down-alt2.svg);
	mask-image: url(images/arrow-down-alt2.svg);
	background-color: var(--white);
	margin-left: -4px;
	transition: .5s;
}
.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: calc(var(--gap) / 6) 0;
	list-style: none;
	background: var(--green-5);
	width: max-content;
	max-width: 280px;
	min-width: 100%;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	z-index: -99;
}
.main-menu > li:last-child > ul {
	left: auto;
	right: calc(var(--gap) / -1.5);
}
.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:last-child {
	border-bottom: none;
}
.main-menu ul li a {
	padding: calc(var(--gap) / 3) calc(var(--gap) / 1.5);
	display: flex;
	align-items: center;
	color: var(--white);
	text-transform: none;
}
.main-menu ul li.menu-item-has-children > a:after,
.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}
.main-menu ul ul {
	top: calc(var(--gap) / 1.5);
	left: 100%;
}
.header-search {
	flex: 0 0 auto;
	min-width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header-cart a {
	position: relative;
	padding: 0 var(--gap);
	height: 100%;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.5);
	background: var(--red);
	color: var(--white);
	font-weight: 600;
	text-decoration: none;
	z-index: 1;
}
.header-cart a:hover {
	background: var(--red-2);
}
.header-cart a:before {
	content: '';
	background: url(images/cart.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
}
.header-cart-count {
	position: absolute;
	left: calc(var(--gap) + 20px - 5px);
	top: 9px;
	background: var(--red-2);
	color: var(--white);
	font-size: 10px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
}




.main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}




.footer {
	position: relative;
	background: #313131;
	color: var(--white);
	padding: 50px 0;
	z-index: 1;
}
.footer a {
	color: var(--white);
	text-decoration: none;
}
.footer a:hover {
	color: var(--green-5);
}
.footer-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.footer-widget {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 calc(var(--gap));
	padding: 0 calc(var(--gap) / 2);
}
.footer-logo {
	max-width: 200px;
}
.footer-contacts {
	margin-bottom: calc(var(--gap));
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2.5);
}
.footer-contacts:last-child {
	margin-bottom: 0;
}
.footer-contacts p {
	margin: 0;
	display: flex;
}
.footer-contacts-value {
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gap) / 4);
}
.footer-contacts-value:before {
	content: '';
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.footer-contacts p.none .footer-contacts-value:before {
	display: none;
}
.footer-contacts p.schedule .footer-contacts-value:before {
	background-image: url(images/clock.svg);
}
.footer-contacts p.kyivstar .footer-contacts-value:before {
	background-image: url(images/kyivstar.svg);
	background-size: 20px;
	background-position: center 10%;
}
.footer-contacts p.vodafone .footer-contacts-value:before {
	background-image: url(images/vodafone.svg);
	background-size: 16px;
}
.footer-bottom {
	position: relative;
	background: #1f1f1f;
	padding: 10px 0;
	font-size: var(--text-size-sm);
	color: var(--white);
	z-index: 1;
}
.footer-bottom a {
	color: var(--white);
	text-decoration: none;
}
.footer-bottom a:hover {
	color: var(--green-5);
}
.footer-bottom-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--gap);
}
.copyright {
	margin: 0;
}
.footer-payments {
	background: var(--white);
	padding: calc(var(--gap) / 6);
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 5);
}
.footer-payments li img {
	max-width: 40px;
	max-height: 24px;
}



.page-wrap {
	display: flex;
	gap: var(--gap);
}
.page-sidebar {
	flex: 0 0 calc(20% - var(--gap) / 2);
	max-width: calc(20% - var(--gap) / 2);
}
.page-body {
	flex: 0 0 calc(80% - var(--gap) / 2);
	max-width: calc(80% - var(--gap) / 2);
}
.page-header {
	padding-bottom: calc(var(--gap) * 1);
}
.page-breadcrumbs {
	margin-bottom: calc(var(--gap) / 6);
	color: var(--grey);
	font-size: var(--text-size-sm);
}
.page-breadcrumbs a {
	color: var(--grey);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--black);
}
.page-title {
	margin: 0;
	font-size: var(--h1-size);
}


.widget-area {
	display: flex;
	flex-direction: column;
	gap: var(--gap);
}
.widget,
.berocket_single_filter_widget {
	position: relative;
	background: var(--grey-light);
	padding: var(--gap);
	z-index: 1;
}
.widget-title,
.bapf_head h3 {
	font-size: var(--h5-size);
	font-weight: 600;
	margin-bottom: var(--gap);
}
.product-categories {
	margin: 0;
	padding: 0;
	list-style: none;
}
.product-categories li:not(:last-child) {
	margin-bottom: calc(var(--gap) / 3);
	padding-bottom: calc(var(--gap) / 3);
	border-bottom: 1px solid #f1f1f1;
}
.product-categories li a {
	color: var(--grey);
	text-decoration: none;
}
.product-categories li a:hover,
.product-categories li.current-cat > a {
	color: var(--green-2);
}
.product-categories li.current-cat > a {
	font-weight: 600;
}
.bapf_sfilter {
	margin-bottom: 0;
}
.bapf_from,
.bapf_to {
	font-size: var(--text-size-sm);
	color: var(--grey);
}
.bapf_slidr_main.ui-widget-content .ui-slider-range, .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
	background: var(--grey-light-2);
}
.bapf_slidr_main.ui-widget-content .ui-slider-handle, .berocket_filter_price_slider.ui-widget-content .ui-slider-handle, .slide.default .bapf_slidr_main .ui-state-default, .slide.default .bapf_slidr_main .ui-widget-header .ui-state-default, .slide.default .bapf_slidr_main.ui-widget-content .ui-state-default, .slide.default .berocket_filter_price_slider .ui-state-default, .slide.default .berocket_filter_price_slider .ui-widget-header .ui-state-default, .slide.default .berocket_filter_price_slider.ui-widget-content .ui-state-default {
	background: var(--green-5);
	border: none !important;
	outline: none;
}
.bapf_sfilter.bapf_ckbox_sqchck ul {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 3);
}
.bapf_sfilter.bapf_ckbox_sqchck ul li {
	display: flex;
	gap: calc(var(--gap) / 2.5);
	color: var(--black);
	line-height: 1.2;
}
.bapf_sfilter.bapf_ckbox_sqchck input[type=checkbox] {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin: 0 !important;
	border: 2px solid var(--grey-light-2);
}
.bapf_sfilter.bapf_ckbox_sqchck input[type=checkbox]:checked {
	border-color: var(--green);
	background: var(--green);
}
.bapf_sfilter.bapf_ckbox_sqchck input[type=checkbox]:checked:after {
	border-bottom-color: var(--white);
	border-right-color: var(--white);
	top: 1px;
    left: 5px;
    width: 6px;
    height: 11px;
}
.bapf_hideckbox ul {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 4);
}
.bapf_hideckbox ul li label {
	border: 1px solid var(--grey-light-2);
	background: var(--white);
	color: var(--black);
	padding: calc(var(--gap) / 4) calc(var(--gap) / 2.5);
	display: block !important;
	transition: .5s;
}
.bapf_hideckbox ul li label:hover,
.bapf_hideckbox ul li.checked label {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
}




.categoriesNav-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: calc(var(--gap) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}
.categoriesNav-items li a {
	display: inline-block;
	padding: calc(var(--gap) / 2) calc(var(--gap) / 1.5);
	border: 1px solid var(--grey-light-2);
	color: var(--black);
	text-decoration: none;
}
.categoriesNav-items li a:hover {
	color: var(--white);
	background: var(--green);
}




.heroSlider-item__image {
	height: calc((var(--container) - var(--gap) * 2) / 2.2);
	overflow: hidden;
}
.hero-pagination {
	position: absolute !important;
	bottom: calc(var(--gap) * 1.5) !important;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 0;
}



.productsGrid-swiper {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.productsGrid-swiper .swiper-wrapper {
	height: 1096px;
}


.pageShop-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: var(--gap);
}
.pageShop-top p {
	margin: 0;
}



.products-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) / -1);
}
.products-items.swiper-wrapper {
	margin: 0;
}
.products-item {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.products-items.columns-5 .products-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.products-items.columns-4 .products-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.products-items.columns-3 .products-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.products-items.columns-2 .products-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.products-item.swiper-slide {
	margin: 0;
	padding: 0;
}
.products-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--grey-light-2);
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 2);
	z-index: 1;
}
.woocommerce-loop-product__link {
	flex: auto;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	gap: calc(var(--gap) / 3);
}
.products-item__image {
	position: relative;
	flex: 0 0 calc(((var(--container) - var(--gap) * 2) - var(--gap) * 4) / 5 - 5px);
	max-height: calc(((var(--container) - var(--gap) * 2) - var(--gap) * 4) / 5 - 5px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}
.products-item__image img {
	max-height: calc(((var(--container) - var(--gap) * 2) - var(--gap) * 4) / 5 - 5px);
}
.products-item .discount-badge {
    position: absolute;
    background: url(images/badge.png) no-repeat;
    width: 115px;
    height: 55px;
    z-index: 2;
    background-size: contain;
    bottom: 10px;
    left: 0;
    line-height: 57px;
    color: #fff;
    text-align: center;
    padding-right: 20px;
    font-weight: bold;
    font-size: 18px;
}
.products-item .new-badge {
    position: absolute;
    background: var(--green-5);
    z-index: 9;
    top: 15px;
    left: -65px;
    transform: rotate(-45deg);
    color: #fff;
    padding: 5px 10px;
    width: 200px;
    text-align: center;
}
.products-item__sku {
	margin: 0 0 calc(var(--gap) / -6);
	text-align: center;
	padding: 0 calc(var(--gap) / 2);
	color: var(--grey);
	font-size: var(--text-size-sm);
}
.products-item__title {
	flex: auto;
	text-align: center;
	padding: 0 calc(var(--gap) / 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.woocommerce-loop-product__title {
	font-size: var(--h6-size);
	font-weight: 500;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.products-item__price {
	margin: 0 calc(var(--gap) / 2);
	border-top: 1px dotted var(--green);
	padding: calc(var(--gap) / 3) 0 0;
	font-size: var(--h5-size);
	font-weight: 600;
	color: var(--black);
	text-align: center;
}
.products-item__price del {
	font-weight: 400;
	font-size: var(--text-size-sm);
	color: var(--grey);
}
.products-item__price ins {
	text-decoration: none;
	color: var(--red);
}
.products-item__action {

}
.products-item__action .btn {
	width: 100%;
}
.products-item__action .btn:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/cart.svg);
	mask-image: url(images/cart.svg);
	background-color: var(--white);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin-top: -2px;
	transition: .5s;
}
.products-item__action .btn:hover:before {
	background-color: var(--white);
}
.products-item__action .btn.add_to_cart_button.loading:before {
	-webkit-mask-image: url(images/progress.svg);
	mask-image: url(images/progress.svg);
	animation: rotate 2s linear infinite;
	opacity: .3;
	margin-top: 0;
}
.products-item__action .btn.add_to_cart_button.added:before {
	-webkit-mask-image: url(images/done.svg);
	mask-image: url(images/done.svg);
	margin-top: 0;
}
.added_to_cart {
	display: none !important;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: calc(var(--gap) * 1.5);
	z-index: 2;
}
ul.page-numbers,
.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;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers {
	min-width: 50px;
	height: 50px;
	font-weight: 500;
	color: var(--black);
	border: 1px solid var(--grey-light);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--green-5);
	border-color: var(--green-6);
	color: var(--white);
}

.term-description {
	margin-top: calc(var(--gap) * 1.5);
}





.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) / -1);
}
.advantages-item {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.advantages-item__wrap {
	display: flex;
	align-items: center;
	gap: calc(var(--gap) / 1.25);
}
.advantages-item__image {
	flex: 0 0 60px;
	max-width: 60px;
}
.advantages-item__text {
	font-size: var(--h6-size);
	color: var(--black);
	font-weight: 700;
	line-height: 1.2;
}


.about-section {
	background: #cbd5cc;
}