

/* Start:/local/templates/lastochka/template_styles.css?177788547512901*/
@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;
}

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

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

:root {
    --color-primary: #005C32;
    --color-secondary: #FFD700;
    --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
   ======================================== */

html {
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
}
@media (min-width: 360px) {
.container {
    padding: 0 8px;
}
}
@media (min-width: 768px) {
.container {
    padding: 0 12px;
}
}
@media (min-width: 1024px) {
.container {
    padding: 0 16px;
}
}
@media (min-width: 1200px) {
.container {
    padding: 0 0;
}
}

.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);
}

.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;
    max-width: 200px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    text-decoration: none;
}
.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);
}
.header .btn.gold {
    margin: auto 0;
}

/* ========================================
   HEADER SECTION
   ======================================== */
.header {
    background: var(--color-gray);
    border-bottom: 1px solid var(--color-gray-dark);
    padding: 16px 0;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header__logo-img {
    height: 60px;
    width: auto;
}

.header__contacts {
    display: flex;
    gap: 60px;

}

.header__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: var(--color-text-light);
}

.header__phone {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.header__phone--primary {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Days One', sans-serif;
}

.header__phone--secondary {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Days One', sans-serif;
    white-space: nowrap;
}



.header__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: var(--color-text-light);
}

.header__info:first-child {
    align-items: flex-start;
}

.header__info:last-child {
    align-items: flex-end;
    text-align: right;
}

.header__email {
    color: #727272;
    font-weight:400;
    font-family: 'Lato', sans-serif;
}

.header__schedule {
    font-weight: 500;
    color: #727272;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.header__address {
    line-height: 1.3;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.header__phone-description {
    display: none;
}

.header__phone-description--mobile {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    text-align: start;
    line-height: 1.4;
    width: 100%;
}

.header__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header__social-icon {
    width: 30px;
    height: 30px;

    cursor: pointer;
}

.header__social-icon:hover {
    transform: translateY(-2px);
}

.header__social a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.header__social a:hover {
    transform: translateY(-2px);
}

.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;
}
}


@media screen and (max-width: 1919px) {

    .header__content {
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
    }
    .header__phone {
        white-space: nowrap;
    }
}


@media (max-width: 1024px) {
    .header {
        padding: 16px 0;
        gap: 40px;
        text-align: center;
        flex-direction: column;
    }
   .header__email {
    display: none;
   }
   .header__schedule {
    display: none;
   }
   .header__address {
    display: none;
   }
   .header__social {
    display: none;
   }
    .header__contacts{
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
 }
 .header__info {
     align-items: flex-start;
     width: 100%;
 }
 .header__info:first-child,
 .header__info:last-child {
     align-items: flex-start;
     text-align: start;
 }
 .header__phone {
     white-space: nowrap;
     text-align: start;
 }
 .header__phone-description--mobile {
     display: block;
     text-align: start;
 }
 .header__logo-img {
     height: 48px;
 }
 .header__logo {
     width: 123px;
     height: 32px;
 }
 .header__logo-img {
     width: 123px;
     height: 32px;
 }

}

@media (max-width: 767px) {
    .header__contacts{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .header__info {
        align-items: flex-start;
        width: 100%;
    }
    .header__info:first-child,
    .header__info:last-child {
        align-items: flex-start;
        text-align: start;
    }
    .header__phone {
        font-size: 14px;
        white-space: nowrap;
        text-align: start;
    }
    .header__phone-description--mobile {
        font-size: 11px;
        text-align: start;
        width: 100%;
    }

}

@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;
    padding: 80px 0;
    margin-top: 100px;
}
.footer__social{
    display: flex;
    gap: 10px;
}
.footer__content {
display: flex;
justify-content: space-between;
}

.footer__logo {
    text-align: left;
}

.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__info {
    display: flex;
    gap:20px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #ffffff;
}
.footer__contact.soc {
    gap: 10px;
}
.social-icon {
   text-decoration: none;
   outline: none;
   display: flex; 

}

.footer__address-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
}
.footer__phone {
    font-family: 'Days One', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.footer__hours {
    font-weight: 600;
    font-size: 18px;
}

.footer__address,
.footer__email,
.footer__days {
    color: rgba(255, 255, 255, 0.9);
}
.footer__address-text-container{
    display: flex;
    flex-direction: column;

}
.footer__conditions-text {
   font-size: 14px;
   font-weight: 400;
   color: #ffffff;
   font-family: 'Lato', sans-serif;
}
@media (max-width: 1024px) {
  .footer {
    padding: 60px 0;
  }
  .footer__content{
    flex-direction: column;
    gap: 20px;
    text-align: center;

  }
  .footer__info{
    flex-direction: column;
    gap: 20px;
    text-align:left;
    margin-bottom: 20px

  }
  .footer__address-text-container{
    display: flex;
   flex-direction: row;

}
}

@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        gap: 20px;
      
    }
    
    .footer__info {
        flex-direction: column;
    gap: 20px;
    text-align:left;
    margin-bottom: 20px
    }
    .footer {
        padding: 40px 0;
    }

}

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

@media (max-width: 360px) {
    .benefit-card__flags {
        font-size: 16px;
        gap: 4px;
    }
}
/* End */
/* /local/templates/lastochka/template_styles.css?177788547512901 */
