body {
    background: #f0ebeb;
    font-family: var(--font-primary);
    font-weight: 400;
}
:root {
    --font-primary: "Unbounded", sans-serif;
    --font-secondary: "Roboto", sans-serif;
}
section {
    margin-bottom: 3.5rem;
}
button {
    font-family: var(--font-secondary);
}
a,
p {
    font-family: var(--font-secondary);
}
.txt-mid {
    font-size: 1rem;
    font-family: var(--font-secondary);
}
.txt-mid.white {
    color: white;
}
.txt-lil {
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}
.txt-lil.white {
    color: white;
}
.txt-big {
    font-size: 1.25rem;
    font-weight: 700;
}
.txt-big-th {
    font-size: 1.25rem;
    font-weight: 400;
}
.txt-big.red {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.txt-large {
    font-size: 1.5rem;
}
header {
    top: 1.25rem;
}
.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 0.625rem;
    border-radius: 6.25rem;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
}
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8.6875rem;
    height: 2.25rem;
}
.mobile-logo {
    width: 8.6875rem;
    height: 2.25rem;
}
.head-navigation {
    display: flex;
    padding-left: 1.875rem;
    align-items: center;
    gap: 2.5rem;
}
.head-navigation a {
    position: relative;
    font-size: 0.9rem;
    color: #000;
    text-decoration: none;
    transition: color 0.35s ease-in;
}

.header-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #640000;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition:
        transform 0.35s ease-in,
        opacity 0.35s ease-in;
}

.header-link:hover,
.header-link.active {
    color: #640000;
}

