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

tnpu 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: 1316px;
	--topbar-height: 54px;
	--header-height: 90px;
	--section-padding: 80px;
	--section-sm-padding: 60px;
	--gap: 24px;
	--radius: 50px;
	--radius-sm: 14px;
	--radius-md: 25px;
	--radius-lg: 80px;

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

	--black: #19232B;
	--white: #FFFFFF;
	--orange: #FDA31B;
	--orange-2: #d2850f;
	--blue: #0066B0;
	--blue-2: #0854A6;
	--grey: #D8DCE0;
}
*, ::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.25;
	color: var(--black);
	background: var(--white);
}
a {
	color: var(--blue);
	transition: .5s;
}
a:hover {
	color: var(--orange);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.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: calc(var(--gap) / .75) 0 var(--gap);
	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);
}
blockquote {
	border: 1px solid var(--orange);
	border-bottom: 5px solid var(--orange);
	-moz-border-radius: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
	padding: var(--gap) calc(var(--gap) * 1.5);
	margin: var(--gap) 0;
}
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 -10px -20px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	font-weight: 500;
	line-height: 1.2;
}*/
::-webkit-input-placeholder {
	color: #333333;
}
::-moz-placeholder {
	color: #333333;
}
:-ms-input-placeholder {
	color: #333333;
}
:-moz-placeholder {
	color: #333333;
}
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);
	color: var(--black);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	padding: 12px 18px;
	min-height: 50px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 220px;
	resize: vertical;
}
select {
	cursor: pointer;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
	border-color: #c7cbce;
}
/*.form-field-button {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 15px;
	font-size: var(--text-size-sm);
	text-align: center;
	background: var(--white);
}
.form-field-policy {
	font-size: var(--text-size-sm);
	line-height: 1.15;
	font-weight: 300;
	color: #626262;
	margin-bottom: 40px;
}
.form-field-policy a {
	text-decoration: underline;
	color: #626262;
}
.form-field-policy a:hover {
	color: var(--black);
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 29px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid #D2D2D2;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .5s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
    width: 6px;
    height: 11px;
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(45deg);
}*/

.screen-reader-text {
	position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: var(--section-padding);
	padding-bottom: calc(var(--section-padding) - var(--gap));
	z-index: 1;
}
.section-sm {
	position: relative;
	padding-top: var(--section-sm-padding);
	padding-bottom: calc(var(--section-sm-padding) - var(--gap));
	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;
	}
}
.bg-blue {
	background: var(--blue);
}
.bg-image:after {
	content: '';
	display: block !important;
	background: var(--blue);
	opacity: .8;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -3;
}
.text-white {
	color: var(--white);
}
.text-white a {
	color: var(--white);
}
.text-white a:hover {
	color: var(--orange);
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size-sm);
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 9px 36px;
	-moz-border-radius: 100px 50px 50px 0;
	-webkit-border-radius: 100px 50px 50px 0;
	border-radius: 100px 50px 50px 0;
	text-decoration: none;
	text-transform: uppercase;
	outline: none;
	letter-spacing: 1px;
	min-height: 54px;
	cursor: pointer;
	transition: .5s;
}
.btn:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: transparent;
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	margin-left: 10px;
	transition: .5s;
}
.btn-small {
	min-height: 48px;
	-moz-border-radius: 96px 48px 48px 0;
	-webkit-border-radius: 96px 48px 48px 0;
	border-radius: 96px 48px 48px 0;
}
.btn-primary {
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--orange-2);
	border-color: var(--orange-2);
	color: var(--white);
}
.btn-primary:after {
	background: var(--white);
}
.btn-secondary {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-secondary:hover {
	background-color: var(--blue-2);
	border-color: var(--blue-2);
	color: var(--white);
}
.btn-secondary:after {
	background-color: var(--white);
}
.btn-thirdy {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--black);
}
.btn-thirdy:hover {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}
.btn-thirdy:after {
	background-color: var(--black);
}
.btn-thirdy:hover:after {
	background-color: var(--white);
}
/*.btn-link {
	min-width: auto;
    min-height: 24px;
    padding: 0;
    color: var(--green);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	border: none;
	font-size: var(--h6-size);
}
.btn-link:hover {
	color: var(--black);
	border-color: var(--black);
}
.btn-link:after {
	content: '';
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-up.svg);
    mask-image: url(images/arrow-up.svg);
    background-color: var(--green);
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    transform: rotate(90deg);
    transition: .5s;
}
.btn-link:hover:after {
	background-color: var(--black);
}
*/




