

/* Start:/local/templates/lastochka/template_styles.css?178824470321802*/
@font-face {
    font-family: 'Lato';
    src: url('/css/fonts/Lato/Lato-Heavy.woff2') format('woff2'),
         url('/css/fonts/Lato/Lato-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('/css/fonts/Lato/Lato-Semibold.woff2') format('woff2'),
         url('/css/fonts/Lato/Lato-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('/css/fonts/Lato/Lato-Medium.woff2') format('woff2'),
         url('/css/fonts/Lato/Lato-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('/css/fonts/Lato/Lato-Regular.woff2') format('woff2'),
         url('/css/fonts/Lato/Lato-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Days One';
    src: url('/css/fonts/DaysOne/DaysOne-Regular.woff2') format('woff2'),
         url('/css/fonts/DaysOne/DaysOne-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/css/fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
         url('/css/fonts/Montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   RESET AND VARIABLES
   ======================================== */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #005C32;
    --color-primary1: #00C269;
    --color-secondary: #FFD700;
    --color-green-light: #F0F5F3;
    --color-red: #C9150D;
    --color-text: #1C1C1C;
    --color-text-light: #727272;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #F7F8FA;
    --color-gray-dark: #E0E0E0;
    --color-blue: #0069B5;
    --font-primary: 'Days One', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --max-width: 1200px;
    --container-padding: clamp(16px, 4vw, 40px);
    --dy: 50px;
}
@media (min-width: 768px) {
:root {
    --dy: 60px;
}
}
@media (min-width: 1200px) {
:root {
    --dy: 100px;
}
}

/* ========================================
   BASE STYLES
   ======================================== */

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-text);
    overflow-x: hidden;

    background-color: #fff;
    width: 100%;
    min-width: 360px;
    margin: 0;
    box-sizing: border-box;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

/* ========================================
   CONTAINER STYLES
   ======================================== */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
}
@media (min-width: 360px) {
.container {
    width: calc(100% - 32px);
}
}
@media (min-width: 768px) {
.container {
    width: calc(100% - 64px);
}
}
@media screen and (min-width: 1200px) {
.container {
    width: 1200px;
}
}
    
.container_documents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.pd {
    padding-top: var(--dy);
    padding-bottom: var(--dy);
}
.mg {
  margin-top: var(--dy);
  margin-bottom: var(--dy);
}
.mgt {
  margin-top: var(--dy);
}
.mgb {
  margin-bottom: var(--dy);
}
.pdt {
  padding-top: var(--dy);
}
.pdb {
  padding-bottom: var(--dy);
}

.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}

.center {
    text-align: center;
}
.block_gray {
    background-color: var(--color-gray);
    border-radius: 20px;
}

.left_arrow {
    padding-left: 44px;
    background: url(/images/left_arrow.svg) no-repeat left center;
    background-size: 24px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 320px;
    height: 59px;
    padding: 0 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary1) 180.3%);
    white-space: nowrap;
    cursor: pointer;
}
.btn.icon {
    column-gap: 12px;
}
.btn.icon > img {
    width: 25px;
    height: 19px;
}
@media (min-width: 1200px) {
.btn {
    max-width: 330px;
    height: 66px;
    font-size: 20px;
}
}
/* .btn.gold {
    color: var(--color-text);
    background-color: #EECB78;
}
.btn.white {
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
} */

.sect_title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--color-primary);
    line-height: 1;
    font-family: 'Days One', sans-serif;
}
@media (min-width: 768px) {
.sect_title {
    font-size: 40px;
}
}
@media (min-width: 1200px) {
.sect_title {
    margin-bottom: 100px;
    font-size: 80px;
}
}


.sect_subtitle {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--color-text);
    line-height: 1.3;
}
.sect_title + .sect_subtitle {
    margin-top: -10px;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
.sect_subtitle {
    margin-bottom: 40px;
    font-size: 16px;
}
.sect_title + .sect_subtitle {
    margin-bottom: 40px;
}
}
@media (min-width: 1200px) {
.sect_subtitle {
    margin-bottom: 40px;
}
.sect_title + .sect_subtitle {
    margin-top: -60px;
    margin-bottom: 100px;
}
}



/* ========================================
   HEADER SECTION
   ======================================== */
