@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

:root {
	--black: #222222;
	--aqua: #3EAEC3;
	--white: #ffffff;
	--blue: #065C72;
	--gray: #CFCFCF;
	--transition: 0.3s all;
	--second-font: "Mr-Amazin", sans-serif;
}

a {
	text-decoration: none;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}

img {
	max-width: 100%;
	height: auto;
}

body {
	font-size: 1.0625rem;
	overflow-x: hidden;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Mr-Amazin";
	src: url("../fonts/Mr-Amazin.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

#tToTop {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 9999;
	padding: 0.9375rem;
	width: auto;
}

.req:after {
	content: "*";
	color: #f00;
}

.card-clickable {
	position: relative;
}

.card-clickable-link:after {
	content: "";
	position: absolute;
	inset: 0;
}

.card-clickable-none {
	position: relative;
}

/* Fixed footer */
html,
html body.admin-bar {
	height: calc(100vh - 32px) !important;
}

html body {
	height: 100vh !important;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto 1fr auto;
	grid-template-rows: auto 1fr auto;
	-ms-grid-columns: 100%;
	grid-template-columns: 100%;
}

/* /Fixed footer */
.popup-form-callback {
	--popup-width: 460px;
}

.popup-success {
	--popup-width: 350px;
	text-align: center;
}

.popup__wrap {
	padding: var(--popup-padding, 1rem) !important;
	border-radius: var(--popup-border-radius, 1rem) !important;
	width: var(--popup-width, 100%) !important;
	max-width: var(--popup-max-width, 900px) !important;
	--fancybox-content-color: var(--popup-color, #171717);
	--fancybox-content-bg: var(--popup-bg, #fff);
}

.popup__close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	cursor: pointer;
	padding: 0.25rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: transparent;
	border: none;
	color: #222;
}

.popup__icon {
	font-size: 4rem;
	color: #484;
	margin: 1rem 0;
}

.popup__icon svg {
	fill: currentColor;
}

.popup__title {
	font-size: 1.5rem;
}

.sprite-icon {
	height: 1em;
	width: 1em;
	fill: currentColor;
}

/* FancyBox */
.fancybox__container {
	--fancybox-bg: rgba(23, 23, 23, 0.76);
	width: 100vw;
}

.fancybox__slide.has-html .fancybox__content {
	padding: 0;
}

/* WordPress */
/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	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;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.wp-pagenavi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 10px;
}

.wp-pagenavi .current,
.wp-pagenavi *:hover {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: normal;
	padding: 8px 24px;
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-decoration: none;
	-webkit-font-smoothing: auto;
}

.wp-pagenavi span,
.wp-pagenavi a {
	background: transparent;
	color: var(--blue);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: normal;
	padding: 8px 24px;
	border-radius: 12px;
	cursor: pointer;
	border: 1px solid var(--blue);
	-webkit-font-smoothing: auto;
	margin: 0 4px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	background-color: var(--blue);
	color: var(--white);
	font-weight: 500;
}

.header .container {
	max-width: 1800px;
}

.header__top {
	padding: 10px 0;
	border-bottom: 1px solid rgba(34, 34, 34, 0.3);
}

.header__menu {
	padding: 18px 0;
	border-bottom: 1px solid rgba(34, 34, 34, 0.3);
}

.header__menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.header__menu ul li {
	position: relative;
}

.header a {
	color: var(--black);
	font-weight: 600;
}

.header a:hover {
	color: var(--aqua);
}

.header__info a:first-child {
	padding-right: 20px;
	border-right: 1px solid rgba(34, 34, 34, 0.3);
}

.header__info a:last-child {
	padding-left: 20px;
}

.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--black);
	line-height: 110%;
}

.logo span {
	margin-left: 20px;
	font-weight: 600;
}

.btn {
	border-radius: 6px;
	background-color: var(--aqua);
	padding: 20px 35px;
	color: var(--white);
	font-family: var(--second-font);
	line-height: 100%;
	border: 1px solid var(--aqua);
}

.btn:hover {
	background-color: var(--white);
	color: var(--aqua);
	border-color: var(--aqua);
}

