/*--flags--*/
.fib,
.fi {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    line-height: 1em
}

.fi:before {
    content: " "
}

.fi.fis {
    width: 1em
}

.fi-cn {
    background-image: url(../libs/flags/4x3/cn.svg)
}

.fi-de {
    background-image: url(../libs/flags/4x3/de.svg)
}

.fi-fr {
    background-image: url(../libs/flags/4x3/fr.svg)
}

.fi-gb {
    background-image: url(../libs/flags/4x3/gb.svg)
}

.fi-it {
    background-image: url(../libs/flags/4x3/it.svg)
}

.fi-kz {
    background-image: url(../libs/flags/4x3/kz.svg)
}

.fi-nl {
    background-image: url(../libs/flags/4x3/nl.svg)
}

.fi-pl {
    background-image: url(../libs/flags/4x3/pl.svg)
}

.fi-ru {
    background-image: url(../libs/flags/4x3/ru.svg)
}

.fi-tr {
    background-image: url(../libs/flags/4x3/tr.svg)
}

.fi-ua {
    background-image: url(../libs/flags/4x3/ua.svg)
}

.fi-eg {
    background-image: url(../libs/flags/4x3/eg.svg)
}

.fi-es {
    background-image: url(../libs/flags/4x3/es.svg)
}

.fi-jp {
    background-image: url(../libs/flags/4x3/jp.svg)
}

/*--main-style--*/

:root {
    --main-dark-bg: #0e1015;
    --rgb-dark-bg: 14 16 21;
    --card-dark-bg: #191c24;
    --border-color: #22262f;
    --dark-block-bg: #13151b;
    --accent-color-red: #FF1F53;
    --rgb-color-red: 255 10 67;
    --light-grey-text: #b3b3b3;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: var(--main-dark-bg);
    padding: 0;
    margin: 0
}

a:focus,
a:hover {
    text-decoration: none;
    color: var(--accent-color-red);
    outline: none;
    outline-offset: 0;
}

.white-color {
    color: #fff;
}

.option-text {
    display: block;
    font-size: 12px;
    color: var(--light-grey-text);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 1280px;
    max-width: 100%;
}

.header {
    max-width: 100%;
    height: 65px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgb(var(--rgb-dark-bg) / .6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 15px;
    right: 15px;
    left: 15px;
    z-index: 50;
}

.header-inner {
    width: 100%;
    height: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
    position: relative;
    padding: 0 15px;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: 700;
    font-size: 20px;
    color: var(--accent-color-red);
    padding: 10px 0;
    transition: all .2s ease-in-out;
}

.header-logo:hover {
    color: #fff
}

.header-logo img {
    width: 100%;
    max-width: 300px;
    max-height: 100%;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1
}

.main-menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto
}

.main-menu-link {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
    transition: all .3s ease;
}

@media screen and (max-width: 992px) {
    .main-menu-link {
        padding: 10px 15px;
    }
}

.main-menu-link.active,
.main-menu-link:hover {
    color: var(--accent-color-red)
}

.main-menu-item {
    padding: 5px 15px;
}

@media screen and (max-width: 992px) {
    .main-menu-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 0 0;
    }
}

.item-dropdown {
    position: relative;
}

.item-dropdown::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: border-color .3s ease;
}

@media screen and (max-width: 992px) {
    .item-dropdown::after {
        top: 20px;
        right: 15px;
        transform: translateY(0);
    }
}

/*------------------------ mega-menu --------------------*/

.mega-menu {
    list-style: none;
    min-width: 100%;
    width: 160px;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color-red) rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    padding: 10px 10px;
    display: none;
}

@media screen and (max-width: 992px) {
    .mega-menu {
        width: 100%;
        max-height: none;
        overflow-y: visible;
        border: none;
        position: static;
        display: none;
    }

    .mega-menu.is-visible {
        display: block;
    }
}

.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background-color: var(--accent-color-red);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-color-red);
    filter: brightness(1.2);
}

@media (min-width: 992px) {
    .item-dropdown:hover>.mega-menu {
        display: block;
    }
}

.mega-menu__item {
    padding: 5px 0;
}