/*
.owl-item {
	opacity: 0;
	transition: .2s;
}
.owl-item.active {
	opacity: 1;
}*/


.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--gap);
	height: 20px;
	z-index: 9;
}
.owl-dots button {
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-right: 10px;
	background: var(--orange) !important;
	padding: 0;
	outline: none;
	cursor: pointer;
	border: none;
	transition: .5s;
}
.owl-carousel.dots-white .owl-dots button {
	background: var(--white) !important;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:hover {
	opacity: .8;
}
.owl-dots button.active {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
}


.owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 27px - var(--gap));
	opacity: 0;
	transition: .5s;
	z-index: 9;
}
.owl-carousel:hover .owl-nav {
	opacity: 1;
}
.owl-nav button {
	position: absolute;
	width: 55px;
	height: 55px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange) !important;
	transition: .5s;
}
.owl-nav button:hover {
	background: var(--orange-2) !important;
}
.owl-nav button.owl-prev {
	left: calc(var(--gap) / 2);
}
.owl-nav button.owl-next {
	right: calc(var(--gap) / 2);
}
.owl-carousel.nav-white .owl-nav button {
	background: rgba(255, 255, 255, .2) !important;
}
.owl-carousel.nav-white .owl-nav button:hover {
	background: rgba(255, 255, 255, .6) !important;
}
.owl-nav button:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--white);
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	transition: .5s;
}
.owl-nav button.owl-prev:before {
	transform: rotate(-180deg);
}
.owl-carousel.nav-white .owl-nav button:before {
	background-color: var(--white);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 9px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid transparent;
}
.soc-links.orange li a {
	background: var(--orange);
	border-color: var(--orange);
}
.soc-links.orange li a:hover {
	background: var(--white);
}
.soc-links.blue li a {
	background: var(--blue);
	border-color: var(--blue);
}
.soc-links.blue li a:hover {
	background: var(--white);
}
.soc-links li a svg {
	max-height: 16px;
	max-width: 16px;
}
.soc-links li a path {
	transition: .5s;
}
.soc-links.orange li a path {
	fill: var(--white);
}
.soc-links.orange li a:hover path {
	fill: var(--orange);
}
.soc-links.blue li a path {
	fill: var(--white);
}
.soc-links.blue li a:hover path {
	fill: var(--blue);
}


.search-form {
	position: relative;
	z-index: 1;
}
.search-form input[type="search"] {
	padding-right: 54px;
}
.search-form button {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
	background-color: var(--blue);
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.search-form button:hover {
	background-color: var(--blue-2);
}


/*
.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 20px 20px;
	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(--grey);
	width: 34px;
	height: 34px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--black);
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu li:last-child {
	margin-bottom: 0;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--grey-light);
}
.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: 13px 0;
	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(--green);
}
.mobile-menu-chevrone {
	order: 2;
	-webkit-mask-size: 12px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-up.svg);
	mask-image: url(images/arrow-up.svg);
	background-color: var(--black);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transform: rotate(180deg);
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-chevrone {
	background-color: var(--green);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-chevrone {
	background-color: var(--green);
	transform: rotate(0deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: 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: 618px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-md {
	max-width: 570px;
}
.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: 40px 50px;
	-moz-border-radius: 50px 0;
	-webkit-border-radius: 50px 0;
	border-radius: 50px 0;
	overflow: hidden;
	z-index: 1;
}
.modalInfo .modal-content {
	padding-top: 64px;
	padding-bottom: 0;
}
.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);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 40px;
	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: var(--grey);
	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);
}
.modalInfo-button {
	text-align: center;
	margin-top: 30px;
}
.modalInfo .modal-content:after {
	content: '';
	background: url(images/modalInfo-after.png) no-repeat center;
	background-size: contain;
	width: 201px;
	height: 186px;
	margin: 38px auto -1px;
	display: block;
}
*/

.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: calc(var(--gap) / 2) 0 var(--gap);
	font-size: var(--text-size-sm);
}
.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: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap)) / 2 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 2) / 3 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 3) / 4 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 4) / 5 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 5) / 6 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 6) / 7 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 7) / 8 / 1.6);
}
.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) / 3 * 2 - var(--gap) / 2 - var(--gap) * 8) / 9 / 1.6);
}
.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,
img.alignnone,
figure img {
	-moz-border-radius: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
}



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

