* {
	box-sizing: border-box;
}
html {
	overflow-x: hidden;
}
body {
    overflow-x: hidden;
    padding-right: 0 !important;
    background: #fff;
    position: relative;
    font-family: "Inter", sans-serif;
    color: #252525;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}
textarea, input {
	font-family: "Inter", sans-serif;
}
a {
	text-decoration: none;
	outline: none !important;
	font-size: inherit;
	color: inherit;
}
strong {
	font-weight: 600;
}
p {
	margin-bottom: 24px;
}
p:last-child {
	margin-bottom: 0;
}
i {
	font-style: italic;
}

@media (max-width: 1240px) {
	body {
		font-size: 18px;
	}
}
@media (max-width: 768px) {
    body {
    	font-size: 15px;
    }
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10;
	background: rgba(0,0,0,.5);
	opacity: 0;
	backdrop-filter: blur(10px);
	pointer-events: none;
}
.header-open .overlay {
    opacity: 1;
    pointer-events: initial;
}

/* service */

.service-item {
	width: 562px;
	height: 356px;
	position: relative;
	overflow: hidden;
}
.service-item > * {
	position: relative;
	z-index: 3;
	transition: .4s;
}
.service-item-bg {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: .4s;
}
.service-item-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
.service-item:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(27, 46, 73, 0.80);
	opacity: 0;
	transition: .4s;
}
.service-item:before {
	content: "";
	width: 64px;
	height: 64px;
	background: url("../img/icons/green-arrow.svg") no-repeat center center / 100%;
	position: absolute;
	bottom: 32px;
	right: 32px;
	z-index: 2;
}
.service-item:hover:after,
.service-item:hover .service-item-bg {
	opacity: 1;
}
.service-item:hover > * {
	color: #fff;
}
.service-item .text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	    width: calc(100% - 40px);
}

@media (max-width: 1240px) {
	.service-item {
		width: calc(50% - 16px);
	}
}
@media (max-width: 768px) {
	.service-item {
		width: 100%;
		height: auto;
		min-height: 220px;
		padding-bottom: 60px;
	}
	.service-item:before {
		width: 32px;
		height: 32px;
		bottom: 16px;
		right: 16px;
	}
}

/* reviews */

#reviews {
	position: relative;
}
#reviews:before {
	content: "";
	width: calc(100vw - 1700px - (100vw - 1800px)/2);
	left: 0;
	top: 0;
	position: absolute;
	height: 100%;
	background: #fff;
	z-index: 2;
}
.reviews-info {
	width: 454px;
	z-index: 12;
	background: #fff;
	position: relative;
}
.reviews-slider-nav {
	position: absolute;
	left: 0;
	bottom: 0;
	gap: 32px;
}
.reviews-slider-nav-next,
.reviews-slider-nav-prev {
	cursor: pointer;
	user-select: none;
}
.reviews-slider {
	overflow: visible;
	margin: 0;
	width: calc(100% - 454px - 160px);
}
.reviews-slider-item {
	width: 877px;
	gap: 40px;
	background: #ECF2F6;
}
.reviews-slider-item__preview {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}
.reviews-slider-item__info {
	width: calc(100% - 180px);
}
.reviews-slider-item__info-name {
	margin-bottom: 12px;
}
.reviews-slider-item__info-type {
	opacity: .5;
	margin-bottom: 24px;
}

@media (max-width: 1800px) {
	#reviews:before {
		width: 60px;
	}
}
@media (max-width: 1240px) {
	.reviews-info {
		width: 400px;
	}
	.reviews-slider {
		width: calc(100% - 440px);
	}
	.reviews-slider-item__preview {
		width: 80px;
		height: 80px;
	}
	.reviews-slider-item__info {
		width: calc(100% - 100px);
	}
	.reviews-slider-item {
		width: calc(100vw - 160px - 340px);
		gap: 20px;
	}
}
@media (max-width: 1024px) {
    .reviews-info {
        width: 100%;
    }
    #reviews:before {
    	display: none;
    }
    .reviews-slider-nav {
        display: none;
    }
    .reviews-slider {
        width: 100%;
    }
    .reviews-slider-item {
    	width: 680px;
    }
 	.reviews-slider-progressbar {
 		display: block;
 	}   
}
@media (max-width: 768px) {
	.reviews-slider-item {
		width: calc(100vw - 60px);
		display: block;
	}
	.reviews-slider-item__preview {
		width: 60px;
		height: 60px;
	}
	.reviews-slider-item__info {
		width: 100%;
		margin-top: 16px;
	}
}