.mega-menu__link {
    color: var(--light-grey-text);
    transition: color .3s ease;
}

.mega-menu__link:hover {
    color: var(--accent-color-red);
}

/*--------------------- language -------------------*/

.breadcrumbs li,
.breadcrumbs li a:hover,
.language-block,
.main-menu-link:hover,
.pagination-list li a.active,
.pagination-list li a:hover {
    color: var(--accent-color-red)
}

.breadcrumbs,
.copyright,
.main-card {
    overflow: hidden
}

.header-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 15px 0
}

.language-block {
    width: 75px;
    min-width: 75px;
    position: relative;
    padding: 10px;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer
}

.language-block-head {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative
}

.language-block-head span {
    margin-right: 5px;
    margin-bottom: 2px
}

.language-block-head::after {
    content: "";
    border-left: 1px solid var(--accent-color-red);
    border-bottom: 1px solid var(--accent-color-red);
    height: 8px;
    width: 8px;
    position: absolute;
    top: 39%;
    right: -2px;
    transform: translateY(-50%) rotate(-45deg)
}

.language-block-list {
    list-style: none;
    width: 120px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    padding: 10px 0;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1010;
    display: none
}

.service-body {
    box-shadow: 0 0 14px 3px rgba(34, 60, 80, .18);
    list-style: none
}

.language-block-list.active,
.service-body.open {
    display: block
}

.language-block-list li {
    padding: 5px 15px;
}

.language-block-list li:hover {
    background-color: #181b21;
}

.language-block-list li a {
    display: block;
    color: #fff;
    text-align: left
}

/*--------------------- block-social ------------------*/

.block-social {
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
    display: none;
}

@media screen and (max-width: 992px) {
    .block-social {
        display: flex;
    }
}

.block-social__link {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.block-social__link.btn_wa {
    background-color: #25D366;
}

.block-social__link.btn_wa svg {
    width: 20px;
    fill: #fff;
}

.block-social__link.btn_tg {
    background-color: #0088cc;
}

.block-social__link.btn_tg svg {
    width: 20px;
    fill: #fff;
}

.block-social__link.btn_ph {
    background-color: #cb2845;
}

.block-social__link.btn_ph svg {
    width: 20px;
    fill: #fff;
}

.block-social__link.btn_ln svg {
    width: 100%;
}

/*--------------------- block-social /-----------------*/

.button-burger {
    width: 25px;
    height: auto;
    border: none;
    background-color: transparent;
    flex-shrink: 0;
    padding: 5px 0 0 0;
    display: none;
}

.button-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 0 0 5px 0;
}

.breadcrumbs li,
.main-card {
    position: relative;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0 0 30px 0;
}

.main-card a {
    text-decoration: none;
    display: inline-block;
    width: 100%
}

.breadcrumbs li {
    font-size: 12px;
    padding: 0;
    margin-right: 25px;
}

.breadcrumbs li:first-child {
    padding-left: 0
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: #fff;
    position: absolute;
    top: 0;
    right: -15px
}

.breadcrumbs li a {
    color: #fff
}

.main-content {
    padding: 100px 0 0 0;
}

/*------------------------- banner ---------------------*/

.banner-top {
    padding: 15px 0;
}

.banner-top__inner {
    border-radius: 8px;
    background-color: var(--main-dark-bg);
    overflow: hidden;
    position: relative;
    padding: 4px;
}

@media screen and (max-width: 640px) {
    .banner-top__inner {
        padding: 2px;
    }
}

.banner-top__inner::before {
    content: '';
    width: 150%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.2) calc(50% - 40px),
            rgba(255, 255, 255, 1) calc(50% - 5px),
            rgba(255, 255, 255, 1) calc(50% + 5px),
            rgba(255, 255, 255, 0.2) calc(50% + 40px),
            transparent calc(50% + 60px),
            transparent 100%);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    background-position: right;
    animation: glint-spin 5s infinite;
    z-index: 0;
}

.banner-top__content {
    border-radius: 7px;
    position: relative;
    z-index: 1;
}

.banner-top__content a {
    display: block;
    border-radius: 7px;
    overflow: hidden;
}