.btn_white {
	background-color: var(--white);
	color: var(--black);
	border-color: var(--white);
}

.btn_white:hover {
	background-color: var(--aqua);
	color: var(--white);
	border-color: var(--aqua);
}

.btn_blue {
	background-color: var(--blue);
	border-color: var(--white);
	min-width: 300px;
}

h1 {
	font-family: var(--second-font);
	font-size: 3.75rem;
	margin-bottom: 1.875rem;
}

main {
	position: relative;
}

#tBreadrumbs span {
	color: var(--gray);
}

#tBreadrumbs a span {
	color: var(--black);
}

.single .bread {
	position: absolute;
	top: 10px;
	width: 100%;
	z-index: 2;
}

.single .bread #tBreadrumbs a span {
	color: var(--white);
}

.divider {
	font-weight: 900;
	position: absolute;
	right: -24px;
	top: 3px;
	z-index: 1;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 25' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.divider.active {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.header__btn-mobile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	cursor: pointer;
}

.header__btn-mobile span {
	background-color: var(--black);
	display: block;
	width: 22px;
	height: 2px;
	margin-bottom: 4px;
	border-radius: 2px;
	z-index: 200;
}

.header__btn-mobile span:first-child {
	position: relative;
	top: 0;
	-webkit-transition: top 0.3s 0.3s, transform 0.3s 0s;
	-webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.header__btn-mobile span:nth-child(2) {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.header__btn-mobile span:last-child {
	margin-bottom: 0;
	position: relative;
	top: 0;
	-webkit-transition: top 0.3s 0.3s, transform 0.3s 0s;
	-webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s;
	transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.header__btn-mobile.opened span:first-child {
	top: 7px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: top 0.3s 0s, transform 0.3s 0.3s;
	-webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.header__btn-mobile.opened span:nth-child(2) {
	opacity: 0;
}

.header__btn-mobile.opened span:last-child {
	top: -5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: top 0.3s 0s, transform 0.3s 0.3s;
	-webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s;
	transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.header__btn-mobile.opened {
	position: fixed;
	top: 25px;
	right: 30px;
	z-index: 100;
}

.banner {
	position: relative;
	padding: 3.75rem 0 5rem;
	background-position: center;
	background-size: cover;
	color: var(--white);
	overflow: hidden;
}

.banner_service {
	padding-top: 6.25rem;
	background-attachment: fixed;
}

.banner_service:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 32, 46, 0.4);
}

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

.banner__undertitle {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 0.9375rem;
}

.banner__title {
	font-size: 6.25rem;
	font-family: var(--second-font);
	line-height: 120%;
}

.banner__subtitle {
	font-size: 1.5rem;
	font-weight: 500;
	margin-left: 2.5rem;
	line-height: 110%;
}

.banner__image {
	padding-left: 6.875rem;
}

.banner__image svg {
	width: 677px;
	height: 110px;
}

.banner__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.banner__action span {
	font-weight: 600;
	margin-left: 10px;
}

.banner__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

.pluses {
	margin-top: 2.5rem;
}

.pluses__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 1.875rem;
}

.pluses__item svg {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 3px;
}

.pluses__item span {
	margin-left: 10px;
}

.section {
	padding: 5rem 0;
}

.section_blue {
	color: var(--white);
	background-color: var(--blue);
}

.section-title {
	font-family: var(--second-font);
	font-size: 3.75rem;
	line-height: 110%;
}

.section-title_blue {
	color: var(--aqua);
}

.section-title span {
	font-family: var(--second-font);
}

.section-subtitle {
	font-size: 1.5rem;
	line-height: 110%;
	margin-top: 0.625rem;
	margin-bottom: 3.125rem;
}

.section-mini-title {
	font-family: var(--second-font);
	font-size: 1.25rem;
}

.card {
	border-radius: 0;
	border: none;
	margin-bottom: 2.5rem;
}

.card:hover {
	color: var(--aqua);
}

.card__wrapper {
	position: relative;
	margin-bottom: 0.9375rem;
	overflow: hidden;
}

.card__wrapper:hover .card__text {
	bottom: 0;
}

.card__text {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	padding: 1.25rem;
	background: rgba(34, 34, 34, 0.5);
	color: var(--white);
	line-height: 120%;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}

.card__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 1.25rem;
}

.card__title span {
	font-family: var(--second-font);
}

.card__title svg {
	width: 75px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.coast-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: right;
	height: 100%;
	padding-bottom: 1.875rem;
}

.coast-link a {
	font-family: var(--second-font);
	font-size: 2.5rem;
	color: var(--black);
	line-height: 120%;
}

.coast-link a:hover {
	color: var(--aqua);
}

.coast-link span {
	color: var(--aqua);
	font-family: var(--second-font);
	text-decoration: underline;
	font-size: 2.5rem;
}

.coast-link_left {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	text-align: left;
}

.solutions-title svg {
	width: 644px;
}

.solutions-title {
	margin-top: -15px;
}

.no-title svg {
	width: 148px;
	margin-bottom: 10px;
}

.projects-title svg {
	width: 352px;
	height: 66px;
}

.advantages-title svg {
	width: 754px;
	height: 66px;
}

.projects {
	position: relative;
}

.projects .btn {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}

.projects .slick-arrow {
	position: absolute;
	bottom: 0;
	font-size: 0;
	width: 12px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	border: none;
	background-color: transparent;
	z-index: 1;
}

.projects .slick-arrow:hover {
	opacity: 0.5;
}

.projects .slick-prev {
	left: 0;
	background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 25L0.999999 13L13 1' stroke='white'/%3E%3C/svg%3E%0A");
}

.projects .slick-prev:before {
	content: "";
	position: absolute;
	top: 12px;
	left: 20px;
	height: 1px;
	width: 120px;
	background-color: rgba(225, 225, 225, 0.3);
}

.projects .slick-next {
	left: 146px;
	background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L13 13L1 25' stroke='white'/%3E%3C/svg%3E%0A");
}

.mt-8 {
	margin-top: 5rem;
}

.slick-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
}