.header {
    padding: 23px 0;
    position: relative;
    z-index: 100;
}
@media (max-width: 1199px) {
.header.open {
    background-color: #fff;
}
}
@media (min-width: 768px) {
.header {
    padding: 17px 0 18px;
}
}
@media (min-width: 1200px) {
.header {
    padding: 35px 0;
}
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
@media (min-width: 1200px) {
.header__content {
    align-items: flex-end;
    gap: 30px;
}
}
.header__logo {
    flex-shrink: 0;
    display: block;
    line-height: 0;
    margin: auto 0;
}

.header__logo-img {
    display: block;
    width: 117px;
    height: 30px;
}
@media (min-width: 768px) {
.header__logo-img {
    width: 183px;
    height: 48px;
}
}
@media (min-width: 1200px) {
.header__logo-img {
    width: 227px;
    height: 60px;
}
}

@media (max-width: 1199px) {
.mob_btns {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}
.header_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: max-content;
    height: 34px;
    margin: 0;
    padding: 0 10px;
    background-color: var(--color-primary);
    border-radius: 8px;
    border: 1px solid transparent;
    box-sizing: initial;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
}
@media (min-width: 768px) {
.mob_btns .header_btn.phone {
    display: none;
}
}
@media (min-width: 1200px) {
.mob_btns {
    display: none;
}
}

.header__phone {
    color: var(--color-primary);
    font-family: 'Days One', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.header__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text);
    white-space: nowrap;
}
.header__meta.c {
    flex-direction: column;
    row-gap: 4px;
}
@media (max-width: 767px) {
.header__meta.c {
    display: none;
}
.header__meta.ph:not(.c) {
    display: none;
}
.header__meta.ph.c .header__meta-text {
    font-size: 12px;
}
}
@media (max-width: 1199px) {
.header__meta.pc {
    display: none;
}
}

.header__meta-icon {
    display: block;
    width: 20px;
    height: 21px;
    flex-shrink: 0;
}
.header__meta-text {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
}
.header__meta-text.gr {
    font-size: 12px;
    color: var(--color-text-light);
}
@media (min-width: 1200px) {
.header__meta-text.gr {
    font-size: 9px;
}
}