.banner-top__content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@keyframes glint-spin {
    0% {
        transform: rotate(0deg);
    }

    45% {
        transform: rotate(195deg);
    }

    55% {
        transform: rotate(205deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*------------------------- banner /--------------------*/

/* ------------ side-filters ------------ */

.side-filters {
    width: 300px;
    height: 100vh;
    border-right: 1px solid var(--border-color);
    background-color: var(--main-dark-bg);
    position: fixed;
    top: 80px;
    left: 0;
    transform: translateX(-100%);
    z-index: 20;
    transition: all .3s ease;
}

.side-filters.active {
    transform: translateX(0%);
}

.main-listing {
    transition: all .3s ease;
}

.main-listing.filters-open {
    transform: translateX(300px);
}

.side-filters-head {
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 16px 16px;
}

.close-filters {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.close-filters:hover {
    background-color: #22262f;
}

.close-filters svg {
    width: 24px;
    fill: #fff;
}

.side-filters-body {
    height: 75vh;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #343842 transparent;
    padding: 16px 16px;
}

@media screen and (max-width: 768px) {
    .side-filters-body {
        height: 60vh;
    }
}

.side-filters-body::-webkit-scrollbar {
    width: 8px;
}

.side-filters-body::-webkit-scrollbar-thumb {
    background-color: #343842;
    border-radius: 4px;
}

.side-filters-body::-webkit-scrollbar-thumb:hover {
    background-color: #343842;
}

.filter-item {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin: 0 0 10px 0;
}

.filter-item-head {
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    position: relative;
    padding: 12px 12px;
    transition: all .3s ease;
}

.filter-item-head:hover {
    background-color: #16191e;
}

.filter-item-head::after {
    content: '';
    display: inline-block;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    height: 7px;
    width: 7px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(135deg);
    transition: all 0.3s ease;
}

.filter-item.active .filter-item-head::after {
    transform: translateY(-50%) rotate(225deg);
}

.filter-item.single-link .filter-item-head::after {
    display: none;
}

.filter-item-head a {
    display: block;
    width: 100%;
    color: #fff;
}

.filter-item-body {
    display: none;
}

.filter-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item-list li {
    border-top: 1px solid var(--border-color);
    padding: 8px 24px;
    transition: all 0.3s ease;
}

.filter-item-list li:hover {
    background-color: #16191e;
}

.filter-item-list li a {
    font-size: 14px;
    color: #fff;
}

.filter-item.active .filter-item-body {
    display: block;
}

.main-title {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin: 0 0 30px 0;
}

@media screen and (max-width: 768px) {
    .main-title {
        font-size: 24px;
        margin: 0 0 15px 0;
    }
}

.main-subtitle {
    display: block;
    max-width: 768px;
    font-size: 16px;
    color: var(--light-grey-text);
    text-align: center;
    margin: 0 auto 30px auto;
}

@media screen and (max-width: 768px) {
    .main-subtitle {
        font-size: 14px;
        margin: 0 0 20px 0;
    }
}

.button-filters {
    font-size: 14px;
    color: var(--accent-color-red);
    border-radius: 6px;
    border: 1px solid var(--accent-color-red);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 8px 16px;
    margin: 0 0 15px 0;
    transition: all .3s ease;
}

.button-filters:hover {
    color: #fff;
    background-color: #22262f;
}

.button-filters svg {
    width: 16px;
    transition: all .3s ease;
}

.button-filters:hover svg {
    stroke: #fff;
}

.count-cards {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

@media screen and (max-width: 768px) {
    .count-cards {
        font-size: 20px;
        margin: 0 0 15px 0;
    }
}

.main-grid [class^=col] {
    padding-right: 12px;
    padding-left: 12px
}

.main-grid .row {
    margin-right: -12px;
    margin-left: -12px
}

.main-card {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    margin-bottom: 24px
}

.main-card-image {
    overflow: hidden;
    position: relative;
}

.hot-price {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 20;
}

.hot-price svg {
    width: 20px;
}

.vip-item {
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    border-radius: 4px;
    background-color: #EB0037;
    padding: 4px 8px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 20;
    /* margin: 0 0 5px 0; */
}

.main-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all .3s ease;
}

.main-card-image img:hover {
    opacity: .7;
    transform: scale(1.1);
}

.card-info {
    width: 100%;
    padding: 15px;
}

.card-info-top {
    display: flex;
    margin: 0 0 7px 0;
}

.card-info-item {
    width: 50%;
}

.card-info-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 0 0 0;
}

.card-info-subtitle {
    display: block;
    font-size: 12px;
    color: var(--light-grey-text);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.current-price {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    text-align: right;
    color: var(--accent-color-red);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 0 0 10px;
}

.sale-price {
    display: block;
    font-size: 12px;
    text-align: right;
    color: var(--light-grey-text);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 0 0 10px;
}

.location-item {
    font-size: 14px;
    color: var(--light-grey-text);
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin: 0 0 10px 0;
}

.location-item svg {
    width: 16px;
}

.info-options {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.info-options-item {
    display: block;
    font-size: 12px;
    color: #fff;
    line-height: 1.4;
    border-radius: 4px;
    background-color: #22262f;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 2px 8px;
}

/* ----------------- singe-page --------------- */

.singe-page-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-color-red);
    text-align: center;
    margin: 0 0 25px 0;
}

@media screen and (max-width: 768px) {
    .singe-page-title {
        font-size: 24px;
        margin: 0 0 15px 0;
    }
}

.switcher-wrap {
    border-radius: 6px;
    background-color: #1f2229;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 4px 4px;
    margin: 0 0 15px 0;
}

.switcher-button {
    width: 50%;
    font-size: 14px;
    color: #b3b3b3;
    border: none;
    border-radius: 6px;
    background-color: transparent;
    text-align: center;
    padding: 6px 12px;
}

.switcher-button.active {
    color: #fff;
    background-color: var(--main-dark-bg);
}

.slider-wrap {
    width: 50%;
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .slider-wrap {
        width: 100%;
    }
}

.swiper {
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    overflow: hidden;
}

.swiper-top {
    height: 80%;
    width: 100%
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(0 0 0 / .4);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-prev::after {
    content: '';
    display: inline-block;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    height: 7px;
    width: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(315deg);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next::after {
    content: '';
    display: inline-block;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    height: 7px;
    width: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    padding: 15px 0 10px 0;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #404145;
    opacity: 1;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: var(--accent-color-red);
}

.swiper-counter {
    font-size: 14px;
    color: var(--light-grey-text);
    text-align: center;
}

.contact-single-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin: 25px 0 25px 0;
}

@media screen and (max-width: 992px) {
    .contact-single-wrap {
        display: none;
    }
}

.contact-button {
    text-decoration: none;
    width: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    column-gap: 15px;
    padding: 12px 15px;
    transition: all .3s ease;
}

.contact-button svg {
    width: 20px;
    fill: #fff;
}

.button-whatsap {
    background-color: #25D366;
}

.button-whatsap:hover {
    color: #fff;
    opacity: .8;
}

.button-telegram {
    background-color: #24A1DE;
}

.button-telegram:hover {
    color: #fff;
    opacity: .8;
}

.content-block {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 24px 24px;
    margin: 0 0 25px 0;
}

.content-block-text {
    font-size: 16px;
    color: var(--light-grey-text);
    line-height: 1.6;
}

.content-block .section-title {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 0 0 15px 0;
}

.content-block .section-title svg {
    width: 20px;
    margin-right: 8px;
}

.comment-form-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin: 0 0 20px 0;
}

.form-item-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

.form-item {
    width: 50%;
    margin: 0 0 15px 0;
}

@media screen and (max-width: 768px) {
    .form-item {
        width: 100%;
        margin: 0 0 15px 0;
    }
}

.form-item-label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin: 0 0 3px 0;
}

.form-item-input {
    width: 100%;
    font-size: 14px;
    color: var(--light-grey-text);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--main-dark-bg);
    padding: 8px 12px;
}

.form-item-input::placeholder {
    font-size: 14px;
    color: var(--light-grey-text);
}

.form-item-textarea {
    width: 100%;
    height: 100px;
    font-size: 14px;
    color: var(--light-grey-text);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--main-dark-bg);
    resize: vertical;
    padding: 8px 12px;
    margin: 0 0 15px 0;
}