.slick-dots button {
	font-size: 0;
	background-color: var(--white);
	border: none;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}

.slick-dots .slick-active button {
	background-color: var(--aqua);
}

.navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navigation__line {
	width: 120px;
	height: 1px;
	background-color: rgba(34, 34, 34, 0.3);
	margin: 0 15px;
}

.navigation__arrow {
	-webkit-transition: var(--transition);
	transition: var(--transition);
	cursor: pointer;
}

.navigation__arrow:hover {
	opacity: 0.5;
}

.advantages {
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.advantages__btn {
	margin-top: 3.125rem;
}

.advantages__btn .btn {
	width: 100%;
}

.text ul {
	list-style: none;
	padding-left: 0;
}

.text ul li {
	position: relative;
}

.text ul li:before {
	content: "—";
	padding-right: 5px;
}

.download-link {
	color: var(--aqua);
}

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

.download-link:hover {
	color: var(--black);
}

.plus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.3);
	margin-bottom: 1.25rem;
}

.about__number {
	font-family: var(--second-font);
	font-size: 3.75rem;
	line-height: 110%;
}

.about__text {
	font-size: 1.5rem;
	line-height: 110%;
}

.about__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #F5F5F5;
	border-radius: 4px;
	margin-bottom: 10px;
	width: 40px;
	height: 40px;
}

.about__icon svg {
	max-width: 30px;
	max-height: 30px;
}

.about__info {
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(34, 34, 34, 0.3);
}

.about__info:first-child {
	border-top: 1px solid rgba(34, 34, 34, 0.3);
}

.about .slide {
	padding: 0 5px;
}

.about .slide img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
}

.container_right {
	padding-right: 0;
	margin-right: 0;
	max-width: 100%;
}

.slider-wrapper {
	overflow: hidden;
}

.slider-wrapper .slide {
	padding-left: 1.25rem;
}

.slider-wrapper .slider .slick-list {
	overflow: unset;
}

.partner-card {
	position: relative;
}

.partner-card__front {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: #F5F5F5;
	padding: 1.25rem;
	height: 220px;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	z-index: 1;
}