.topbar {
	position: relative;
	background: var(--blue);
	color: var(--white);
	z-index: 92;
}
.topbar-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--topbar-height);
}
.topbar-soc {
	margin-right: var(--gap);
}
.topbar-contacts {
	flex: auto;
	margin-right: var(--gap);
	display: flex;
	align-items: center;
	justify-content: center;
}
.topbar-contacts p {
	position: relative;
	margin: 0 var(--gap) 0 0;
	padding-right: var(--gap);
	display: flex;
	align-items: center;
	z-index: 1;
}
.topbar-contacts p:last-child {
	margin-right: 0;
	padding-right: 0;
}
.topbar-contacts p:before {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--orange);
	margin-right: 4px;
}
.topbar-contacts p.phone:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.topbar-contacts p.e-mail:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.topbar-contacts p.address:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.topbar-contacts p:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 30px;
	background: var(--white);
	opacity: .2;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.topbar-contacts p:last-child:after {
	display: none;
}
.topbar-contacts p a {
	color: var(--white);
	text-decoration: none;
}
.topbar-contacts p a:hover {
	color: var(--orange);
}
.lang-menu {
	margin: 0 10px 0 0;
	padding: 0;
	list-style: none;
}
.lang-menu li {
	margin: 0;
}
.lang-menu li a {
	background: var(--blue-2);
	color: var(--white);
	text-decoration: none;
	text-transform: uppercase;
	height: var(--topbar-height);
	display: flex;
	align-items: center;
	padding: 10px var(--gap);
}
.lang-menu li a:hover {
	background: var(--orange);
}
.topbar-search {
	position: relative;
	display: flex;
	margin-right: 10px;
	z-index: 1;
}
.topbar-search-button {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 var(--topbar-height);
	max-width: var(--topbar-height);
	width: var(--topbar-height);
	height: var(--topbar-height);
	cursor: pointer;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	transition: .5s;
}
.topbar-search.active .topbar-search-button,
.topbar-search-button:hover {
	background: var(--orange);
}
.topbar-search-button:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/search.svg);
	mask-image: url(images/search.svg);
	background-color: var(--white);
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	transition: .5s;
	}
.topbar-search.active .topbar-search-button:before {
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
}
.topbar-search-inner {
	display: none;
	position: absolute;
	top: 100%;
	right: calc(var(--radius-sm) * -1);
	width: 380px;
	padding: 10px;
	background: var(--orange);
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	z-index: 2;
}
.active .topbar-search-inner {
	display: block;
}
.topbar-button {

}
.topbar-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px var(--gap);
	background: var(--orange);
	color: var(--white);
	text-decoration: none;
	height: var(--topbar-height);
	text-transform: uppercase;
}
.topbar-button a:hover {
	background: var(--blue-2);
}

.header {
	position: sticky;
	top: 0;
	background: var(--white);
	box-shadow: 2px 6px 40px 5px rgba(0, 0, 0, 0.05);
	z-index: 91;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}
.header-logo {
	margin-right: var(--gap);
}
.header-logo img {
	max-height: calc(var(--header-height) - 30px);
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.main-menu li {
	position: relative;
	z-index: 1;
}
.main-menu li a {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.main-menu > li {
	margin-right: var(--gap);
	height: var(--header-height);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.main-menu > li:last-child {
	margin-right: 0;
}
.main-menu > li > a {
	color: var(--black);
	padding: calc(var(--gap) / 2) 0;
	font-weight: 500;
}
.main-menu > li:hover > a,
.main-menu > li.current-menu-item > a {
	color: var(--blue);
}
.main-menu > li.menu-item-has-children > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevrone-down.svg);
	mask-image: url(images/chevrone-down.svg);
	background-color: var(--black);
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	margin-left: 2px;
	transition: .5s;
}
.main-menu > li.menu-item-has-children:hover > a:after,
.main-menu > li.current-menu-item > a:after {
	background-color: var(--blue);
}
.main-menu > li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	left: -20px;
	margin: 0;
	padding: 2px 0;
	width: 280px;
	background: var(--blue);
	list-style: none;
	-moz-border-radius: var(--radius-sm);
	-webkit-border-radius: var(--radius-sm);
	border-radius: var(--radius-sm);
	z-index: 1;
}
.main-menu ul > li {
	padding: 0 15px;
	border-bottom: 1px solid var(--blue-2);
}
.main-menu ul > li:last-child {
	border-bottom: none;
}
.main-menu ul > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white);
	padding: 10px 0;
}
.main-menu ul > li:hover > a {
	color: var(--orange);
}
.main-menu ul > li.menu-item-has-children > a:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevrone-down.svg);
	mask-image: url(images/chevrone-down.svg);
	background-color: var(--white);
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	margin-left: 2px;
	margin-top: 1px;
	transform: rotate(-90deg);
	transition: .5s;
}
.main-menu ul > li.menu-item-has-children:hover > a:after {
	background-color: var(--orange);
}
.main-menu ul ul {
	top: -2px;
	left: 100%;
}
.main-menu li:hover > ul {
	display: block;
}