.form-item-textarea::placeholder {
    font-size: 14px;
    color: var(--light-grey-text);
}

.form-submin {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 6px;
    background-color: var(--accent-color-red);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    padding: 10px 15px;
    margin: 0 0 15px 0;
    transition: all .3s ease;
}

.form-submin:hover {
    background-color: rgb(var(--rgb-color-red) / .9);
}

.form-submin svg {
    width: 16px;
}

.comment-area {
    width: 100%;
}

.comment-placeholder {
    font-size: 14px;
    color: var(--light-grey-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
}

.comment-placeholder svg {
    width: 48px;
    margin: 0 0 15px 0;
}

.comment-placeholder-info {
    display: block;
    font-size: 16px;
    text-align: center;
}

.comments-block {
    padding: 20px 0
}

.info-table,
.service-table {
    padding: 10px 0
}

.comments-title,
.service-title {
    display: block;
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px
}

.service-body {
    padding: 0;
    margin: 0;
    display: none
}

/*----------------- sidebar ----------------*/

.sidebar-item {
    font-size: 16px;
    color: var(--light-grey-text);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 24px 24px;
    margin: 0 0 25px 0;
}

.sidebar-title {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding: 8px 0;
}

.sidebar-list li a {
    font-size: 16px;
    color: #fff;
    transition: all .3s ease;
}

.sidebar-list li a:hover {
    color: var(--accent-color-red);
}

.location-block {
    border-top: 1px solid var(--border-color);
    padding: 20px 0 0 0;
}

.location-block-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin: 0 0 15px 0;
}

