@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ Thin.ttf');
    font-weight: 100;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ ExtraLight.ttf');
    font-weight: 200;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ DemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ ExtraBold.ttf');
    font-weight: 800;
}
@font-face {
    font-family: "TT Supermolot Neue Trl Exp";
    src: url('../fonts/TT\ Supermolot\ Neue\ Trial\ Expanded\ Black.ttf');
    font-weight: 900;
}

html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: "Golos Text";
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #414042;
    background: #E8EBF0;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
    color: #414042;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 188rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}
main {
    display: flex;
    flex-direction: column;
    padding-top: 12rem;
}
svg {
    vertical-align: middle;
    overflow: visible;
}

/* header */

header {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}
.header-container {
    padding: 1.5rem 1rem;
    border-radius: 1.4rem;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 8rem;
}
.header-container nav ul {
    display: flex;
    padding: 0 3.8rem;
    align-items: center;
    gap: 3.5rem;
}
.header-container nav ul li {
    display: flex;
}
.header-container nav ul li a {
    color: #414042;
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.logo {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 14.8rem;
}
.logo img {
    width: 14.8rem;
}
.header-row {
    display: flex;
    align-items: center;
    gap: 4.1rem;
}
.header-row > a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.header-row > a svg {
    width: 2.4rem;
    height: auto;
}
.header-row > a p {
    color: #414042;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.burger-open {
    display: none;
}
.bar {
    height: 2px;
    width: 1.8rem;
    background: #FFF;
    border-radius: 0.2rem;
}
.change .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-0.4rem, 0.4rem);
}
.change .bar:nth-child(2) {
    opacity: 0;
}
.change .bar:nth-child(3) {
    transform: rotate(45deg) translate(-0.4rem, -0.5rem);
}
.mobile_menu {
    display: none;
}

@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
    .container {
        max-width: 33.5rem;
    }
    main {
        padding-top: 9.6rem;
    }
    .burger-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 4.8rem;
        height: 4.8rem;
        background: #ED1A3B;
        border-radius: 1rem;
        gap: 0.4rem;
        position: relative;
        z-index: 999;
        padding: 0 1.5rem;
    }
    .mobile_menu.active {
        display: flex;
        width: 100%;
        max-width: 33.5rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: #FFF;
        position: fixed;
        top: 9.2rem;
        border-radius: 1.4rem;
        flex-direction: column;
        justify-content: space-between;
        padding: 2.4rem;
        gap: 2.4rem;
    }
    header {
        padding: 1.2rem 0;
    }
    .header-container {
        padding: 1.2rem;
        height: auto;
        gap: 2.4rem;
        justify-content: flex-start;
    }
    .header-container nav {
        display: none;
    }
    .logo {
        position: relative;
        margin: 0;
        width: auto;
        margin-right: auto;
    }
    .logo img {
        width: 10rem;
    }
    .header-row {
        gap: 1.6rem;
    }
    .header-row > a p {
        display: none;
    }
    .mobile_menu nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    .mobile_menu nav ul li {
        display: flex;
    }
    .mobile_menu nav ul li a {
        color: #414042;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: 105%;
    }
    .mobile_menu .header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    .mobile_menu .header-row > a p {
        display: block;
        font-size: 1.6rem;
    }
}

/* footer */