/* about */

#about {
	background: #EEF3F7;
}
.about-adva {
	width: 570px;
}
.about-adva-item:not(:last-child) {
	margin-bottom: 24px;
}
.about-adva-item .h3 {
	font-size: 60px;
	margin-bottom: 4px;
}
.about-info {
	width: calc(100% - 570px - 45px);
}
.about-info h4 {
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.about-info {
		width: 100%;
	}
	.about-adva-item .h3 {
		font-size: 42px;
	}
}
@media (max-width: 768px) {
	.about-adva-item .h3 {
		font-size: 32px;
	}
	.about-info {
		margin-top: 24px;
	}
	.about-info h4 {
	    margin-bottom: 20px;
	}
}

/* cases */

.cases-top {
	margin-bottom: 40px;
}
.cases-top .h2 {
	margin: 0;
}
.cases {
	overflow: visible;
}
.cases-item {
	width: 562px;
	transition: .4s;
	position: relative;
	min-height: 488px;
}
.cases-item:before {
    content: "";
    width: 64px;
    height: 64px;
    background: url("../img/icons/green-arrow.svg") no-repeat center center / 100%;
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 2;
}
.cases-item * {
	transition: .4s;
}
.cases-item-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cases-item-text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.cases-item-cat {
    border-radius: 1000px;
    background: #EEF3F7;
    padding: 12px 20px;
    width: max-content;
    margin-bottom: 28px;
}
.cases-item:hover {
	background: #1B4253;
}
.cases-item:hover .cases-item-cat {
	background: #FFF;
}
.cases-item:hover .cases-item-name,
.cases-item:hover .cases-item-text {
	color: #fff;
}

@media (max-width: 1240px) {
	.cases-item {
		width: 470px;
		min-height: 400px;
	}
	.cases-progressbar {
		display: block;
	}
	.cases-top {
		margin-bottom: 28px;
	}
	.cases:not(.swiper) .cases-item {
		width: calc(50% - 16px);
	}
}
@media (max-width: 978px) {
    .cases:not(.swiper) .cases-item {
        width: 100%;
    }
}
@media (max-width: 768px) {
	.cases-top {
		margin-bottom: 20px;
	}
	.cases-item:before {
		width: 32px;
		height: 32px;
		bottom: 16px;
		right: 16px;
	}
	.cases-item {
		width: calc(100vw - 60px);
		min-height: 280px;
	}
	.cases-item-cat {
		padding: 10px 16px;
		margin-bottom: 16px;
	}
}

/* blog */

