body {
    font-family: 'Montserrat', 'Arial';
}

.container {
    max-width: 1114px;
    margin: 0 auto;
}

div {
    box-sizing: border-box;
}

h1,
h2,
h3,
p {
    line-height: 1.3
}

h4 {
    font-weight: 700;
    font-size: 20px;
}

h2 {
    font-weight: 600;
    font-size: 35px;
    margin-top: 12px;
}

.sub_title {
    font-weight: 400;
    font-size: 18px;
}

a.btn {
    border: 1px solid #000000;
    border-radius: 5px;
    font-weight: 400;
    font-size: 18px;
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

a.btn:hover {
    border: 1px solid #02838B;
    color: #02838B;
}

a.btn.green {
    background: linear-gradient(90deg, #0CA5AF 30.09%, #02838B 94.04%);
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 15px 25px;
    text-decoration: none;
    text-align: center;
    border: none;
}

.btn.white {
    border: 1px solid #02838B;
    color: #02838B;
    background:#fff;
}


.wrapper-center {
    text-align: center;
}

.margin_top_40 {
    margin-top: 40px;
}
.padding_60 {
    padding:60px 0;
}
.padding_20 {
    padding:20px 0;
}

@media (max-width:1114px) {
    .container {
        padding: 0 20px;
    }

    h2 {
        font-size: 30px;
    }
}
.toForm {cursor:pointer;}

/*-----------------------------------------------------------*/
/* TOP: logo, menu, contacts */
/*-----------------------------------------------------------*/

body {
    position: relative;
}

.horizontal_top_box {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    background: #fff;
}

.horizontal_top_box.fixed .container {
    padding-top: 0px;
    padding-bottom: 0px;
}

.horizontal_top_box .container {
    display: grid;
    grid-template-columns: 240px 1fr 230px;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: all 0.6s ease;
}

.logo {
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    gap: 10px;
    transition: all 0.6s ease;
    color: #000;
    text-decoration: none;
}

.fixed .logo {
    gap: 0;
}

.logo img {
    width: 100%;
    max-width: 100%;
    transition: all 0.6s ease;
}

.fixed .logo img {
    width: 45px;
}

.logo_title span {
    font-family: 'Arial';
    font-weight: 700;
    font-size: 12px;
}

.logo_title div {
    border-top: 1px solid;
    margin-top: 5px;
    padding-top: 5px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.6s ease;
}

.fixed .logo_title div {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.horizontal_top_box .menu ul {
    list-style: none;
    margin: 0;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
    height: 66px;
    align-items: center;
    justify-items: center;
    border-left: 1px solid #9A9999;
    border-right: 1px solid #9A9999;
    font-family: 'Arial';
    font-weight: 500;
    font-size: 14px;
}

.horizontal_top_box .header__button {
    display: none;
    margin: 0;
    position: relative;
    background: 0 0;
    box-shadow: none;
    border: none;
    /* width: 20px;
    height: 14px; */
    padding: 0;
    outline: none
}

.header__button:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: transparent
}

.header__button span {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 20px;
    height: 2px;
    display: inline-block;
    background: #140c47;
    transition: all .2s ease-in-out
}

.header__button span.s2 {
    top: 7px
}

.header__button span.s3 {
    top: 14px
}

.header__button.open span.s1 {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform-origin: center;
    transform-origin: center;
    top: 7px
}

.header__button.open span.s2 {
    top: 7px;
    width: 0
}

.header__button.open span.s3 {
    top: 7px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -ms-transform-origin: center;
    transform-origin: center
}

.horizontal_top_box .menu ul a {
    color: #000;
    text-decoration: none;
}

.horizontal_top_box .menu ul a:hover {
    color: #157B82;
}

.horizontal_top_box .menu ul>li>a {
    white-space: nowrap;
}

.horizontal_top_box .menu ul li.parent>a {
    display: flex;
    align-items: center;
}

.horizontal_top_box .menu ul li.parent>a:after {
    content: '';
    display: inline-block;
    background: url(/assets/images/arrow_down.svg) no-repeat 0 0;
    width: 12px;
    height: 6px;
    background-size: contain;
    margin-left: 8px;
}

.horizontal_top_box .menu ul li.parent {
    position: relative;
}

.horizontal_top_box .menu li.parent .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    min-width: 160px;
    padding-top: 10px;
}

.horizontal_top_box .menu li.parent .dropdown-menu::after {
    content: '';
    display: block;
    position: absolute;
    top: 1.5px;
    left: 20px;
    z-index: 2;
    width: 10px;
    height: 10px;
    background: url(/assets/images/menu2.svg) no-repeat 0 0;
    background-size: contain;
}

.horizontal_top_box .menu li.parent .dropdown-menu>div {
    padding: 15px;
    width: 100%;
    text-align: left;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.09);
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #858585;
}
.horizontal_top_box .menu li.parent .dropdown-menu>div.split {
    display:grid;
    grid-template-columns: 1fr 1fr;
}
.horizontal_top_box .menu li.parent .dropdown-menu .zub {
    border-right: 1px solid #adadad;
    padding-right:15px;
    min-width: 150px;
}
.horizontal_top_box .menu li.parent .dropdown-menu .zhongyi {
    padding-left: 15px;
    min-width: 150px;
}

