/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;

    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    font-feature-settings: "salt" on, "liga" off;
    color: rgba(24, 25, 31, 0.8);
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    vertical-align: top;
}

p {
    margin: 0;
}

/* ========================== */
.wrapper {
    overflow: hidden;
}

body {
    font-family: "TildaSans", sans-serif;
}

header {
    background-color: rgba(76, 177, 103, 1);
}

.header {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}

.menu_header_item a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
}

.menu_header_item {
    margin-left: 30px;
}

.logo_header {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.menu_header_list {
    display: flex;
    align-items: center;
}

.section_fs {
    background-color: #daf5e1;
}

.btn_action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #4cb167;
    padding: 0 60px;
    height: 60px;
    font-size: 16px;
    text-decoration: none;
}

.h3 {
    font-weight: 700;
    font-size: 42px;
    color: #222222;
    line-height: 1.23;
    margin: 0;
}

.description_title {
    color: #222222;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
}

.mt_40_mb_54 {
    margin: 40px 0 54px;
}

.section_fs .wrapper_left_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.img_section_fs {
    width: 100%;
}

.section_fs {
    padding: 100px 0;
}

.section_ss {
    padding: 90px 0;
}

.btn_burger {
    display: none;
}

@media (max-width: 991.8px) {
    .btn_burger {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 8px 3px;
        flex-direction: column;
        justify-content: space-between;
        background-color: transparent;
        margin-left: 43px;
    }

    .btn_burger.active .first {
        transform: rotate(45deg);
        transform-origin: left;
    }

    .btn_burger.active .middle {
        display: none;
    }

    .btn_burger.active .last {
        transform: rotate(-45deg);
        transform-origin: left;
        position: relative;
        left: 0;
        bottom: -3px;
    }

    .btn_burger span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 10px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .menu_header_list {
        position: absolute;
        flex-direction: column;
        top: 80px;
        background-color: #ffffff;
        width: 100%;
        left: 0;
        align-items: flex-start;
        border: 3px solid rgba(76, 177, 103, 1);
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.3s ease;
    }

    .menu_header_list.active {
        transform: translateX(0);
        opacity: 1;
    }

    .menu_header_item a {
        color: rgba(76, 177, 103, 1);
    }

    .menu_header_item {
        width: 100%;
        padding: 20px 0 20px 30px;
        margin: 0;
        border-bottom: 3px solid rgba(76, 177, 103, 1);
    }

    .menu_header_item:last-child {
        border-bottom: 0;
    }

    header {
        position: relative;
    }
}

@media (max-width: 576.8px) {
}

.h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 1.23;
    color: #000000;
}

.section_ss .h1 {
    text-align: center;
}

.h1_description {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
}

.section_ss .h1_description {
    text-align: center;
}

.photo_ss {
    width: 100%;
}

.txt_section_ss {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
    color: #000000;
    padding-left: 30px;
}

.item_list_section_ss {
    display: flex;
    align-items: flex-start;
}

.img_section_ss {
    width: 65px;
}

.item_list_section_ss {
    margin-bottom: 50px;
}

.item_list_section_ss:last-child {
    margin-bottom: 0;
}

.h1_description.mb105.mt40 {
    margin-top: 40px;
    margin-bottom: 105px;
}

.row_wrapper_list_section_ss {
    align-items: center;
}

@media (max-width: 991.8px) {
    .row_wrapper_list_section_ss {
        flex-wrap: wrap-reverse;
    }

    .photo_ss {
        margin-bottom: 75px;
    }
}

.section_block_interect {
    padding: 45px 0;
    background-color: #daf5e1;
}

.wrapper_block_interect {
    display: flex;
    align-items: center;
    justify-content: center;
}

.block_interect_txt {
    font-weight: 700;
    color: #222222;
    font-size: 26px;
    line-height: 1.55;
    margin-right: 30px;
}

@media (max-width: 991.8px) {
    .wrapper_block_interect {
        flex-direction: column;
    }

    .block_interect_txt {
        margin: 0 0 20px 0;
        text-align: center;
    }
}

.section_list {
    padding: 90px 0;
}

.section_list .h1 {
    text-align: center;
}

.section_list .h1_description {
    text-align: center;
}

.section_list .row {
    justify-content: center;
}

.about_compan_title {
    font-size: 24px;
    line-height: 1.35;
    color: #222222;
    font-weight: 400;
}

.about_compan_content {
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    color: #000000;
    padding-left: 40px;
}