.blog-item {
	width: calc(50% - 23px);
	min-height: 470px;
	transition: .4s;
	background: #EEF3F7;
	position: relative;
	overflow: hidden;
}
.blog-item,
.blog-item * {
	transition: .4s;
}
.blog-item .blog-item-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.blog-item * {
	position: relative;
	z-index: 3;
}
.blog-item-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
}
.blog-item-text {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.blog-item .blog-item-bottom {
	position: absolute;
	bottom: 60px;
	left: 60px;
}
.blog-item-bottom-tags {
	gap: 12px;
	row-gap: 4px;
	margin-bottom: 28px;
}
.blog-item-bottom-tags div {
	opacity: .5;
}
.blog-item:hover .blog-item-bg {
	opacity: 1;
}
.blog-item:hover * {
	color: #fff;
}

.blog-top {
	margin-bottom: 40px;
	gap: 16px;
}
.blog-top-cat {
	width: calc(100% - 120px);
	gap: 20px;
}
.blog-top-cat a {
    border-radius: 1000px;
    background: #EEF3F7;
    padding: 12px 20px;
}
.blog-top-cat a.active {
	background: #1B4253;
	color: #fff;
}
.blog-top-clear {
	color: rgba(37, 37, 37, 0.50);
	padding-left: 36px;
	background: url("../img/icons/clear.svg") no-repeat center left;
	margin-top: 11px;
}

@media (max-width: 1240px) {
	.blog-item {
		width: calc(50% - 32px / 2);
	}
	.blog-item .blog-item-bottom {
		bottom: 40px;
		left: 40px;
	}
}
@media (max-width: 1024px) {
	.blog-item {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.blog-item {
		min-height: initial;
	}
	.blog-item .blog-item-bottom {
		position: relative;
		bottom: 0;
		left: 0;
	}
	.blog-item-bottom-tags {
		margin-bottom: 14px;
	}
	.blog-top {
		margin-bottom: 20px;
	}
	.blog-top-cat {
		width: 100%;
		gap: 12px;
	}
	.blog-top-cat a {
        font-size: 12px;
        padding: 6px 12px;
	}
	.blog-top-clear {
	    margin: 0;
	    zoom: .8;
	    padding-left: 30px;
	}
}

/* footer */

#footer {
	background: #102E3A;
	padding: 32px 0 40px 0;
}
.footer-top-logo {
	width: 200px;
}
.footer-top-logo img {
	max-width: 100%;
}
.footer-top-menu {
	gap: 40px;
}
.footer-top-soc {
	gap: 20px;
}
.footer-bottom {
	margin-top: 28px;
}
.footer-bottom-menu {
	gap: 40px;
}
.footer-bottom-menu a {
	opacity: .5;
	transition: .4s;
}
.footer-bottom-menu a:hover {
	opacity: 1;
}
.footer-bottom-copyright {
	text-align: right;
}
.footer-bottom-copyright span {
	opacity: .5;
}

@media (max-width: 1240px) {
	.footer-top-logo {
		width: 160px;
	}
	.footer-top-menu {
		gap: 20px;
	}
	.footer-top-phone {
		order: 5;
		width: 100%;
		margin: 16px 0;
	}
	.footer-top-soc {
		order: 6;
		width: 100%;
	}
}
@media (max-width: 910px) {
	.footer-top-menu {
		order: 8;
		width: 100%;
		margin-top: 16px;
	}
}
@media (max-width: 768px) {
	#footer {
		padding: 28px 0;
	}
	.footer-top-logo {
		width: 120px;
	}
	.footer-top-button {
		padding: 10px 40px;
	}
	.footer-top-soc {
		zoom: .8;
		gap: 12px;
	}
	.footer-top-menu {
		gap: 16px;
	}
	.footer-bottom {
		margin-top: 12px;
	}
	.footer-bottom-copyright {
	    text-align: left;
	    margin-top: 24px;
	}
	#footer .button {
		width: max-content;
	}
}

/* main */

#main {
	padding: 200px 0 100px 0;
}
#main .container {
	height: 100%;
}
.main-left {
	width: calc(100% - 569px - 40px);
}
.main-left-top {
	gap: 20px;
	margin-bottom: 28px;
}
.main-left-top__item {
    border-radius: 1000px;
    border: 1px solid #FFF;
    padding: 12px 24px;
}
.main-left .h1 {
	color: #fff;
	font-size: 116px;
	margin-bottom: 24px;
}
.main-left-text {
	font-size: 26px;
	margin-bottom: 45px;
}
.main-left-bottom {
	gap: 10px;
}
.main-left-bottom .button {
	padding: 17px 70px;
	transition: 1s;
}
.main-left-bottom__arrowbutton {
	width: 62px;
	height: 62px;
	background: url("../img/icons/green-arrow.svg") no-repeat center center / 100%;
	transition: .4s;
}
.main-left-bottom .button:hover {
	border-radius: 1000px 0 0 1000px;
	background: #00BC00;
}
.main-left-bottom .button:hover + .main-left-bottom__arrowbutton {
	transform: translateX(-46px) rotate(45deg);
}
.main-adva {
	width: 569px;
	row-gap: 52px;
}
.main-adva-item {
    width: 100%;
    padding: 52px 42px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    gap: 24px;
    border: 1px solid #fff;
}
.main-adva-item-icon {
	width: 52px;
}
.main-adva-item-text {
	width: calc(100% - 52px - 24px);
}