.location-block-inner {
    display: flex;
    column-gap: 10px;
}

.location-block-inner a {
    font-size: 16px;
    color: #fff;
    transition: all .3s ease;
}

.location-block-inner a:hover {
    color: var(--accent-color-red);
}

.location-block-icon svg {
    width: 16px;
}

.comment-form-input,
.comment-form-textarea {
    font-size: 14px;
    color: #1d1d1d;
    border: none;
    background-color: #fff;
    padding: 10px;
    margin: 0 0 20px;
    width: 100%
}

.mobile-comments-wrap {
    display: none
}

@media screen and (max-width:992px) {
    .language-block-list {
        right: auto;
        left: 0
    }

    .navigation {
        width: 100%;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        background-color: var(--card-dark-bg);
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 15px 20px;
        display: none;
    }

    .navigation.active {
        display: flex;
        max-height: calc(100vh - 80px);
        overflow-y: auto
    }

    .main-menu {
        width: 100%;
        flex-direction: column;
        order: 2
    }

    .header-options {
        order: 1;
        width: 100%
    }

    .button-burger,
    .mobile-comments-wrap {
        display: block
    }

    .desktop-comments-wrap {
        display: none
    }
}

.comment-form-input {
    border-radius: 8px
}

.comment-form-textarea {
    border-radius: 8px;
    resize: vertical
}

.comment-form-button {
    width: 100%;
    font-size: 14px;
    color: #1d1d1d;
    text-align: center;
    border: none;
    border-radius: 8px;
    background-color: var(--accent-color-red);
    padding: 10px;
    margin: 0 0 20px
}

/*------------------- services -----------------*/

.services .section-title {
    text-align: left;
    margin: 0 0 20px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.services-item {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 24px 24px;
    margin: 0 0 25px 0;
}

.services-item-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin: 0 0 15px 0;
}

.services-row {
    display: flex;
    column-gap: 15px;
}

@media screen and (max-width: 768px) {
    .services-row {
        flex-wrap: wrap;
    }
}

.services-row .services-list {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .services-row .services-list {
        width: 100%;
    }
}

.services-list {
    width: 100%;
    list-style: none;
    padding: 0 0;
    margin: 0 0 12px 0;
}

@media screen and (max-width: 768px) {
    .services-list:not(:last-child) {
        margin: 0 0;
    }
}

.services-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 4px 0;
}

.services-list li svg {
    width: 16px;
}

.services-price {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-left: auto;
}

.services-price svg {
    width: 18px;
}

.random-block {
    padding: 40px 0;
}

.random-block .section-title {
    text-align: left;
    margin: 0 0 20px 0;
}

