.no-padding {
    padding: 0 !important; 
    margin: 0 !important; 
}

/* accordion */
.accordion-head {
    cursor: pointer;   
}
.accordion-body {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* section-title */
.section-title {
    position: relative;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
}
.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 34px;
    height: 2px;
    background: #3DB074;
}
.section-title.center {
    text-align: center;   
}
.section-title.center:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.section-title.white {
    color: #fff;   
}
.section-title.white:before {
    background: #fff;   
}
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 32px;
        line-height: 32px;
    }
}
@media screen and (max-width: 576px) {
    .section-title {
        font-size: 26px;
        line-height: 26px;
    }
}


/* button */
.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    height: 36px;
    padding: 0 26px;
    
    border-radius: 9px;
    background: var(--unnamed, #3DB074);
    
    border: 1px solid #3DB074;
    outline: none !important;
    
    
    color: #FFF;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.button:hover {
    color: #3DB074;
}

/* color change */
.color-change {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.color-change::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  bottom: 100%;
  background: -o-linear-gradient(top, #fff, #fff);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background: linear-gradient(to bottom, #fff, #fff);
  -webkit-transition: bottom 0.4s;
  -o-transition: bottom 0.4s;
  transition: bottom 0.4s;
  z-index: -1;
}
.color-change:hover::before {
  bottom: 0;
}



/* header */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #FFF;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(78, 78, 78, 0.15);
            box-shadow: 0px 4px 5px 0px rgba(78, 78, 78, 0.15);
    padding: 15px 0;
}
.header_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}

.header_logo {
    flex-shrink: 0;
}
.header_logo img {
    max-width: 82px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.header_content {
    width: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
}
.header_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}
.header_link {
    display: none;
}
.header_down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}

/* header search */
.header .ss-search-form__input {
    width: 230px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    
    padding: 8px 14px;
    border-radius: 9px;
    border: 1px solid #E4E4E4;
}
.header .ss-search-form__input input {
    width: 100%;
    
    border: none !important;
    outline: none !important;
    
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}
.header .ss-search-form__input input::-webkit-input-placeholder {
    color: #A6A7A7;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;  
}
.header .ss-search-form__input input::-moz-placeholder {
    color: #A6A7A7;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;  
}
.header .ss-search-form__input input:-ms-input-placeholder {
    color: #A6A7A7;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;  
}
.header .ss-search-form__input input::-ms-input-placeholder {
    color: #A6A7A7;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;  
}
.header .ss-search-form__input input::placeholder {
    color: #A6A7A7;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;  
}
.header .ss-search-form__input button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    border: none !important;
    outline: none !important;
    background: none !important;
}