@media (max-width: 1240px) {
	.main-left {
		width: 100%;
	}
	.main-left .h1 {
		font-size: 90px;
	}
	.main-adva {
		margin-top: 40px;
		row-gap: 16px;
		width: 100%;
	}
	.main-adva-item {
		padding: 20px 24px;
		align-items: flex-start;
		gap: 12px;
	}
	.main-adva-item-icon {
		width: 26px;
	}
}
@media (max-width: 1024px) {
	.main-left .h1 {
		font-size: 76px;
	}
	.main-left-top__item {
		padding: 10px 20px;
	}
	.main-left-text {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
    #main {
        padding: 120px 0 40px 0;
    }
    .main-left {
    	position: relative;
    }
    .main-left .h1 {
    	max-width: 342px;
    	width: 100%;
    	margin-bottom: 12px;
    }
    .main-left-top {
        gap: 0;
        position: absolute;
        left: 0;
        top: 0;
        justify-content: flex-end;
    }
    .main-left-top__item {
    	width: max-content;
        padding: 8px 14px;
        font-size: 14px;
        position: absolute;
        left: 0;
        top: 0;
    }
    .main-left .h1 {
        font-size: 38px;
        margin-top: 50px;
    }
    .main-left .h1 br {
        display: none;
    }
    .main-left-text {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .main-left-bottom .button {
        padding: 14px;
        width: calc(100% - 62px);
    }
    .main-left-bottom__arrowbutton {
        width: 50px;
        height: 50px;
    }
    .main-adva-item-text {
       width: calc(100% - 18px - 24px);
   }
   .main-adva-item-text .h5 {
   		font-size: 16px;
   		margin-bottom: 8px;
   }
}
@media (max-width: 380px) {
	.main-left .h1 {
		margin-top: 48px;
	}
}

/* header */

#header:not(.header-in) {
	margin: 38px 0 48px 0;
	position: relative;
	z-index: 12;
}
#header.header-in {
	width: 100%;
	left: 0;
	position: absolute;
	top: 38px;
	z-index: 12;
}
#header.header-in .container {
    padding: 6px 10px 6px 40px;
    border-radius: 1000px;
    border: 1px solid #FFF;
    background: #FFF;
}
#header:not(.header-in) .container {
    padding: 6px 10px 6px 40px;
    border-radius: 1000px;
    border: 1px solid #FFF;
    background: #EEF3F7;
}
.header-mobile {
	display: none;
}
.header-desktop-close {
	display: none;
}
.header-logo {
	width: 148px;
}
.header-logo img {
	width: 100%;
}
.header-menu {
	gap: 24px;
}
.header-soc {
	gap: 20px;
}
.header-lang {
	position: relative;
}
.header-lang-toggle {
	position: relative;
	padding-right: 20px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
}
.header-lang-toggle:before {
	content: "";
	width: 16px;
	height: 16px;
	background: url("../img/icons/chevron-up.svg") no-repeat center center / 100%;
	position: absolute;
	right: 0;
	transition: .4s;
}
.header-lang-toggle.active:before {
	transform: rotate(180deg);
}
.header-lang-list {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
    padding: 10px 18px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
}
.header-lang-list a:not(:last-child) {
	display: block;
	margin-bottom: 8px;
}
.header-lang-toggle.active + .header-lang-list {
	margin-top: 4px;
	opacity: 1;
	pointer-events: initial;
}
.header-lang-list a {
	text-transform: uppercase;
}