.header_top_menu {
    display: flex;
    flex-direction: column;
    gap:24px 20px;
}
.header_top_menu .item {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 20px;
    color: #1C1C1C;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}
.header_top_menu .item.act {
    font-weight: 700;
    color: var(--color-primary);
}
.header_top_menu .item:not(.act):hover {
    color: var(--color-primary);
}
@media (max-width: 1199px) {
.header_top_menu .item::after {
    content: "";
    position: absolute;
    right: 0;
    top:calc(50% - 12px);
    width: 24px;
    height: 24px;
    background: url('/images/472685/arrow-down.svg') 50% 50% no-repeat transparent;
    background-size: 24px;
}
}
@media (min-width: 1200px) {
.header_top_menu {
    flex-direction: row;
}
.header_top_menu .item {
    font-size: 20px;
}
.header_top_menu .item:not(.act):hover:after {
    content: "";
    position: absolute;
    bottom:-7px;
    left:calc(50% - 10px);
    width: 20px;
    height: 1.5px;
    background-color: var(--color-primary);
}
}

.header__burger {
    display: none;
}
.header__menu {
    display: none;
}
@media (max-width: 1199px) {
.header__burger {
    display: flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin: auto 0;
    padding: 0;
    border: 0;
    background: url('/images/burger.svg') 50% 50% no-repeat transparent;
    background-size: 24px;
    cursor: pointer;
    line-height: 0;
}
.header__burger.open {
    background-image: url('/images/close.svg');
}
.header__menu {
    position: absolute;
    top: 100%;
    left: -16px;
    right: 0;
    width: 100vw;
    background: #fff;
    z-index: 101;
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.08);
}
.header__menu.open {
    display: block;
}
.header__menu .container {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
    padding: 20px 0;
}
.header__menu .header__meta {
    display: flex;
}
.header__menu .rank_block {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
}
@media (min-width: 768px) {
.header__menu {
    left: -32px;
}
}

@media (max-width: 1199px) {
     .prices__layout {
         flex-direction: column;
         gap: 20px;
     }
     .prices__layout_two {
           flex-direction: column-reverse;
           gap: 20px;
           padding: 0;
           margin-top: 100px;
      }
     .prices__img {
        width: auto;
        height: auto;
     }
     .prices__layout_two {
        margin-left: 120px;
     }
     .prices__center {
        margin-left: 16px;
    }
}

@media (max-width: 767px) {
     .prices__img {
        max-width: 450px;
        object-fit: contain;
     }
    .prices__layout_two {
           flex-direction: column-reverse;
           gap: 20px;
           padding: 0;
           margin-top: 60px;
       }
       .prices__layout_two {
        margin-left: 16px;
       }
}

@media (max-width: 480px) {
     .prices__img {
          max-width: 350px;
          object-fit: contain;
     }
     .prices__layout_two {
         flex-direction: column-reverse;
         gap: 16px;
         padding: 0;
         margin-top: 40px;
     }

}

@media (max-width: 359px) {
     .prices__img {
         max-width: 350px;
         object-fit: contain;
         padding-right: 20px;
     }
     
     .prices__image {
         justify-content: center;
     }
     
     .prices__layout {
         flex-direction: column;
         align-items: center;
         gap: 20px;
     }
     
     .prices__layout_two {
         flex-direction: column-reverse;
         align-items: center;
         gap: 16px;
         margin-top: 40px;
     }
     
     .prices__center {
         margin-left: 0;
     }
}

@media (max-width: 1400px) {
    .location__metro{
        display: flex;
        flex-direction: column;
    }
    .location__phone-container{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.footer {
    background: var(--color-primary);
    color: white;
}
.footer .container {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.footer__content {
    display: flex;
    flex-direction: column;
    gap:20px;
}
@media (min-width: 768px) {
.footer__content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
}
@media (min-width: 1200px) {
.footer .container {
    row-gap: 50px;
}
.footer__content {
    gap:20px 148px;
}
}

.footer__logo {
    width: 100%;
    text-align: left;
}
.footer_anhor_menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:20px 30px;
    width: 100%;
}
.footer_anhor_menu .item {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.1;
}
.footer_anhor_menu .item:not(.act) {
    cursor: pointer;
}
.footer_anhor_menu .item:not(.act):hover {
    text-decoration: underline;
}
.footer_anhor_menu .item:nth-child(2n-1) {
    width: calc(44% - 15px);
}
.footer_anhor_menu .item:nth-child(2n) {
    width: calc(56% - 15px);
}
.footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap:12px;
    width: 100%;
}
@media (min-width: 768px) {
.footer_anhor_menu {
    gap:12px 30px;
    width: calc(100% - 184px - 20px);
}
.footer_anhor_menu .item {
    font-size: 18px;
}
.footer__info {
    align-items: flex-start;
    width: 184px;
}
}
@media (min-width: 1200px) {
.footer__logo {
    width: 183px;
}
.footer_anhor_menu {
    gap:12px 150px;
    width: calc(100% - 363px - 300px);
}
.footer_anhor_menu .item:nth-child(2n-1) {
    width: calc(44% - 75px);
}
.footer_anhor_menu .item:nth-child(2n) {
    width: calc(56% - 75px);
}
.footer__info {
    width: 184px;
}
}


.footer__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.footer__subtitle {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #ffffff;
}
.footer__contact.soc {
    gap: 8px;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.social-icon {
   text-decoration: none;
   outline: none;
   display: flex; 
}
.footer__phone {
    font-family: 'Days One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.footer_conditions {
	display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer__conditions-text {
   font-size: 14px;
   font-weight: 400;
   color: #ffffff;
   font-family: 'Lato', sans-serif;
}
.footer__conditions-text a {
   font-size: inherit;
   font-weight: inherit;
   color: inherit;
   font-family: inherit;
   text-decoration: underline;
}



@media (max-width: 480px) {
    .benefit-card__flags {
        font-size: 18px;
        gap: 5px;
    }
}
@media (max-width: 360px) {
    .benefit-card__flags {
        font-size: 16px;
        gap: 4px;
    }
}


.links_block ._list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.links_block ._list .item {
    width: auto;
    display: flex;
    flex-direction: row;
    padding: 12px 20px;
    background-color: rgba(0, 92, 50, 0.1);
    border-radius: 20px;
    color: var(--color-primary);
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
}
.links_block ._list .item>a {
    color: var(--color-primary);
    text-decoration: none;
}


.precious_stones .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.precious_stones .container>div {
    width: 100%;
}
@media (min-width: 1200px) {
.precious_stones .container {
    flex-direction: row;
    height: 542px;
}
.precious_stones .container>div {
    width: calc(50% - 10px);
}
}
.precious_stones .container img {
    max-width: 100%;
    height: 100%;
    border-radius: 20px;
}

.precious_stones .container ._r {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
@media (min-width: 1200px) {
.precious_stones .container ._r {
    height: 100%;
}
}
.precious_stones .container ._r .sect_title {
    width: 100%;
    margin-bottom: 0;
    padding: 40px 20px;
    font-size: 18px;
}
@media (min-width: 1200px) {
.precious_stones .container ._r .sect_title {
    padding: 40px;
    font-size: 30px;
}
}
.precious_stones .container ._r div:nth-child(2),
.precious_stones .container ._r div:nth-child(3) {
    width: calc(50% - 10px);
}


.define_probe_free ._list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.define_probe_free ._list .item {
    width: 100%;
    padding: 44px 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.define_probe_free ._list .item > img {
    width: 40px;
    height: 40px;
}
.define_probe_free ._list .item ._text {
    font-size: 16px;
    line-height: 1.3;
}
@media (min-width: 768px) {
.define_probe_free ._list .item {
    width: calc(50% - 10px);
}   
}
@media (min-width: 1200px) {
.define_probe_free ._list .item {
    width: calc(33% - 10px);
}   
}


.benefits ._list .item.sect_title {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
}
.benefits ._list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.benefits ._list .item {
    width: 100%;
    padding: 44px 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.benefits ._list .item > img {
    width: 40px;
    height: 40px;
}
.benefits ._list .item ._text {
    font-size: 16px;
    line-height: 1.3;
}
@media (min-width: 768px) {
.benefits ._list .item {
    width: calc(50% - 10px);
}   
}

@media (min-width: 1200px) {
.benefits ._list .item.sect_title {
    width: calc(66% - 10px);
}
.benefits ._list .item {
    width: calc(33% - 10px);
}   
}


.purchase ._list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.purchase ._list .item {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.purchase ._list .item ._step {
    font-weight: 400;
    font-family: 'Days One', sans-serif;
    font-size: 40px;
    color: var(--color-primary);
    line-height: 1;
}
.purchase ._list .item .text_cont { 
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}
.purchase ._list .item ._title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
}
.purchase ._list .item ._text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
}

@media (min-width: 768px) {
.purchase ._list .item {
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}
.purchase ._list .item ._step {
    min-width: 77px;
    font-size: 50px;
    text-align: center;
}
.purchase ._list .item ._text {
    font-size: 16px;
}
}
@media (min-width: 1200px) {
.purchase ._list .item {
    padding: 24px 40px;
    column-gap: 40px;
}
.purchase ._list .item ._step {
    min-width: 124px;
    font-size: 80px;
}
.purchase ._list .item ._title {
    font-size: 30px;
}
.purchase ._list .item ._text {
    max-width: 690px;
    font-size: 18px;
}
}


.final_price ._list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.final_price ._list .item {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.final_price ._list .item ._top {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}
.final_price ._list .item > img {
    width: 40px;
    height: 40px;
}
.final_price ._list .item ._title {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.3;
}
.final_price ._list .item ._text {
    font-size: 16px;
    line-height: 1.3;
}
@media (min-width: 768px) {
.final_price ._list .item {
    width: calc(50% - 10px);
}   
}
@media (min-width: 1200px) {
.final_price ._list .item {
    width: calc(33% - 10px);
}   
}


.prices_silver .cont {
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.prices_silver .cont .item {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

@media (min-width: 1200px) {
.prices_silver .cont {
    padding: 24px 40px;
}
}

.prices_silver .list {
    display: flex;
    flex-direction: column;
    row-gap: 14px;

    max-width: 780px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    overflow-x: auto;
}
.prices_silver .list .item {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
}
@media screen and (min-width: 1200px) {
.prices_silver .list {
    max-width: 860px;
    margin-bottom: 40px;
    padding-bottom: 0;
}
.prices_silver .list .item {
    column-gap: 60px;
}
}
.prices_silver .list .item.th {
    margin-bottom: 16px;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
}
.prices_silver .list .item ._proba {
    width: 141px;
    min-width: 141px;
}
.prices_silver .list .item ._price {
    width: 241px;
    min-width: 241px;
}
.prices_silver .list .item ._prim {
    width: 344px;
    min-width: 344px;
}
.prices_silver ._bottom {
    max-width: 410px;
    font-size: 14px;
}
.prices_silver .list .item a {
	color:var(--color-text);
}
 
/* End */


/* Start:/css/style_for_main_472685.css?178782197921450*/
.sect_title {
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 30px;
    color: var(--color-text);
    line-height: 1;
}
@media (min-width: 1200px) {
.sect_title {
    margin-bottom: 40px;
    font-size: 60px;
}
}
.sect_subtitle {
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}
@media (min-width: 1200px) {
.sect_subtitle {
    margin-bottom: 40px;
    font-size: 20px;
}
}

.green_block {
    width: 100%;
    background-color: var(--color-green-light);
    border-radius: 20px;
}
    
.badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 45px;
    padding: 0 20px 0 48px;
    font-size: 16px;
    color: var(--color-primary);
    line-height: 1;
    border-radius: 25px;
    background-color: var(--color-green-light);
    background-repeat: no-repeat;
    background-position: 20px 50%;
    background-image: url(/images/472685/btn_icon_green.svg);
    background-size: 20px;
}

/*hero*/
.hero {
    height: 673px;
    position: relative;
}
.hero__image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% + 86px);
}    
.hero__image > img {
    object-fit: contain;
    object-position: right bottom;
    position: absolute;
    width: 100%;
    height: 100%;
}  
@media (min-width: 768px) {
.hero {
    height: 730px;
}
.hero__image > img {
    object-fit: cover;
    object-position: center bottom;
}
}
@media (min-width: 1200px) {
.hero {
    height: 704px;
}
.hero__image {
    width: 1440px;
    height: calc(100% + 118px);
}    
}

.hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 20px;
    padding-top: 30px;
}
.hero__title {
    font-family: 'Days One', sans-serif;
    font-weight: 400;
    font-size: 38px;
    color: var(--color-text);
    line-height: 1;
}
.hero__title b {
    font-weight: inherit;
    font-family: inherit;
    color: var(--color-primary);
}
.hero__title span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--color-primary);
}
.hero__title.red {
    color: var(--color-red);
}
.hero__subtitle {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.3;
}

@media (min-width: 768px) {
.hero__title {
    font-size: 80px;
    line-height: 0.9;
}
.hero__title span {
    font-size: 56px;
}
.hero__subtitle {
    max-width: 400px;
    font-size: 20px;
}
}
@media (min-width: 1200px) {
.hero__text {
    padding-top: 60px;
}
.hero__text {
    row-gap: 30px;
}
}
/* dots */
.dots {
    display: flex;
    justify-content: flex-start;
    column-gap: 8px;
    width: fit-content;
    height: 4px;
}
.dots .dot {
    width: 40px;
    height: 4px;
    background-color: #D7D7D7;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.dots .dot.act_after {
    background-color: var(--color-primary);
}
.dots .dot ._time {
    display: none;
}
.dots .dot.act ._time {
    display: block;
    position: absolute;
    top:0;
    left:0;
    /*width - уст. в js*/
    height: 4px;
    background-color: var(--color-primary);
    transition-property: width;
    transition-duration: 1s;
    transition-timing-function: ease-out;
}
/* End dots */
/*END hero*/

/*prices*/
.prices {
    position: relative;
}
@media (max-width: 767px) {
.prices .bg {
    display: none;
}
}
@media (min-width: 768px) {
.prices .bg {
    display: block;
    position: absolute;
    background-color: transparent;
    background-repeat: no-repeat;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.prices .bg {
    width: 317px;
    height: 318px;
    top:-90px;
    right:0;
    z-index: -2;
    background-position: right top;
    background-image: url('/images/472685/prices_bg_img_768.png');
    background-size: cover;
}
}
@media (min-width: 1200px) {
.prices {
    overflow: hidden;
}
.prices .bg {
    width: 932px;
    height: 646px;
    left: 0;
    bottom:140px;
    background-position: left bottom;
    background-image: url('/images/472685/prices_bg_img.png');
    background-size: contain;
}
}  

.prices .container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.prices ._l {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    width: 100%;
}
.prices ._cont {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.prices .__bottom {
    display: flex;
    flex-direction: row;
    column-gap: 42px;
    align-items: center;
    padding: 20px;
    font-size: 12px;
    line-height: 1.4;
    position: relative;
}
.prices .__bottom > img {
    width: 42px;
    height: 42px;
}
.prices .__bottom::after {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 40px);
    top:20px;
    left:78px;
    background-color: rgba(0, 92, 50, 0.3);
}

.prices .sect_title,
.prices .sect_subtitle {
    margin-bottom: 0;
}
.prices .sect_subtitle {
    margin-top: 0;
}
@media (max-width: 767px) {
.prices .sect_subtitle {
    padding: 0 15px;
    text-align: center;
}
}
@media (min-width: 768px) {
.prices ._bottom {
    font-size: 16px;
}
.prices ._bottom>div {
    max-width: 470px;
}
.prices ._l {
    align-items: flex-start;
    width: 459px;
}
}
@media (min-width: 1200px) {
.prices .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap:20px 60px;
    position: relative;
}
.prices ._l {
    row-gap: 30px;
    width: calc(100% - 681px - 60px);
}
.prices ._cont {
    width: 681px;
    padding: 40px;
}
.prices ._bottom {
    column-gap: 50px;
    padding: 24px 30px;
}
.prices ._bottom > img {
    width: 60px;
    height: 60px;
}
.prices ._bottom::after {
    height: calc(100% - 48px);
    top:24px;
    left:114px;
}
}

.prices ._list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.prices ._list .item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
}
.prices ._list .item:not(.th) + .item {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 92, 50, 0.3)
}
@media screen and (min-width: 1200px) {
.prices ._list {
    max-width: 100%;
}
}
.prices ._list .item.th {
    margin-bottom: 16px;
    font-weight: 800;
    font-size: 14px;
    color: var(--color-primary);
    line-height: 1.3;
    text-transform: uppercase;
}
.prices ._list .item ._proba {
    width: 50%;
}
.prices ._list .item ._proba>a {
    color: var(--color-text);
    text-decoration: none;
}
.prices ._list .item ._proba>a:hover {
    text-decoration: underline;
}
.prices ._list .item ._price {
    width: 50%;
    text-align: right;
}
.prices ._list .item:not(.th) ._price {
    font-weight: 700;
    font-size: 26px;
}
.prices ._list .item ._price>span {
    margin-right: 3px;
    font-weight: 500;
    font-size: 18px;
}
.prices ._list .item ._prim {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color:var(--color-text-light);
}

.prices .btn {
    margin: 0 auto;
}
/*END prices*/

/*serebro_types*/
.serebro_types .cont {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: url('/images/472685/serebro_bg_360.png') right bottom no-repeat #F1EDEB;
    background-size: contain;
}
.serebro_types ._l {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    max-width: 280px;
}
@media (min-width: 768px) {
.serebro_types .cont {
    background-image: url('/images/472685/serebro_bg.png');
    background-position-x: calc(100% + 100px);
    background-size: cover;
}
.serebro_types ._l {
    width: 50%;
    max-width: unset;
    align-items: flex-start;
}
}
@media (min-width: 1200px) {
.serebro_types .cont {
    row-gap: 30px;
    padding: 50px 50px;
    background-position-x: right;
}
}

.serebro_types .sect_title {
    margin-bottom: 0;
}
.serebro_types .sep {
    width: fit-content;
    max-width: 344px;
    height:36px;
}
.serebro_types .list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.serebro_types .list .item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
}
.serebro_types .list .item:not(.th) + .item {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 92, 50, 0.3)
}
.serebro_types .list .item.th {
    margin-bottom: 16px;
    font-weight: 800;
    font-size: 14px;
    color: var(--color-primary);
    line-height: 1.3;
    text-transform: uppercase;
}
.serebro_types .list .item ._proba {
    width: 100%;
}
.serebro_types .list .item ._proba>a {
    color: var(--color-text);
    text-decoration: none;
}
.serebro_types .list .item ._proba>a:hover {
    text-decoration: underline;
}
.serebro_types .list .item ._prim {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color:var(--color-text-light);
}
@media (max-width: 479px) {
.serebro_types .sep {
    width: 100%;
}
.serebro_types .list .item ._prim {
    max-width: 180px;
}
}