footer {
    padding-bottom: 1.2rem;
}
.footer-container {
    border-radius: 1.2rem;
    background: #FFF;
    padding: 4.8rem 4.8rem 4.4rem 4.8rem;
    display: flex;
    flex-direction: column;
    gap: 6.8rem;
}
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-main nav {
    max-width: 51.1rem;
}
.footer-main nav ul {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1.6rem 2.8rem;
    flex-wrap: wrap;
}
.footer-main nav ul li {
    display: flex;
}
.footer-main nav ul li a {
    color: #414042;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 3.6rem;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: flex-end;
}
.footer-contacts a {
    color: #414042;
    text-align: right;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 4.9rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.147rem;
    text-transform: uppercase;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.footer-bottom a {
    color: #414042;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.footer-bottom p {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #414042;
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    max-width: 50rem;
}

@media screen and (max-width: 992px) {
    .footer-container {
        padding: 2.4rem;
        gap: 3.2rem;
    }
    .footer-main {
        flex-direction: column;
        gap: 3.2rem;
    }
    .footer-main nav {
        max-width: none;
    }
    .footer-main nav ul {
        flex-direction: column;
        gap: 1.6rem;
    }
    .footer-main nav ul li a {
        font-size: 1.4rem;
        line-height: 100%;
        letter-spacing: -0.028rem;
    }
    .footer-contacts {
        gap: 1.6rem;
        align-items: flex-start;
    }
    .footer-contacts a {
        text-align: left;
        font-size: 2.4rem;
        line-height: 110%;
        letter-spacing: -0.072rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.6rem;
        align-items: flex-start;
    }
    .footer-bottom a {
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
    }
    .footer-bottom p {
        position: relative;
        text-align: left;
        font-size: 1.2rem;
        letter-spacing: -0.024rem;
        margin: 0;
        max-width: none;
    }
}

/* banner */

.banner {
    height: 81.5rem;
    display: flex;
    margin-bottom: 5rem;
}
.banner-container {
    display: grid;
	grid-template-columns:repeat(2, 1fr);
	gap: 2rem;
}
.banner-left {
    gap: 18rem;
    display: flex;
    flex-direction: column;
    padding: 3.6rem 0;
    border-radius: 1.2rem;
    background: #FFF;
    overflow: hidden;
    position: relative;
    justify-content: flex-end;
}
.banner-right {
    position: relative;
    width: 100%;
}
.banner_swiper {
    width: 100%;
    height: 100%;
	max-width: 93rem;
	border-radius: 1.2rem;
}
.banner_swiper .swiper-slide {
    height: auto;
    position: relative;
}
.banner_swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 72.06%, rgba(0, 0, 0, 0.35) 100%);
}
.banner_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    object-fit: cover;
}
.banner-col {
    width: 100%;
    max-width: 65.3rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.1rem;
}
.banner-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.banner-name p {
    color: #414042;
    text-align: center;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    max-width: 59.9rem;
}
.banner-title {
    color: #414042;
    text-align: center;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.192rem;
    text-transform: uppercase;
}
.banner-button {
    padding: 3.6rem 3.95rem;
    background: #ED1A3B;
    border-radius: 1.2rem;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.banner-marquee__track {
	display: flex;
	width: max-content;
	will-change: transform;
	gap: 0.4rem;
}
.banner-marquee {
	width: 100%;
    display: flex;
    gap: 0.4rem;
    overflow: hidden;
	position: relative;
}
.banner-marquee__item {
    flex-shrink: 0;
    touch-action: pan-y;
	padding-bottom: 1px;
}
.banner-marquee__item p {
    border-radius: 5rem;
    border: 1px solid #676668;
    padding: 1.6rem 2.4rem;
    color: #676668;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.banner-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    position: absolute;
    z-index: 3;
    left: 3.6rem;
    bottom: 3.6rem;
}
.banner-logo h3 {
    color: #FFF;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.108rem;
    text-transform: uppercase;
}
.banner-logo p {
    color: #FFF;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
}
.banner-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: absolute;
    z-index: 3;
    right: 3.6rem;
    bottom: 3.6rem;
}
.banner-prev {
    display: flex;
    width: 5rem;
    height: 5rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background: #FFF;
}
.banner-next {
    display: flex;
    width: 5rem;
    height: 5rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    background: #FFF;
}
.banner-prev svg {
    width: 1rem;
    height: auto;
}
.banner-next svg {
    width: 1rem;
    height: auto;
}