@media (max-width: 1240px) {
	.header-mobile {
		display: flex;
	}
	#header:not(.header-in) {
		margin: 20px 0;
	}
	#header.header-in .container,
	#header:not(.header-in) .container {
		padding: 6px 40px 6px 20px;
	}
	#header .header-desktop.container {
		gap: 8px;
	}
	.header-logo {
		width: 120px;
	}
	.header-menu-toggle {
		display: block;
		width: 32px;
		height: 32px;
		background: url("../img/icons/catalog-icon.svg") no-repeat center center / 100%;
	}
	.header-desktop {
        position: absolute;
        border-radius: 24px !important;
        left: 40px;
        margin-top: 24px;
        padding: 24px 40px !important;
        opacity: 0;
        pointer-events: none;
        transition: .4s;
	}
	.header-menu {
		order: 5;
		width: 100%;
		margin: 16px 0 0 0;
	}
	.header-open .header-desktop {
		opacity: 1;
		pointer-events: initial;
	}
	.header-desktop .header-lang {
		display: none;
	}
	.header-lang {
		margin-left: auto;
		margin-right: 14px;
	}
}
@media (max-width: 1024px) {
	.header-desktop .header-logo {
		display: none;
	}
}
@media (max-width: 768px) {
	#header.header-in {
		left: 0;
		top: 16px;
	}
	#header.header-in .container {
		padding: 12px 22px !important;
	}
	.header-logo {
		width: 100px;
	}
	.header-menu-toggle {
		width: 26px;
		height: 26px;
	}
	.header-desktop {
		left: 20px;
		border-radius: 20px !important;
	}
	.header-menu {
		order: -12;
		gap: 12px;
		margin: 0 0 12px 0;
	}
	.header-menu a {
		width: 100%;
	}
	.header-soc {
		gap: 12px;
		zoom: .8;
		width: 100%;
		margin: 15px 0;
	}
}

/* contacts */

#contacts .container {
	position: relative;
}
.contacts-info {
	width: 579px;
}
.contacts-info-block {
	padding: 40px;
	background: #EEF3F7;
	margin-bottom: 14px;
}
.contacts-info-block__adress {
	padding-left: 30px;
	background: url("../img/icons/adress-icon.svg") no-repeat top 3px left;
	margin-bottom: 20px;
}
.contacts-info-block__phone {
	display: block;
	padding-left: 30px;
	background: url("../img/icons/phone-icon.svg") no-repeat top 3px left;
	margin-bottom: 20px;
}
.contacts-info-block__email {
	display: block;
	padding-left: 30px;
	background: url("../img/icons/email-icon.svg") no-repeat top 6px left;
}
.contacts-info-text {
	margin: 28px 0;
}
.contacts-info-bottom {
	gap: 46px;
}
.contacts-info-bottom__soc {
	gap: 20px;
}
.contacts-map {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 579px - 36px);
	height: 100%;
	border-radius: 28px;
}

@media (max-width: 1124px) {
	.contacts-info {
		width: 100%;
	}
	.contacts-map {
		width: 100%;
		position: relative;
		height: 440px;
		margin-top: 28px;
	}
}
@media (max-width: 768px) {
	.contacts-info-block {
		padding: 20px;
	}
	.contacts-info-block__adress,
	.contacts-info-block__phone {
		min-height: 25px;
		background-position: top 2px left;
		padding-top: 2px;
	}
	.contacts-info-block__email {
		min-height: 25px;
		background-position: top 4px left;
		padding-top: 1px;
	}
	.contacts-info-bottom {
		gap: 20px;
	}
	.contacts-info-bottom__soc {
		gap: 12px;
		zoom: .8;
	}
	.contacts-map {
		height: 360px;
		border-radius: 16px;
	}
}

/* companies */

#companies {
	background: #EEF3F7;
}
.companies-left {
	width: 723px;
}
.companies-right {
	width: calc(100% - 723px - 46px);
}
.companies-right-item {
	background: #fff;
}
.companies-right-item:not(:last-child) {
	margin-bottom: 28px;
}
.companies-right-item__top {
	gap: 20px;
	margin-bottom: 24px;
}
.companies-right-item__top .h5 {
	margin: 0;
}