.serebro_types .btn {
    margin: 12px 0 0;
}
/*END serebro_types*/

/*evaluation*/
.evaluation {
    height: 556px;
    position: relative;
}
.evaluation .bg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
.evaluation {
    height: 690px;
}
.evaluation .bg {
    width: 1440px;
    right: calc(50% - 720px);
}
}
@media (min-width: 1440px) {
.evaluation {
    height: 913px;
}
.evaluation .bg {
    width: 1920px;
    right: calc(50% - 960px);
}
}
.evaluation .bg > img {
    object-fit: contain;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
}  

.evaluation ._l {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    width: 100%;
}
.evaluation .sect_title {
    margin-bottom: 0;
}
.evaluation ._list {
    position: relative;
    width: 329px;
    height: 426px;
    --cx: 170px;
    --cy: 255px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: calc(var(--cx) - 47px) calc(var(--cy) - 37px);
    background-image: url('/images/472685/ring_360.png');
    background-size: 155px;
}
@media (min-width: 768px) {
.evaluation ._list {
    width: 100%;
    max-width: 956px;
    height: 542px;
    --cx: 390px;
    --cy: 340px;
    background-position: calc(var(--cx) - 116px) calc(var(--cy) - 130px);
    background-image: url('/images/472685/ring.png');
    background-size: 300px;
}
}
@media (min-width: 1024px) {
.evaluation ._list {
    --cx: 500px;
    --cy: 330px;
    background-position: calc(var(--cx) - 98px) calc(var(--cy) - 121px);
}
}
@media (min-width: 1200px) {
.evaluation ._list {
    --cx: 475px;
    --cy: 290px;
    background-position: calc(var(--cx) - 74px) calc(var(--cy) - 110px);
}
}
@media (min-width: 1440px) {
.evaluation ._list {
    height: 752px;
    --cx: 475px;
    --cy: 430px;
    background-position: calc(var(--cx) - 89px) calc(var(--cy) - 145px);
    background-size: 394px;
}
}