.horizontal_top_box .dropdown-menu a {
    font-size: 16px;
    font-weight: 500;
    margin-top: 7px;
    display: block;
    border-top: 1px dashed #727c7d;
    padding-top: 7px;
}
.horizontal_top_box .dropdown-menu .split a {
    border:none;
}
.horizontal_top_box .dropdown-menu .split .tema {
    font-weight:600;
    font-size:18px;
}

.horizontal_top_box .dropdown-menu a:first-child {
    border-top: none;
    padding-top: 0;
}

.contact {
    text-align: right;
}

.contact .tel img {
    margin-right: 9px;
}

.contact .tel .number {
    font-weight: 600;
    font-size: 24px;
    color: #000;
    display: flex;
    justify-content: end;
}

.contact .tel .number a {
    text-decoration: none;
    color: #000;
}

.contact .tel .whatsapp {
    font-weight: 500;
    font-size: 16px;
    margin-top: 5px;
    display: flex;
    justify-content: end;
}

.contact .tel .whatsapp a {
    text-decoration: underline;
    color: #000;
}

.top_otstup {
    margin-top: 117px;
}

@media (max-width:1024px) {

    .horizontal_top_box .container,
    .horizontal_top_box.fixed .container {
        padding: 5px 15px;
        box-sizing: border-box;
        justify-content: end;
        grid-template-columns: 30% 55% 15%;
        gap: 0;
    }

    .horizontal_top_box .menu {
        display: none;
    }

    .logo {
        grid-template-columns: 50px 1fr;
        gap: 0;
    }

    .logo img,
    .fixed .logo img {
        width: 45px;
    }

    .logo_title span {
        font-weight: 400;
    }

    .logo_title div {
        display: none;
    }

    .contact .tel {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .contact .tel .number,
    .contact .tel .whatsapp {
        align-items: center;
        font-weight: 500;
        font-size: 18px;
        margin-top: 0;
    }

    .contact .tel .whatsapp a.text {
        text-decoration: none;
    }

    .contact .tel a.img {
        width: 30px;
        display: flex;
        margin-right: 9px;
    }

    .contact .tel .img img {
        width: 100%;
        margin: 0;
    }

    .horizontal_top_box .header__button {
        display: grid;
        gap: 6px;
        justify-content: end;
    }

    .horizontal_top_box .header__button span {
        width: 30px;
    }

    .top_otstup {
        margin-top: 56px;
    }
}

@media (max-width:450px) {

    .horizontal_top_box .container,
    .horizontal_top_box.fixed .container {
        padding: 5px 15px;
        box-sizing: border-box;
        justify-content: end;
        grid-template-columns: 55% 30% 15%;
        gap: 0;
    }

    .contact .tel .number a.text,
    .contact .tel .whatsapp a.text {
        display: none;
    }

}


/* --------------------------------------------------------- */
/*  Секция section_registration */
/* --------------------------------------------------------- */

.section_registration {
    padding: 60px 0;
    background: url(/assets/images/fon_form.jpg) no-repeat center center;
    background-size: cover;
}

.section_registration .sub_title,
.section_registration h2 {
    text-align: center;
    padding: 0 15%;
}

.section_registration .wrap {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 20px;
}

.section_registration .wrap .form {
    padding: 60px;
}

.section_registration input {
    width: 100%;
    background: #F3F2F2;
    border: 1px solid #BDBDBD;
    border-radius: 5px;
    padding: 10px;
    font-weight: 400;
    font-size: 25px;
    color: #000;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.section_registration input::placeholder {
    color: #000;
    /* Цвет плейсхолдера */
}

.section_registration .upload {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.section_registration .upload .descr {
    color: #3F3E3E;
    font-size: 14px;
    line-height: 1.3;
}
.visually_hidden {display:none !important}
.section_registration .form_fields_wrapp textarea {
    width: 100%;background: #F3F2F2;border: 1px solid #BDBDBD;border-radius:5px;padding:10px;font-weight:400;font-size:25px;color:#000;margin-bottom:20px;box-sizing:border-box;
}
@media (min-width:700px) {
    .form_fields_wrapp {display:grid;grid-template-columns: 1fr 1fr;gap:20px}
    .section_registration .form_fields_wrapp textarea {
        height:196px;
    }
}
.send {
    border: none;
    background: linear-gradient(90deg, #0CA5AF 30.09%, #02838B 94.04%);
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 15px 25px;
    margin-top: 20px;
    cursor: pointer;
}

.sasha_respond {
    background: linear-gradient(90deg, #21B4BD -1.39%, #0A5559 90.24%);
    border-radius: 0px 10px 10px 0px;
    padding: 55px;
    color: #fff;
    position: relative;
}

.consultant {
    border: 1px solid #BDBDBD;
    border-radius: 15px;
    padding: 20px 15px 15px 15px;
    text-align: center;
    position: relative;
}

.consultant::after {
    content: '';
    position: absolute;
    top: -10px;
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #53FA2A;
}

.consultant .name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

.consultant .descr {
    font-weight: 400;
    font-size: 18px;
}

.sasha_respond p {
    margin-top: 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.sasha_respond::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 290px;
    background: url(/assets/images/nurse.png) no-repeat bottom center;
    background-size: contain;
}


/* DRUG-and-DROP */

.drop-zone {
    max-width: 100%;
    height: 120px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #000;
    box-sizing: border-box;
    background: #F3F2F2;
    border: 2px dashed #919191;
    border-radius: 20px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 50%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.drop-zone::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 50px;
    background: url(/assets/images/upload.svg) no-repeat 0 0;
    background-size: contain;
}

.successMessage span {
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-top: 20px;
    border: 1px solid green;
    background: rgb(231, 255, 231);
    padding: 10px 20px;
    border-radius: 5px;
}

.section_registration .form .field>span {
    position: relative;
    display: block;
}

.section_registration .form .field>span .error {
    color: red;
    position: absolute;
    left: 12px;
    top: -34px;
    font-size: 12px;
}

@media (max-width:768px) {

    .section_registration .sub_title,
    .section_registration h2 {
        padding: 0;
    }

    .section_registration .wrap {
        grid-template-columns: 60% 1fr;
    }

    .section_registration .wrap .form {
        padding: 20px;
    }

    .section_registration .upload {
        grid-template-columns: 1fr;
    }

    .sasha_respond {
        padding: 30px 25px 100px 25px;
    }


    .consultant {
        border: 1px solid #ffffff;
    }
}

@media (max-width:450px) {
    .section_registration .wrap {
        grid-template-columns: 1fr;
    }

    .sasha_respond::after {
        height: 120px;
    }
}


/*-----------------------------------------------------------*/
/* FOOTER BLOCK */
/*-----------------------------------------------------------*/

.disclaimer {
    margin-top: 60px;
}

.disclaimer .wrap_1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid;
    padding: 0px 0 30px 0;
}

.disclaimer .wrap_2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 5%;
    padding-top: 50px;
}

.disclaimer .wrap_2 .title {
    font-weight: 600;
    font-size: 18px;
}

.disclaimer .wrap_2 ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer .wrap_2 a {
    color: #000;
}

.disclaimer .wrap_2 ul li {
    margin-bottom: 15px;
}

.bottom_inform {
    margin-top: 20px;
    padding: 30px 0 40px 0;
    background: linear-gradient(90deg, #0CA5AF 30.09%, #02838B 94.04%);
    font-size: 20px;
    color: #fff;
}

@media (max-width:768px) {
    .disclaimer .wrap_1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .disclaimer .logo {
        grid-template-columns: 70px 1fr;
        gap: 10px;
    }

    .disclaimer .logo img {
        width: 70px
    }

    .disclaimer .contact .tel {
        grid-template-columns: 1fr;
    }

    .disclaimer .contact .tel>div {
        justify-content: start;
    }

    .disclaimer .wrap_2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Page Loader */

#pageloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: white;
    z-index: 99999;
}

.loader-item h2 {
    color: #ccc;
    margin: 0 auto;
    font-size: 20px;
}

.outter {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    width: 60px;
    height: 60px;
    border-radius: 80px 0 0 80px;
    border-left: solid 5px;
    -webkit-animation: rotate 1.3s linear 0s infinite normal;
    -moz-animation: rotate 1.3s linear 0s infinite normal;
    -o-animation: rotate 1.3s linear 0s infinite normal;
    -ms-animation: rotate 1.3s linear 0s infinite normal;
    animation: rotate 1.3s linear 0s infinite normal;
}

.mid {
    top: 15px;
    left: 15px;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50px 0 0 50px;
    border-left: solid 4px;
    -webkit-animation: rotate 3.3s linear 0s infinite normal;
    -moz-animation: rotate 3.3s linear 0s infinite normal;
    -o-animation: rotate 3.3s linear 0s infinite normal;
    -ms-animation: rotate 3.3s linear 0s infinite normal;
    animation: rotate 3.3s linear 0s infinite normal;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg);

    }

    to {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* VIDEO in modal */

/*  Modals */
.loadVideoButton {
    cursor: pointer;
}

.hidden_fixed_video .box {
    display: none;
}

.hidden_fixed_video .box.show {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.67);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hidden_fixed_video .box .wrapper {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.hidden_fixed_video .box .x {
    font-style: normal;
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    color: #000;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    /* padding-bottom: 56.25%; */
    /* соотношение ширины к высоте (16:9) */
}
.video-container video {
    width:100%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:450px) {
    .hidden_fixed_video .box .x {
        z-index: 10;
        background-color: #fff;
    }

    .hidden_fixed_video .box .wrapper {
        padding: 0;
    }
}

/* SIDEBAR MENU */


#nav-icon3 {
    margin-right: 10px;
    width: 20px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer
}

#nav-icon3 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #90b5cc;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-icon3 span:nth-child(1) {
    top: 0
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 12px
}

#nav-icon3 span:nth-child(4) {
    top: 24px
}

#nav-icon3.open span:nth-child(1),
#nav-icon3.opened span:nth-child(1) {
    top: 12px;
    width: 0;
    left: 50%
}

