*::selection {
    background-color: #e31e24;
    color: white;
}

/*-----root-----*/
:root {
    --section-padding: 120px 0;
    --section-radius: 64px;
    --list-margin: 60px 0 0 0;

    @media (max-width: 992px) {
        --section-padding: 60px 0;
        --section-radius: 32px;
        --list-margin: 32px 0 0 0;
    }

    @media (max-width: 768px) {
        --section-padding: 40px 0;
        --list-margin: 24px 0 0 0;
    }
}

/*-----base-----*/
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Golos Text", -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main {
    flex: 1;
}

.hidden {
    display: none;
}

/*-----container-----*/
.container {
    max-width: 1264px;
    padding: 0 16px;
    width: 100%;
    margin: 0 auto;
}

/*-----list-----*/
.list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style-type: none;
    margin: 16px 0;
    padding: 0;
    width: 100%;
}

.list__item {
    padding-left: 16px;
    position: relative;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px; /* 135.714% */
}

.list__item:before {
    background-color: #34B751;
    border-radius: 50%;
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 6px;
    left: 0
}

/*-----text-----*/
.text {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.text_big {
    font-size: 24px;
}

.text_bold {
    font-weight: 500;
}

/*-----heading-----*/
.heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.heading__title {
    color: #000;
    text-align: center;
    font-size: 54px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -1.08px;
}

.heading_white .heading__title {
    color: #FFF;
}

.heading__sub-title {
    color: #34B751;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.heading_white .heading__sub-title {
    color: #FFF;
}

@media (max-width: 992px) {
    .heading {
        gap: 24px;
    }

    .heading__title {
        font-size: 36px;
    }

    .heading__sub-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .heading__title {
        font-size: 28px;
    }

    .heading__sub-title {
        font-size: 16px;
    }
}

/*-----btn-----*/
.btn {
    align-items: center;
    border: 1px solid #34B751;
    background-color: #34B751;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 1.25rem;
    font-weight: 400;
    gap: 8px;
    justify-content: center;
    line-height: 120%;
    max-width: 300px;
    outline: none;
    padding: 16px 0;
    -webkit-text-decoration: none;
    text-decoration: none;
    transition: .3s;
    width: 100%;
}

.btn:hover {
    background-color: #00BA00;
}

/*-----map-yandex-----*/
#map-yandex {
    width: 100%;
    height: 460px;
}

@media (max-width: 992px) {
    #map-yandex {
        height: 300px;
    }
}

/*-----accordion-----*/
.accordion {
}

.accordion__unwrap {
    cursor: pointer;
    display: inline-block;
}

.accordion__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion__heading {
    display: flex;
    justify-content: space-between;
    padding: 32px;
}

.accordion__title {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.accordion__arrow {
    background-color: #F2F4F7;
    border-radius: 50%;
    height: 42px;
    width: 42px;
    position: relative;
    flex-shrink: 0;
}

.accordion__arrow:after,
.accordion__arrow:before {
    background: #000c;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    transition: .3s;
    width: 12px;
}

.accordion__arrow:before {
    right: 19px;
    transform: rotate(45deg);
}

.accordion__element.active .accordion__arrow:before {
    transform: rotate(-45deg);
}

.accordion__arrow::after {
    right: 11px;
    transform: rotate(135deg);
}

.accordion__element.active .accordion__arrow:after {
    transform: rotate(225deg);
}

.accordion__element {
    background-color: #FCFCFD;
    border-radius: 32px;
    cursor: pointer;
}

.accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: .5s;
    visibility: hidden;
}

.accordion__element.active .accordion__body {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

.accordion__body-inner {
    min-height: 0;
}

.accordion__body-content {
    padding: 0 32px 32px 32px;
}

.accordion__content {
    background: rgb(255, 255, 255);
    border-radius: 20px;

}

.accordion__content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

/*-----video-custom-----*/
.video-custom {
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: 32px;
    position: relative;
}

.video-custom > video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    display: block;
}

.video-custom__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.45);
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.video-custom__background--toggle {
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.video-custom__background--z-index {
    z-index: auto;
}

.video-custom__background--z-index-0 {
    z-index: 0;
}

.video-custom__btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-custom__btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 170px;
    height: 170px;
    background: rgba(52, 183, 81, .3);
    border-radius: 50%;
    animation: pulse-border 1800ms ease-out infinite;
}

.video-custom__btn:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    transition: all 200ms;
    background: rgba(52, 183, 81, 1);
    backdrop-filter: blur(5px);
    filter: drop-shadow(0px 0px 89px #34B751);
}

.video-custom__svg {
    display: flex;
    position: relative;
    z-index: 3;
    font-size: 40px;
    color: #B12933;
    width: 60px;
    height: 60px;
}

.video-custom__btn--small {
    width: 28px;
    height: 28px;
}

.video-custom__btn--small:before {
    width: 40px;
    height: 40px;
}

.video-custom__btn--small:after {
    width: 40px;
    height: 40px;
}

.video-custom__btn--small > i {
    font-size: 18px;
}

.video-custom__background--toggle .video-custom__btn {
    z-index: -1;
    visibility: hidden;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.success {
    border-radius: 16px;
    background: #F2F4F7;
    padding: 16px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.success img {
    object-fit: none;
    width: 40px;
}

.success p {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

/*----------reference----------*/
.table {

}

.table__scrollbar-track {
    overflow-x: auto;
}

.table__scrollbar-track::-webkit-scrollbar {
    height: 6px;
    width: 4px;
}

.table__scrollbar-track::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 4px;
}

.table__scrollbar-track::-webkit-scrollbar-thumb:horizontal {
    background-color: #34B751;
    border-radius: 10px;
}

.table__custom {
    width: 100%;
    min-width: 960px;
    overflow: hidden;
    border-collapse: separate; /* Отделение границ ячеек */
    border-spacing: 20px; /* Пространство между ячейками */
}

.table__custom th,
.table__custom td {
    border-radius: 16px;
    background: #F4F7F9;
    padding: 24px 32px;
    text-align: left;
    color: #000;
    font-size: 18px;
    font-style: normal;
    line-height: 25px;
}

.table__custom th {
    font-weight: 500;
}

.table__custom td {
    font-weight: 400;
}

.table__custom th:nth-child(1),
.table__custom td:nth-child(1) {
    width: 110px; /* Ширина первой колонки */
    text-align: center;
}

.table__custom th:nth-child(2),
.table__custom td:nth-child(2) {
    width: 440px;
}

@media (max-width: 992px) {
    .table__custom {
        border-spacing: 8px; /* Пространство между ячейками */
    }

    .table__custom th,
    .table__custom td {
        padding: 16px;
        font-size: 16px;
    }

    .table__custom th:nth-child(1),
    .table__custom td:nth-child(1) {
        width: 80px; /* Ширина первой колонки */
    }
    .table__custom th:nth-child(2),
    .table__custom td:nth-child(2) {
        width: 230px; /* Ширина первой колонки */
    }
    .table__custom th:nth-child(3),
    .table__custom td:nth-child(3) {
        width: 330px; /* Ширина первой колонки */
    }
}