@media screen and (max-width: 992px) {
    .banner {
        height: auto;
        margin-bottom: 6rem;
    }
	.banner-container {
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}
    .banner_swiper .swiper-slide::before {
        border-radius: 0.8rem;
    }
	.banner_swiper {
        border-radius: 0.8rem;
    }
    .banner_swiper .swiper-slide img {
        border-radius: 0.8rem;
    }
    .banner-col {
		max-width: 30.3rem;
        gap: 2.4rem;
    }
    .banner-name {
        gap: 1.6rem;
    }
    .banner-name p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .banner-title {
        font-size: 3.6rem;
        line-height: 105%;
        letter-spacing: -0.09rem;
    }
    .banner-button {
        padding: 2.4rem 3.2rem;
        font-size: 1.4rem;
    }
    .banner-marquee__item p {
        padding: 1.4rem 1.6rem;
        font-size: 1.4rem;
        line-height: 105%;
    }
    .banner-logo {
        gap: 0.4rem;
        left: 1.6rem;
        bottom: 1.6rem;
        max-width: 20rem;
    }
    .banner-logo h3 {
        font-size: 2.4rem;
        line-height: 110%;
        letter-spacing: -0.09rem;
    }
    .banner-logo p {
        font-size: 1.4rem;
    }
    .banner-buttons {
        gap: 0.8rem;
        right: 1.6rem;
        bottom: 1.6rem;
    }
    .banner-prev {
        width: 5rem;
        height: 5rem;
    }
    .banner-next {
        width: 5rem;
        height: 5rem;
    }
    .banner-prev svg {
        width: 1rem;
    }
    .banner-next svg {
        width: 1rem;
    }
	.banner-right {
		height: 34rem;
	}
	.banner-left {
        gap: 4rem;
        padding: 2.5rem 0;
	}
}

/* about */

.about {
    margin-bottom: 15rem;
}
.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.about-container > img {
    width: 80.6rem;
    height: 68.3rem;
    border-radius: 1.2rem;
    object-fit: cover;
}
.about-main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
    max-width: 97rem;
}
.about-name {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.about-name p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    max-width: 94rem;
}
.title {
    color: #414042;
    text-align: center;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.138rem;
    text-transform: uppercase;
}
.about-name .title {
    text-align: left;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.about-item {
    padding: 3.2rem 3.6rem 2.4rem 3.6rem;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    border-radius: 1.2rem;
    background: #FFF;
}
.about-item > p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.about-item__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.about-item__row p {
    color: #414042;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.09rem;
    text-transform: uppercase;
}
.about-item__row img {
    width: 3.6rem;
}

@media screen and (max-width: 992px) {
    .about {
        margin-bottom: 6rem;
    }
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    .about-container > img {
        width: 100%;
        height: auto;
        border-radius: 0.8rem;
    }
    .about-main {
        gap: 2rem;
    }
    .about-name {
        gap: 1.6rem;
    }
    .about-name p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .title {
        font-size: 2.4rem;
        line-height: 110%;
        letter-spacing: -0.09rem;
    }
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .about-item {
        padding: 1.6rem;
        gap: 0;
        height: 18rem;
        justify-content: space-between;
        border-radius: 0.8rem;
    }
    .about-item > p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .about-item__row p {
        font-size: 2.4rem;
        letter-spacing: -0.072rem;
    }
    .about-item__row img {
        width: 2.4rem;
    }
}

/* strengths */

.strengths {
    margin-bottom: 15rem;
}
.strengths-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.strengths-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.strengths-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    min-height: 40.2rem;
    border-radius: 1.2rem;
    background: #FFF;
    padding: 3.6rem;
}
.strengths-item ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.strengths-item ul li {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    position: relative;
    padding-left: 2.8rem;
    list-style: none;
}
.strengths-item ul li::before {
    content: '';
    border-radius: 0.2rem;
    background: #ED1A3B;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 0;
    left: 0;
}
.strengths-item__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 83rem;
}
.strengths-item__col h3 {
    color: #414042;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.09rem;
    text-transform: uppercase;
}
.strengths-item__col p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

