.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

.site {
	flex-grow: 1;
}


.map {
	position: relative;
	height: 500px;
	width: 100%;
	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

.section-bottom-offset {
	margin-bottom: -140px;
}






.header-nav {
	position: relative;
}

.header-nav-list {
	align-items: stretch;
	gap: 0;
}

.header-nav .menu-item {
	position: relative;
}



@media(min-width: 1024px) {

	.header-nav .header-nav-list > .menu-item:hover > a {
		background-color: #5388ED;
		color: #fff;
	}
	.header-nav .header-nav-list > .menu-item > a {
		height: 100%;
		display: inline-flex;
		align-items: center;
		padding: 0 16px;
		transition: .2s;
		border-radius: 200px;
	}	

	.header-nav .header-nav-list > .menu-item > .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: rgba(255, 255, 255, 0.9);
		color: #212121;
		list-style: none;
		margin: 0;
		padding: 22px;
		border-radius: 25px;
		width: 340px;
		font-weight: 400;
		line-height: 1.2;
		z-index: 2;
		transition: .4s;
	}

	.header-nav .header-nav-list > .menu-item > .sub-menu li:not(:last-child) {
		margin-bottom: 8px;
	}

	.header-nav .header-nav-list > .menu-item > .sub-menu a:hover {
		text-decoration: underline;
	}

	.header-nav .header-nav-list > .menu-item.menu-item-has-children:not(:hover) > .sub-menu {
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		top: calc( 100% + 6px );

	}

	.header-nav .wide-sub-menu {
		position: static;
	}

	.wide-sub-menu > .sub-menu {
		width: 100% !important;

		display: flex !important;
		gap: 8px !important;
	}

	.wide-sub-menu > .sub-menu > .menu-item {
		flex-basis: calc( (100% - 4 * 8px) / 5 );
	}

	.wide-sub-menu .wide-sub-menu-cat > a {
		font-weight: 700;
		font-size: 20px;
		pointer-events: none;
	}

	.wide-sub-menu > .sub-menu .sub-menu {
		padding: 0;
		margin: 20px 0 0;
		list-style: none;
	}

	.wide-sub-menu > .sub-menu .sub-menu > li:not(:last-child) {
		margin-bottom: 8px;
	}


}



.header-off-canvas-close {
	display: flex;
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0;
}

.header-off-canvas-close img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

@media(max-width: 1023.98px) {
	.header-off-canvas {
		padding: 30px 40px;
		padding-top: 50px;

		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100dvh;
		box-sizing: border-box;
		max-width: 400px;
		background-color: rgba(45, 48, 73, 0.98);
		z-index: 10;
		transition: .3s;

		overflow: auto;


		display: flex;
		flex-direction: column;
	}

	.header-off-canvas:not(.active) {
		transform: translateX(103%);
	}
	.header-nav {
		flex-grow: 1;
	}
	

	.header-nav-list {
		display: block;
		height: auto;

		
	}
	.header-nav-list > .menu-item > a {
		font-size: 20px;
		font-weight: 600;
		padding: 0;
		border-radius: 0;
		-webkit-tap-highlight-color: transparent;
	}

	.header-nav-list .menu-item > a.active {
		color: #799FE8;
	}

	.header-nav-list > .menu-item:not(:last-child) {
		margin-bottom: 16px;
	}

	.header-nav-list > .menu-item > .sub-menu {
/*		padding-left: 0;
		list-style: none;
		margin: 0;*/
		list-style: disc;
		margin-top: 16px;

		display: none;
	}

	.header-nav-list > .menu-item > .sub-menu a {
		font-size: 16px;
		font-weight: 400;
		-webkit-tap-highlight-color: transparent;
	}

	.header-nav-list > .menu-item > .sub-menu > li:not(:last-child) {
		margin-bottom: 16px;
	}

	.header-nav-list > .menu-item > .sub-menu .sub-menu {
		list-style: disc;
		margin-top: 16px;

		display: none;
	}

	.header-nav-list > .menu-item > .sub-menu .sub-menu > li:not(:last-child) {
		margin-bottom: 16px;
	}

	.header-off-canvas-socials {
		margin-top: 24px;
	}

}


@media(max-width: 767.98px) {
	.header-off-canvas {
		max-width: 100%;
	}
}





.modal {
	border-radius: 25px;
	padding: 74px;
	box-sizing: border-box;



}

.feedback {
}

.feedback-input {

}
.modal .feedback-acceptance {
	max-width: 240px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #212121;
	margin-top: 24px;
}
.modal .feedback-submit {
	margin-top: 28px;
	text-align: center;
}

.modal .feedback-submit .button {
	width: 100%;
	max-width: 320px;
}