@media (max-width: 1240px) {
	#companies .container {
		padding-bottom: 80px;
	}
	.companies-left {
		width: 100%;
		will-change: auto !important;
		position: initial !important;
		transform: none !important;
	}
	.companies-left .button {
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.companies-right {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.companies-right-item__top {
		gap: 12px;
		margin-bottom: 12px;
	}
	.companies-right-item__top img {
		width: 32px;
	}
}

/* our */

.our-top {
	margin-bottom: 40px;
	gap: 60px;
	row-gap: 16px;
}
.our-top p {
	flex: 1;
}
.our-top .h2 {
	margin: 0;
}
.our-list {
	gap: 46px;
	row-gap: 28px;
}
.our-list-item {
	width: calc(100%/4 - 138px/4);
	gap: 28px;
}
.our-list-item__num {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 40px;
    font-weight: 600;
    line-height: 140%;
    background: #EEF3F7;
}
.our-list-item__text {
	width: calc(100% - 108px);
}

@media (max-width: 1240px) {
	.our-list-item {
		width: calc(50% - 23px);
	}
	.our-top p {
		flex: initial;
		width: 100%;
	}
}
@media (max-width: 768px) {
	.our-top {
		margin-bottom: 24px;
	}
	.our-list-item {
		width: 100%;
		gap: 12px;
	}
	.our-list {
		row-gap: 16px;
	}
	.our-list-item__num {
		width: 48px;
		height: 48px;
		font-size: 21px;
	}
}

/* blog-in */

.blog-in-content {
	width: calc(100% - 569px - 46px);
}
.blog-in-content__date {
	opacity: .5;
	margin-bottom: 24px;
}
.blog-in-content > img,
.blog-in-content > p > img {
	width: 100%;
	border-radius: 28px;
	margin-bottom: 32px;
}
.blog-in-content__tags {
	gap: 12px;
	margin-bottom: 28px;
}
.blog-in-content__tags div {
	opacity: .5;
}

.blog-in-sidebar {
	width: 569px;
}
.blog-in-sidebar-item:not(:last-child) {
	margin-bottom: 20px;
}
.blog-in-sidebar-item {
	background: #EEF3F7;
	width: 100%;
}
.blog-in-sidebar-item__date {
	opacity: .5;
	margin: 20px 0;
}

@media (max-width: 1240px) {
	.blog-in-content {
		width: 100%;
	}
	.blog-in-sidebar {
		width: 100%;
		margin-top: 40px;
	}
}
@media (max-width: 768px) {
	.blog-in-content__date {
		margin-bottom: 12px;
	}
	.blog-in-content > img {
		margin-bottom: 20px;
		border-radius: 16px;
	}
	.blog-in-sidebar-item:not(:last-child) {
		margin-bottom: 12px;
	}
}

/* case-in */

.case-in-top {
	gap: 44px;
	margin-bottom: 40px;
}
.case-in-top .h2 {
	margin: 0;
	flex: 1;
}
.case-in-top-cat {
    width: max-content;
    border-radius: 1000px;
    background: #EEF3F7;
    padding: 12px 20px;
}
.case-in-img {
	width: 100%;
}
.case-in-info {
	margin: 70px 0 36px 0;
}
.case-in-info__content {
	width: calc(100% - 723px - 46px);
}
.case-in-info__sidebar {
	width: 723px;
}
.case-in-result {
	background: #EEF3F7;
}
.case-in-result__content {
	flex: 1;
	padding-right: 120px;
}
.case-in-result__content .h3 {
	margin-top: 0;
}

@media (max-width: 1240px) {
	.case-in-top .h2 {
		flex: initial;
		width: 100%;
	}
	.case-in-top {
		gap: 20px;
		margin-bottom: 28px;
	}
	.case-in-info {
		margin: 40px 0;
	}
	.case-in-info__content {
		width: 100%;
	}
	.case-in-info__sidebar {
		width: 100%;
		margin-top: 24px;
	}
	.case-in-result__content {
		padding-right: 40px;
	}
}
@media (max-width: 768px) {
    .case-in-info__sidebar ul {
        margin: 0;
    }
    .case-in-result__content {
        padding-right: 0;
        margin-bottom: 24px;
    }
}

/* services-in */

#services-in {
	padding: 380px 0 100px 0;
	margin-bottom: 40px;
}
#services-in .h1 {
	color: #fff;
}
.services-in-content {
	max-width: 1050px;
	width: 100%;
}