.random-block-subtitle {
    display: block;
    font-size: 16px;
    color: var(--light-grey-text);
    margin: 0 0 20px 0;
}

.section-title {
    display: block;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin: 0 0 25px 0;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
}

/* ----------------why-choose---------------- */

.why-choose {
    margin: 0 0 50px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

@media screen and (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-item {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    display: flex;
    padding: 16px 16px;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    border: 1px solid #6f0f28;
}

.why-choose-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #15181e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-icon svg {
    width: 32px;
}

.why-choose-info {
    padding: 0 0 0 15px;
}

.choose-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px 0;
}

.choose-description {
    font-size: 14px;
    color: var(--light-grey-text);
}

/* ----------------- quit-choose ---------------- */

.quit-choose {
    margin: 0 0 50px 0;
}

.quit-choose-item {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    padding: 16px 16px;
    transition: all 0.3s ease;
}

.quit-choose-item:hover {
    border: 1px solid #6f0f28;
}

.quit-choose-item .choose-title {
    margin: 0;
}

.choose-item-head {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.choose-item-head svg {
    width: 24px;
}

/* ----------------- location-service ---------------- */

.location-service {
    margin: 0 0 50px 0;
}


.location-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media screen and (max-width: 768px) {
    .location-service-grid {
        grid-template-columns: 1fr;
    }
}

.location-service-item {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    display: flex;
    padding: 16px 16px;
    transition: all 0.3s ease;
}

.location-service-item:hover {
    border: 1px solid #6f0f28;
}

.location-service-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #15181e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-service-icon svg {
    width: 32px;
}

/* ----------------- popular-service ---------------- */

.popular-service {
    margin: 0 0 40px 0;
}

.popular-service-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .popular-service-inner {
        grid-template-columns: 1fr;
    }
}

.popular-service-title {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px 0;
}

.popular-service-item {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    display: flex;
    padding: 16px 16px;
    margin: 0 0 15px 0;
    transition: all 0.3s ease;
}

.popular-service-item:hover {
    border: 1px solid #6f0f28;
}