.modal-title {
	text-align: center;
	font-size: 36px;
	font-weight: 900;
}
.modal-sub-title {
	text-align: center;
	font-size: 18px;
	margin-top: 10px;
}
.modal-form {
	margin-top: 24px;
	max-width: 475px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}


.feedback-line {
	margin-bottom: 13px;
}

@media(max-width: 767.98px) {
	.modal {
		padding: 32px 32px;
	}
	.modal-title {
		font-size: 24px;
	}
	.modal-sub-title {
		font-size: 16px;
	}
}


@media(max-width: 767.98px) {
	.slider .swiper-button-prev {
		width: 38px;
		height: 38px;
	}
	.slider .swiper-button-prev::after {
		font-size: 14px;
	}
	.slider .swiper-button-next {
		width: 38px;
		height: 38px;
	}
	.slider .swiper-button-next::after {
		font-size: 14px;
	}
}






.about {
	text-align: center;
	padding-top: 40px;
}
.container {
}
.about-inner {
}
.about-title {
	font-size: 70px;
	font-weight: 900;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 0;
}
.about-tagline {
	max-width: 912px;
	margin-left: auto;
	margin-right: auto;
	background-color: #5388ED;
	padding: 20px 32px;
	box-sizing: border-box;
	border-radius: 25px;
	color: #fff;
	font-size: 24px;
	margin-top: 16px;

}
.about-text {
	margin-top: 24px;
	font-size: 17px;
	line-height: 1.6;
}

.about-text p {
	margin: 0;
}
.about-image {
	margin-top: 36px;
	text-align: center;

}

.about-image img {
	border-radius: 100px;
	max-width: 100%;
	height: auto;
	box-shadow: 6px 12px 30px rgba(0, 0, 0, 0.1);
}


@media(max-width: 767.98px) {
	.about-title {
		font-size: 24px;

	}
	.about-tagline {
		font-size: 16px;
		padding: 8px 16px;
		border-radius: 10px;
	}
	.about-text {
		font-size: 16px;
	}
	.about-image img {
		border-radius: 40px;
	}
}







.contacts {
	padding: 32px 0;
	margin-bottom: 50px;
}
.container {
}
.contacts-inner {
}
.contacts-title {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 24px;
}
.contacts-row {
	display: flex;
	gap: 24px;
}
.contacts-col {
	flex-basis: calc( (100% - 24px) / 2 );
	box-sizing: border-box;
}
.contacts-info {
	font-size: 18px;
}
.contacts-info:not(:last-child) {
	margin-bottom: 32px;
}
.contacts-info-row {
	display: flex;
	gap: 16px;
}
.contacts-info-col {
	flex-basis: calc( (100% - 16px) / 2 );
	box-sizing: border-box;
}
.contacts-info-title {
	font-weight: 700;
	margin-bottom: 8px;
}
.contacts-info-text {
}
.contacts-info-socials {
	display: flex;
	gap: 24px;
	align-items: center;
}
.socials {
}
.socials-item {
}
.contacts-map img {
	width: 100%;
	display: block;
	height: auto;
	border-radius: 25px;
}

@media(max-width: 767.98px) {
	.contacts-row {
		display: block;
	}
	.contacts-col:not(:last-child) {
		margin-bottom: 32px;
	}
	.contacts-info {
		font-size: 16px;
	}
	.contacts-title {
		font-size: 24px;
	}
	.contacts-info-socials {
		flex-wrap: wrap;
	}
	.contacts {
		margin-bottom: 0;
	}
}



.swiper-slide {
  height: auto;
}

.examples-slider-item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.examples-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.examples-list {
	flex-grow: 1;
}

.team {
	position: relative;
	z-index: 10;
}

.team-item {
	background-color: #fff;
}

.team-title {
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 8px;
}



.blog-row {
	display: flex;
	gap: 40px 24px;
	flex-wrap: wrap;
	margin-top: 32px;
	margin-bottom: 40px;
}
.blog-item {
	flex-basis: calc( (100% - 24px * 2) / 3 );
}

@media(max-width: 767.98px) {
	.blog-item {
		flex-basis: 100%;
	}	
}

.blog-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}
.blog-title a {
	color: currentColor;
	text-decoration: none;
	transition: .2s;
}
.blog-title a:hover {
	color: #E1BA8C;
}
.blog-excerpt {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}
.blog-link a {
	text-decoration: none;
	color: currentColor;
}
.blog-link a:hover {
	text-decoration: underline;
}


.section-cta-alt {
	margin-bottom: 100px;
}

@media(max-width: 767.98px) {

	.section-cta-alt {
		margin-bottom: 50px;
	}	
}