@media (max-width: 768px) {
	#services-in {
		padding: 200px 0 60px 0;
		margin-bottom: 20px;
	}
	#services-in .h1 {
		font-size: 36px;
	}
}

/* services-content */

.services-content {
	width: calc(100% - 722px - 46px);
}

.services-form {
	width: 722px;
}

@media (max-width: 1240px) {
	.services-content {
		width: 100%;
		margin-bottom: 40px;
	}
	.services-form {
		width: 100%;
		position: relative !important;
		transform: none !important;
	}
}

/* team */

.team-left {
	width: calc(50% - 16px);
}
.team-right {
	width: calc(50% - 16px);
}
.team-right-withbutton p {
	margin: 0;
}
.team-right-withbutton {
	margin-bottom: 32px;
	row-gap: 16px;
}
.team-right-cat {
	gap: 20px;
}
.team-right-cat-item {
    padding: 12px 20px;
    border-radius: 1000px;
    background: #EEF3F7;
}

.team-item {
	width: 100%;
	overflow: hidden;
}
.team-item-top {
	gap: 40px;
	margin-bottom: 20px;
}
.team-item-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
}
.team-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team-item-top-info {
	width: calc(100% - 180px);
}
.team-item-info__cat {
	width: max-content;
    padding: 12px 20px;
    border-radius: 1000px;
    background: #EEF3F7;
    margin-bottom: 20px;
}
.team-item-info .h5 {
	margin-bottom: 20px;
}

@media (max-width: 1240px) {
	#team .container {
		row-gap: 32px;
	}
	.team-left,
	.team-right {
		width: 100%;
	}
	.team-right {
		order: -2;
	}
	.team-right-withbutton {
		margin-bottom: 20px;
	}
}
@media (max-width: 768px) {
	.team-item-info__cat {
		font-size: 12px;
		margin-bottom: 6px;
	}
	.team-right-cat {
		gap: 12px;
	}
	.team-right-cat-item {
		font-size: 12px;
	}
	.team-item-top {
		row-gap: 12px;
	}
	.team-item-img {
		width: 100px;
		height: 100px;
	}
	.team-item-top-info {
		width: 100%;
	}
}

#page-in {
	min-height: 80vh;
}

.faq-block-item:not(:last-child) {
	margin-bottom: 16px;
}
.faq-block-item {
    overflow: hidden;
}
.faq-block-item span {
	width: calc(100% - 40px);
}
.faq-block-item__button {
	font-weight: 600;
	padding: 18px 20px 18px 28px;
	background: #EEF3F7;
	border-radius: 0 0 12px 12px;
	cursor: pointer;
	border-radius: 12px;
}
.faq-block-item__button svg {
	transition: .4s;
	transform: rotate(45deg);
	width: 34px;
	height: auto;
}
.faq-block-item.active .faq-block-item__button svg {
	transform: rotate(0deg);
}
.faq-block-item__content {
	padding: 0 28px;
	transition: .4s;
	height: 0px;
	border-radius: 12px;
	border: 2px solid transparent;
}
.faq-block-item.active .faq-block-item__content {
	padding: 28px;
	height: auto;
	border: 2px solid #EEF3F7;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.faq-block-item__button {
		padding: 15px 14px 15px 20px;
	}
	.faq-block-item__button svg {
		zoom: .7;
	}
	.faq-block-item__content {
		padding: 0 16px;
	}
	.faq-block-item.active .faq-block-item__content {
		padding: 16px;
	}
}