.header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
}
.header_menu-item {
    cursor: pointer;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
}
.header_menu-item span {
    white-space: nowrap;
    
    color: #454545;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.header_menu-item svg path {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.header_menu-item:hover svg path {
    fill: var(--main-color);
}
.header_menu-item:hover {
    text-decoration: none;   
}
.header_menu-item:hover span {
    color: var(--main-color);
}
.header_menu-show {
    position: relative;
}
.header_menu-block {
    overflow: auto;
    max-height: 70vh;
    
    display: none;
    padding: 2px 0;
    position: absolute;
    top: 30px;
    left: 0px;
    width: auto;
    height: auto;
    background: #FFF;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(78, 78, 78, 0.15);
            box-shadow: 0px 4px 5px 0px rgba(78, 78, 78, 0.15);
    z-index: 20;
}
.header_menu-block a {
    display: block;
    padding: 6px 15px;
    white-space: nowrap;
    display: block;
    color: #454545;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    transition: 0.6s all;
}
.header_tel-first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.header_tel .header_tel-item {
    color: #454545;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    white-space: nowrap;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.header_tel-item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.header_tel-first svg:nth-last-child(1) path {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.header_tel-first:hover svg:nth-last-child(1) path {
    fill: var(--main-color);
}
@media screen and (max-width: 1300px) {
    .header_wrapper {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .header_menu {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .header_menu-item span {
        font-size: 14px;
        line-height: 16px;
    }
    .header_content {
        row-gap: 10px;
    }
    .header_tel-first svgsvg:nth-first-child(1) {
        width: 18px;
        height: 18px;
    }
    .header_tel .header_tel-item {
        font-size: 15px;
        line-height: 22px;
    }
    .button {
        height: 32px;
        padding: 0 20px;
    }
    .header .ss-search-form__input {
        -webkit-column-gap: 10px;
           -moz-column-gap: 10px;
                column-gap: 10px;
        padding: 6px 12px;
    }
}
@media screen and (max-width: 1200px) {
    .header {
        padding: 10px 0;   
    }
    .header_menu {
        display: none;
    }
    .header_content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .header_search {
        width: 100%;   
    }
    .header .ss-search-form__input {
        width: 100%;
    }
    .header_up {
        width: 100%;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .button {
        white-space: nowrap;
        max-width: 220px;
        width: 100%;
        height: 32px;
        padding: 0 20px;
    }
    .header_tel .header_tel-item {
        white-space: nowrap;
        font-size: 15px;
        line-height: 22px;
    }
    .header_logo img {
        max-width: 70px;
    }
}
@media screen and (max-width: 992px) {
    .header_wrapper {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .header_tel .header_tel-item {
        letter-spacing: 0.24px;
        font-size: 14px;
        line-height: 16px;
    }
    .button {
        max-width: 200px;
        width: 100%;
        font-size: 13px;
        line-height: 13px;
        height: 30px;
    }
    .header_logo img {
        max-width: 70px;
    }
}
@media screen and (max-width: 768px) {
    .header_button {
        display: none;   
    }
    .header_logo img {
        max-width: 60px;
    }
}
@media screen and (max-width: 576px) {
    .header_tel-first svg:nth-child(1) {
        width: 16px;
        height: 16px;
    }
    .header_search-input {
        display: none;   
    }
    .header_up {
        width: auto;
        -webkit-column-gap: unset;
           -moz-column-gap: unset;
                column-gap: unset;
    }
    .header_link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
    .header_link svg {
        width: 18px;
        height: 18px;
    }
    .header_tel .header_tel-item {
        letter-spacing: normal;
        font-size: 13px;
        line-height: 13px;
    }
}

/* burger */
.burger {
    display: none;
    height: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 10;
    cursor: pointer;
}
.burger span {
    display: block;
    width: 30px;
    height: 4px;
    background: var(--main-color);
    border-radius: 10px;
}
@media screen and (max-width: 1200px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
}

/* burger_menu */
.burger_menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: #FFF;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(78, 78, 78, 0.15);
            box-shadow: 0px 4px 5px 0px rgba(78, 78, 78, 0.15);
    z-index: 200;
    padding: 40px 30px;
    overflow: auto;
}
@media screen and (max-width: 576px) {
    .burger_menu {
        padding: 30px 20px;
        width: 90%;  
    }
}
.burger_menu-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.9);
    margin-bottom: 10px;
}
.burger_menu-title {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;   
}
.burger_menu-item {
    display: block;
    padding: 10px 0;
    
    white-space: nowrap;
    color: #454545;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    
    cursor: pointer;
}
.burger_menu-item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.burger_menu-close svg {
    width: 36px;
    height: 36px;
}
.burger_menu-accordion a {
    display: block;
    color: #454545;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all; 
}
.burger_menu-close {
    cursor: pointer;   
}
.burger_menu-close svg path {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;   
}
.burger_menu-close:hover svg path {
    stroke: var(--main-color);
}



/* contacts */
.contacts_info {
    margin-top: 56px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
        grid-template: auto / repeat(4, 1fr);
    gap: 26px;
}
.contacts_block {
    padding: 27px 15px;
    
    border-radius: 10px;
    border: 1px solid #E3E3E3;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
}
.contacts_img {
    position: relative;
    height: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;    
}
.contacts_img:before {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background: #E3E3E3;
}
.contacts_img svg {
    width: 32px;
    height: 32px;
}
.contacts_title {
    margin-bottom: 5px;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.contacts_item {
    display: block;
    
    color: #444;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
a.contacts_item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.contacts_map {
    margin-top: 26px;
    width: 100%;
    height: 478px;
    border-radius: 10px;
}
.contacts_map iframe {
    border-radius: 10px;
    width: 100%;
    height: 478px;
    border: none !important;
    outline: none !important;
}
.price_body-item td, .price_body td{
    border: 1px solid #151515;    
    padding: 5px 10px;
}
@media screen and (max-width: 1300px) {
    .contacts_info {
        margin-top: 50px;
        gap: 20px;
    }
    .contacts_block {
        padding: 26px 14px;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
}
@media screen and (max-width: 1200px) {
    .contacts_info {
        margin-top: 46px;
        gap: 10px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
            grid-template: auto / repeat(3, 1fr);
    }
    .contacts_map {
        margin-top: 20px;
    }
    .contacts_map iframe {
        height: 400px;   
    }
    .contacts_map {
        height: 420px;
    }
}
@media screen and (max-width: 900px) {
    .contacts_info {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr);
    }
    .contacts_map {
        height: 360px;
    }
}
@media screen and (max-width: 768px) {
    .contacts_map {
        margin-top: 10px;
    }
    .contacts_map iframe {
        height: 340px;   
    }
    .contacts_item {
        font-size: 14px;
        line-height: 18px;
    }
    .contacts_block {
        padding: 20px 14px;
    }
    .contacts_map {
        height: 320px;
    }
}
@media screen and (max-width: 526px) {
    .contacts_info {
        margin-top: 40px;
    }
    .contacts_info {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .contacts_map {
        height: 260px;
    }
}


/* Blog */
.blog__content {
    margin-top: 56px;
    
    display: -ms-grid;
    
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.blog__content.count {
    grid-template: auto / repeat(auto-fit, minmax(200px, 342px));   
}
.blog__card-img {
    position: relative;
}
.blog__card-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
}
.blog__card-img a {
    display: block;
    position: absolute;
    right: -12px;
    bottom: -12px;
    background: #fff;
    border-top-left-radius: 30px;
}
.blog__card-title {
    display: block;
    margin-top: 21px;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
a.blog__card-title:hover {
    color: var(--main-color);
    text-decoration: none;
}
.blog__card-date {
    position: relative;
    margin-top: 32px;
    
    color: #555;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
}
.blog__card-date:before {
    content: "";
    position: absolute;
    left: 0;
    top: -13px;
    width: 30px;
    height: 2px;
    background: #3DB074;
}
.blog__card-img a svg {
    width: 60px;
    height: 60px;
}
@media screen and (max-width: 1200px) {
    .blog__content {
        margin-top: 40px;
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    .blog__card-title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 768px) {
    .blog__content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
            grid-template: auto / repeat(2, 1fr);
        gap: 20px;
    }
    .blog__content.count {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr); 
    }
    .blog__card-title {
        margin-top: 14px;
        font-size: 14px;
        line-height: 16px;
    }
    .blog__card-img svg {
        width: 30px;
        height: 30px;
    }
    .blog__card-date {
        margin-top: 20px;
        font-size: 12px;
        line-height: 16px;
    }
    .blog__card-date:before {
        top: -6px;
    }
    .blog__card-img a svg {
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 420px) {
    .blog__content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .blog__content.count {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr; 
    }
    .blog__card-img img {
        max-height: 160px;
    }
    .blog__card-title2 {
        margin-top: 10px;
        font-size: 12px;
        line-height: 14px;
    }
    .med_content .blog__card-img a svg {
        width: 40px;
        height: 40px;
    }
    .med_content .blog__card-img a {
        right: -8px;
        bottom: -8px;
    }
}
@media screen and (max-width: 360px) {
    .blog__card-img img {
        max-height: 140px;
    }
}

/* Пагинация */
.pagination {
    margin: 60px auto 0;   
}
.pagination__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.pagination__list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 34px;
       -moz-column-gap: 34px;
            column-gap: 34px;
    border: 1px solid #DFDFDF;
    border-radius: 10px;
    padding: 13px 34px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pagination__item {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #444444;   
}
.pagination__list li.active > .pagination__item {
    color: var(--main-color);    
}
.pagination__arrow {
    width: 37px;
    height: 37px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #E8E8E8;
}

/* post */
.post_slider .slick-track{display:-webkit-box;display:-ms-flexbox;display:flex}
.post_slider .slick-slide{height:auto}
.post_slider .slick-track{margin-left:0}
@media screen and (max-width: 480px) {
    .slide_space .slick-slide{margin:0 16px}   
}
.slide_space .slick-list{margin:0 -16px}

.post-img {
    max-width: 396px;
    max-height: 247px;
    width: 100%;
    height: 100%;
    border-radius: 10px;   
}
.post_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}
.post-title {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    color: #151515;   
}
.post-subtitle {
    margin-top: 12px;
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #151515;   
}
.post-date {
    position: relative;
    margin-top: 28px;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #888888;
}
.post-date:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}
.post-text {
    margin-top: 30px;
    width: 100%;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    color: #151515;
}
.post-text p {
    margin-bottom: 10px;   
}
.post_slider {
    margin-top: 40px;   
}
@media screen and (max-width: 992px) {
    .post-img {
        max-width: 260px;
    }
    .post-title {
        font-size: 20px;
        line-height: 22px;
    }
    .post-subtitle {
        margin-top: 10px;
        font-size: 16px;
        line-height: 16px;
    }
    .post-date {
        font-size: 14px;
        line-height: 14px;
    }
}
@media screen and (max-width: 768px) {
    .post-img {
        max-width: 300px;
    }
    .post-title {
        font-size: 18px;
        line-height: 20px;
    }
    .post-subtitle {
        margin-top: 20px;
        font-size: 16px;
        line-height: 16px;
    }
    .post_up {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 20px;
    }
}

/* doc */
.doc_content {
    margin-top: 54px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 32px;
}
.doc_card {
    background: #FFF;
    border: 1px solid #EFEFEF;
    border-radius: 16px;
    
    
    display: -ms-grid;
    
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 232px 40px 1fr;
        grid-template: auto / 232px 1fr;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
    cursor: pointer;
}
.doc_card:hover {
    border: 1px solid var(--main-color);
}
.doc_card-img {
    height: 100%;   
}
.doc_card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.doc_card-info {
    padding: 30px 10px 30px 0; 
}
.doc_card-title {
    position: relative;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
.doc_card-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 34px;
    height: 2px;
    background: #3DB074;
}
.doc_card-prof {
    position: relative;
    margin-top: 36px;
    
    color: #555;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.doc_card-prof:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 170px;
    height: 1px;
    background: #EFEFEF;
}
.doc_card-prof p {
    margin-bottom: 8px;   
}
.doc_card-prof p:nth-last-child(1) {
    margin-bottom: 0;   
}
.doc_card-yers {
    margin-top: 34px;
    
    color: #555;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;      
}
.doc_card-yers p {
    margin-bottom: 8px;   
}
.doc_card-yers p:nth-last-child(1) {
    margin-bottom: 0;   
}
@media screen and (max-width: 1200px) {
    .doc_card {
        -ms-grid-rows: auto;
        -ms-grid-columns: 180px 20px 1fr;
            grid-template: auto / 180px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .doc_card-title {
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 992px) {
    .doc_content {
        margin-top: 46px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / repeat(1, 1fr);
        gap: 20px;
    }
    .doc_card {
        -ms-grid-rows: auto;
        -ms-grid-columns: 232px 30px 1fr;
            grid-template: auto / 232px 1fr;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
}
@media screen and (max-width: 768px) {
    .doc_content {
        margin-top: 40px;
        gap: 10px;
    }
    .doc_card {
        -ms-grid-rows: auto;
        -ms-grid-columns: 200px 20px 1fr;
            grid-template: auto / 200px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .doc_card-prof {
        margin-top: 30px;
        font-size: 13px;
        line-height: 14px;
    }
    .doc_card-yers {
        margin-top: 30px;
        font-size: 13px;
        line-height: 14px;
    }
}
@media screen and (max-width: 576px) {
    .doc_card {
        -ms-grid-rows: auto;
        -ms-grid-columns: 160px 20px 1fr;
            grid-template: auto / 160px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .doc_card-info {
        padding: 20px 10px 20px 0;
    }
    .doc_card-prof {
        margin-top: 24px;
        font-size: 12px;
        line-height: 12px;
    }
    .doc_card-yers {
        font-size: 12px;
        line-height: 12px;
    }
    .doc_card-prof:before {
        bottom: -15px;
        width: 100px;
    }
}
@media screen and (max-width: 398px) {
    .doc_card {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        border: none;
    }
    .doc_card-img img {
        max-height: 240px;
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain;
        border-top-left-radius: unset;
        border-bottom-left-radius: unset;
    }
    .doc_card-info {
        padding: 20px;
    }
    .doc_content {
        gap: 20px;
    }
    .doc_card-title {
        text-align: center;
    }
    .doc_card-title:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .doc_card-prof, .doc_card-yers {
        text-align: center;   
    }
    .doc_card-prof:before {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);  
    }
}

/* страница поиск */
.poisk__search {
    margin-top: 40px;   
}
.poisk__search .ss-search-form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.poisk__search .ss-search-form__input input {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid var(--main-color) !important;
    text-align: left;
    border-radius: 10px;
    width: 100%;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-edge: cap;
    color: #151515;
}
.poisk__search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-moz-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input:-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__submit {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    outline: none !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--main-color) !important;  
}
.poisk__search .ss-search-form__submit:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    background: var(--main-color);
    color: #fff;
}
.poisk__search .ss-search-form__submit svg path, .poisk__search .ss-search-form__submit svg circle {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.poisk__search .ss-search-form__submit:hover svg path, .poisk__search .ss-search-form__submit:hover svg circle {
    stroke: #fff;   
}
.poisk__result {
    margin-top: 40px;   
}
.poisk__result .ss-result {
    margin-top: 20px;   
}
.poisk__result p {
    font-family: IBM Plex Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #586667;
}
.poisk__result .ss-result__title a {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #151515;
    text-decoration: none;
}
.poisk__result .ss-result__title a:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    text-decoration: none;
    color: #BE2529;
}
.poisk__result .ss-result__text {
    margin-top: 10px;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #586667;
}
.poisk__result .ss-result__text mark {
    padding: 0.2em;
    color: #151515;
}
.poisk__result .ss-result__url a {
    margin-top: 12px;
    display: block;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--main-color);
    text-decoration: none;
}
.poisk__result .ss-result hr {
    margin-top: 20px;   
}
@media screen and (max-width: 576px) {
    .poisk__result {
        margin-top: 20px;
    }
    .poisk__result .ss-result__text {
        font-size: 14px;
        line-height: 20px;
    }
    .poisk__result .ss-result hr {
        margin-top: 10px;
    }
}

/* rew */
.rew_content {
    margin-top: 56px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 32px;
}
.rew_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.rew_links {
    border-radius: 10px;
    border: 1px solid #C0C0C0;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
}
.rew_link {
    position: relative;
    display: block;
    padding: 12px 24px 12px 24px;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 17px;
    line-height: 17px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.34px;
    text-transform: uppercase;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.rew_link:hover {
    color: var(--main-color);
    text-decoration: none;
}
.rew_link:nth-child(1):before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 16px;
    background: #C0C0C0;
}
.rew_card {
    padding: 40px 30px;
    border: 1px solid #EFEFEF;
    border-radius: 20px;
}
.rew_card-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}
.rew_card-title {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.012px;
}
.rew_card-body {
    padding-right: 10px;
    max-height: 180px;
    overflow: auto;
    
    margin-top: 20px;
    
    color: #777;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.01px;
}
.rew_card-body p {
    margin-bottom: 6px;   
}
.rew_card-body::-webkit-scrollbar {
    width: 2px;               
}
.rew_card-body::-webkit-scrollbar-track {
    background: #C4C4C4;   
}
.rew_card-body::-webkit-scrollbar-thumb {  
    border: none;
    background: #6B6B6B;
}
@media screen and (max-width: 1200px) {
    .rew_content {
        margin-top: 46px;
        gap: 20px;
    }
    .rew_card {
        padding: 30px;
    }
    .rew_card-head {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .rew_card-head svg {
        width: 50px;   
    }
    .rew_card-body {
        max-height: 140px;
        margin-top: 16px;
        font-size: 13px;
        line-height: 17px;
    }
    .rew_card-title {
        font-size: 16px;
        line-height: 17px;
    }
}
@media screen and (max-width: 992px) {
    .rew_content {
        margin-top: 40px;
        gap: 10px;
    }
    .rew_card {
        padding: 20px;
    }
    .rew_card-head svg {
        width: 46px;
    }
    .rew_card-title {
        font-size: 16px;
        line-height: 18px;
    }
    .rew_card-body {
    max-height: 120px;
        margin-top: 10px;
        font-size: 13px;
        line-height: 17px;
    }
}
@media screen and (max-width: 768px) {
    .rew_content {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .rew_link {
        padding: 10px 20px;
        font-size: 15px;
        line-height: 15px;
    }
}
@media screen and (max-width: 576px) {
    .rew_content {
        margin-top: 30px;
    }
    .rew_card-head svg {
        width: 40px;
        height: 40px;
    } 
    .rew_card-body {
        font-size: 12px;
    }
}

/* video */
.video_player_container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.main_video_player {
    flex: 2;
    min-width: 0;
}

.video_playlist {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.playlist_header {
    background: #00e3ff;
    color: #000;
    padding: 15px;
    font-weight: 500;
    font-size: 16px;
}

.playlist_items {
    max-height: 500px;
    overflow-y: auto;
}

.playlist_item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.playlist_item:hover {
    background: #f0f0f0;
}

.playlist_item.active {
    background: #fff8e6;
    border-left: 3px solid #ffa500;
}

.playlist_item_number {
    color: #666;
    font-size: 14px;
    margin-right: 10px;
    min-width: 20px;
}

.playlist_item_title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.playlist_item_duration {
    color: #666;
    font-size: 14px;
}

.video_wrapper_iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video_wrapper_iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


@media (max-width: 992px) {
    .video_player_container {
        flex-direction: column;
    }
    
    .main_video_player {
        margin-bottom: 20px;
    }
}

/* about */
.about_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 520px 100px 1fr;
        grid-template: auto / 520px 1fr;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.about_wrapper.switch {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 520px;
        grid-template: auto / 1fr 520px;
}
.about_img {
    height: 100%;   
}
.about_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.about_content {
    padding: 30px 0;   
}
.about_text {
    margin-top: 56px;
    
    color: #666;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.about_text ul {
    padding-left: 20px;   
}
.about_text p {
    margin-bottom: 8px;   
}
@media screen and (max-width: 1200px) {
    .about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 380px 60px 1fr;
            grid-template: auto / 380px 1fr;
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
    }
    .about_wrapper.switch {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 380px;
            grid-template: auto / 1fr 380px;
    }
    .about_text {
        margin-top: 46px;
        font-size: 17px;
        line-height: 23px;
    }
}
@media screen and (max-width: 992px) {
    .about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 300px 40px 1fr;
            grid-template: auto / 300px 1fr;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .about_wrapper.switch {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 300px;
            grid-template: auto / 1fr 300px;
    }
    .about_text {
        margin-top: 40px;
        font-size: 16px;
        line-height: 18px;
    }
}
@media screen and (max-width: 768px) {
    .about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        row-gap: 20px;
    }
    .about_wrapper.switch {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .about_img {
        display: none;   
    }
    .about_content {
        padding: 0;
    }
}
@media screen and (max-width: 576px) {
    .about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        row-gap: 20px;
    }
    .about_img {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        display: block;   
    }
    .about_img img {
        max-height: 240px;
    }
    .about_text {
        margin-top: 30px;
        font-size: 13px;
        line-height: 15px;
    }
}


/* prin */
.prin {
    position: relative;
    z-index: 1;
}
.prin_content {
    margin-top: 65px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
        grid-template: auto / repeat(4, 1fr);
    gap: 32px;
    
    background: #fff;
    padding-bottom: 55px;
    border-radius: 20px;
}
.prin_card-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.prin_card-img img {
    width: 92px;
    height: 92px;
    -o-object-fit: contain;
       object-fit: contain;
}
.prin_card-title {
    margin-top: 30px;
    
    color: #151515;
    text-align: center;
    font-family: IBM Plex Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;   
}
.prin_card-text {
    margin-top: 20px;
    
    color: #666;
    text-align: center;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
@media screen and (max-width: 1300px) {
    .prin_card-title {
        margin-top: 20px;
        font-size: 18px;
        line-height: 20px;
    }
    .prin_card-img img {
        width: 80px;
        height: 80px;
    }
    .prin_card-text {
        margin-top: 10px;
        font-size: 15px;
        line-height: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .prin_content {
        margin-top: 56px;
        gap: 20px;
    }
    .prin_card-img img {
        width: 72px;
        height: 72px;
    }
    .prin_card-title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 20px;
    }
    .prin_card-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 992px) {
    .prin_content {
        margin-top: 50px;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[3];
            grid-template: auto / repeat(3, 1fr);
    }   
}
@media screen and (max-width: 768px) {
    .prin_content {
        margin-top: 46px;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr);
    }   
}
@media screen and (max-width: 450px) {
    .prin_content {
        margin-top: 40px;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    } 
}

/* mission */
.misson {
    position: relative;
    height: 549px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.trans {
    -webkit-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
            transform: translateY(-80px);  
}
.misson_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    -webkit-filter: brightness(55%);
            filter: brightness(55%);
}
.mission_text {
    margin-top: 38px;
    max-width: 620px;
    
    
    color: #DEDEDE;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.mission_text p {
    margin-bottom: 8px;   
}
.mission_text.center {
    max-width: 691px;
    text-align: center;
    margin: 38px auto 0;
}
@media screen and (max-width: 1300px) {
    .trans {
        height: 500px !important;
    }
}
@media screen and (max-width: 992px) {
    .trans {
        height: 100% !important;
        padding: 140px 0 80px !important;
    }   
}
@media screen and (max-width: 768px) {
    .mission_text {
        font-size: 16px;
        line-height: 23px;
    } 
}
@media screen and (max-width: 576px) {
    .mission_text {
        margin-top: 30px !important;
        font-size: 14px;
        line-height: 16px;
} 
}

/* pagi */
.pagi {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.pagi .swiper-pagination-bullet {
    height: 6px;
    width: 3px;
    border-radius: 3px;
    background: #CACACA;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.pagi .swiper-pagination-bullet-active {
    height: 8px;
    width: 3px;
    border-radius: 3px;
    background: #3DB074;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}

/* goriz */
.goriz {
    margin-right: 30px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;  
}
@media screen and (max-width: 576px) {
    .goriz {
        margin-right: 0;   
    }
}
.goriz .swiper-pagination-bullet-active {
    height: 4px !important;
    width: 22px !important;
    border-radius: 3px !important;
    background: #fff !important;
    -webkit-transition: 0.4s all !important;
    -o-transition: 0.4s all !important;
    transition: 0.4s all !important;
}
.goriz .swiper-pagination-bullet {
    height: 4px;
    width: 14px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.50);
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 !important;   
}

/* swiper */
.swiper-button-next:after, .swiper-button-prev:after {
    content: none !important;   
}
.swiper-button-next {
    right: -46px;
    top: 50%;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    
    width: 40px;
    height: 40px;
}
.swiper-button-prev {
    left: -46px;
    top: 50%;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    
    width: 40px;
    height: 40px;
}
.swiper-button-next svg, .swiper-button-prev svg {
    width: 40px;
    height: 40px;
}
.swiper-button-next svg path, .swiper-button-prev svg path {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.swiper-button-next:hover svg path, .swiper-button-prev:hover svg path {
    stroke: var(--main-color);
}
.swiper-button-next svg circle, .swiper-button-prev svg circle {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.swiper-button-next:hover svg circle, .swiper-button-prev:hover svg circle {
    stroke: var(--main-color);
}
@media screen and (max-width: 1300px) {
    .swiper-button-next {
        right: -42px;
        width: 36px;
        height: 36px;
    }
    .swiper-button-prev {
        left: -42px;
        width: 36px;
        height: 36px;
    }
    .swiper-button-next svg, .swiper-button-prev svg {
        width: 36px;
        height: 36px;
    }
}
@media screen and (max-width: 1200px) {
    .swiper-button-next {
        right: -40px;
    }
    .swiper-button-prev {
        left: -40px;
    }   
}
@media screen and (max-width: 992px) {
    .swiper-button-next svg, .swiper-button-prev svg {
        width: 30px;
        height: 30px;
    }
    .swiper-button-next {
        right: -20px;
        width: 30px;
        height: 30px;
        -webkit-transform: translateY(40px);
            -ms-transform: translateY(40px);
                transform: translateY(40px);
    }
    .swiper-button-prev {
        left: -20px;
        width: 30px;
        height: 30px;
        -webkit-transform: translateY(40px);
            -ms-transform: translateY(40px);
                transform: translateY(40px);
    } 
    .lic_wrapper {
        padding: 0 20px;   
    }
}
@media screen and (max-width: 768px) {
    .lic_wrapper {
        padding: 0; 
    }
    .swiper-button-next {
        display: none;
    }
    .swiper-button-prev {
        display: none;  
    }  
}


/* lic */
.lic {
    padding: 0;   
}
.lic_wrapper {
    position: relative;   
}
.lic_content {
    margin-top: 64px;
    display: -ms-grid;
    display: grid;
}
.lic_card {
    position: relative; 
}
.lic_sub {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
}
.lic_img {
    position: absolute;
    left: 15px;
    top: 17px;
    width: calc(100% - 32px);
    height: calc(100% - 34px);
    -o-object-fit: fill;
       object-fit: fill;
    cursor: pointer;
}
@media screen and (max-width: 1300px) {
    .lic_img {
        left: 14px;
        top: 15px;
        width: calc(100% - 29px);
        height: calc(100% - 30px);
    }
}
@media screen and (max-width: 1200px) {
    .lic_content {
        margin-top: 56px;
    }   
}
@media screen and (max-width: 992px) {
    .lic_content {
        margin-top: 46px;
    } 
    .lic_img {
        left: 12px;
        top: 12px;
        width: calc(100% - 25px);
        height: calc(100% - 24px);
    }
    .pagi {
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px) {
    .lic_img {
        left: 9px;
        top: 10px;
        width: calc(100% - 19px);
        height: calc(100% - 20px);
    }
    .pagi {
        margin-top: 20px;
    }
}
@media screen and (max-width: 576px) {
    .lic_img {
        left: 8px;
        top: 9px;
        width: calc(100% - 16px);
        height: calc(100% - 17px);
    }
}

/* gallery */
.gallery_content {
    margin-top: 62px;
}
.gallery_card {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 364px;
    -ms-grid-columns: 1fr 9px 1fr 9px 1fr;
        grid-template: 364px / repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 9px;
}
.gallery_card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}
.gallery_card img:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: span 2;   
}
@media screen and (max-width: 1300px) {
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 330px;
        -ms-grid-columns: (1fr)[3];
            grid-template: 330px / repeat(3, 1fr);
        grid-auto-rows: 210px;
    }   
}
@media screen and (max-width: 1200px) {
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 284px;
        -ms-grid-columns: (1fr)[3];
            grid-template: 284px / repeat(3, 1fr);
        grid-auto-rows: 184px;
    }   
}
@media screen and (max-width: 992px) {
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 220px;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
            grid-template: 220px / repeat(3, 1fr);
        grid-auto-rows: 120px;
        gap: 10px;
    }   
}
@media screen and (max-width: 768px) {
    .gallery_content {
        margin-top: 30px;
    }
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 180px;
        -ms-grid-columns: 1fr 6px 1fr 6px 1fr;
            grid-template: 180px / repeat(3, 1fr);
        grid-auto-rows: 100px;
        gap: 6px;
    }
    .gallery_card img {
        border-radius: 10px;
    }
}
@media screen and (max-width: 576px) {
    .gallery_content {
        margin-top: 20px;
    }
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 120px;
        -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
            grid-template: 120px / repeat(3, 1fr);
        grid-auto-rows: 60px;
        gap: 4px;
    }   
}

/* layout */
.layout {
    position: relative;
    height: calc(100vh - 102px);
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.layout__content {
    position: relative;
    z-index: 2;
    display: inline-block;
}
.layout_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.layout_bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: brightness(50%);
            filter: brightness(50%);
}
.layout_bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.title {
    color: #FFF;
    font-family: IBM Plex Sans;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 66px;
    text-transform: uppercase;
}
.subtitle {
    margin-top: 22px;
    
    color: #fff;
    font-family: IBM Plex Sans;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.layout .subtitle a {
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
}
.layout .subtitle a:hover {
    opacity: 0.85;
}
.layout_button {
    margin-top: 30px;
    height: 47px;
}
@media screen and (max-width: 1300px) {
    .layout {
        height: calc(100vh - 98px);
    }
}
@media screen and (max-width: 1200px) {
    .layout {
        height: calc(90vh - 82px);
    }
    .title {
        font-size: 48px;
        line-height: 48px;
    }
    .subtitle {
        margin-top: 20px;
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (max-width: 992px) {
    .layout {
        height: calc(80vh - 76px);
    }
    .title {
        font-size: 40px;
        line-height: 40px;
    }
    .subtitle {
        margin-top: 20px;
        font-size: 16px;
        line-height: 20px;
    }
    .layout_button {
        height: 42px;
        padding: 0 30px;
        font-size: 13px;
    }
}
@media screen and (max-width: 768px) {
    .layout {
        height: calc(70vh - 66px);
    }
    .title {
        font-size: 36px;
        line-height: 38px;
    }
    .layout_button {
        margin-top: 20px;
        height: 40px;
        padding: 0 20px;
        font-size: 13px;
    }
}
@media screen and (max-width: 576px) {
    .layout {
        height: calc(60vh - 54px);
    }
    .title {
        font-size: 28px;
        line-height: 30px;
    }
    .subtitle {
        width: 95%;
        margin-top: 13px;
        font-size: 13px;
        line-height: 14px;
    }
}

/* ser */
.ser_content {
    margin-top: 60px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
        grid-template: auto / repeat(4, 1fr);
    gap: 32px;
}
.ser_card {
    padding: 42px 18px 34px 32px;
    
    border-radius: 15px;
    border: 1px solid #EFEFEF;
    background: #FFF;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 25px;
}
.ser_card:hover {
    border: 1px solid var(--main-color);     
}
.ser_card-img img {
    width: 72px;
    height: 72px;
    -o-object-fit: contain;
       object-fit: contain;
}
.ser_card-title {
    margin-top: 24px;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}
.ser_card-text {
    margin-top: 9px;
    
    color: #666;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.ser_card-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    
    cursor: pointer;
}
.ser_card-link span {
    color: #31AFE4;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    text-transform: uppercase;   
}
.ser_card-link svg {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.ser_card-link:hover svg {
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
}
@media screen and (max-width: 1300px) {
    .ser_content {
        margin-top: 56px;
        gap: 20px;
    }
    .ser_card {
        padding: 32px 16px 32px 28px;
    }
}
@media screen and (max-width: 1200px) {
    .ser_content {
        margin-top: 50px;
        gap: 20px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
            grid-template: auto / repeat(3, 1fr);
    }
    .ser_card {
        padding: 32px 16px 32px 28px;
    }
}
@media screen and (max-width: 992px) {
    .ser_card {
        padding: 30px 20px;
        row-gap: 20px;
    }
    .ser_card-img img {
        width: 60px;
        height: 60px;
    }
    .ser_card-title {
        margin-top: 18px;
        font-size: 16px;
        line-height: 20px;
    }
    .ser_card-text {
        margin-top: 8px;
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 768px) {
    .ser_content {
        margin-top: 46px;
        gap: 10px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr;
            grid-template: auto / repeat(2, 1fr);
    }
    .ser_card-link span {
        font-size: 13px;
        line-height: 18px;
    }
}
@media screen and (max-width: 500px) {
    .ser_card {
        padding: 24px 16px;
    }
    .ser_content {
        margin-top: 40px;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }   
}

/* price */
.price_content {
    margin-top: 63px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
}
.price_card {
    border-radius: 10px;
    border: 1px solid #E3E3E3;
    background: #FFF;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.price_card.active {
    border: 1px solid var(--main-color);
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.price_head {
    position: relative;
    padding: 25px 0;
    margin: 0 30px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.price_head span {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
}
.price_head:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #E3E3E3;
    -webkit-transition: 0.8s all;
    -o-transition: 0.8s all;
    transition: 0.8s all;
}
.price_head.active:before {
    -webkit-transition: 0.8s all;
    -o-transition: 0.8s all;
    transition: 0.8s all;
    width: 100%;
}
.price_head svg {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    transition: 0.6s all;
}
.price_head.active svg {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: 0.6s all;
    -o-transition: 0.6s all;
    transition: 0.6s all;
}
.price_body-item:nth-child(1) {
    padding: 28px 30px 18px;       
}
.price_body-item:nth-last-child(1) {
    padding: 18px 30px 28px;       
}
.price_body-item {
    padding: 18px 30px;   
}
.price_body-title {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.price_body-value {
    margin-top: 12px;
    
    color: var(--unnamed, #3DB074);
    font-family: IBM Plex Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
@media screen and (max-width: 1200px) {
    .price_head {
        padding: 20px 0;
        margin: 0 20px;
    }
    .price_body-item:nth-child(1) {
        padding: 24px 30px 16px;
    }
    .price_body-item:nth-last-child(1) {
        padding: 16px 30px 24px;
    }
    .price_body-item {
        padding: 16px 30px;
    }
    .price_body-title {
        font-size: 16px;
        line-height: 20px;
    }
    .price_body-value {
        margin-top: 10px;
        font-size: 19px;
        line-height: 20px;
    }
    .price_content {
        margin-top: 56px;
    }
}
@media screen and (max-width: 992px) {
    .price_head span {
        font-size: 17px;
        line-height: 20px;
    }
    .price_body-item:nth-child(1) {
        padding: 20px 30px 14px;
    }
    .price_body-item:nth-last-child(1) {
        padding: 14px 30px 20px;
    }
    .price_body-item {
        padding: 14px 30px;
    }
    .price_body-title {
        font-size: 15px;
        line-height: 18px;
    }
    .price_body-value {
        margin-top: 10px;
        font-size: 18px;
        line-height: 18px;
    }
    .price_content {
        margin-top: 46px;
    }
}
@media screen and (max-width: 768px) {
    .price_body-item:nth-child(1) {
        padding: 20px 20px 14px;
    }
    .price_body-item:nth-last-child(1) {
        padding: 14px 20px 20px;
    }
    .price_body-item {
        padding: 14px 20px;
    }
    .price_head svg {
        width: 18px;
        height: 12px;
    }
    .price_content {
        margin-top: 40px;
        row-gap: 6px;
    }
    .price_body-title {
        font-size: 14px;
        line-height: 16px;
    }
    .price_body-value {
        margin-top: 8px;
        font-size: 17px;
        line-height: 17px;
    }
}

/* call */
.call {
    position: relative;
    padding: 0;
    height: 549px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.call_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    -webkit-filter: brightness(50%);
            filter: brightness(50%);
}
.call_bg.less {
   -webkit-filter: brightness(80%);
        filter: brightness(80%); 
}
.call_text {
    margin-top: 38px;
    
    color: #F0F0F0;
    text-align: center;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}

/* call form */
.callForm {
    margin-top: 25px;
}
.callForm-data {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 48px;
    -ms-grid-columns: 200px 15px 200px 15px 200px;
        grid-template: 48px / repeat(3, 200px);
    gap: 15px;
    
    -webkit-box-pack: center;
    
        -ms-flex-pack: center;
    
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.callForm-data div {
    height: 100%;   
}
.callForm-data input {
    width: 100%;
    height: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    padding: 0 25px;
    
    border-radius: 10px;
    background: rgba(33, 33, 33, 0.5);
    
    border: none !important;
    outline: none !important;
    
    color: #fff;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.callForm-data input::-webkit-input-placeholder {
    color: #E1E1E1;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.callForm-data input::-moz-placeholder {
    color: #E1E1E1;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.callForm-data input:-ms-input-placeholder {
    color: #E1E1E1;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.callForm-data input::-ms-input-placeholder {
    color: #E1E1E1;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.callForm-data input::placeholder {
    color: #E1E1E1;
    font-family: IBM Plex Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.callForm_button {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1300px) {
    .call {
        height: 500px;
    }
}
@media screen and (max-width: 1200px) {
    .call {
        height: 420px;
    }
    .call_text {
        margin-top: 32px;
        font-size: 14px;
        line-height: 18px;
    }
    .callForm-data {
        -ms-grid-rows: 42px;
        -ms-grid-columns: 200px 10px 200px 10px 200px;
            grid-template: 42px / repeat(3, 200px);
        gap: 10px;
    }
    .callForm-data input {
        padding: 0 20px;
        font-size: 14px;
    }
    .callForm-data input::-webkit-input-placeholder {
        font-size: 14px;
    }
    .callForm-data input::-moz-placeholder {
        font-size: 14px;
    }
    .callForm-data input:-ms-input-placeholder {
        font-size: 14px;
    }
    .callForm-data input::-ms-input-placeholder {
        font-size: 14px;
    }
    .callForm-data input::placeholder {
        font-size: 14px;
    }
}
@media screen and (max-width: 992px) {
    .callForm {
        margin-top: 20px;
    }
    .callForm-data {
        -ms-grid-rows: 42px;
        -ms-grid-columns: (1fr)[3];
            grid-template: 42px / repeat(3, 1fr);
    }
    .callForm-data input {
        padding: 0 18px;
    }
}
@media screen and (max-width: 576px) {
    .call {
        padding: 50px 0;
        height: 100%;
    }
    .callForm-data {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto  / repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    .callForm-data input {
        height: 42px;   
    }
    .callForm_button {
        height: 42px;
        -ms-grid-column-span: 2;
        grid-column: span 2;
        -ms-grid-column-align: end;
            justify-self: end;
    }
}
@media screen and (max-width: 376px) {
    .call_text {
        margin-top: 26px;
        font-size: 11px;
        line-height: 15px;
    }
    .callForm-data {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto  / repeat(1, 1fr);
        grid-auto-rows: auto;
    }
    .callForm-data input {
        height: 40px;   
    }
    .callForm_button {
        height: 40px;   
        grid-column: unset;
    }
}

/* sim */
.sim_content {
    margin-top: 55px;
    display: -ms-grid;
    display: grid;
}
.sim_card-img img {
    width: 100%;
    max-height: 200px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
}
.sim_card-title {
    margin-top: 21px;
    padding-bottom: 16px;
    position: relative;
    
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.sim_card-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 30px;
    height: 2px;
    background: var(--main-color);
}
@media screen and (max-width: 1200px) {
    .sim_content {
        margin-top: 50px;
    }
    .sim_card-img img {
        max-height: 180px;
    }
    .sim_card-title {
        margin-top: 16px;
        padding-bottom: 14px;
        font-size: 15px;
        line-height: 20px;
    }
}
@media screen and (max-width: 992px) {
    .sim_content {
        margin-top: 46px;
    }
    .sim_card-img img {
        max-height: 140px;
    }
    .sim_card-title {
        margin-top: 14px;
        padding-bottom: 12px;
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 600px) {
    .sim_content {
        margin-top: 40px;
    }
    .sim_card-img img {
        max-height: 120px;
    }
    .sim_card-title {
        margin-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
        line-height: 14px;
    }   
}

/* osm */
.osm {
    padding: 0;   
}
@media screen and (max-width: 1200px) {
    .osm {
        height: 420px;
    }   
}
@media screen and (max-width: 992px) {
    .osm {
        height: 100%;
        padding: 80px 0;
    }
    .osm-text {
        margin-top: 38px;
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (max-width: 576px) {
    .osm {
        height: 100%;
        padding: 50px 0;
    }
    .osm-text {
        margin-top: 30px;
        font-size: 13px;
        line-height: 18px;
    }
}

/* pres */
.pres {
    margin-top: 65px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 267px 45px 1fr;
        grid-template: auto / 267px 1fr;
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
}
.pres .price_content {
    margin-top: 0;   
}
.pres_cat {
    padding: 0 24px;
    
    -ms-flex-item-align: start;
    
        -ms-grid-row-align: start;
    
        align-self: start;
    
    border-radius: 10px;
    border: 1px solid #EEE;
    background: #FFF;
}
.pres_cat-head {
    padding: 20px 0 18px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    
    border-bottom: 1px solid #DEDEDE;
}
.pres_cat-head svg {
    width: 17px;
    height: 17px;
    -o-object-fit: contain;
       object-fit: contain;
}
.pres_cat-head span {
    color: #151515;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;   
}
.pres_cat-item {
    display: block;
    padding: 16px 0;
    
    color: #444;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
    
    border-bottom: 1px solid #DEDEDE;
}
.pres_cat-item:hover {
    text-decoration: none;
    color: var(--main-color);
}
.pres_cat-item:nth-child(1) {
    padding: 25px 0 16px;   
}
.pres_cat-item:nth-last-child(1) {
    border-bottom: unset;
}
.pres_cat-item.active {
    color: var(--main-color);    
}
.pres_button {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    
    width: 60px;
    height: 60px;
    background: #31AFE4;
    
    border-radius: 100%;
    
    
    -webkit-box-align: center;
    
    
        -ms-flex-align: center;
    
    
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    cursor: pointer;
    z-index: 1000;
}
.pres_button svg {
    width: 24px;
    height: 24px;
}
@media screen and (max-width: 1200px) {
    .pres {
        margin-top: 56px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 240px 30px 1fr;
            grid-template: auto / 240px 1fr;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .pres_cat-item:nth-child(1) {
        padding: 20px 0 14px;
    }
    .pres_cat {
        padding: 0 20px;
    }
    .pres_cat-item {
        padding: 14px 0;
    }
}
@media screen and (max-width: 992px) {
    .pres {
        margin-top: 46px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 220px 20px 1fr;
            grid-template: auto / 220px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .pres_cat-head {
        padding: 16px 0 14px;
        -webkit-column-gap: 10px;
           -moz-column-gap: 10px;
                column-gap: 10px;
    }
    .pres_cat-item:nth-child(1) {
        padding: 16px 0 12px;
    }
    .pres_cat-item {
        padding: 12px 0;
        
        font-size: 15px;
        line-height: 15px;
    }
}
@media screen and (max-width: 992px) {
    .pres_cat {
        position: fixed;
        left: -100%;
        top: 0;
        width: 50%;
        background: #fff;
        height: 100vh;
        z-index: 500;
        border-radius: unset;
        -webkit-transition: 0.6s all;
        -o-transition: 0.6s all;
        transition: 0.6s all;
    }
    .pres_cat.active {
        left: 0;
        -webkit-transition: 0.6s all;
        -o-transition: 0.6s all;
        transition: 0.6s all;
    }
    .pres {
        margin-top: 40px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .pres_button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
}
@media screen and (max-width: 576px) {
    .pres_cat {
        width: 90%;
    }
    .pres_button {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .pres_button svg {
        width: 20px;
        height: 20px;
    }
}


/* prodForm */
.prod_form-title {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #151515;
}
.prod_form-decsr {
    margin-top: 12px;
    
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}
.prodForm {
    margin-top: 24px;   
}
.prodForm-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 17px;
}
.prodForm-data input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    width: 100%;
    padding: 10px 18px;
    height: 50px;
    background: #F8F8F8;
    border-radius: 4px;
    border: none !important;
    outline: none !important;   
}
.prodForm-data input::-webkit-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input::-moz-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input:-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input::-ms-input-placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input::placeholder {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #151515;   
}
.prodForm__button {
    margin-top: 24px;
    height: 50px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* modal */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 200;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 780px;
    max-width: 92%;
    height: auto;
    z-index: 500;
}
.modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
}
.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 10;
}
.modal-close svg {
    width: 34px;
    height: 34px;
}

/* prod_form as modal content */
.prod_form.modal-content {
    padding: 0;
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 280px 1fr;
    grid-template-columns: 280px 1fr;
}

/* левая промо-колонка */
.prod_form-promo {
    position: relative;
    min-height: 100%;
}
.prod_form-promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.prod_form-promo-overlay {
    position: absolute;
    inset: 0;
    background: -webkit-linear-gradient(bottom, rgba(21,21,21,0.92) 0%, rgba(21,21,21,0.55) 55%, rgba(21,21,21,0.75) 100%);
    background: linear-gradient(0deg, rgba(21,21,21,0.92) 0%, rgba(21,21,21,0.55) 55%, rgba(21,21,21,0.75) 100%);
}
.prod_form-promo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #FFF;
    font-family: IBM Plex Sans;
}
.prod_form-promo-logo {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.prod_form-promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
}
.prod_form-promo-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 18px;
}
.prod_form-promo-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--main-color);
}
.prod_form-promo-list li:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.prod_form-promo-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
}
.prod_form-promo-stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.prod_form-promo-stat-num {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
}
.prod_form-promo-stat-text {
    font-size: 12px;
    color: #D1D1D1;
}

/* правая колонка с формой */
.prod_form-side {
    padding: 40px 36px;
}

.prod_form-note {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    font-family: IBM Plex Sans;
    font-size: 12px;
    color: #999999;
}
.prod_form-note svg {
    width: 14px;
    height: 14px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
}

/* адаптив */
@media screen and (max-width: 992px) {
    .prod_form-title {
        font-size: 20px;
        line-height: 24px;
    }
    .prodForm-data {
        row-gap: 12px;
    }
    .prodForm__button {
        margin-top: 20px;
        height: 40px;
    }
}
@media screen and (max-width: 768px) {
    .modal-content {
        width: 420px;
    }
    .prod_form.modal-content {
        display: block;
    }
    .prod_form-promo {
        min-height: 160px;
    }
    .prod_form-promo-content {
        padding: 18px 20px;
    }
    .prod_form-promo-list {
        display: none;
    }
    .prod_form-side {
        padding: 24px 20px 30px;
    }
}
@media screen and (max-width: 576px) {
    .modal-content {
        width: 90%;
    }
    .prod_form-promo {
        min-height: 130px;
    }
    .modal-close {
        right: 6px;
        top: 6px;
    }
    .modal-close svg {
        width: 30px;
        height: 30px;
    }
}


/* med */
.med_content {
    margin-top: 56px;
    display: -ms-grid;
    display: grid;
}
.med_card-img img {
    width: 100%;
    height: 262px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 1200px) {
    .med_content {
        margin-top: 50px;
    }
}
@media screen and (max-width: 992px) {
    .med_content {
        margin-top: 46px;
    }
    .med_card-img img {
        height: 240px;   
    }
}
@media screen and (max-width: 768px) {
    .med_content {
        margin-top: 40px;
    }
    .med_card-img img {
        height: 200px;   
    }
}

/* serDoc_content */
.serDoc_content {
    margin-top: 55px;
    display: -ms-grid;
    display: grid;
}
@media screen and (max-width: 1200px) {
    .serDoc_content {
        margin-top: 50px;
    }
}
@media screen and (max-width: 992px) {
    .serDoc_content {
        margin-top: 46px;
    }
}
@media screen and (max-width: 768px) {
    .serDoc_content {
        margin-top: 40px;
    }
}

/* otz */
.otz_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 100px 666px;
        grid-template: auto / 1fr 666px;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.otz_block {
    padding: 30px 0;   
}
.otz-text {
    margin-top: 52px;
    
    color: #666;
    font-family: IBM Plex Sans;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.68px;
}
.otz_btns {
    margin-top: 34px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.otz_btns a {
    height: 47px;   
}
.otz_content {
    height: 100%;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 26px 1fr;
        grid-template: auto / repeat(2, 1fr);
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
}
.otz_body-text {
    max-height: 320px; 
}
@media screen and (max-width: 1200px) {
    .otz_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 60px 540px;
            grid-template: auto / 1fr 540px;
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px
    }
    .otz_content {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
}
@media screen and (max-width: 992px) {
    .otz_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        row-gap: 40px
    }
    .otz_content {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .otz_block {
        padding: 0;
    }
    .otz-text {
        margin-top: 40px;
        font-size: 15px;
        line-height: 20px;
    }
    .otz_btns {
        margin-top: 20px;
    }
    .otz_btns a {
        height: 40px;   
    }
}
@media screen and (max-width: 768px) {
    .otz_body-text {
        max-height: 260px; 
    }
}
@media screen and (max-width: 576px) {
    .otz_body-text {
        max-height: 148px; 
    }
    .otz-text {
        margin-top: 30px;
        font-size: 13px;
        line-height: 17px;
    }
    .otz_content {
        -ms-grid-rows: 240px;
        -ms-grid-columns: (1fr)[1];
            grid-template: 240px / repeat(1, 1fr);
        grid-auto-rows: 240px;
        row-gap: 20px;
    }
    .otz_wrapper {
        row-gap: 20px;
    }
}

/* homeAb_button */
.homeAb_button {
    margin-top: 30px;
    height: 47px;
    max-width: 200px;
    
    background: #fff;
    color: var(--main-color);
}
.homeAb_button:hover {
    background: var(--main-color);
     color: #fff;
     text-decoration: none;
}
@media screen and (max-width: 768px) {
    .homeAb_button {
        margin-top: 20px;
        height: 40px;
        max-width: 160px;
    }
}

/* footer */
.footer_gray {
    background: #373737;   
}
.footer_head {
    padding: 22px 0;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
}
.footer_head-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
}
.footer_head-title {
    color: #B3B3B3;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;   
}
.footer_head-tels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
            
    flex-wrap: wrap;
    row-gap: 10px;
}
.footer_head-tel {
    color: #FFF;
    font-family: IBM Plex Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.footer_head-tel:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.footer_social-item img {
    width: 38px;
    height: 38px;
    -o-object-fit: contain;
       object-fit: contain;
}
.footer_black {
    background: #292929;   
}
.footer_wrapper {
    padding-top: 56px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
a.footer_title {
    display: block;   
}
.footer_title {
    margin-bottom: 20px;
    white-space: nowrap;
    
    color: #FFF;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
a.footer_title:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_med {
    display: block;
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
}
.footer_med .footer_item {
    display: block;
    margin-bottom: 10px;
    -webkit-column-break-inside: avoid;
            break-inside: avoid;
}

.footer_block-spravki {
    max-width: 220px;
}
.footer_spravki {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
}
.footer_spravki .footer_item {
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    color: #9A9A9A;
}
.footer_spravki .footer_item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 1px;
    background: #565656;
}
.footer_spravki .footer_item:hover {
    color: var(--main-color);
}

@media screen and (max-width: 992px) {
    .footer_med {
        columns: 1;
    }
    .footer_block-spravki {
        max-width: none;
    }
}
.footer_item {
    color: #C0C0C0;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
a.footer_item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
}
.footer_under {
    margin-top: 86px;
    position: relative;
    padding-bottom: 20px;
}
.footer_under:before {
    content: "";
    position: absolute;
    left: 0;
    top: -18px;
    width: 100%;
    height: 1px;
    background: #313131;
}
.footer_under span {
    color: #D1D1D1;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.footer_under a {
    color: #D1D1D1;
    font-family: IBM Plex Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}
@media screen and (max-width: 1300px) {
    .footer_wrapper {
        padding-top: 50px;
        -webkit-column-gap: 100px;
           -moz-column-gap: 100px;
                column-gap: 100px;
    }
    .footer_under {
        margin-top: 60px;
    }
}
@media screen and (max-width: 1200px) {
    .footer_wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 20px;
    }
}
@media screen and (max-width: 992px) {
    .footer_wrapper {
        padding-top: 40px;
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
    }
    .footer_head-title {
        font-size: 14px;
        line-height: 16px;
    }
    .footer_head-left {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .footer_head-tels {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .footer_head-tel {
        font-size: 14px;
        line-height: 16px;
    }
    .footer_head {
        padding: 16px 0;
    }
}
@media screen and (max-width: 768px) {
    .footer_block-menu {
        display: none;   
    }
    .footer_head-left {
        row-gap: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
}
@media screen and (max-width: 768px) {
    .footer_head {
        row-gap: 20px;
    }
    .footer_social-item img {
        width: 30px;
        height: 30px;
    }
    .footer_wrapper {
        padding-top: 30px;
        -webkit-column-gap: 50px;
           -moz-column-gap: 50px;
                column-gap: 50px;
    }
    .footer_title {
        margin-bottom: 10px;
    }
}

/* fixed */
.fixed {
    position: fixed;
    right: 30px;
    bottom: 30px;
    
    z-index: 100;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
}
.fixed svg {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 576px) {
    .serDoc-pagination {
        display: none;   
    }
}

body #bingc-phone-button svg.bingc-phone-button-circle
circle.bingc-phone-button-circle-inside {
fill: #007bff !important;
}
body #bingc-phone-button:hover svg.bingc-phone-button-circle
circle.bingc-phone-button-circle-inside {
fill: #007bff !important;
}

body #bingc-phone-button div.bingc-phone-button-tooltip
{
background: #007bff !important;
}
body #bingc-phone-button div.bingc-phone-button-tooltip
svg.bingc-phone-button-arrow polyline
{
fill: #007bff !important;
}

body #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-passive-get-phone-form
form.bingc-passive-get-phone-form a.bingc-passive-phone-form-button {
 background: #007bff!important;
}
body #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-passive-get-phone-form
form.bingc-passive-get-phone-form a.bingc-passive-phone-form-button:hover {
 background: #007bff!important;
}
body #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-passive-get-phone-form
form.bingc-passive-get-phone-form a.bingc-passive-phone-form-button {
 background: #007bff!important;
}
body #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-passive-get-phone-form
form.bingc-passive-get-phone-form a.bingc-passive-phone-form-button:hover {
 background: #007bff!important;
}
body #bingc-active div.bingc-active-overlay div.bingc-active-content div.bingc-active-get-phone-form form.bingc-active-get-phone-form
a.bingc-active-phone-form-button {
 background: #007bff!important;
}
body #bingc-active div.bingc-active-overlay div.bingc-active-content div.bingc-active-get-phone-form form.bingc-active-get-phone-form
a.bingc-active-phone-form-button:hover {
 background: #007bff !important;
}


.lang {
    min-width: 38px;
    display: flex;
    position: relative;
    padding-right: 9px;
}

select {
    color: inherit;
    background-color: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    min-width: 38px;
    cursor: pointer;
}

.select-arr {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-55%);
}

.header_up-right{
    display:flex;
    gap:10px;
    align-items:center;
    margin-left:7px;
}

.hr-brand-section {
  padding: 60px 0;
  background: #fff;
}
.hr-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hr-card {
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 30px;
  background: #FAFAFA;
}
.hr-card-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}
.hr-card-photo {
  text-align: center;
  min-width: 220px;
  max-width: 220px;
}
.hr-card-photo img {
  width: 100%;
  border-radius: 12px;
}
.hr-card-name {
  font-weight: 600;
  font-size: 16px;
  margin-top: 12px;
}
.hr-card-title {
  font-size: 14px;
  color: #666;
}
.hr-card-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 768px) {
  .hr-card-content {
    flex-direction: column;
    align-items: center;
  }
  .hr-card-text {
    text-align: justify;
  }
}


.block.block--reverse .block__body {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .block.block--reverse .block__body {
    flex-direction: column;
  }
}
.block__body {
  display: flex;
  align-items: center;
  margin: 0 -50px;
}
@media (max-width: 992px) {
  .block__body {
    flex-direction: column;
    align-items: start;
    row-gap: 30px;
  }
}
.block__image {
  flex: 0 0 50%;
  padding: 0 50px;
}
@media (max-width: 992px) {
  .block__image {
    max-width: 500px;
  }
}
.block__image img {
  width: 100%;
  border-radius: 20px;
}
.block__content {
  flex: 1 1 50%;
  padding: 0 50px;
}
.block__image-logo {
  width: 280px !important;
  margin-left: 110px;
}
@media (max-width: 992px) {
  .block__image-logo {
    margin-left: 0;
  }
}
.block--text-only .block__body {
  margin: 0;
}
.block--text-only .block__content {
  flex: 1 1 100%;
  max-width: 920px;
  padding: 0;
}
.block--text-only {
  padding-top: 10px;
  padding-bottom: 10px;
}
.block__title {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .block__title {
    margin-bottom: 15px;
  }
}
.block__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #777;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 480px) {
  .block__text {
    font-size: 14px;
  }
}

.breadcrumbs {
  padding: 16px 0 8px;
  margin-top: 102px;
}
.breadcrumbs--below-banner {
  margin-top: 0 !important;
  padding: 20px 0;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
}
@media (max-width: 1300px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}
@media (max-width: 1200px) {
  .breadcrumbs {
    margin-top: 76px;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-top: 67px;
  }
}
@media (max-width: 576px) {
  .breadcrumbs {
    margin-top: 62px;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.4;
  color: #777;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #bbb;
}
.breadcrumbs__link {
  color: #2f8f6b;
  text-decoration: none;
}
.breadcrumbs__link:hover,
.breadcrumbs__link:focus,
.breadcrumbs__link:visited {
  color: #2f8f6b;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}
.breadcrumbs__item--current {
  color: #333;
}

.seo-text {
  padding: 60px 0;
}
.seo-text__block + .seo-text__block {
  margin-top: 48px;
}
.seo-text .section-title {
  margin-bottom: 24px;
}
.seo-text .about_text a {
  color: #2f8f6b;
}

.header_menu-block-featured {
  font-weight: 600;
  color: #2f8f6b !important;
}

.spravki-hub {
  padding: 60px 0 20px;
}
.spravki-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1200px) {
  .spravki-hub__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .spravki-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .spravki-hub__grid {
    grid-template-columns: 1fr;
  }
}
.spravki-hub__card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.spravki-hub__img {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}
.spravki-hub__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.spravki-hub__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.spravki-hub__text {
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.spravki-hub__btn {
  align-self: flex-start;
}
.layout .subtitle ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
  text-align: left;
}
.layout .subtitle li {
  margin: 4px 0;
}
.client-questions {
  padding: 24px 0 64px;
}
.client-questions__text {
  max-width: 900px;
  margin: 0 auto;
  color: #c62828;
  font-size: 16px;
  line-height: 1.5;
}
.client-questions__text p {
  margin: 0 0 8px;
}
.about_text h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}
.about_text ul,
.about_text ol {
  margin: 10px 0 10px 1.2em;
  padding: 0;
}
.about_text li {
  margin: 4px 0;
}
.spravki-faq {
  padding: 40px 0 80px;
}
.spravki-faq__list {
  max-width: 900px;
  margin: 32px auto 0;
}
.spravki-faq__item {
  margin-bottom: 12px;
}
.spravki-faq .about_text {
  margin-top: 0;
}
.spravki-faq .price_body-item:nth-child(1),
.spravki-faq .price_body-item:nth-last-child(1),
.spravki-faq .price_body-item {
  padding: 16px 30px 24px;
}
@media (max-width: 1200px) {
  .spravki-faq .price_body-item:nth-child(1),
  .spravki-faq .price_body-item:nth-last-child(1),
  .spravki-faq .price_body-item {
    padding: 14px 20px 20px;
  }
}

.spravki-page section.block {
  padding-top: 56px;
}
.spravki-page section.block:first-of-type {
  padding-top: 48px;
}
.spravki-page .spravki-hub {
  padding: 56px 0 24px;
}
.spravki-page .serDoc {
  padding-top: 56px;
}
.spravki-page .call.section {
  margin-top: 64px;
}
@media (max-width: 1200px) {
  .spravki-page section.block {
    padding-top: 48px;
  }
  .spravki-page section.block:first-of-type {
    padding-top: 40px;
  }
  .spravki-page .serDoc {
    padding-top: 48px;
  }
  .spravki-page .call.section {
    margin-top: 56px;
  }
}
@media (max-width: 768px) {
  .spravki-page section.block {
    padding-top: 36px;
  }
  .spravki-page section.block:first-of-type {
    padding-top: 32px;
  }
  .spravki-page .serDoc {
    padding-top: 36px;
  }
  .spravki-page .call.section {
    margin-top: 48px;
  }
}

.spravki-page .about_text a,
.spravki-page .block__content a,
.spravki-page .spravki-hub__text a {
  color: #2f8f6b;
}
.spravki-page .about_text a:hover,
.spravki-page .block__content a:hover,
.spravki-page .spravki-hub__text a:hover {
  text-decoration: underline;
}

.img-placeholder {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  background: #fafafa;
  box-sizing: border-box;
}
.block__image .img-placeholder {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}
.spravki-page .block__image--placeholder .img-placeholder {
  width: 100%;
  max-width: 100%;
  padding: 48px 40px;
  min-height: 260px;
}
@media (max-width: 992px) {
  .spravki-page .block__image--placeholder {
    max-width: 100%;
    width: 100%;
  }
  .spravki-page .block__image--placeholder .img-placeholder {
    min-height: 200px;
    padding: 40px 32px;
  }
}
.spravki-hub__img .img-placeholder {
  width: 100%;
  height: 100%;
}
.about_img .img-placeholder {
  max-width: 100%;
}

.modal-content {
    width: 780px;
    max-width: 92%;
}

.prod_form {
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 280px 1fr;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
}

/* левая промо-колонка */
.prod_form-promo {
    position: relative;
    min-height: 100%;
}
.prod_form-promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.prod_form-promo-overlay {
    position: absolute;
    inset: 0;
    background: -webkit-linear-gradient(bottom, rgba(21,21,21,0.92) 0%, rgba(21,21,21,0.55) 55%, rgba(21,21,21,0.75) 100%);
    background: linear-gradient(0deg, rgba(21,21,21,0.92) 0%, rgba(21,21,21,0.55) 55%, rgba(21,21,21,0.75) 100%);
}
.prod_form-promo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #FFF;
    font-family: IBM Plex Sans;
}
.prod_form-promo-logo {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.prod_form-promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
}
.prod_form-promo-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 18px;
}
.prod_form-promo-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--main-color);
}
.prod_form-promo-list li:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.prod_form-promo-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
}
.prod_form-promo-stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.prod_form-promo-stat-num {
    font-size: 22px;
    font-weight: 600;
    color: var(--main-color);
}
.prod_form-promo-stat-text {
    font-size: 12px;
    color: #D1D1D1;
}

/* правая колонка с формой */
.prod_form-side {
    padding: 40px 36px;
}
.prod_form-title {
    font-family: IBM Plex Sans;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #151515;
}
.prod_form-decsr {
    margin-top: 12px;
    font-family: IBM Plex Sans;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}
.prodForm {
    margin-top: 24px;
}

.prod_form-note {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    font-family: IBM Plex Sans;
    font-size: 12px;
    color: #999999;
}
.prod_form-note svg {
    width: 14px;
    height: 14px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 420px;
    }
    .prod_form {
        display: block;
    }
    .prod_form-promo {
        min-height: 160px;
    }
    .prod_form-promo-content {
        padding: 18px 20px;
    }
    .prod_form-promo-list {
        display: none; /* на мобиле прячем, чтобы не растягивать модалку */
    }
    .prod_form-side {
        padding: 24px 20px 30px;
    }
}
@media screen and (max-width: 576px) {
    .modal-content {
        width: 90%;
    }
    .prod_form-promo {
        min-height: 130px;
    }
}