.main {
	overflow: hidden;
}



.image-ornament-left:before,
.image-ornament-right:before {
	content: '';
    display: block !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 89px;
    height: 223px;
    z-index: 2;
}
.image-ornament-light:before {
	background-image: url(images/ornament-light.svg);
}
.image-ornament-dark:before {
	background-image: url(images/ornament-dark.svg);
}
.image-ornament-left:before {
	right: calc(var(--container) + 90px);
}
.image-ornament-right:before {
	left: calc(var(--container) + 90px);
}
.section.image-ornament-left:before {
	top: var(--section-padding);
}
.section.image-ornament-right:before {
	top: var(--section-padding);
}
.section-sm.image-ornament-left:before {
	top: var(--section-sm-padding);
}
.section-sm.image-ornament-right:before {
	top: var(--section-sm-padding);
}
.vc_row[data-vc-full-width].image-ornament-left:before,
.page-body.image-ornament-left:before {
	right: calc((100vw - var(--container)) / 2 + var(--container) + 90px);
}
.vc_row[data-vc-full-width].image-ornament-right:before,
.page-body.image-ornament-right:before {
	left: calc((100vw - var(--container)) / 2 + var(--container) + 90px);
}


/*.vc_row {
	margin-bottom: calc(var(--gap) * -1);
}*/
.vc_row.vc_row-o-equal-height > .vc_column_container .wpb_wrapper {
	height: 100%;
}