.partner-card__back {
	position: absolute;
	top: 0;
	width: 99%;
	height: 99%;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	background-color: var(--aqua);
	color: var(--white);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	padding: 1.25rem;
	font-size: 1rem;
	line-height: 110%;
}

@media (min-width: 768px) {
	.partner-card:hover .partner-card__front {
		-webkit-transform: rotateY(180deg);
		transform: rotateY(180deg);
		z-index: -1;
	}

	.partner-card:hover .partner-card__back {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
		z-index: 2;
	}
}

.slider_about-doc .slide {
	padding: 0 0.625rem;
}

.slider_partners-mobile .slide {
	padding: 0 0.3125rem;
}

.vacancy {
	background-image: url("../img/vacancy-bg.jpg");
	background-position: center;
	background-size: cover;
	color: var(--white);
}

.img-center {
	display: block;
	margin: 0 auto;
}

.nav-tabs {
	border: none;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.nav-tabs .nav-link,
.accordion-button {
	padding: 1.125rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.3);
	color: var(--white);
	font-family: var(--second-font);
	min-width: 240px;
}

.accordion-button {
	min-width: auto;
	width: 100%;
	border: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover,
.accordion-button:not(.collapsed) {
	background: var(--aqua);
	color: var(--white);
	border: none;
}

.accordion-item {
	background: transparent;
	border: none;
	margin-bottom: 0.625rem;
}

.accordion-body {
	padding: 0.625rem 0;
}

.accordion-button:not(.collapsed) {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.accordion-button::after {
	position: absolute;
	top: 18px;
	right: 10px;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.stages__text {
	background-color: rgba(255, 255, 255, 0.3);
	padding: 1.25rem;
	height: 100%;
	color: var(--white);
}

.stages__result {
	position: relative;
	background-color: var(--white);
	padding: 2.1875rem 1.25rem 1.25rem;
	height: 100%;
	color: var(--black);
}

.stages__result:before {
	content: "";
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	width: 80%;
	height: 1px;
	background-color: rgba(34, 34, 34, 0.3);
}

.stage {
	background-color: #F5F5F5;
	padding: 1.25rem;
	margin-top: 1.25rem;
}

.stage__icon {
	width: 40px;
	height: 40px;
	background-color: var(--aqua);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 4px;
}

.stage__icon svg {
	max-width: 25px;
	max-height: 25px;
}

.stage__number {
	font-size: 1.25rem;
	font-family: var(--second-font);
	color: var(--gray);
}

.stage__text {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(6, 92, 114, 0.3);
}

.section-projects .btn {
	background-color: var(--white);
	border-color: var(--black);
	color: var(--black);
}

.section-projects .btn:hover {
	border-color: var(--aqua);
	color: var(--aqua);
}

.section-projects .slick-prev {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 25L0.999999 13L13 1' stroke='rgb(34, 34, 34)'/%3E%3C/svg%3E%0A");
}

.section-projects .slick-prev:before {
	background-color: rgba(34, 34, 34, 0.3);
}

.section-projects .slick-next {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='26' viewBox='0 0 14 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L13 13L1 25' stroke='rgb(34, 34, 34)'/%3E%3C/svg%3E%0A");
}

.category .contacts {
	padding-top: 0;
}

.category-proektirovanie .section_info,
.category-uslugi .section_info {
	padding-bottom: 0;
}

.contacts__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

/* .contacts__wrapper .contact-item {
	margin-bottom: 2.5rem;
} */
.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.social a {
	margin-right: 1rem;
}

.social a:hover {
	opacity: 0.6;
}

.social svg {
	width: 35px;
	height: 35px;
}

.contact-item {
	margin-bottom: 1.25rem;
}

.contact-item a {
	color: var(--black);
}

.contact-item a:hover {
	color: var(--aqua);
}

.map {
	height: 480px;
}

.footer {
	background: #F5F5F5;
	padding-top: 2.5rem;
}

.footer__bottom {
	background-color: var(--blue);
	color: var(--white);
	padding: 1rem 0;
}

.footer__bottom a {
	color: var(--white);
}

.footer ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.footer ul li {
	margin-bottom: 4px;
}

.footer ul a {
	color: var(--black);
}

.footer ul a:hover {
	color: var(--aqua);
}