.evaluation ._list .item {
    position: absolute;
    width: fit-content;
    padding: 12px 16px;
    font-size: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
.evaluation ._list .item {
    padding: 20px 24px;
    font-size: 16px;
    border-radius: 12px;
}
}
    
@media (max-width: 767px) {
.evaluation ._list .item:nth-child(1) {
    top:calc(var(--cy) - 255px);
    left:calc(var(--cx) - 170px);
}

.evaluation ._list .item:nth-child(2) {
    top:calc(var(--cy) - 180px);
    left:calc(var(--cx) - 80px);
}    
.evaluation ._list .item:nth-child(3) {
    top:calc(var(--cy) - 190px);
    left:calc(var(--cx) + 50px);
}    

.evaluation ._list .item:nth-child(4) {
    top:calc(var(--cy) - 120px);
    left:calc(var(--cx) - 160px);
}
.evaluation ._list .item:nth-child(5) {
    top:calc(var(--cy) - 120px);
    left:calc(var(--cx) + 20px);
}

.evaluation ._list .item:nth-child(6) {
    top:calc(var(--cy) + 30px);
    left:calc(var(--cx) - 160px);
}
.evaluation ._list .item:nth-child(7) {
    top:calc(var(--cy) + 40px);
    left:calc(var(--cx) + 80px);
}

.evaluation ._list .item:nth-child(8) {
    top:calc(var(--cy) + 100px);
    left:calc(var(--cx) - 60px);
}    
}
@media (min-width: 768px) {
.evaluation ._list .item:nth-child(1) {
    top:calc(var(--cy) - 120px);
    left:calc(var(--cx) + 177px);
}
.evaluation ._list .item:nth-child(2) {
    top:calc(var(--cy) + 100px);
    left:calc(var(--cx) - 160px);
}

.evaluation ._list .item:nth-child(3) {
    top:calc(var(--cy) - 230px);
    left:calc(var(--cx) - 130px);
}    
.evaluation ._list .item:nth-child(4) {
    top:calc(var(--cy) - 10px);
    left:calc(var(--cx) - 340px);
}

.evaluation ._list .item:nth-child(5) {
    top:calc(var(--cy) - 120px);
    left:calc(var(--cx) - 290px);
}
.evaluation ._list .item:nth-child(6) {
    top:calc(var(--cy) - 230px);
    left:calc(var(--cx) + 80px);
}    

.evaluation ._list .item:nth-child(7) {
    top:calc(var(--cy) - 0px);
    left:calc(var(--cx) + 220px);
}
.evaluation ._list .item:nth-child(8) {
    top:calc(var(--cy) + 100px);
    left:calc(var(--cx) + 50px);
}    
}
@media (min-width: 1440px) {
.evaluation ._list .item:nth-child(1) {
    top:calc(var(--cy) - 120px);
    left:calc(var(--cx) + 240px);
}
.evaluation ._list .item:nth-child(2) {
    top:calc(var(--cy) + 120px);
    left:calc(var(--cx) - 160px);
}

.evaluation ._list .item:nth-child(3) {
    top:calc(var(--cy) - 250px);
    left:calc(var(--cx) - 140px);
}    
.evaluation ._list .item:nth-child(4) {
    top:calc(var(--cy) + 10px);
    left:calc(var(--cx) - 400px);
}

.evaluation ._list .item:nth-child(5) {
    top:calc(var(--cy) - 120px);
    left:calc(var(--cx) - 350px);
}
.evaluation ._list .item:nth-child(6) {
    top:calc(var(--cy) - 250px);
    left:calc(var(--cx) + 90px);
}    

.evaluation ._list .item:nth-child(7) {
    top:calc(var(--cy) + 20px);
    left:calc(var(--cx) + 280px);
}
.evaluation ._list .item:nth-child(8) {
    top:calc(var(--cy) + 120px);
    left:calc(var(--cx) + 50px);
}    
}
/*END evaluation*/