.vc_mainSlider,
.vc_mainSlider-item {
	position: relative;
	height: 760px;
	z-index: 1;
}
.vc_mainSlider-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}
.vc_mainSlider-mb {
	padding-bottom: calc(var(--section-padding) + 100px);
}
.vc_mainSlider-item.image-ornament-left:before {
	top: 150px;
    left: calc((100vw - var(--container)) / 2 - 160px);
}
.vc_mainSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.vc_mainSlider-item__bg:after {
	content: '';
	background: var(--blue);
	opacity: .6;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.vc_mainSlider-item__wrap {
	max-width: calc(50% - var(--gap) / 2);
}
.vc_mainSlider-item__content {
	position: relative;
	color: var(--white);
	z-index: 1;
}
.vc_mainSlider-item__content p:first-child span[style="text-decoration: underline"] {
	color: var(--orange);
	text-decoration: none !important;
	border-bottom: 3px solid;
	font-size: var(--h6-size);
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.vc_mainSlider-item__content p:first-child span[style="text-decoration: underline"]:before {
	content: '';
	background: url(images/icon-before-heading.svg) no-repeat center;
	background-size: contain;
	width: 31px;
	height: 26px;
	display: inline-block;
	margin: 0 6px -2px 0;
}
.vc_mainSlider-item__content h1,
.vc_mainSlider-item__content h2 {
	font-size: calc(var(--h1-size) * 1.63);
	line-height: 1.1;
	font-weight: 900;
	margin-top: 12px;
}
.vc_mainSlider-item__content h1:first-child,
.vc_mainSlider-item__content h2:first-child {
	margin-top: 0;
}
.vc_mainSlider-item__buttons {
	margin-top: var(--gap);
	display: flex;
	flex-wrap: wrap;
}
.vc_mainSlider-item__buttons .btn {
	margin-right: calc(var(--gap) / 2);
}
.vc_mainSlider-item__buttons .btn:last-child {
	margin-right: 0;
}
.vc_mainSlider .owl-nav button.owl-prev {
	left: 2%;
}
.vc_mainSlider .owl-nav button.owl-next {
	right: 2%;
}


.home-number-blocks {
	margin-top: -125px;
}
.vc_numberBlock {
	padding-bottom: var(--gap);
	height: 100%;
}
.vc_numberBlock-item__wrap {
	position: relative;
	background: var(--white);
	box-shadow: 2px 6px 40px 5px rgba(0, 0, 0, 0.05);
	-moz-border-radius: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
	padding: calc(var(--gap) / 1.333) var(--gap) var(--gap);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: flex-start;
	text-decoration: none;
	color: var(--black);
	height: 100%;
	z-index: 1;
}
a.vc_numberBlock-item__wrap:hover {
	color: var(--blue);
}
.vc_numberBlock-item__image {
	flex: 0 0 80px;
	max-width: 80px;
	height: 80px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 5px 5px 0px 0px rgba(242, 243, 245, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	transition: .5s;
}
a.vc_numberBlock-item__wrap:hover .vc_numberBlock-item__image {
	background: var(--orange);
}
.vc_numberBlock-item__image img {
	max-width: 48px;
	max-height: 48px;
}
.vc_numberBlock-item__number {
	flex: auto;
	max-width: calc(100% - 80px);
	margin-left: auto;
	font-size: calc(var(--h1-size) * 1.25);
	font-weight: 900;
	color: var(--orange);
	text-align: right;
	margin-bottom: 14px;
}
.vc_numberBlock-item__title {
	flex: 0 0 100%;
	max-width: 100%;
	font-size: var(--h5-size);
	font-weight: 700;
	margin-bottom: 14px;
	transition: .5s;
}
.vc_numberBlock-item__text {
	color: var(--black);
}



.vc_imageSlider-item {
	padding: 0 1px;
}
.vc_imageSlider-item__image {
	position: relative;
	-moz-border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
	-webkit-border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
	border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
	overflow: hidden;
	z-index: 1;
}




.vc_mainHeading {
	position: relative;
	margin-bottom: calc(var(--gap) * 1.5);
	z-index: 1;
}
.vc_mainHeading.small {
	margin-bottom: var(--gap);
}
.vc_mainHeading.center {
	text-align: center;
}
.vc_mainHeading p:first-child {
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) / 2);
	color: var(--orange);
	width: max-content;
	max-width: 100%;
	border-bottom: 2px solid;
	font-size: var(--h6-size);
	font-weight: 700;
	text-transform: uppercase;
}
.vc_mainHeading p:first-child:before {
	content: '';
	background: url(images/icon-before-heading.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 21px;
	margin-right: 7px;
	margin-bottom: 2px;
}
.vc_mainHeading.center p:first-child {
	margin-left: auto;
	margin-right: auto;
}
.vc_mainHeading h2 {
	font-size: var(--h1-size);
	margin-top: 0;
}
.vc_mainHeading.small h2 {
	font-size: var(--h2-size);
}
.vc_mainHeading h2 span {
	color: var(--orange);
}



.vc_iconBlockShort-item__wrap {
	display: flex;
}
.vc_iconBlockShort-item__image {
	flex: 0 0 48px;
	max-width: 48px;
	height: 48px;
	margin-right: calc(var(--gap) / 2);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: -5px 5px 0px 0px rgba(17, 110, 99, 0.09);
	display: flex;
	align-items: center;
	justify-content: center;
}
.vc_iconBlockShort-item__image img {
	max-width: 24px;
	max-height: 24px;
}
.vc_iconBlockShort-item__info {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.vc_iconBlockShort-item__label {
	font-weight: 500;
	color: var(--orange);
	margin-bottom: 4px;
}
.vc_iconBlockShort-item__text {
	font-size: var(--h5-size);
	font-weight: 700;
	color: var(--blue);
}
.vc_iconBlockShort-item__text a {
	color: var(--blue);
	text-decoration: none;
}
.vc_iconBlockShort-item__text a:hover {
	color: var(--blue-2);
}




.vc_mainButton-align-center {
	text-align: center;
}
.vc_mainButton-align-right {
	text-align: right;
}




.vc_iconBlock-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	z-index: 1;
}
.vc_iconBlock-item__image {
	position: relative;
	width: 100px;
	height: 100px;
	margin-bottom: var(--gap);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.vc_iconBlock-item__image:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 3px solid var(--blue);
	-moz-border-radius: 30px 35px 70px 65px;
	-webkit-border-radius: 30px 35px 70px 65px;
	border-radius: 30px 35px 70px 65px;
	top: 10px;
	left: 5px;
	z-index: -2;
}
.text-white .vc_iconBlock-item__image:before {
	border-color: var(--white);
}
.vc_iconBlock-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--orange);
	-moz-border-radius: 30px 35px 70px 65px;
	-webkit-border-radius: 30px 35px 70px 65px;
	border-radius: 30px 35px 70px 65px;
	top: 0;
	left: -5px;
	z-index: -1;
}
.vc_iconBlock-item__image img {
	max-width: 65px;
	max-height: 65px;
	margin-right: 10px;
}
.vc_iconBlock-item__wrap p {
	font-size: var(--h5-size);
	font-weight: 700;
	text-align: center;
}