.popular-service-item .choose-title {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.popular-service-number {
    display: inline-block;
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    border-radius: 50%;
    background-color: var(--accent-color-red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popular-service-item .choose-description {
    padding: 0 0 0 42px;
}

/* ----------------- faq-wrapper ---------------- */

.faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 60px 0;
}

.faq-item {
    width: 100%;
    max-width: 768px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    margin: 0 0 10px 0;
}

.faq-head {
    font-size: 16px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 12px 40px 12px 12px;
}

.faq-head::after {
    content: '';
    display: inline-block;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    height: 7px;
    width: 7px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(225deg);
    transition: all 0.3s ease;
}

.faq-head:hover {
    background-color: #181b21;
}

.faq-number {
    display: inline-block;
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    border-radius: 50%;
    background-color: var(--accent-color-red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-body {
    font-size: 14px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 12px 0 55px;
}

.faq-item.active .faq-body {
    max-height: 500px;
    padding: 12px 12px 12px 55px;
}

.faq-item.active .faq-head::after {
    transform: translateY(-50%) rotate(45deg);
}

/* ----------------- offers-info ---------------- */

.offers-info {
    height: 400px;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #343842 transparent;
    padding: 25px 25px;
    margin-bottom: 50px;
}

.offers-info::-webkit-scrollbar {
    width: 8px;
}

.offers-info::-webkit-scrollbar-thumb {
    background-color: #343842;
    border-radius: 4px;
}

.offers-info::-webkit-scrollbar-thumb:hover {
    background-color: #343842;
}

.offers-info-title {
    display: block;
    font-weight: 700;
    font-size: 24px;
    color: var(--accent-color-red);
    margin: 24px 0 16px 0;
}

.offers-list-title {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: var(--accent-color-red);
    margin: 20px 0 12px 0;
}

.offers-info-list {
    padding: 0 0 0 20px;
    margin: 0 0 15px 0;
}

.offers-info-list li {
    margin: 0 0 5px 0;
}

.accent-color {
    color: var(--accent-color-red);
}

/* ----------------- add-offers ---------------- */

.add-offers {
    color: var(--light-grey-text);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 32px;
    margin-bottom: 30px;
}

.add-offers-title {
    display: block;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin: 0 0 15px 0;
}

.add-offers-subtitle {
    display: block;
    font-size: 18px;
    text-align: center;
    margin: 0 0 25px 0;
}

.add-offers-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

.add-offers-telegram {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
    background-color: var(--accent-color-red);
    column-gap: 7px;
    padding: 10px 32px;
    margin: 0 0 20px 0;
    transition: all .3s ease;
}

.add-offers-telegram svg {
    width: 16px;
}

.add-offers-telegram:hover {
    color: #fff;
    background-color: rgb(var(--rgb-color-red) / .9);
}

.add-offers-whatsapp {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--main-dark-bg);
    column-gap: 7px;
    padding: 10px 32px;
    margin: 0 0 20px 0;
    transition: all .3s ease;
}

.add-offers-whatsapp svg {
    width: 16px;
}

.add-offers-whatsapp:hover {
    color: #fff;
    background-color: #1f2229;
}

.add-offers-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

@media screen and (max-width: 992px) {
    .add-offers-bottom {
        flex-wrap: wrap;
    }
}

.add-offers-bottom-item {
    width: 33.3%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding: 5px 0;
}

@media screen and (max-width: 992px) {
    .add-offers-bottom-item {
        width: 100%;
    }
}

.add-offers-bottom-item svg {
    width: 16px;
}

/* ----------------- new-offers ---------------- */

.new-offers {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 16px 16px;
    margin-bottom: 24px;
}

.new-offers-info {
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    margin: 0 0;
}

.new-offers-info a {
    color: var(--accent-color-red);
    display: flex;
    align-items: center;
}

.new-offers-info a:hover {
    text-decoration: underline;
}

.new-offers-info a svg {
    width: 20px;
    fill: var(--accent-color-red);
    margin-right: 5px;
}

.pagination-list {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    padding: 10px 0;
    margin: 0px 0 25px 0;
}

.pagination-list li a {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: var(--accent-color-red);
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--accent-color-red);
    background-color: transparent;
    padding: 10px 10px;
    transition: all .3s ease;
}

.pagination-list li a:hover,
.pagination-list li.active a {
    color: #fff;
    border: 1px solid var(--accent-color-red);
    background-color: var(--accent-color-red);
}

/* ---------------- Seo-articles --------------- */

.seo-articles {
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 25px 25px;
    margin-bottom: 50px;
}

.seo-articles h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles h2 {
    font-size: clamp(22px, 3.6vw, 28px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles h3 {
    font-size: clamp(18px, 3.2vw, 22px);
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-articles p {
    color: var(--light-grey-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ----------------- footer ---------------- */

.footer {
    font-size: 14px;
    color: var(--light-grey-text);
    line-height: 1.4;
    border-top: 1px solid var(--border-color);
    padding: 50px 0 0 0;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 50px 0 60px 0;
    }
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
}

@media screen and (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
    }
}

@media screen and (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--accent-color-red);
    margin: 0 0 15px 0;
}

.footer__logo img {
    width: 120px;
    max-width: 100%;
}

.footer-title {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.footer-list__item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.footer-list__item svg {
    width: 16px;
    fill: var(--accent-color-red);
}

.footer-list__link {
    display: block;
    font-size: 14px;
    color: var(--light-grey-text);
    transition: .3s;
}

.footer-list__link:hover {
    color: var(--accent-color-red);
}

.footer-social {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin: 0 0 20px 0;
}

.copyright {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.copyright p {
    text-align: center;
    margin: 0 0;
}

.go-top-top {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: var(--accent-color-red);
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 20;
    cursor: pointer;
    transition: all .3s ease;
    display: none;
}

@media screen and (max-width: 768px) {
    .go-top-top {
        bottom: 100px;
    }
}

.go-top-top::after {
    content: '';
    display: inline-block;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    height: 7px;
    width: 7px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.go-top-top:hover {
    transform: scale(1.1);
    background-color: rgb(var(--rgb-color-red) / .9);
}

.fixed-contact {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgb(var(--rgb-dark-bg) / .6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 25;
    padding: 7px 7px;
    display: none;
}

@media screen and (max-width: 992px) {
    .fixed-contact {
        display: flex;
    }
}

.fixed-contact-link {
    flex: 1;
    font-size: 12px;
    color: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 15px
}

.fixed-contact-link.btn_wa {
    background-color: #25D366;
    border-radius: 7px 0 0 7px;
}

.fixed-contact-link.btn_tg {
    background-color: #24A1DE;
    border-radius: 0 7px 7px 0;
}

.fixed-contact-link svg {
    width: 20px;
    fill: #fff;
}

/*----------------------- add pages ---------------------*/

.page-hero {
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0 0 0;
}

.page-hero-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-color-red);
    text-align: center;
    margin: 0 0 25px 0;
}

.breadcrumbs-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*------------------------- about -----------------------*/

.about-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 100px 0;
}

@media screen and (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }
}

.entry-title {
    display: block;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin: 0 0 25px 0;
}

.about-intro__title {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.about-intro-text {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 24px 24px;
}

.about-intro-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
}

.stats-grid {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 24px 24px;
}

@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--main-dark-bg);
    padding: 40px 40px;
    transition: border-color .3s ease;
}

.stat-item:hover {
    border: 1px solid #6f0f28;
}

.stat-number {
    display: block;
    font-size: 56px;
    color: var(--accent-color-red);
    text-shadow: 0 0 10px rgba(255, 31, 83, 0.3);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 8px;
    transition: text-shadow 0.5s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(255, 31, 83, 0.8), 0 0 30px rgba(255, 31, 83, 0.4);
}

.stat-label {
    font-size: 12px;
    color: var(--light-grey-text);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    text-align: center;
}

.section.padding-100 {
    padding: 100px 0;
}

@media screen and (max-width: 768px) {
    .section.padding-100 {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media screen and (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--dark-block-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 24px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border: 1px solid #6f0f28;
}

.value-card svg {
    width: 36px;
    fill: var(--accent-color-red);
}

.value-card__title {
    color: #fff;
}

.value-card__description {
    font-size: 14px;
    color: var(--light-grey-text);
}

.cta-section__inner {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 15px;
    margin-bottom: 30px;
}

.cta-text {
    color: var(--light-grey-text);
    margin: 0 0 30px 0;
}

.cta__btn {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
    background-color: var(--accent-color-red);
    column-gap: 7px;
    padding: 10px 32px;
    transition: all .3s ease;
}

.cta__btn:hover {
    color: #fff;
    background-color: rgb(var(--rgb-color-red) / .9);
}

/*-------------------------- faq ------------------------*/

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

@media screen and (max-width: 768px) {
    .faq-content {
        padding: 60px 0;
    }
}

/*------------------------ contacts ---------------------*/

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding: 100px 0;
}

@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 24px 24px;
    margin: 0 0 25px 0;
}

.contact-form__description {
    font-size: 14px;
    color: var(--light-grey-text);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-size: 14px;
    color: var(--light-grey-text);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--main-dark-bg);
    padding: 8px 12px;
}

.contact-info-card {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--card-dark-bg);
    padding: 24px 24px;
    margin: 0 0 25px 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group label {
    display: block;
    font-weight: 400;
    color: var(--light-grey-text);
    font-size: 12px;
}

.form-group label a {
    color: var(--accent-color-red);
}

.contact-submit {
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 6px;
    background-color: var(--accent-color-red);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    margin: 0 0 15px 0;
    transition: all .3s ease;
}

.contact-submit:hover {
    color: #fff;
    background-color: rgb(var(--rgb-color-red) / .9);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.contact-info-list li {
    font-size: 14px;
    color: var(--light-grey-text);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    column-gap: 15px;
    padding: 10px 0;
}

.contact-info-list li a {
    color: var(--light-grey-text);
}

.contact-info-list strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 2px;
    letter-spacing: 1px;
    font-weight: 400;
}

.contact-info-list svg {
    width: 20px;
    fill: var(--accent-color-red);
}

.quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 2px;
    letter-spacing: 1px;
    font-weight: 400;
}

.quick-contact a {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-grey-text);
}