/*we_give_money_for*/
.we_give_money_for .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.we_give_money_for .cont .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 590px;
    padding: 20px;
    overflow: hidden;
}
.we_give_money_for .cont .item img {
    position: absolute;
    top: 0;
    right: 0;
}
.we_give_money_for .cont .item:nth-child(2) img {
    top: 12px;
}
@media (max-width: 479px) {
.we_give_money_for .cont .item:nth-child(1) img {
    right: -40px;
    height: 100%;
}
.we_give_money_for .cont .item:nth-child(2) img {
    right: 7px;
    height: 145px;
}
}
.we_give_money_for .cont .item ._title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1;
    z-index: 1;
}
.we_give_money_for .cont .item ._list {
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.we_give_money_for .cont .item ._list .item_list {
    display: flex;
    align-items: center;
    height: 38px;
    padding-left: 34px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background: url(/images/clock.svg) 0 50% no-repeat transparent;
    background-size: 24px;
}
@media (min-width: 768px) {
.we_give_money_for .cont .item {
    gap: 30px;
    padding: 40px;
}
.we_give_money_for .cont .item ._title {
    font-size: 36px;
}
.we_give_money_for .cont .item ._list {
    gap: 10px;
}
.we_give_money_for .cont .item ._list .item_list {
    padding-left: 44px;
    font-size: 20px;
}
}
@media (min-width: 1200px) {
.we_give_money_for .cont {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.we_give_money_for .cont .item {
    width: calc(50% - 10px);
}
}
/*END we_give_money_for*/

/*how_rate*/
.how_rate .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    width: 100%;
}
@media (min-width: 768px) {
.how_rate .cont {
    row-gap: 30px;
}
}

.how_rate .sect_title {
    margin-bottom: 0;
}
.how_rate .sep {
    width: 100%;
    height:36px;
}
.how_rate .list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.how_rate .list .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    max-width: 584px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.how_rate .list .item img {
    width: 80px;
    height: 80px;
}
.how_rate .list .item ._r {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 6px;
    width: calc(100% - 80px - 20px);
    position: relative;
}
.how_rate .list .item ._r::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 60px;
    background-color: rgba(0, 92, 50, 0.3);
    top:calc(50% - 30px);
    left:-17px;
}
@media (min-width: 768px) {
.how_rate .list {
    gap: 30px;
}
.how_rate .list .item {
    padding: 10px 20px;
}
.how_rate .list .item img {
    width: 200px;
    height: 200px;
}
.how_rate .list .item ._r {
    row-gap: 14px;
    width: calc(100% - 200px - 30px);
}
.how_rate .list .item ._r::before {
    height: 80px;
    top:calc(50% - 40px);
    left:-25px;
}
}
@media (min-width: 1200px) {
.how_rate .list .item {
    width: calc(50% - 15px);
}
}    
.how_rate .list .item ._title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
}
.how_rate .list .item ._descr {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
}
@media (min-width: 768px) {
.how_rate .list .item ._title {
    font-size: 26px;
}
.how_rate .list .item ._descr {
    font-size: 16px;
}
}
/*END how_rate*/