.home-iconBlocks-section.image-ornament-left:before {
	top: 50%;
	transform: translateY(calc(-50% - var(--gap) / 2));
}









.news-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.news-item {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.news-items.columns-3 .news-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.news-items.columns-2 .news-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.news-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--orange);
	-moz-border-radius: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
	padding: calc(var(--gap) / 1.2);
	z-index: 1;
}
.news-item__image {
	flex: 0 0 calc(((var(--container) - var(--gap) * 2) / 3 - var(--gap) / 1.2 * 2) / 1.7);
	max-height: calc(((var(--container) - var(--gap) * 2) / 3 - var(--gap) / 1.2 * 2) / 1.7);
	overflow: hidden;
	-moz-border-radius: calc(var(--radius) / 1.25) calc(var(--radius) / 1.25) calc(var(--radius) / 1.25) 0;
	-webkit-border-radius: calc(var(--radius) / 1.25) calc(var(--radius) / 1.25) calc(var(--radius) / 1.25) 0;
	border-radius: calc(var(--radius) / 1.25) calc(var(--radius) / 1.25) calc(var(--radius) / 1.25) 0;
	margin-bottom: calc(var(--gap) / 1.5);
}
.news-item__date {
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) / 2);
}
.news-item__date:before {
	content: '';
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	margin-right: 4px;
}
.news-item__title {
	font-size: var(--h5-size);
	font-weight: 700;
	margin-bottom: var(--gap);
	margin-top: 0;
	flex: auto;
}
.news-item__title a {
	text-decoration: none;
	color: var(--black);
}
.news-item__title a:hover {
	color: var(--blue);
}





.vc_imageBlock {
	height: 100%;
	padding-bottom: var(--gap);
}
.vc_imageBlock-item__wrap {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--orange);
	-moz-border-radius: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
	padding: calc(var(--gap) / 1.2);
	overflow: hidden;
	z-index: 1;
}
.vc_imageBlock.style_2 .vc_imageBlock-item__wrap:before {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	top: -10px;
	right: -10px;
	border: 10px solid var(--orange);
	opacity: .2;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: -1;
}
.vc_imageBlock-item__image {
	flex: 0 0 224px;
	max-height: 224px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--gap);
}
.vc_imageBlock.style_2 .vc_imageBlock-item__image {
	flex: 0 0 90px;
	max-height: 90px;
	width: 90px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	display: block;
	margin-bottom: calc(var(--gap) / 2);
}
.vc_imageBlock-item__image img {
	max-height: 224px;
}
.vc_imageBlock.style_2 .vc_imageBlock-item__image img {
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.vc_imageBlock-item__text {
	flex: auto;
	font-size: var(--h5-size);
	font-weight: 700;
	margin-bottom: var(--gap);
}
.vc_imageBlock-item__text a {
	color: var(--black);
	text-decoration: none;
}
.vc_imageBlock-item__text a:hover {
	color: var(--blue);
}





.vc_imageGallery-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.vc_imageGallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.vc_imageGallery-item__image {
	overflow: hidden;
	-moz-border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
	-webkit-border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
	border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.05);
}
.vc_imageGallery-item:nth-child(6n+2) .vc_imageGallery-item__image,
.vc_imageGallery-item:nth-child(6n+4) .vc_imageGallery-item__image,
.vc_imageGallery-item:nth-child(6n+6) .vc_imageGallery-item__image {
	height: calc((var(--container) - var(--gap) * 2) / 3 / 1.2);
}
.vc_imageGallery-item:nth-child(6n+5) .vc_imageGallery-item__image {
	margin-top: calc((((var(--container) - var(--gap) * 2) / 3 / 1.05) - ((var(--container) - var(--gap) * 2) / 3 / 1.2)) * -1);
}
.vc_imageGallery-item__image img {
	transition: .5s;
}
.vc_imageGallery-item__image a:hover img {
	transform: scale(1.1);
}