#nav-icon3.open span:nth-child(2),
#nav-icon3.opened span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

#nav-icon3.open span:nth-child(3),
#nav-icon3.opened span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#nav-icon3.open span:nth-child(4),
#nav-icon3.opened span:nth-child(4) {
    top: 12px;
    width: 0;
    left: 50%
}

.sidebar #nav-icon3 span {
    background: #fff
}

body.sidebar-opened {
    overflow: hidden
}

.hidden-overley {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #000;
    opacity: 0;
    width: 0;
    height: 0;
    transition: opacity 1s
}

.hidden-overley.show {
    height: 100%;
    width: 100%;
    opacity: .5;
    transition: opacity 1s
}

.sidebar {
    position: fixed;
    z-index: 9999;
    width: 320px;
    height: 100%;
    right: -320px;
    top: 0;
    background: radial-gradient(circle, #ffffff, #a8e6ea);
    transition: right .4s ease;
    overflow: auto
}

.sidebar .d-flex.p-2 {
    background: linear-gradient(90deg, #0E979F 50.15%, #157B82 90.24%);
    padding: 10px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;

}

.sidebar .d-flex.p-2>div {
    display: flex;
    justify-content: end;
}

.sidebar .text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: inherit;
    text-align: center;
    background: #00bc54;
    letter-spacing: 1px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.sidebar .side-tel {
    font-size: .8rem
}

.sidebar .text a {
    color: #fff
}

.sidebar.show {
    right: 0
}

.sidebar div>ul {
    margin-bottom: 50px;
}


.sidebar ul {
    background: 0 0;
    height: auto;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0
}

.sidebar ul li {
    line-height: 50px;
    margin: 0
}

.sidebar ul li a {
    box-sizing: border-box;
    position: relative;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    padding-left: 30px;
    font-weight: 500;
    display: block;
    width: 100%
}
.sidebar ul li.parent>a {
    line-height:1.4;
    margin-bottom:10px;
}

.sidebar ul li.current_page_item a {
    color: #fff;
    background: #90d6d7;
}

.sidebar .dropdown-menu a.current_page_item {
    font-weight: 700;
}

.sidebar ul li a:hover {
    cursor: pointer;
}

.sidebar ul li.parent {
    position: relative;
    padding-top:10px;
}

.sidebar ul li.parent i {
    position: absolute;
    width: 1px;
    left: 35px;
    top: 50px;
    background-color: color(srgb 0.6068 0.8082 0.82);
    bottom: 10px;
}

.sidebar .dropdown-menu a {
    line-height: 1.3;
    font-weight: 400;
    padding-bottom: 10px;
    font-size: 18px;
}

.sidebar .dropdown-menu {
    padding-left: 30px;
}

/* ------------------------------------ */
/* sidemenu on left */
/* ------------------------------------ */

.sidemenu {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 40px;    
}

.left_side ul {
    margin: 0;padding: 0;list-style: none;
}

.left_side ul li {
    margin-bottom:20px;
    border-radius:10px;
    padding:15px;
    border:2px solid #90d6d7;
}
.left_side li > a {
    font-size:18px;
    font-weight:600;
    color: #000;
    text-decoration:none;
}
.left_side .dropdown-menu {
    padding-top:15px;
}
.left_side .dropdown-menu a {
    color:#108082;
    text-decoration:none;
    display:block;
    padding:5px 0;
    transition:all 0.5s ease;
    border:none;
}
.left_side .dropdown-menu a:hover {
    background: #e3f2f2;padding-left:10px;border-left:2px solid #90d6d7;
}
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.content li {
    margin-bottom: 10px;
}

@media (max-width:768px) {
    .sidemenu {
        grid-template-columns: 1fr;
    }
    .left_side {display:none;}
}

/*-----------------------------------------------------------*/
/* Breadcrumbs */
/*-----------------------------------------------------------*/

.bread {
    padding-top: 20px;
    text-align: right;
}
.breadcrumbs {
    padding: 0;margin: 0;list-style: none;
}
.breadcrumbs li {
    display:inline-block;
    margin:0 2px;
    font-size:14px;
}
.breadcrumbs a {
    color:#108082;
    text-decoration:none;
}

/*-----------------------------------------------------------*/
/* FAQ BLOCK */
/*-----------------------------------------------------------*/

.section_faq {
    background: #F5F5F5;
    padding: 100px 0;
}

.section_faq .wrap {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 30px;
}

.section_faq .wrap .a {
    background: url(/assets/images/footer.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 10px;
}

.section_faq .item {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.list-heading {
    position: relative;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
}
.priselist .list-heading {
    padding: 7px 15px;background-color: #c4e5e6;margin-bottom:7px;border-radius:5px;
}
.priselist .list-text tr:nth-child(odd) {
    background-color: #f4f4f4;
}
.priselist .list-text tr td {
    padding:0 10px !important;
}
.priselist .faq {
    margin-top:30px;
}
.priselist h2 {margin-top: 40px;}

.list-heading:before {
    background: #ff4d4d;
    content: '';
    height: 2px;
    margin-right: 37px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: rotate(-90deg);
    transition: all 0.2s ease-in-out;
    width: 14px;
}

.list-heading:after {
    background: #ff4d4d;
    content: '';
    height: 2px;
    margin-right: 37px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
}

.list-heading.active:before {
    transform: rotate(0deg);
}

.list-heading.active h4,
.list-heading:focus h4 {
    position: relative;
    color: #ff8383;
}

.list-text {
    display: none;
    overflow: hidden;
    margin-bottom: 0;
}

table.list-text {
    margin: 20px 0;
    background: #fff;
    border-radius: 10px;
}

table.list-text tbody tr:nth-child(2n) {
    padding: 10px;
    background-color: #b0f2f7;
}

table.list-text tbody td {
    padding: 10px;
}

@media (max-width:768px) {
    .section_faq {
        padding: 30px 0;
    }

    .section_faq .wrap .a {
        width: 100%;
        height: 250px;
    }

    .section_faq .wrap {
        grid-template-columns: 1fr;
    }

    .list-heading:after,
    .list-heading:before {
        margin-right: 5px;
    }

    .list-heading {
        padding-right: 35px;
    }
}

/* Появление слайдера */

.karusel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.karusel.slick-initialized {
    visibility: visible;
    opacity: 1;
}

.karusel img {
    display: none
}

.karusel.slick-initialized img {
    display: block
}

.slick-slide {
    transition: opacity 0.6s ease;
}

/*-------------
  CONTACTS
----------------*/

.section_why_us .contacts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    justify-items: center;
    margin: 40px 0;
    font-weight: 500;
    font-size: 30px;
}
.section_why_us .contacts.fon{
    border-radius: 10px;margin-bottom: 30px;margin-top: 30px;background-color: #e7fafc;padding:20px 0;
}

.section_why_us .contacts a {
    color: #000;
    text-decoration: none;
    display: flex;
}

.section_why_us .contacts a:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.section_why_us .contacts .tel a:before {
    background: url(/assets/images/phone-green.svg) no-repeat 0 0;
    background-size: contain;
}

.section_why_us .contacts .whatsapp a:before {
    background: url(/assets/images/whatsapp-green.svg) no-repeat 0 0;
    background-size: contain;
}

.section_why_us .contacts .email a:before {
    background: url(/assets/images/letter.svg) no-repeat 0 0;
    background-size: contain;
}
.content .section_why_us .contacts a {
    align-items: center;
    font-size:20px
}
@media (max-width:768px) {
    .section_why_us .contacts {
        grid-template-columns: 1fr;
        justify-items: start;
        margin: 30px 0 40px 0;
        font-size: 26px;
        gap: 20px;
    }
}

/* PAGINATION */

.pagination {
    padding:0;
    list-style:none;
    border:1px solid #ccc;
    border-radius:5px;
    display: inline-block;
    font-size: 20px;
    box-shadow: 2px 5px 7px -3px rgba(204, 204, 204, 0.76);
}
.pagination li {display: inline-block;margin:0;}
.pagination .page-link {
    padding: 5px 15px;
    border-right: 1px solid #ccc;
    text-decoration:none;
    display:block;
}
.pagination a {
   color:#108082
}
.pagination .active a {
    color: #9c9c9c;
    background-color:#e0e0e0;
}
.pagination a:hover {text-decoration:underline;}