/*why_choose*/
.why_choose .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 20px 16px;
}
@media (min-width: 768px) {
.why_choose .cont {
    row-gap: 30px;
    padding: 50px;
}
}
@media (min-width: 1200px) {
.why_choose .cont {
    padding: 50px 100px;
}
}

.why_choose .sect_title {
    margin-bottom: 0;
}
.why_choose .sect_title>span {
    color: var(--color-primary);
}
.why_choose .sep {
    width: 100%;
    height:36px;
}
.why_choose .bg {
    width: 100%;
    position: relative;
}
.why_choose .bg:after {
    content: "Чистка бесплатно!";
    position: absolute;
    left: 21px;
    top:calc(50% - 24px);
    max-width: min-content;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #1C1C1C;
}
@media (min-width: 768px) {
.why_choose .bg:after {
    left: 59px;
    top:calc(50% - 40px);
    font-size: 40px;
    line-height: 1;
}
}
@media (min-width: 1200px) {
.why_choose .bg:after {
    top:calc(50% - 60px);
    font-size: 60px;
}
}
.why_choose .bg>img {
    min-width: 100%;
    max-width: 100%;
}
.why_choose ._list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
    width: 100%;
}
.why_choose ._list .item_list {
    display: flex;
    align-items: center;
    row-gap: 16px;
    width: 100%;
    min-height: 24px;
    padding-left: 34px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    background: url(/images/clock.svg) 0 50% no-repeat transparent;
    background-size: 24px;
}
@media (min-width: 768px) {
.why_choose ._list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}
.why_choose ._list .item_list {
    width: calc(50% - 8px);
    min-height: 38px;
    padding-left: 44px;
    font-size: 20px;
}
}
/*END why_choose*/

/*offices*/
.offices .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}
@media (min-width: 768px) {
.offices .container {
    row-gap: 30px;
}
}
/*END offices*/

/*documents*/
.documents .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 50px 20px;
}
@media (min-width: 1200px) {
.documents .cont {
    row-gap: 30px;
    padding: 50px;
}
}
.documents .sect_title {
    margin-bottom: 0;
}
/*END offices*/
/*
.bring ._list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.bring ._list .item {
    width: 100%;
    height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    position: relative;
}
.bring ._list .item img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}
@media (min-width: 768px) {
.bring ._list {
    justify-content: center;
}
.bring ._list .item {
    width: calc(50% - 10px);
}
}
@media (min-width: 1200px) {
.bring ._list {
    justify-content: space-between;
}
.bring ._list .item:nth-child(-n+2) {
    width: calc(50% - 10px);
}
.bring ._list .item:nth-child(n+3) {
    width: calc(33% - 10px);
}
}
*/
/* End */
/* /local/templates/lastochka/template_styles.css?178824470321802 */
/* /css/style_for_main_472685.css?178782197921450 */