.fancybox__content img {
	-moz-border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
	-webkit-border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
	border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
}



.vc_partnersBlock-item__image {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.vc_partnersBlock-item__image img {
	max-height: 100px;
}




.footer {
	position: relative;
	padding: 80px 0 40px;
	background: #012758;
	color: var(--white);
	overflow: hidden;
	z-index: 1;
}
.footer:before {
	content: '';
	background: url(images/footer-element.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 500px;
	height: 500px;
	top: calc(50% - 50px);
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.footer-logo {
	flex: 0 0 calc(27% - var(--gap) / 2);
	max-width: calc(27% - var(--gap) / 2);
	margin-bottom: 10px;
}
.footer-main {
	display: flex;
	justify-content: space-between;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.footer-col {
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.footer-col:first-child {
	flex: 0 0 27%;
	max-width: 27%;
}
.footer-widget {
	position: relative;
	margin-bottom: var(--gap);
	z-index: 1;
}
.footer-widget:last-child {
	margin-bottom: 0;
}
.footer-widget-title {
	position: relative;
	padding-bottom: 7px;
	margin-bottom: calc(var(--gap) / 1.6);
	font-size: var(--h5-size);
	font-weight: 700;
	z-index: 1;
}
.footer-widget-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 90px;
	height: 3px;
	background: var(--orange);
	z-index: 1;
}

.footer-contacts-items {
	position: relative;
	z-index: 1;
}
.footer-contacts-item {
	position: relative;
	display: flex;
	margin-bottom: calc(var(--gap) / 2);
	z-index: 1;
}
.footer-contacts-item:last-child {
	margin-bottom: 0;
}
.footer-contacts-item__icon {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-moz-border-radius: 10px 10px 10px 0;
	-webki-border-radius: 10px 10px 10px 0;
	border-radius: 10px 10px 10px 0;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: calc(var(--gap) / 1.6);
}
.footer-contacts-item__icon:before {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
}
.footer-contacts-item.phone .footer-contacts-item__icon:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.footer-contacts-item.e-mail .footer-contacts-item__icon:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.footer-contacts-item.address .footer-contacts-item__icon:before {
	-webkit-mask-image: url(images/location.svg);
	mask-image: url(images/location.svg);
}
.footer-contacts-item__value {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 30px;
}
.footer-contacts-item__value a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts-item__value a:hover {
	color: var(--orange);
}

.footer-menu {
	padding: 0;
	list-style: none;
}
.footer-menu li {
	position: relative;
	margin-bottom: calc(var(--gap) / 1.6);
	padding-left: 14px;
	z-index: 1;
}
.footer-menu li:last-child {
	margin-bottom: 0;
}
.footer-menu li:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/icon-menu-arrow.svg);
	mask-image: url(images/icon-menu-arrow.svg);
	background-color: var(--orange);
	position: absolute;
	top: 2px;
	left: 0;
	width: 8px;
	height: 16px;
	transition: .5s;
}
.footer-menu li a {
	color: var(--white);
	text-decoration: none;
}
.footer-menu li a:hover {
	color: var(--orange);
}
.footer-menu ul {
	display: none;
}
.footer-soc {
	justify-content: center;
	margin-top: var(--gap);
}
.copyright {
	margin-top: var(--gap);
	text-align: center;
	font-size: var(--text-size-sm);
	opacity: .6;
}
.copyright a {
	color: var(--white);
	text-decoration: none;
}
.copyright a:hover {
	color: var(--orange);
}



.page-header {
	position: relative;
	min-height: 160px;
	color: var(--white);
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.page-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-header-bg:after {
	content: '';
	background: var(--blue);
	opacity: .6;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.page-breadcrumbs {
	position: relative;
	padding: calc(var(--gap) / 2) 0;
	border-bottom: 1px solid var(--white);
	color: var(--orange);
	z-index: 1;
}
.page-breadcrumbs a {
	color: var(--white);
	text-decoration: none;
}
.page-breadcrumbs a:hover {
	color: var(--orange);
}
.breadcrumbs-sep {
	display: inline-block;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevrone-down.svg);
	mask-image: url(images/chevrone-down.svg);
	background-color: var(--white);
	width: 16px;
	height: 16px;
	margin: 0 4px;
	transform: rotate(-90deg);
	vertical-align: middle;
}
.page-header-wrap {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--gap) 0;
}
.page-title {
	text-align: center;
	font-weight: 900;
}


.error-404-number {
	font-size: calc(var(--h1-size) * 5);
	font-weight: 900;
	color: var(--blue);
	line-height: 1;
	text-align: center;
}
.error-404-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: var(--gap);
}
.error-404-wrap .search-form {
	margin-bottom: calc(var(--gap) / 1.5);
	width: 100%;
	max-width: 360px;
}
.error-404-button {
	text-align: center;
	margin-bottom: var(--gap);
}






.archiveNews-wrap,
.singleNews-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: var(--gap);
}
.archiveNews-left,
.singleNews-left {
	flex: 0 0 calc(100% / 3 * 2 - var(--gap) / 2);
	max-width: calc(100% / 3 * 2 - var(--gap) / 2);
}
.archiveNews-right,
.singleNews-right {
	flex: 0 0 calc(100% / 3 - var(--gap) / 2);
	max-width: calc(100% / 3 - var(--gap) / 2);
}