.item_about_company {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.item_about_company {
    padding: 45px 0;
    border-top: 2px solid #4cb167;
}

.about_compan_content.strong {
    font-weight: 700;
}

.about_compan_title {
    flex-basis: 40%;
}

.about_compan_content {
    flex-basis: 60%;
}

.list_about_compan_content {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #000000;
}

.list_about_compan_content li {
    list-style-type: decimal;
}

.item_about_company.img {
    justify-content: center;
    padding-bottom: 0;
}

.item_about_company.img img {
    width: 100%;
}

.section_contact {
    padding-top: 45px;
    padding-bottom: 60px;
    background-color: #daf5e1;
}

.title_contact_info {
    font-weight: 700;
}

.contact_info {
    color: #222222;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

.h2 {
    font-weight: 700;
    color: #222222;
    font-size: 38px;
    line-height: 1.23;
}

.contact_info {
    margin-bottom: 30px;
}

.section_contact .h2 {
    text-align: center;
}

.section_contact .row_center {
    justify-content: center;
    margin-top: 40px;
}

footer {
    background-color: #4cb167;
}

.btn_to_top {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    text-align: right;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn_to_top svg {
    margin-left: 5px;
}

.menu_footer_item a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
}

.menu_footer_item {
    margin-right: 30px;
}

.menu_footer_list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coopyright_txt {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}

.grid_row {
    height: 70px;
    align-items: center;
    display: grid;
    grid-template-areas: "C M B";
}

.coopyright_txt {
    grid-area: C;
}

.menu_footer_list {
    grid-area: M;
}

.btn_to_top {
    grid-area: B;
}

.menu_footer_item:last-child {
    margin-right: 0;
}

.section_fs {
    max-height: 90vh;
    display: flex;
    align-items: center;
}

.rtsp_wrapper p {
    display: none;
}

.rtsp_wrapper {
    display: flex;
    justify-content: center;
}

.rtsp_wrapper iframe {
    width: 700px;
    height: 400px;
}

.rtsp_wrapper {
    padding-bottom: 58%;
    position: relative;
}

.rtsp_wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.webcam__description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 991.8px) {
    .grid_row {
        grid-template-areas: "M" "C" "B";
        justify-content: center;
        padding: 40px 0;
        height: auto;
    }

    .rtsp_wrapper {
        padding-bottom: 58%;
        position: relative;
    }

    .rtsp_wrapper iframe {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .coopyright_txt {
        text-align: center;
        margin: 20px 0;
    }

    .btn_to_top {
        justify-content: center;
    }
}

.h1.mb40 {
    margin-bottom: 40px;
}

@media (max-width: 576.8px) {
    .section_fs {
        max-height: none;
    }

    .menu_footer_list {
        flex-direction: column;
    }

    .menu_footer_item {
        margin: 0;
    }
}

/*cookies*/

:root {
    --blue: #05376D;
    --blue-100: #f1f6ff;
    --gray-900: #B2B2B2;
    --gray-600: #B2B2B2;
    --radius: 8px;
    --shadow: 0 4px 30px rgba(0, 0, 0, .12);
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

button {
    cursor: pointer;
    border: none;
    font-weight: 600;
    border-radius: var(--radius);
    transition: .15s;
}

button:focus-visible {
    outline: 2px solid #4CB167
}

.hidden {
    display: none !important
}

.btn-primary {
    background: #4CB167;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #4CB167;
    color: #fff;
}

.btn-secondary {
    background: #ffffff;
    color: var(--gray-900);
    border: 1px solid var(--gray-900);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 400;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-outline {
    background: transparent;
    color: #4CB167;
    border: 1px solid #4CB167;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 400;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

#cookieBanner {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    padding: 24px;
    display: flex;
    gap: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 9999;
    border-radius: var(--radius);
}

.cookie-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    padding-left: 40px;
    /*color:var(--gray-900);*/
}

.cookie-text {
    margin-top: 20px;
    font-size: 20px;
    /*color:var(--gray-600);*/
    line-height: 1.5;
    font-weight: 400;
}

.cookie-sub-text {
    margin-top: 20px;
    font-size: 14px;
    color: #707070;
    line-height: 1.5;
    font-weight: 500;
}

.cookie-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#cookieModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 12px 40px;
    z-index: 10000;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 1200px;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--blue-100);
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    /*color:var(--gray-900);*/
}

.modal-close {
    font-size: 24px;
    line-height: 1;
    background: none;
    border: none;
    color: var(--gray-600);
}

.modal-body {
    padding: 24px;
    overflow: auto;
    font-size: 14px;
    line-height: 1.5;
    /*color:var(--gray-600);*/
}

.modal-body p {
    font-size: 18px;
    padding-bottom: 15px;
}

.modal-body h2 {
    font-size: 18px;
    padding-top: 10px;
    font-weight: 600;
}

.modal-actions {
    padding: 20px 24px;
    background: var(--blue-100);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 13px;
}

.policy-table th,
.policy-table td {
    border: 1px solid #d9dfe5;
    padding: 8px 10px;
    vertical-align: top;
}

.policy-table th {
    background: #f6f8fa;
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 1250px) {
    #cookieBanner {
        width: 700px;
        min-width: 120px;
        bottom: 24px;
        right: 24px;
        flex-direction: column;
        padding: 20px;
    }

    .cookie-title {
        font-size: 20px
    }

    .cookie-text {
        font-size: 12px
    }
}

@media (max-width: 768px) {
    #cookieBanner {
        width: 360px;
        min-width: 120px;
        bottom: 24px;
        right: 24px;
        flex-direction: column;
        padding: 20px;
    }

    .cookie-title {
        font-size: 20px
    }

    .cookie-text {
        font-size: 12px
    }
}

@media (max-width: 540px) {
    #cookieBanner {
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
        transform: none;
        border-radius: 0;
    }

    .cookie-text {
        font-size: 12px
    }

    .cookie-sub-text {
        font-size: 10px
    }

    #cookieModal {
        padding: 60px 12px 40px;
    }

    .modal-body p {
        font-size: 10px;
        padding-bottom: 10px;
    }

    .btn-primary {
        background: #4CB167;
        color: #fff;
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .btn-primary:hover {
        background: #4CB167;
        color: #fff;
    }

    .btn-secondary {
        background: #ffffff;
        color: var(--gray-900);
        border: 1px solid var(--gray-900);
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 400;
    }

    .btn-outline {
        background: transparent;
        color: #4CB167;
        border: 1px solid #4CB167;
        padding: 5px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 400;
    }
}
