body {
    font-family: var(--font-mid);
    background: #f5f1ed;
}
button,
input {
    font-family: var(--font-mid);
}
:root {
    --font-lil: "Involve", sans-serif;
    --font-mid: "InvolveMid", sans-serif;
    --font-big: "InvolveBig", sans-serif;
}
@font-face {
    font-family: "Involve";
    src: url("../fonts/Involve/Involve-Regular.ttf");
}
@font-face {
    font-family: "InvolveMid";
    src: url("../fonts/Involve/Involve-Medium.ttf");
}
@font-face {
    font-family: "InvolveBig";
    src: url("../fonts/Involve/Involve-Bold.ttf");
}
img {
    object-fit: cover;
}
.top-box {
    padding-top: 5.875rem;
}
.container {
    width: 78.75rem;
}
section {
    margin-bottom: 3rem;
}
.txt-1-25 {
    font-size: 1.25rem;
}
.section-title {
    text-transform: uppercase;
    font-size: 2.25rem;
    font-family: var(--font-big);
}
.section-title.lil {
    text-transform: uppercase;
    font-family: var(--font-big);
    font-size: 1.5rem;
}
.section-title.lil.orange {
    color: #f37523;
}
.section-title.lil2 {
    font-family: var(--font-big);
    font-size: 1.25rem;
    text-transform: unset;
}
.section-title.lil-th {
    font-family: var(--font-mid);
    font-size: 1.25rem;
    text-transform: unset;
}
.big-txt {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
.btn {
    display: flex;
    height: 3.5rem;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    background-color: #464242;
    color: #fff;
    text-transform: uppercase;
}
.btn:hover {
    background-color: #f37523;
}
.btn.white {
    color: #3b3b3b;
    background-color: #f5f1ed;
}
.btn.white:hover {
    color: #f5f1ed;
    background-color: #3b3b3b;
}
.head-btn {
    padding: 1rem 1.25rem;
}
.btn.orange {
    background-color: #f37523;
}
.btn.orange:hover {
    background-color: #464242;
}
.hero-btn {
    display: flex;
    align-content: flex-start;
}
.btn.lil-width {
    width: 18.75rem;
}

.logo {
    width: 12.5rem;
    height: 3.875rem;
}
.logo img {
    width: 100%;
    height: 100%;
}

.logo-mob {
    display: none;
    width: 5rem;
    height: 5rem;
}
.logo-mob img {
    width: 100%;
    height: 100%;
}

header {
    background: #f5f1ed;
    padding: 1rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.head-nav a {
    color: #000000;
    text-transform: uppercase;
    transition: all 3s ease;
}
.head-nav a:hover, .head-nav a.active {
    font-family: var(--font-big);
}

.head-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.head-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -40px;
    width: calc(100% + 80px);
    height: 28px;
}

.head-dropdown__toggle {
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.25s ease;
}
.head-dropdown__toggle:hover {
    font-family: var(--font-big);
}
.head-dropdown__arrow {
    display: inline-block;
    padding-bottom: 0.1rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.head-dropdown__menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 80%;
    transform: translate(-50%, 12px);
    background: #fff;
    width: 21rem;
    padding: 1.25rem;
    box-shadow: 0px 4px 35px 3px rgba(34, 60, 80, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

.head-dropdown__menu a {
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    letter-spacing: 0.02em;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.head-dropdown__menu a:hover {
    transform: translateX(6px);
}

.head-dropdown:hover .head-dropdown__menu,
.head-dropdown:focus-within .head-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.head-dropdown:hover .head-dropdown__arrow,
.head-dropdown:focus-within .head-dropdown__arrow,
.head-dropdown.open .head-dropdown__arrow {
    transform: rotate(180deg);
}

.head-dropdown.open .head-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.head-dropdown__toggle,
.head-dropdown__menu a {
    user-select: none;
}

.head-dropdown__menu {
    will-change: opacity, transform;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 2px;
    background: #000;
    transition: 0.3s ease;
}
.mobile-menu {
    display: contents;
}
@media (max-width: 1200px) {
    .head-nav {
        gap: 1.2rem;
    }

    .address-box {
        display: none;
    }
}
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: flex;
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-close {
    position: absolute;
    top: 35px;
    right: 15px;

    width: 32px;
    height: 32px;

    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-close span {
    position: absolute;
    top: 15px;
    left: 0;

    width: 32px;
    height: 2px;
    background: #000;
}

.mobile-close span:first-child {
    transform: rotate(45deg);
}

.mobile-close span:last-child {
    transform: rotate(-45deg);
}
@media (max-width: 992px) {
    .burger {
        display: flex;
    }

    .head-nav,
    .address-box,
    .head-btn {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        background: #f5f1ed;
        padding: 0 15px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: 0.4s ease;
        z-index: 1000;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-menu .head-nav {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .mobile-menu .head-nav a,
    .mobile-menu .head-dropdown__toggle {
        font-size: 15px;
    }

    .mobile-menu .head-dropdown__menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .mobile-menu .head-dropdown.open .head-dropdown__menu {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 10px;
    }

    .mobile-menu .head-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
    }
}

.address-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.address-txt1 {
    font-size: 0.8rem;
    font-family: var(--font-lil);
}
.address-txt2 {
    font-size: 0.875rem;
}
.address-head {
    width: 1rem;
    /*height: 1.35rem;*/
}

.hero-back {
    color: white;
    position: relative;
    padding: 3.1rem 0;
}
.hero-back-img {
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0.37%,
        rgba(153, 153, 153, 0) 96.63%
    );
}
.hero-back::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0.37%,
        rgba(153, 153, 153, 0) 96.63%
    );
}
.hero-row {
    position: relative;
    z-index: 2;
}
.hero-img {
    height: 100%;
    width: 100%;
}
.hero-title {
    font-size: 2.45rem;
    font-weight: 700;
}
.hero-title span {
    color: #f37523;
}
.hero-info {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    gap: 0.625rem;
}
.hero-info img {
    width: 2.5rem;
    height: 2.5rem;
}
.hero-info span {
    font-family: var(--font-big);
}
.hero-info-box {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-info-box {
    display: flex;
    height: 5.4375rem;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border: 2px solid var(--1, #f37523);
}
.main-info-box img {
    width: 3.125rem;
    height: 3.125rem;
}

.about-img-row span {
    font-family: var(--font-big);
}
.about-img-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 3.62rem;
}
.ab-img-inf {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}
.ab-img-inf div {
    font-size: 2.25rem;
    font-family: var(--font-big);
    color: #f37523;
    line-height: 1;
}

.about-img-box1 {
    width: 36.625rem;
}
.about-img-box2 {
    width: 39rem;
}
.about-img-box1 p:last-child {
    margin-bottom: 0;
}
.ab-img-inf p{
    width: max-content;
}
.ab-imgs {
    margin: 0 -0.75rem;
    position: relative;
}
.ab-imgs.visible:after {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #f5f1ed;
}
.ab-imgs.visible .slick-list {
    overflow: visible;
}
.ab-imgs .slick-list {
    cursor: grab;
}
.ab-imgs .slick-list:active {
    cursor: grabbing;
}
.ab-imgs .slick-slide {
    padding: 0 0.75rem;
}
.ab-imgs-wrapper {
    position: relative;
}
.about-img {
    width: 100%;
    display: block;
    height: 24.3125rem;
    object-fit: cover;
}
.imgs-slider-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: space-between;
}
.imgs-slider-btn {
    pointer-events: auto;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: none !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgs-slider-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.imgs-prev {
    margin-left: 10px;
    padding-right: 3px;
}

.imgs-next {
    margin-right: 10px;
    padding-left: 3px;
}

.large-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
}
.large-card.white {
    border: 2px solid rgba(59, 59, 59, 0.1);
    background: #fff;
}
.large-card-img {
    height: 15.75rem;
    width: 100%;
}

.large-card .btn {
    width: 23rem;
}
.large-card.sec .btn {
    width: 100%;
}

.orange-back {
    padding: 3rem 0;
    background: #f37523;
    color: #f5f1ed;
}

.feedback-inp {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    display: flex;
    height: 3.125rem;
    padding: 1.1875rem 1.25rem;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.feedback-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    align-self: stretch;
    margin-top: 0.25rem;
}
.feedback-bottom span {
    color: #3b3b3b;
    font-size: 0.8rem;
}
.feedback-bottom .politics {
    color: #3b3b3b;
    font-size: 0.8rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.feedback-img {
    height: 24.0625rem;
    width: 100%;
}
.feedback-row {
    align-items: center;
}

.advantages-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    border: 2px solid #f37523;
    height: 100%;
}
.advantages-card p {
    margin-bottom: unset;
}
.advantages-top {
    text-align: right;
    width: 100%;
}
.advantages-top span {
    background: linear-gradient(107deg, #3b3b3b 0%, #464242 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.large-card.black {
    background: #3b3b3b;
    color: #f5f1ed;
}
.large-card.black .large-card-img {
    height: 23.9375rem;
}
.cer-btn {
    width: 25.4375rem;
}

.certificate-img {
    height: 100%;
    width: 100%;
    display: block;
}
.certificate-row {
    height: 100%;
    align-items: stretch;
}

.black-back {
    background: linear-gradient(107deg, #3b3b3b 0%, #464242 100%);
    padding: 3.125rem 0;
    color: #f5f1ed;
}
.black-back .feedback-bottom span,
.black-back .feedback-bottom .politics {
    color: #f5f1ed;
}
.black-back .feedback-bottom .btn:hover {
    background-color: #f5f1ed;
    color: #3b3b3b;
}
.contacts-row {
    align-items: center;
}

.contacts__map {
    width: 100%;
    height: 27.6875rem;
    border: 1px solid rgba(59, 59, 59, 0.2);
}
.contacts__map iframe{
    width: 100%!important;
    height: 100%!important;
}
.foot-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
}
.foot-nav div {
    color: #f5f1ed;
    text-transform: uppercase;
    font-family: var(--font-big);
}
.foot-nav a {
    color: #f5f1ed;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.foot-nav a:hover, .foot-nav a.active, .foot-politics a:hover{
    /*font-family: var(--font-big);*/
    color: #f37523;
}
.footer-logo {
    width: 11.5625rem;
    height: 11.5625rem;
}
.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.btn.orange.sec:hover {
    background-color: #f5f1ed;
    color: #3b3b3b;
}
.p_mb0 p{
    margin-bottom: 0;
}
.foot-politics {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.foot-politics a {
    color: #f5f1ed;
    transition: all 0.3s ease;
}
/*.foot-politics a:hover {*/
/*    font-family: var(--font-big);*/
/*}*/
.foot-line {
    height: 0.0063rem;
    background-color: #f5f5f5;
    width: 100%;
    margin: 2.5rem 0;
}

.big-about-back {
    height: 24.5625rem;
    width: 100%;
}

.about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.about-hero div {
    font-size: 4rem;
    font-family: var(--font-big);
    flex: 0 0 50%;
    max-width: 50%;
}
.about-hero p {
    margin-bottom: 0;
    text-align: right;
    font-size: 0.875rem;
    flex: 0 0 50%;
    max-width: 50%;
}

.lines-back {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: -2rem;
}

.page-links {
    margin: 1rem 0;
    font-size: 0.9rem;
}
.page-links ul {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.page-links li {
    list-style: none;
    transition: all 0.3s;
    color: rgb(111, 111, 111);
}
.page-links a {
    color: rgb(111, 111, 111);
    transition: all 0.3s;
}
.page-links a:hover {
    color: #000000;
}
.model-img {
    height: 16.25rem;
    width: 100%;
}

.lines-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: -3.4rem;
    left: 12rem;
}

.basket-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    gap: 1.5rem;
}

.basket-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.725rem;
}
.basket-txt div {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
.basket {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.basket-wrapper {
    display: flex;
}
.basket-left,
.basket-right {
    flex: 1;
}
.basket-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.cube-card img {
    height: 24.3125rem;
    width: 100%;
    margin-bottom: 1.25rem;
}
.cube-card .big-txt {
    margin-bottom: 1rem;
}

.fm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.fm-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.72);
    transition: 0.3s;
    z-index: 1000;
}

.fm-modal.is-active,
.fm-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.fm-modal__box {
    background: linear-gradient(107deg, #3b3b3b 0%, #464242 100%);
    color: #f5f1ed;
    padding: 3.125rem;
    width: 50rem;
    position: relative;
}

.fm-modal__close {
    position: absolute;
    line-height: 1;
    top: 0.625rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}
.fm-modal__close span{
    transition: all 0.35s;
    display: block;
}
.fm-modal__close:hover span{
    transform: rotate(-180deg);
}
.fm-modal__title {
    font-size: 4rem;
    font-family: var(--font-big);
    margin-bottom: 0.625rem;
    text-align: center;
}
.fm-modal__title.sec {
    font-size: 3rem;
}
.fm-modal__title span {
    color: #f37523;
}

.fm-modal__desc {
    margin-bottom: 2rem;
}

.fm-input {
    width: 100%;
    display: flex;
    height: 3.125rem;
    padding: 1.1875rem 1.25rem;
    align-items: center;
    align-self: stretch;
    margin-bottom: 1rem;
    background: #fff;
}

.feedback-bottom.white span,
.feedback-bottom .politics {
    color: #f5f1ed;
}

.fm-modal__img {
    width: 100%;
    height: 9.375rem;
    margin-bottom: 2rem;
}
.con-title {
    font-size: 4rem;
    font-family: var(--font-big);
}

.big-img-pro {
    height: 24.5rem;
    width: 100%;
}
.result{
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}
.result p{
    margin-bottom: 0.5rem;
}

.scale_on_hover:hover .scale_on_hover_img img{
    transform: scale(1.05);
}
.scale_on_hover_img{
    overflow: hidden;
}
.scale_on_hover_img img{
    transition: all 0.35s;
}
.scale_on_hover:hover .btn{
    background-color: #f37523;
}

.large-card.black.scale_on_hover:hover .btn{
    background-color: #FFFFFF;
    color: black;
}
.white_form .policy a{
    color: black;
}
.feedback-bottom .politics:hover{
    text-decoration: none!important;
}