@media screen and (max-width: 992px) {
    .strengths {
        margin-bottom: 6rem;
    }
    .strengths-container {
        gap: 2rem;
    }
    .strengths-main {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .strengths-item {
        gap: 2.4rem;
        min-height: auto;
        border-radius: 0.8rem;
        padding: 1.6rem;
    }
    .strengths-item ul {
        gap: 1.2rem;
    }
    .strengths-item ul li {
        font-size: 1.4rem;
        line-height: 105%;
        padding-left: 2rem;
    }
    .strengths-item ul li::before {
        width: 1.2rem;
        height: 1.2rem;
    }
    .strengths-item__col {
        gap: 1.2rem;
        max-width: none;
    }
    .strengths-item__col h3 {
        font-size: 1.6rem;
        letter-spacing: -0.048rem;
    }
    .strengths-item__col p {
        font-size: 1.4rem;
        line-height: 105%;
    }
}


/* turnkey */

.turnkey {
    margin-bottom: 15rem;
}
.turnkey-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.turnkey .title {
    max-width: 108.8rem;
    margin: 0 auto;
}
.turnkey-main {
    display: flex;
    gap: 2rem;
}
.turnkey-tabs {
    width: 77.2rem;
    min-width: 77.2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.turnkey-tab {
    padding: 3.6rem;
    border-radius: 1.2rem;
    background: #F3F5F9;
    display: flex;
    align-items: center;
    gap: 1.6rem;
	height: 100%;
}
.turnkey-tab img:nth-child(1) {
    width: 3.6rem;
    min-width: 3.6rem;
}
.turnkey-tab img:nth-child(2) {
    width: 3.6rem;
    min-width: 3.6rem;
    display: none;
}
.turnkey-tab p {
    color: #414042;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.09rem;
    text-transform: uppercase;
    text-align: left;
}
.turnkey-tab.active {
    background: #FFF;
}
.turnkey-tab.active img:nth-child(1) {
    display: none;
}
.turnkey-tab.active img:nth-child(2) {
    display: block;
}
.turnkey-content {
    display: none;
    width: 100%;
}
.turnkey-content.active {
    display: flex;
    padding: 3.6rem;
    gap: 3rem;
    border-radius: 1.2rem;
    background: #FFF;
}
.turnkey-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.turnkey-col p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.turnkey-col ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.turnkey-col ul li {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    position: relative;
    padding-left: 2.8rem;
    list-style: none;
}
.turnkey-col ul li::before {
    content: '';
    border-radius: 0.2rem;
    background: #ED1A3B;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 0.4rem;
    left: 0;
}
.turnkey-img {
    width: 37.2rem;
    min-width: 37.2rem;
    height: 42.9rem;
}
.turnkey-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.4rem;
}

@media screen and (max-width: 992px) {
    .turnkey {
        margin-bottom: 6rem;
    }
    .turnkey-container {
        gap: 2rem;
    }
    .turnkey-main {
        flex-direction: column;
        gap: 2rem;
    }
    .turnkey-tabs {
        width: 100%;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .turnkey-tab {
        padding: 1.6rem;
        border-radius: 0.8rem;
    }
    .turnkey-tab img:nth-child(1) {
        display: none;
    }
    .turnkey-tab p {
        font-size: 1.4rem;
        line-height: 105%;
        letter-spacing: normal;
        text-transform: none;
    }
    .turnkey-tab.active img:nth-child(2) {
        display: none;
    }
    .turnkey-content.active {
        padding: 1.6rem;
        flex-direction: column-reverse;
        gap: 1.6rem;
        border-radius: 0.8rem;
    }
    .turnkey-col {
        gap: 2.4rem;
    }
    .turnkey-col p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .turnkey-col ul {
        gap: 1.2rem;
    }
    .turnkey-col ul li {
        font-size: 1.4rem;
        padding-left: 2rem;
    }
    .turnkey-col ul li::before {
        width: 1.2rem;
        height: 1.2rem;
        top: 0;
    }
    .turnkey-img {
        width: 100%;
        min-width: 100%;
        height: 18.7rem;
    }
}

/* services */

.services {
    margin-bottom: 15rem;
}
.services-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}
.services-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.services-item {
    height: 25.8rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.2rem;
    background: #FFF;
    padding: 3.6rem;
}
.services-item p {
    color: #414042;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}
.services-item img {
    width: 4.8rem;
}
.services-item2 {
    background: #ED1A3B;
}
.services-item2 p {
    color: #FFF;
    text-align: center;
}
.services-link {
    padding: 3.9rem 5.8rem;
    border-radius: 1.2rem;
    background: #FFF;
    color: #414042;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .services {
        margin-bottom: 6rem;
    }
    .services-container {
        gap: 2rem;
    }
    .services-main {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .services-item {
        height: 14.5rem;
        border-radius: 0.8rem;
        padding: 1.6rem;
    }
    .services-item p {
        font-size: 1.6rem;
    }
    .services-item img {
        width: 2.4rem;
    }
    .services-link {
        padding: 2.4rem 3.2rem;
        font-size: 1.4rem;
    }
}

/* trust */

.trust {
    margin-bottom: 15rem;
}
.trust-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}
.trust-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.trust-item {
    height: 18rem;
    padding: 3.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.2rem;
    background: #F3F5F9;
}
.trust-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 992px) {
    .trust {
        margin-bottom: 6rem;
    }
    .trust-container {
        gap: 2rem;
    }
    .trust-main {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .trust-item {
        height: 14rem;
        padding: 2.4rem;
        border-radius: 0.8rem;
    }
}

/* projects */

.projects {
    margin-bottom: 15rem;
}
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}
.projects-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
	position: relative;
}
.projects_swiper {
    width: 100%;
}
.projects_swiper .swiper-slide {
    height: auto;
}
.projects-slide {
    height: 76.8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.projects-slide__main {
    border-radius: 1.2rem;
    background: #FFF;
    display: flex;
    padding: 4.8rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.projects-slide__col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.projects-slide__column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.projects-slide__column h3 {
    color: #414042;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.09rem;
    text-transform: uppercase;
}
.projects-slide__column p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.projects-slide__column2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.projects-slide__row {
    display: flex;
    gap: 2rem;
}
.projects-slide__block {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.projects-slide__block img {
    width: 3.6rem;
    height: 3.6rem;
}
.projects-slide__block p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.projects-slide__column3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.projects-slide__column3 p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.projects-slide__column3 ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
}
.projects-slide__column3 ul li {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    position: relative;
    padding-left: 2.8rem;
    list-style: none;
}
.projects-slide__column3 ul li::before {
    content: '';
    border-radius: 0.2rem;
    background: #ED1A3B;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 0.4rem;
    left: 0;
}
.projects-slide__col > p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}
.projects-slide__col > p b {
    font-weight: 600;
}
.projects-slide__link {
    background: #ED1A3B;
    border-radius: 1.2rem;
    padding: 3.6rem 5.8rem;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.projects-slide__slider {
    position: relative;
	height: 76.8rem;
}
.projects-slide__slider .swiper {
    width: 93rem;
    height: 76.8rem;
}
.projects-slide__slider .swiper-slide {
    height: auto;
}
.projects-slide__slider a {
    display: flex;
    width: 100%;
    height: 100%;
}
.projects-slide__slider a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
}
.projects-buttons {
    position: absolute;
    bottom: 7.2rem;
    right: 3.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}
.projects-prev {
    border-radius: 0.5rem;
    background: #FFF;
    display: flex;
    width: 5rem;
    height: 5rem;
    justify-content: center;
    align-items: center;
}
.projects-next {
    border-radius: 0.5rem;
    background: #FFF;
    display: flex;
    width: 5rem;
    height: 5rem;
    justify-content: center;
    align-items: center;
}
.projects-prev svg {
    width: 1rem;
    height: auto;
}
.projects-next svg {
    width: 1rem;
    height: auto;
}
.projects-pagination {
    display: flex;
    gap: 2rem;
}
.projects-pagination .swiper-pagination-bullet {
    width: 100%;
    height: 1.6rem;
    border-radius: 0.3rem;
    background: #F3F5F9;
    opacity: 1;
    margin: 0 !important;
}
.projects-pagination .swiper-pagination-bullet-active {
    background: #FFF;
}

@media screen and (max-width: 992px) {
    .projects {
        margin-bottom: 6rem;
    }
    .projects-container {
        gap: 2rem;
    }
    .projects-main {
        gap: 1.2rem;
    }
    .projects-slide {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .projects-slide__main {
        border-radius: 0.8rem;
        padding: 2.4rem;
        gap: 1.6rem;
		height: 100%;
    }
    .projects-slide__col {
        gap: 1.6rem;
    }
    .projects-slide__column {
        gap: 1.2rem;
    }
    .projects-slide__column h3 {
        font-size: 2.4rem;
        letter-spacing: -0.072rem;
    }
    .projects-slide__column p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .projects-slide__column2 {
        gap: 1.2rem;
    }
    .projects-slide__row {
        gap: 1.2rem;
    }
    .projects-slide__block {
        gap: 0.4rem;
    }
    .projects-slide__block img {
        width: 2.4rem;
        min-width: 2.4rem;
        height: 2.4rem;
    }
    .projects-slide__block p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .projects-slide__column3 {
        gap: 1.2rem;
    }
    .projects-slide__column3 p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .projects-slide__column3 ul {
        gap: 0.8rem;
    }
    .projects-slide__column3 ul li {
        font-size: 1.4rem;
        line-height: 105%;
        padding-left: 2rem;
    }
    .projects-slide__column3 ul li::before {
        width: 1.2rem;
        height: 1.2rem;
        top: 0.15rem;
    }
    .projects-slide__col > p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .projects-slide__link {
        padding: 2.4rem 3.2rem;
        font-size: 1.4rem;
    }
    .projects-slide__slider {
        display: none;
    }
    .projects-pagination {
        gap: 1.2rem;
    }
    .projects-pagination .swiper-pagination-bullet {
        height: 0.8rem;
    }
	.projects-buttons {
        display: none;
    }
}

/* contacts */

.contacts {
    margin-bottom: 1.2rem;
}
.contacts-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}
.contacts-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.contacts-map {
    width: 100%;
    height: 100%;
}
.contacts-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
}
.contacts-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contacts-form {
    background: #ED1A3B;
    border-radius: 1.2rem;
    display: flex;
    padding: 4.8rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
}
.contacts-form > h3 {
    color: #FFF;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.108rem;
    text-transform: uppercase;
}
.contacts-form__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
}
.contacts-form__main > p {
    color: #FFF;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.contacts-form__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
}
.contacts-form__inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    width: 100%;
}
.contacts-form__inputs input {
    padding: 3.6rem 3.2rem;
    border-radius: 1.2rem;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.contacts-form__inputs input::placeholder {
    color: #FFF;
    opacity: 0.5;
}
.contacts-form__checkbox {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.contacts-form__checkbox input {
    width: 3.6rem;
    height: 3.6rem;
    cursor: pointer;
    min-width: 3.6rem;
}
.contacts-form__checkbox label {
    cursor: pointer;
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
}
.contacts-form__checkbox label a {
    color: #FFF;
    font-weight: 600;
}
.contacts-form__submit {
    background: #FFF;
    border-radius: 1.2rem;
    width: 40.3rem;
    padding: 3.6rem 5.8rem;
    color: #414042;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}
.contacts-block {
    display: flex;
    gap: 3rem;
    padding: 4.8rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 1.2rem;
    background: #FFF;
}
.contacts-block > h3 {
    color: #414042;
    font-family: "TT Supermolot Neue Trl Exp";
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.108rem;
    text-transform: uppercase;
}
.contacts-block__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
}
.contacts-block__row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.contacts-block__row svg {
    width: 3.6rem;
    min-width: 3.6rem;
    height: auto;
}
.contacts-block__row p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.contacts-block__col a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.contacts-block__col a svg {
    width: 3.6rem;
    min-width: 3.6rem;
    height: auto;
}
.contacts-block__col a p {
    color: #414042;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}
.header-container nav ul li a:hover {
    color: #ED1A3B;
}
.header-row > a:hover p {
    color: #ED1A3B;
}
.banner-button:hover {
    background: #B10000;
}
.banner-prev:hover, .banner-next:hover {
    background: #ED1A3B;
}
.banner-prev:hover svg path, .banner-next:hover svg path {
    fill: #FFF;
}
.services-link:hover {
    background: #2D2C2E;
    color: #FFF;
}
.projects-slide__link:hover {
    background: #B10000;
}
.projects-prev:hover, .projects-next:hover {
    background: #ED1A3B;
}
.projects-prev:hover svg path, .projects-next:hover svg path {
    fill: #FFF;
}
.turnkey-tab:hover img:nth-child(1) {
    display: none;
}
.turnkey-tab:hover img:nth-child(2) {
    display: block;
}
.contacts-form__submit:hover {
    background: #2D2C2E;
    color: #FFF;
}
.contacts-block__col a:hover p {
    color: #ED1A3B;
}
.footer-contacts a:hover {
    color: #ED1A3B;
}
.footer-bottom a:hover {
    color: #ED1A3B;
}
.footer-main nav ul li a:hover {
    color: #ED1A3B;
}
#about, #services, #works, #contacts {
	scroll-margin-top: 12rem;
}

@media screen and (max-width: 992px) {
    .contacts-container {
        gap: 2rem;
    }
    .contacts-main {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .contacts-map {
        height: 45rem;
    }
    .contacts-map iframe {
        border-radius: 0.8rem;
    }
    .contacts-col {
        gap: 1.2rem;
    }
    .contacts-form {
        border-radius: 0.8rem;
        padding: 2.4rem;
        gap: 1.6rem;
    }
    .contacts-form > h3 {
        font-size: 2.2rem;
        line-height: 105%;
        letter-spacing: -0.09rem;
    }
    .contacts-form__main {
        gap: 1.6rem;
    }
    .contacts-form__main > p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .contacts-form__col {
        gap: 1.6rem;
    }
    .contacts-form__inputs {
        gap: 1.2rem;
        display: flex;
        flex-direction: column;
    }
    .contacts-form__inputs input {
        padding: 2.4rem 3.2rem;
        border-radius: 0.8rem;
        font-size: 1.4rem;
        line-height: 105%;
    }
    .contacts-form__checkbox {
        gap: 1.2rem;
    }
    .contacts-form__checkbox input {
        width: 2.6rem;
        min-width: 2.6rem;
        height: 2.6rem;
    }
    .contacts-form__checkbox label {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .contacts-form__submit {
        padding: 2.4rem 3.2rem;
        font-size: 1.4rem;
        width: 100%;
    }
    .contacts-block {
        min-height: auto;
        padding: 2.4rem;
        border-radius: 0.8rem;
        gap: 2rem;
    }
    .contacts-block > h3 {
        font-size: 2.2rem;
        line-height: 105%;
        letter-spacing: -0.09rem;
    }
    .contacts-block__col {
        gap: 1.2rem;
    }
    .contacts-block__row {
        gap: 0.8rem;
    }
    .contacts-block__row svg {
        width: 2.6rem;
        min-width: 2.6rem;
    }
    .contacts-block__row p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .contacts-block__col a {
        gap: 1.2rem;
    }
    .contacts-block__col a svg {
        width: 2.6rem;
        min-width: 2.6rem;
    }
    .contacts-block__col a p {
        font-size: 1.4rem;
        line-height: 105%;
    }
    .turnkey-tab:hover img:nth-child(2) {
        display: none;
    }
}

/* header */

.section-name {
	margin-bottom: 5rem;
}
.section-name img {
	width: 100%;
}







@media screen and (max-width: 992px) {
	.header-container > .header-row .trp-shortcode-switcher__wrapper {
		display: none;
	}
}