.header-link:hover::after,
.header-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.head-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.head-social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.social-link {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-link i {
    color: white;
    font-size: 1.7rem;
    position: relative;
    z-index: 1;
    transition: all 0.35s;
}

.social-link:hover::before {
    opacity: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid transparent;
    border-top: 0.4rem solid #cf0505;
    transition: transform 0.45s ease;
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: -2rem;
    width: 16rem;
    padding: 0.25rem 1.25rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    transition: all 0.25s ease;
    z-index: 50;
}

.nav-services:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-services:hover .arrow {
    transform: rotate(180deg);
}

.services-main {
    display: flex;
    flex-direction: column;
}

.services-row {
    position: relative;
}

.services-a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.services-row:last-child .services-a {
    border-bottom: none;
}

.services-a:hover,
.services-a.active {
    font-weight: 600;
}
.services-a:hover img {
    scale: calc(1.4);
}

.row-arrow {
    width: 1.25rem;
    height: 0.125rem;
    background: rgba(0, 0, 0, 0.35);
    position: relative;
    flex-shrink: 0;
}

.row-arrow::after {
    content: "";
    position: absolute;
    right: -0.1rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 0.125rem solid rgba(0, 0, 0, 0.35);
    border-top: 0.125rem solid rgba(0, 0, 0, 0.35);
    transform: translateY(-50%) rotate(45deg);
}

.services-sub {
    position: absolute;
    top: 0;
    left: calc(100% + 1rem);
    width: 34rem;
    padding: 0.25rem 1.25rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: all 0.25s ease;
}

.services-row.has-sub:hover .services-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-sub a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.services-sub a:last-child {
    border-bottom: none;
}

.services-sub a:hover,
.services-sub a.active {
    font-weight: 600;
}

/* burger */
.burger {
    display: none;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: linear-gradient(98deg, #cf0505 6.4%, #431b13 133.55%);
    border: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-inner {
    width: 100%;
    height: 100%;
    background: #f1ecec;
    border-radius: 0 0 1.5rem 1.5rem;
    margin: auto;
    padding: 1.25rem 15px;
    transform: translateY(-100%);
    transition: transform 0.45s !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu.active .mobile-inner {
    transform: translateY(0);
}

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    border-radius: 6.25rem;
    background: #fff;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    /* height: 3.125rem; */
    padding: 0.625rem;
}

.mobile-social {
    display: flex;
    gap: 0.5rem;
}

.mobile-close {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: none;
    background: linear-gradient(98deg, #cf0505 6.4%, #431b13 133.55%);
    color: #fff;
    line-height: 0.9;
}

.mobile-nav a,
.mobile-services-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #0d0d0d;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.475);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
}

.mobile-services {
    margin-bottom: 0.5rem;
}

.mobile-arrow {
    width: 0;
    height: 0;
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid transparent;
    border-top: 0.4rem solid #000;
    transition: transform 0.3s ease;
}

.mobile-services-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-services.active .mobile-services-list {
    max-height: 20rem;
}

.mobile-services.active .mobile-arrow {
    transform: rotate(180deg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 1.5rem;
    margin-bottom: -0.85rem;
    column-gap: 1rem;
}

.services-grid a {
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0;
    padding-bottom: 1.5rem;
    color: #0d0d0d;
    text-decoration: none;
    border-bottom: none;
}

.mobile-phone span {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    font-weight: 400;
}

.hero-socials .social-link {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    position: relative;
    overflow: hidden;
}

.hero-socials .social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.hero-socials .social-link i {
    position: relative;
    z-index: 1;
    color: white;
    transition: opacity 0.35s ease;
    animation: rotateIn 0.5s;
}

.hero-socials .social-link:hover::before {
    opacity: 1;
}

.hero-socials .social-link:hover i {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.phone-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.phone-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 0.094rem;
    background: #222;
    transition: background 0.3s ease;
}

.phone-link:hover {
    color: #640000;
}

.phone-link:hover::after {
    background: #640000;
}

.btn {
    display: flex;
    height: 3.125rem;
    padding: 0.625rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 6.25rem;
    color: white;
    transition: all 0.35s ease-in;
    overflow: hidden;
    background: transparent;
}
.head-btn {
    width: 11.1875rem;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(98deg, #cf0505 6.4%, #431b13 133.55%);
    transition: opacity 0.35s ease-in;
    z-index: 0;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(93deg, #313131 1.6%, #1e1818 107.75%);
    opacity: 0;
    transition: opacity 0.35s ease-in;
    z-index: 0;
}
.btn:hover::after {
    opacity: 1;
}
.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}
.btn.lil-width {
    width: 19rem;
}
.btn.lil-width2 {
    min-width: 21.3rem;
}
.hero-back {
    /*background-image: url("../img/hero-back.jpg");*/
    min-height: 42.5625rem;
    border-radius: 0 0 3.125rem 3.125rem;
    padding: 3.15rem;
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.hero-box {
    /* display: flex; */
    /* gap: 1rem; */
    justify-content: end;
    align-items: end;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-right {
    text-align: end;
    display: flex;
    justify-content: end;
}

.hero-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.35s ease-in;
    z-index: 0;
    color: #000;
}

.hero-btn:hover span,
.hero-btn:hover svg {
    color: #000;
}

.hero-btn2 {
    border: 0.5px solid #fff;
}
.hero-btn2::before {
    background: none;
}

.hero-btns {
    display: flex;
    gap: 0.62rem;
}

.about-card {
    padding: 1.25rem;
    border-radius: 0.875rem;
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    color: #fff;
    height: 9.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-card div {
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card {
    position: relative;
    height: 22.875rem;
    border-radius: 2.5rem;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.service-card-bottom {
    display: flex;
    align-items: end;
}

.service-card-top {
    display: flex;
    align-items: stretch;
}
.card-tag {
    padding: 0.625rem 1.25rem;
    border-radius: 6.25rem;
    border: 0.01rem solid #fff;
    background: linear-gradient(
        94deg,
        rgba(255, 255, 255, 0.09) 50.24%,
        rgba(255, 255, 255, 0) 229.98%
    );
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    height: 2.5rem;
}
.service-card-text {
    flex: 1;
}
.service_card_anons {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s linear;
    padding-right: 0.5rem;
}
.service-card:hover .service_card_anons {
    max-height: 7rem;
    margin-top: 0.65rem;
}

.card-btn {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.card-btn::before {
    background: white;
}
.service-card:hover .card-btn::after {
    color: #fff;
    opacity: 1;
    background: linear-gradient(
        98deg,
        #cf0505 6.4%,
        #431b13 133.55%
    ) !important;
}
.service-card:hover .card-btn {
    color: #fff;
    background: linear-gradient(
        98deg,
        #cf0505 6.4%,
        #431b13 133.55%
    ) !important;
}

.service-card:hover img {
    transform: scale(1.06);
}

.service-card:hover .card-overlay {
    opacity: 0.9;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
}
.section-title span {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title.white {
    color: white;
}

.section-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}

.red-back {
    background-image: url("../img/red-back.jpg");
    border-radius: 2.5rem;
    color: #fff;
    padding: 2.5rem;
}
.red-back.black_bg {
    background-image: url("../img/big-red-back-black.jpg");
}
.btn.white {
    background-color: #fff;
}
.btn.white span {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn.white::before {
    background: unset;
}
.btn.white:hover {
    background: white;
    font-weight: 700;
}
.btn.white::after {
    background: white;
}

.form1-inp {
    font-family: var(--font-secondary);
    font-size: 1rem;
    background: none;
    color: #fff;
    border-bottom: 1px solid white;
    padding-bottom: 0.55rem;
}
.form1-inp::placeholder {
    color: #fff;
    opacity: 0.7;
}

.red-back .politic-txt {
    margin-top: 1rem;
}
.politic-txt {
    font-style: italic;
    /*margin-top: 1rem;*/
}
.politic-txt a {
    color: white;
    transition: 0.3s ease-in;
    text-decoration: underline;
}
.politic-txt a:hover {
    text-decoration: none;
}

.white-card {
    display: flex;
    height: 14.5rem;
    padding: 1.25rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-radius: 1.875rem;
    background: #fff;
}
.white-card-txt {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.big-car {
    object-fit: cover;
    width: 100%;
}

.white-card2-title {
    font-size: 2.25rem;
    font-weight: 600;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0) 2.87%,
            rgba(0, 0, 0, 0.35) 100%
        ),
        #757575;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.white-card2 {
    border-radius: 1.25rem;
    background: #fff;
    backdrop-filter: blur(5px);
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    height: 11rem;
    justify-content: space-between;
}

.with-back-car {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}

.de-item-line {
    width: 100%;
    height: 0.0625rem;
    background: linear-gradient(90deg, #fff 0%, #d40000 50.48%, #fff 100%);
    margin-top: 1.35rem;
}
.de-item-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--font-secondary), sans-serif;
}
.de-item-top {
    display: flex;
    gap: 5rem;
}
.details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 41rem;
}

.com-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #000;
    transition: all 0.35s ease-in !important;
    cursor: pointer;
}
.com-btn::before {
    background: white;
    color: #000;
    transition: all 0.35s;
}
.com-btn::after {
    background: linear-gradient(98deg, #cf0505 6.4%, #431b13 133.55%);
    color: white;
}
.com-btn:hover svg {
    color: white;
}

.com-btn svg {
    height: 0.8rem;
    transition: all 0.35s;
}

.com-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.com-btn {
    cursor: pointer;
}
.comment-slide {
    padding: 1.875rem;
    border-radius: 1.25rem;
    background: #f5f7fe;
    display: flex !important;
    flex-direction: column;
    gap: 1.25rem;
}
.comment-slide .content p {
    margin: 0;
}
.commenter {
    font-size: 1.5rem;
    color: #212121;
    font-weight: 500;
    font-family: var(--font-secondary), sans-serif;
}

.com-slider .slick-list {
    overflow: visible !important;
}

.com-slider .slick-track {
    display: flex !important;
    gap: 1.25rem;
    margin-left: -1rem !important;
}

.comments-section .container {
    position: relative;
    overflow: visible;
}
.comments-section .container::before {
    position: absolute;
    top: 0;
    right: 101%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #f0ebeb;
    z-index: 3;
}

.work-card {
    padding: 1.25rem;
    border-radius: 1.875rem;
    background: #262626;
    color: white;
    display: flex !important;
    align-items: stretch;
    gap: 1.5rem;
    justify-content: space-between;
    height: 100%;
}
.work-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}
.work-txts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.work-card img {
    object-fit: cover;
    height: 100%;
    width: 24.375rem;
    border-radius: 1.25rem;
}
.work-date {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
    font-family: var(--font-secondary);
    display: flex;
    height: 2.5rem;
    padding: 0.625rem 1.25rem;
    justify-content: center;
    border-radius: 6.25rem;
    background: #0d0d0d;
    backdrop-filter: blur(10px);
    align-self: flex-start;
    line-height: 1.5;
}
.work-title {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.last-works {
    width: 61rem;
}
.last-works-container .container {
    position: relative;
    overflow: visible;
}
.last-works-container .container::before {
    position: absolute;
    top: 0;
    right: 101%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #f0ebeb;
    z-index: 99999;
}

.last-works .slick-list {
    overflow: unset;
    margin: 0 -10px;
    display: flex;
}

.last-works .slick-track {
    display: flex !important;
}

.last-works .slick-slide > div {
    padding: 0 10px;
    height: 100%;
}

.big-form-dis {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.big-red-back {
    background-image: url("../img/big-red-back.jpg");
    border-radius: 2.5rem;
    color: #fff;
    padding: 2rem;
}
.black_form .big-red-back {
    background-image: url("../img/big-red-back-black.jpg");
}
.map {
    width: 100%;
    height: 22.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(34, 64, 140, 0.3);
}

.con-left {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: #640000;
}
.con-left img {
    width: 1.5rem;
    height: 1.5rem;
}
.contacts-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 1.25rem;
}

footer {
    background: #1d1b1b;
    padding: 2.25rem 3rem;
    padding-bottom: 0;
    color: white;
}
footer a {
    color: white;
}

.foot-icon {
    width: 13.375rem;
    height: 3.375rem;
    object-fit: cover;
}
.foot-links a {
    display: block;
    text-decoration: none;
    color: white;
}

.foot-links a span {
    position: relative;
    display: inline-block;
}

.foot-links a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease-in;
}

.foot-links a:hover span::after,
.foot-links a.active span::after {
    transform: scaleX(1);
}

/*-------------------------------*/
.page {
    padding-top: 7.4rem;
    padding-bottom: 1rem;
}
.border_img {
    border-radius: 40px;
    overflow: hidden;
}
.border_img.b20 {
    border-radius: 20px;
}
.shadow_img {
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
}
/*.about_page .breadcrumbs{*/
/*    margin-bottom: 0;*/
/*}*/
/*.about_row {*/
/*    margin-top: -0.9rem;*/
/*}*/
.inline_flex {
    display: inline-flex;
}
.about_content .content {
    margin-bottom: 5rem;
}
.section-title.big {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1;
    letter-spacing: 0.029rem;
}
.about_digits {
    margin-top: 5.1rem;
}
.about_digits .content {
    margin-bottom: 5.1rem;
}
.car_img {
    margin-left: -2.7rem;
    margin-right: 1rem;
    margin-bottom: 0.8rem;
}
.founder {
    margin-top: 5rem;
}
.founder .content p {
    margin-bottom: 1rem;
}
.founder .content h4 {
    margin-bottom: 0.5rem;
    margin-top: 1.3rem;
    color: #640000;
}
.team {
    margin: 4.4rem 0;
}
.team_img {
    height: 24rem;
    margin-bottom: 1.3rem;
    border-radius: 30px;
    overflow: hidden;
}
.team_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #640000;
    margin-bottom: 0.5rem;
}
.team_position {
    font-family: var(--font-secondary), sans-serif;
}
.team_row .mb_30 {
    margin-bottom: 1.9rem;
}
#details {
    margin-bottom: 5rem;
}
.page .comments-section {
    margin-bottom: 5rem;
}
.sm_line {
    line-height: 1.1;
}

.page_service_item {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 30px;
    padding: 1.3rem;
    height: 100%;
    min-height: 18.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.page_service_item_bg {
    background: black;
    position: absolute;
    left: 0;
    top: -1rem;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
}
.page_service_item_bg > img {
    opacity: 0.6;
}
.arrow_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.5rem;
    padding: 0 1.2rem;
    border-radius: 100px;
    background: white;
    position: absolute;
    left: 1.3rem;
    right: 1.3rem;
    bottom: 0;
    transition: all 0.25s;
}
.arrow_btn span {
    font-family: var(--font-secondary), sans-serif;
    color: #640000;
    border-bottom: 1px solid;
}
.arrow_btn img {
    width: 3.938rem;
}
.page_service_item_bottom,
.page_service_item_top {
    position: relative;
    z-index: 1;
}
.page_service_item_title {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}
.page_service_item_text {
    transition: all 0.5s;
    font-family: var(--font-secondary), sans-serif;
}
.page_service_item_bottom {
    color: #640000;
    margin-top: 1rem;
    transition: all 0.5s;
}
.page_service_item_bottom span {
    display: inline-block;
    border-bottom: 1px solid;
}
.page_seo {
    margin-bottom: 1.9rem;
}
.form_top_padding #callback {
    margin-top: 4.1rem;
}

.page_service_item.sm {
    min-height: 15.3rem;
}
.page_service_item.sm .page_service_item_bottom {
    opacity: 1 !important;
}
.page_service_item.sm:after {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    position: absolute;
    left: 0;
    top: -1rem;
    right: 0;
    bottom: 0;
    content: "";
    transition: all 0.5s;
    opacity: 0;
}
.contacts_page #callback {
    margin-top: 5rem;
}
.work_image {
    height: 28rem;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.work_page_date {
    font-family: var(--font-secondary), sans-serif;
    margin-bottom: 1rem;
}
.section-title.sm {
    font-size: 2rem;
}
.content {
    font-family: var(--font-secondary), sans-serif;
}
.work_services {
    margin-bottom: 0.9rem;
}
.work_services a {
    display: inline-flex;
    align-items: center;
    height: 2.5rem;
    padding: 0 1.2rem;
    text-decoration: underline;
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    color: white;
    border-radius: 30px;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-size: 0.875rem;
}
.work_services a:hover {
    text-decoration: none;
    opacity: 0.7;
}
.word_card_row {
    margin-bottom: 2.8rem;
}
.similar_works {
    margin-top: 3.7rem;
    padding-bottom: 4rem;
}
.work_item {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.2rem;
    font-family: var(--font-secondary), sans-serif;
}
.work_item_img {
    border-radius: 20px;
    overflow: hidden;
    height: 18.8rem;
}
.work_item_title {
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 0.6rem;
    margin-bottom: 1.3rem;
}
.work_item_anons {
    opacity: 0.7;
}
.work_item_date {
    font-weight: 700;
    font-size: 0.75rem;
    margin: 1.4rem 0;
    opacity: 0.7;
}

.works_slider .slick-list {
    margin: 0 -5px;
    display: flex;
}
.works_slider .slick-track {
    display: flex;
}
.works_slider .slick-slide > div {
    padding: 0 5px;
    height: 100%;
}
.work_item_img img {
    transition: all 0.25s;
}
.work_item:hover .btn::after {
    opacity: 1;
}
.work_item:hover .work_item_img img {
    transform: scale(1.05);
}
.works_page {
    padding-bottom: 5rem;
}
.work_page_info {
    position: sticky;
    top: 7rem;
}
.sp_info .content {
    margin-bottom: 4rem;
}
.sp_preim {
    background: linear-gradient(180deg, #d40000 0%, #6e0000 100%);
    color: white;
    border-radius: 30px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 16.8rem;
}
.sp_preim_title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}
.sp_preim_text {
    font-family: var(--font-secondary), sans-serif;
    font-size: 0.875rem;
    opacity: 0.7;
}
.sp_preim_icon {
    width: 2.5rem;
    height: 2.5rem;
}
.sp_row {
    margin-bottom: 2.6rem;
}
.ss_video {
    border-radius: 30px;
    overflow: hidden;
    height: 36.5rem;
}
.sp_preims_row {
    margin-bottom: 4.4rem;
}
.ss_gallery_image {
    border-radius: 20px;
    overflow: hidden;
    height: 10.938rem;
}
.ss_gallery_slider {
    margin-top: 2.5rem;
}
.ss_gallery_slider .slick-list {
    margin: 0 -5px;
    overflow: unset;
}
.ss_gallery_slider .slick-slide > div {
    padding: 0 5px;
}

.service_card_page #details {
    padding-top: 5rem;
}
.price_item:not(:last-child) {
    border-bottom: 1px solid rgba(100, 0, 0, 0.4);
    padding-bottom: 1.3rem;
    margin-bottom: 1.2rem;
}
.price_title,
.price_box {
    font-size: 1.25rem;
    font-weight: 700;
    color: #640000;
}
.price_text {
    opacity: 0.7;
    margin-top: 0.5rem;
    font-family: var(--font-secondary), sans-serif;
}

.prices .section-title {
    margin-bottom: 1.3rem;
}

.faq_content.content * {
    margin-bottom: 0;
}
.faq .section-title {
    margin-bottom: 1.9rem;
}
.faq_item {
    padding: 1px 0;
    border-radius: 30px;
    background: #fff;
    font-family: var(--font-secondary), sans-serif;
}
.faq_title {
    font-size: 1.5rem;
    font-weight: 500;
}
.faq_content {
    border-radius: 20px;
    background: #f0ebeb;
    padding: 1.3rem;
    margin: 0 1.2rem;
    margin-bottom: 1rem;
    display: none;
}
.faq_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.2rem;
    min-height: 5.5rem;
}
.faq_title span {
    width: calc(100% - 3.125rem);
    padding-right: 1rem;
}
.faq_icon {
    border-radius: 50%;
    background: #0d0d0d;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq_icon img {
    width: 2rem;
    transition: all 0.35s;
}
.faq_title.factive .faq_icon img {
    transform: rotate(-135deg);
}
.footer_bottom {
    color: #d9d9d9;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
    padding: 1.3rem 0;
    font-family: var(--font-secondary), sans-serif;
}
.footer_bottom a {
    color: #d9d9d9;
}
.footer_bottom a:hover {
    color: white;
}
.team_row .mb_30.hidden {
    display: none;
}
.team_row .mb_30.hidden.factive {
    display: block;
}

.mob_comment {
    margin-top: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
}
.padding_page_bottom {
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .comment-text {
        position: relative;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .comment-text.expanded {
        -webkit-line-clamp: unset;
    }

    .comment-toggle {
        background: none;
        border: none;
        padding: 0;
        font-size: 1.1rem;
        color: #8a8a8a;
        align-self: flex-start;
    }
}

@media (min-width: 769px) {
    .comment-toggle {
        display: none;
    }
}