.singleNews-image {
	position: relative;
	margin-bottom: calc(var(--gap) / 1.6);
}
.singleNews-image img {
	-moz-border-radius: var(--radius) var(--radius) var(--radius) 0;
	-webkit-border-radius: var(--radius) var(--radius) var(--radius) 0;
	border-radius: var(--radius) var(--radius) var(--radius) 0;
}
.singleNews-date {
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) / 1.6);
}
.singleNews-date:before {
	content: '';
	background: url(images/calendar.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	margin-right: 4px;
}
.singleNews-tags {
	margin-top: calc(var(--gap) * 1.2);
	padding-top: calc(var(--gap) * 1.2);
	border-top: 1px solid var(--grey);
	display: flex;
	align-items: center;
}
.singleNews-tags p {
	margin: 0 calc(var(--gap) / 1.5) 0 0;
	font-weight: 700;
}
.singleNews-tags ul {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: calc(var(--gap) / -2);
}
.singleNews-tags ul li {
	margin-right: calc(var(--gap) / 2);
	margin-bottom: calc(var(--gap) / 2);
}
.singleNews-tags ul li a {
	display: inline-block;
	padding: calc(var(--gap) / 3) calc(var(--gap) / 2);
	border: 1px solid var(--grey);
	-moz-border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 0;
	-webkit-border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 0;
	border-radius: var(--radius-sm) var(--radius-sm) var(--radius-sm) 0;
	text-decoration: none;
}



.widget {
	position: relative;
	margin-bottom: var(--gap);
	border: 1px solid var(--grey);
	-moz-border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 0;
	-webkit-border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 0;
	border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 0;
	padding: var(--gap);
	z-index: 1;
}
.widget:last-child {
	margin-bottom: 0;
}
.widget-title,
.widgettitle {
	position: relative;
	font-size: var(--h5-size);
	font-weight: 700;
	padding-bottom: 16px;
	z-index: 1;
}
.widget-title:before,
.widgettitle:before {
	content: '';
	position: absolute;
	left: 5px;
	bottom: 0;
	width: 20px;
	height: 8px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-right: 10px;
	background: var(--orange);
}
.widget-title:after,
.widgettitle:after {
	content: '';
	position: absolute;
	left: 35px;
	bottom: 0;
	width: 8px;
	height: 8px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background: var(--orange);
}




.widget ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget ul.menu li {
	margin-bottom: calc(var(--gap) / 2);
	border-bottom: 1px solid var(--grey);
}
.widget ul.menu li:last-child {
	margin-bottom: 0;
}
.widget ul.menu li a {
	position: relative;
	padding: calc(var(--gap) / 3) 0;
	padding-left: 28px;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40px;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.widget ul.menu li a:hover {
	color: var(--orange-2);
}
.widget ul.menu li a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right-alt.svg);
	mask-image: url(images/arrow-right-alt.svg);
	background-color: var(--orange);
	position: absolute;
	top: 50%;
	left: 0;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	transition: .5s;
}
.widget ul.menu li a:hover:before {
	background-color: var(--orange-2);
}