html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 200px;
    height: 120px;
}

.logo__img {
    width: 160px;
    height: 120px;
}

.section-title {
    margin-bottom: 50px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.section-title__main {
    padding-top: 80px;
    padding-bottom: 70px;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    width: 900px;
    border-top: 2px solid #386b4b;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
}

.container__tabs {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 10px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

/* Section Header */

.header {
    background-color: #151515;
}

.header-main {
    background-color: transparent;
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
}

.header__inner {
    padding-top: 40px;
    padding-bottom: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__list {
    display: flex;
    gap: 35px;
}

.menu__list-link {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}


.menu__list-link:hover {
    color: #386b4b;
    transition: all 0,4s;
    text-decoration: underline;
}

/* Section Main */

.main {
  flex-grow: 1;
}

.top {
  color: white;
  text-align: center;
  padding-top: 250px;
  padding-bottom: 50px;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;

}

.title {
  /* padding-bottom: 40px; */
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 0;
} 

.secondary__title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 33px;
}

.what__do {
    padding-top: 100px;
    padding-bottom: 20px;
}

.what__do-title {
    padding-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.what__do-text {
    text-align: justify;
    max-width: 850px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 30px;
    margin-top: 30px;
    text-indent: 25px;
} 

.what__do-text__main {
    width: 600px;
    margin: 0 auto;
}


.what__do-text__big {
    color: #151515;
    font-size: 20px;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 700;
}

.what__do-text__little {
    text-align: center;
    padding-bottom: 3px;
    max-width: 850px;
    margin: 0 auto;
}

.what__do-text__little-stroke {
  margin: 0 auto;
  width: 900px;
  text-align: center;
  padding-bottom: 100px;
  border-bottom: 2px solid #386b4b;
}

/* Section Slider main page */

.swiper::after {
    content: '';
    background: rgba(21, 21, 21, .6);
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

.swiper-pagination-bullet {
    width: 120px;
    height: 3px;
    background-color: white;
    border-radius: 30px;
    opacity: 1;
    margin: 0 15px !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 50px;
}

.swiper-pagination-bullet-active {
    height: 6px;
    background-color: #151515;
}

/* Section Why lease */

.why-lease {
  padding: 140px 0;
}

.why-lease__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.why-lease__item-img {
  margin-bottom: 30px;
  width: 150px;
  height: 150px;
}

.why-lease__item-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

.why-lease__item-text {
  text-align: center;
}


/* Section How does */

.how-does {
  padding-bottom: 100px;
}

.how-does__inner {
  max-width: 900px;
  margin: 0 auto;
}

.how__does-title {
  font-size: 24px;
  font-weight: 700;
  padding-top: 50px;
  text-align: center;
}

.how__does-list {
  padding: 50px 0 70px;
  counter-reset: myCounter;
  text-align: center;
}

.how-does__text {
  text-align: justify;
  text-indent: 20px;
  margin: 0 auto;
  width: 900px;
}

/* Section Footer */

.footer {
    background-color: #151515;
    padding: 50px 0 32px;
    color: white;
}

.footer__menu {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.footer__menu-list {
    max-width: 250px;
}

.footer__menu-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 20px;
}

.footer__menu-item + .footer__menu-item {
    padding-top: 20px;
}

.footer__menu-item:hover {
    color: #386b4b;
    text-decoration: underline;
    transition: all 0.4s;
}

.app {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 52px;
}

.list-reset {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 30px;
} 

.footer__copy {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.copy__nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.copy__nav-link:hover {
    color: #386b4b;
    text-decoration: underline;
}

/* Page Contacts */

.contacts {
    padding: 100px 0 100px;
}

.contacts__title {
    margin-bottom: 20px;
}

.contacts__text {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 50px;
    padding: 0 100px;
}

.contacts__phone {
    padding-bottom: 20px;
}

.phone__title {
    margin-bottom: 35px;
    margin-top: 70px;
}

.contacts__item-contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.contacts__value-phone {
    font-size: 24px;
    font-weight: 700;
    background-color: #e3e1e1;
    padding: 15px;
    border: 1px solid rgb(21, 21, 21);
    border-radius: 10px;
}

.contacts__value-phone:hover {
    background-color: rgb(21, 21, 21);
    color: #ffffff;
    border: 1px solid rgb(21, 21, 21);
    transition: all 0.7s;
    border-radius: 10px;
}

.contacts-mail {
    font-size: 24px;
    font-weight: 700;
    background-color: #e3e1e1;
    padding: 15px;
    border: 1px solid rgb(21, 21, 21);
    border-radius: 10px;
}

.contacts-mail:hover {
    background-color: rgb(21, 21, 21);
    color: #fffdfd;
    border: 1px solid rgb(21, 21, 21);
    border-radius: 5%;
    transition: all 0.7s;
    border-radius: 10px;
}

.contacts__item-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0 30px;
}

.contacts-text {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    padding: 15px 0 10px;
}

.contacts__value-address {
    font-size: 18px;
    font-style: normal;
}

.company__title {
  font-size: 20px;
  margin: 50px 0 20px;
}

.about__company-stroke {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 20px;
}

.information__company {
    padding-top: 0;
    font-size: 18px;
}


/* Page Certification body */

.choose-service {
    padding: 100px 0 100px;
    border-bottom: 1px solid #d9d9d9;
}

.tabs {
    margin-bottom: 70px;
}

.tabs__btn {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 70px;
}

.tabs__content {
  width: 1200px;
  margin: 0 auto;
}

.tabs__btn-item {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 5px;
    text-align: center;
}

.tabs__btn-item--active {
    color: #386b4b;
    border: 2px solid #315e41;
    border-radius: 15px;
}

.tabs__content-item {
    display: none;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 30px;
}

.tabs__content-item.tabs__content-item--active {
    display: grid;
}

.card {
    text-align: center;
}

/* Орган по Сертификации */

.specialist__one-stroke {
  width: 600px;
  margin: 0 auto;
  padding-bottom: 25px;
  border-bottom: 2px solid #386b4b;
}

.specialist__two-stroke {
  width: 600px;
  margin: 0 auto;
  padding-bottom: 25px;
  border-bottom: 2px solid #386b4b;
}

.specialist__three-stroke {
    width: 600px;
    margin: 0 auto;
    padding-bottom: 25px;
    border-bottom: 2px solid #386b4b;
  }

.specialist__one, .specialist__two, .specialist__three {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 15px;
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
}

.certificate {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 20px;
  margin: 0 auto;
}

.certificate__title {
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 28px;
}

.certificate__one, .certificate__two {
  width: 700px;
  border: 1px solid #386b4b;
  margin-top: 25px
}


/*  Описание правил и схем */

.headline__certification {
    font-size: 24px;
    margin-bottom: 25px;
}

.description__certification {
    font-size: 18px;
    text-align: left; 
    padding-bottom: 15px;
} 

.description__certification-organization {
    font-size: 16px;
    text-align: justify;
    margin-left: 15px;
}

.description__certification-list {
    text-align: justify;
    list-style-position: inside;
}

.description__scheme {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px 20px;
  text-align: justify;
  font-size: 16px;
}

.description__scheme h3, p {
  text-indent: 25px;
}

.description__scheme ol {
  margin-left: 25px;
}

.description__scheme-certificate {
    text-align: justify;
    list-style-type: circle;
    list-style: inside;
    list-style-position: inside;
    margin-left: 25px;
    padding-bottom: 15px;
}

.description__scheme-laboratory {
  list-style-type: square;
  list-style-position: inside;
  margin-left: 25px;
}

.description__scheme-production {
    padding-top: 0;
    margin-left: 15px;
} 

.description__certification-stroke {
    text-align: justify;
    padding-top: 0;
    margin-left: 15px;
} 

.description__scheme-organization {
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 25px;
}

#certificate__description {
    list-style-type: circle;
    margin-left: 35px;
}

#certificate__description-next {
    list-style-type: circle;
    margin-left: 35px;
}

/* Содержание работ */

.content__work {
  margin: 0 auto;
  width: 1000px;
  text-align: justify;
  font-size: 17px;
  border-bottom: 1px solid #386b4b;
  border-top: 1px solid #386b4b;
  padding-bottom: 50px;
  padding-top: 50px;
}

.content__work-list {
  list-style-type: square;
  list-style: inside;
  margin-left: 25px;
}


/* Перечень документов */

.documents__work {
  margin: 0 auto;
  width: 1000px;
  text-align: justify;
  font-size: 17px;
  border-bottom: 1px solid #386b4b;
  border-top: 1px solid #386b4b;
  padding-bottom: 50px;
  padding-top: 50px;
}

.documents__work-list {
  list-style-type: circle;
  list-style: inside;
  margin-left: 25px;
}

/* Форма заявки */

.application__form {
  margin: 0 auto;
  width: 1000px;
  text-align: center;
  font-size: 17px;
  border-bottom: 1px solid #386b4b;
  border-top: 1px solid #386b4b;
  padding-bottom: 50px;
  padding-top: 50px;
}

.application__form h2 {
  padding-bottom: 50px;
}

.ces__form {
 border: 2px solid #386b4b;
 border-radius: 10px;
 width: 200px;
 height: 50px;
 background-color: white;
 color: #386b4b;
 font-weight: 700;
}

.ces__form:hover {
  background-color: #386b4b;
  color: white;
  transition: all 0.6s;
}

/* Права и обязанности Заявителя */

.rights__obligations {
  width: 1000px;
  margin: 0 auto;
  text-align: justify;
  font-size: 17px;
  border-bottom: 1px solid #386b4b;
  border-top: 1px solid #386b4b;
  padding-bottom: 50px;
  padding-top: 50px;
}


.rights__obligations h2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.rights__obligations ul {
  list-style-type: circle;
  list-style: inside; 
} 

.rights__obligations  li {
    text-align: justify; 
    padding: 5px;
}

/* Порядок рассмотрения жалоб ОС */

.complaints__appeals {
  width: 1000px;
  margin: 0 auto;
  text-align: justify;
  font-size: 17px;
  border-bottom: 1px solid #386b4b;
  border-top: 1px solid #386b4b;
  padding-bottom: 50px;
  padding-top: 50px;
}

.description__complaints, .description__appeals {
    margin: 0 auto;
    font-size: 16px;
    text-align: justify;
    padding: 15px 0 15px;
} 

.information__complaints-stroke, .information__appeals-stroke {
    padding: 10px 0 10px;
}

/* Перечень Испытательных лабораторий */

.laboratories__one-certification, .laboratories__two-certification, .laboratories__three-certification {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px 20px;
  text-align: center;
  font-size: 16px;
  margin-top: 25px;
}

.laboratories__one-stroke, .laboratories__two-stroke, .laboratories__three-stroke {
  width: 600px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 2px solid #386b4b;
} 

.description__laboratories-certification {
    font-size: 16px;
    padding: 5px;
}

/* Стоимость работ */

.cost__work {
  width: 1000px;
  margin: 0 auto;
  text-align: justify;
  font-size: 17px;
  border-bottom: 1px solid #386b4b;
  border-top: 1px solid #386b4b;
  padding-bottom: 50px;
  padding-top: 50px;
}

.description__certification-work {
    text-align: center;
    font-size: 20px;
    padding-bottom: 15px;
}


.description__cost-stroke {
    padding-bottom: 15px;
}

/* Page Laboratory body */

.choose-service {
    padding: 100px 0 150px;
    border-bottom: 1px solid #d9d9d9;
}

.tabs__laboratory {
    margin-bottom: 50px;
}

.tabs__btn-laboratory {
    padding: 0 70px;
    display: flex;
    justify-content: space-evenly;
    gap: 70px;
    padding-bottom: 70px;
}


/* Перечень документов в ИЛ */

.competence__work-list,
.methodics__work-list,
.quality__work-list {
    font-size: 16px;
    text-indent: 25px;
    list-style-position: inside;
    padding-bottom: 15px;
}

.competence__work-list {
    list-style-type: circle;
}

.quality__work-list {
    list-style-type: square;
}

/* Burger button */

.menu__btn {
    width: 35px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: none;
    margin: o auto;
}

.menu__btn span {
    height: 3px;
    background-color: white;
    width: 100%;
}

/* Adaptive part */

@media (max-width: 1180px) {
    .menu__list {
        gap: 20px;
        padding: 0 30px;
    } 

    

    .logo {
        padding: 0 15px;
    }

    .title {
        font-size: 35px;
    }

    .swiper-pagination-bullet {
        width: 80px;
    }

    .important__list {
        gap: 30px 20px;
    }
    .important__item-img {
        width: 100%;
    }

    .tabs__btn {
        flex-direction: column;
    }

    .choose-service {
        padding: 50px 0;
    }

    .tabs__content-item {
        gap: 40px;
    }

  .tabs__content {
    width: 1160px;
    padding: 10px;
  }

  .specialist__1, .specialist__2, .specialist__3 {
    font-size: 15px;
    }

    .complaints__appeals h2 {
      font-size: 26px;
    }
}


@media (max-width: 1064px) {
    .menu__list {
        gap: 12px;
        padding: 0 25px;
        font-size: 13px;
    }

    .title {
        font-size: 35px;
    }

    .swiper-pagination-bullet {
        width: 70px;
    }

    .tabs__content {
      width: 1044px;
      padding: 10px;
    }

   .tabs__content-item {
    gap: 15px;
   } 

   .description__scheme {
    gap: 20px 30px;
   } 

   .complaints__appeals h2, h3, h4, p {
    padding-top: 15px;
    padding-bottom: 10px;
    text-indent: 15px;
} 
.complaints__appeals h2 {
  font-size: 20px;
} 

.laboratories__1-stroke, .laboratories__2-stroke, .laboratories__3-stroke {
  gap: 20px 20px;
}

}

@media (max-width: 900px) {
    .footer__menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 40px;
        text-align: center;
    }

    .title {
        font-size: 30px;
    }

    .swiper-pagination-bullet-active  {
        height: 5px ;
    }

    .blog__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .blog__item-img {
        width: 600px;
        height: 500px;
        min-width: 100%;
    }

    .what__do-text__little-stroke {
        padding-bottom: 60px;
        width: 850px;
        margin: 0 auto;
    }

    .why-lease {
        padding: 120px 0;
    }

    .why-lease__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tabs__content {
        width: 880px;
        padding: 10px;
    }

    .section-title__main  {
        padding-bottom: 40px;
        width: 850px;
        margin: 0 auto;
        padding-top: 60px;
    }

    .how-does__text {
        width: 850px;
        padding: 15px;
        text-indent: 0;
    }

    .specialist__1, .specialist__2, .specialist__3 {
        text-align: center; 
        width: 860px;
        padding: 20px;
        gap: 15px 20px;
    }

    .certificate__1, .certificate__2 {
        width: 700px;
        margin-top: 20px;
    }

    .description__scheme {
        font-size: 15px;
    }

    .description__scheme h3, h4 {
        text-align: center;
    }

    .content__work, .documents__work,
    .rights__obligations,
    .complaints__appeals {
        width: 850px;
        text-align: center;
        padding: 15px;
        font-size: 15px;
        line-height: 1.6;
    }

    .application__form {
        width: 850px;
        padding: 30px;
    }

    .laboratories__1, .laboratories__2, .laboratories__3 {
        width: 860px;
        padding: 20px;
        gap: 15px 20px;
        font-size: 15px;
    }
    .cost__work {
        width: 850px;
        padding: 15px;
        font-size: 15px;
        line-height: 1.6;
    }
    .contacts__phone {
        padding-bottom: 10px;
    }
    .section-title {
        font-size: 40px;
    }
    .company__title {
        font-size: 36px;
    }
    .about__company-stroke {
        font-size: 17px;
        margin-top: 15px;
        margin-bottom: 40px;
    }
}


@media (max-width: 860px) {
.header__inner {
    width: 800px;
    margin: 0 auto;
    padding-bottom: 35px;
}
    .menu__btn {
      display: flex;
    }

    .menu__btn,
    .logo {
        position: relative;
        z-index: 10;
    }

    .logo {
        width: 180px;
        height: 120px;
    }

    .menu__list {
        position: absolute;
        z-index: 5;
        background-color: #151515;
        flex-direction: column;
        align-items: center;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding-top: 200px;
        height: 100vh;
        transform: translateY(-100%);
        transition: transform .4s ease;
    }
    .menu__list--active {
        transform: translateY(0%);
    }
     .menu__list.menu__list--active {
        transform: translateY(0%);
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .secondary__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .what__do {
        padding-top: 80px;
    }

    .what__do-text {
        width: 800px;
        margin: 0 auto;
    }

    .what__do-text__little-stroke {
        padding-bottom: 50px;
    }

    .why-lease {
        padding: 70px 0;
    }

    .why-lease__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .what__do-text__little-stroke, .section-title__main {
        width: 800px;
        margin: 0 auto;
    }

    .what__do-text {
        min-width: 800px;
        font-size: 16px;
    } 

    .section-title__main {
        padding-bottom: 30px;
        padding-top: 40px;
    }

    .how-does {
        padding-bottom: 80px;
    }

    .how-does__text {
        width: 800px;
        margin: 0 auto;
    } 

    .section-title__main {
        font-size: 32px;
    }

    .tabs__content {
        width: 840px;
        padding: 10px;
    }

    .specialist__1,
    .specialist__2,
    .specialist__3 {
        text-align: center;
        width: 820px;
        padding: 15px;
        gap: 10px 15px;
        font-size: 14px;
    }

    .certificate {
        gap: 20px 20px;
    }

    .certificate__1, .certificate__2 {
        width: 600px;
        margin-top: 10px;
    }

    .content__work,
    .documents__work,
    .rights__obligations,
    .complaints__appeals {
        width: 820px;
        text-align: center;
        padding: 13px;
        font-size: 15px;
        line-height: 1.6;
    }

    .application__form {
        width: 820px;
        padding: 30px;
    }

    .laboratories__1,
    .laboratories__2,
    .laboratories__3 {
        width: 820px;
        padding: 15px;
        gap: 10px 20px;
        font-size: 14px;
    }
    .cost__work {
        width: 820px;
        padding: 15px;
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .header__inner {
        width: 680px;
        margin: 0 auto;
        padding-bottom: 35px;
    }

    .title {
        font-size: 30px;
    }
    .secondary__title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .swiper-pagination-bullet {
        width: 60px;
    } 

    .swiper-pagination-bullet-active  {
            height: 4px ;
    }
}
.what__do-text  {
    width: 600px;
    margin: 0 auto;
} 


.what__do-text__little-stroke {
    width: 600px;
    margin: 0 auto;
}

.section-title__main {
    width: 600px;
    margin: 0 auto;
} 

.how-does__text {
    width: 600px;
    margin: 0 auto;
}

/* адаптив 660px */
@media (max-width: 660px) {
    .logo {
        width: 140px;
        height: 100px;
    }
    .header__inner {
        width: 550px;
        margin: 0 auto;
        padding-bottom: 30px;
    } 


    .contacts__item-contact {
    flex-direction: column;
    align-items: center;
 }

 .what__do-text  {
    width: 500px;
    margin: 0 auto;
}
}

@media (max-width: 600px) {
    .contacts {
       padding: 50px 0; 
    } 

    .form__input {
        width: 100%;
        margin-bottom: 30px;
    } 

    .phone__title {
        font-size: 30px;
    }

    .contacts-text {
        font-size: 20px;
        padding: 20px 0;
        
    }
    .contacts__value-address {
        font-size: 15px;
    }
}

@media (max-width: 540px) {
    .title {
        font-size: 20px;
    } 

    .swiper-pagination-bullet {
        width: 50px;
    } 

    .swiper-pagination-bullet-active  {
            height: 3px ;
    } 

    .swiper-pagination-bullet {
        width: 35px;
    }

    .what__do {
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 30px;
        margin-bottom: 25px;
    } 

    .what__do-title {
        font-size: 20px;
    } 

    .what__do-text {
        font-size: 15px;
    } 

    .why-lease__list {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    } 

    .why-lease {
        padding: 50px 0;
    }

    .how__does-list {
        padding: 30px 0 40px;
    } 

    .how-does {
        padding-bottom: 50px;
    } 

    .how__does-item {
        padding: 65px 0 19px 0;
        margin-right: auto;
    } 

    .how__does-item::before {
        right: 0;
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 32px;
    } 


    .app, 
    .copy__nav-list {
        flex-direction: column;
        align-items: center;
    } 

    .copy__nav-list {
        gap: 20px;
    } 

    .blog__items {
        grid-template-columns: repeat(1, 1fr);
    } 

    .blog__item-img {
        width: 400px;
        height: 300px;
        min-width: 100%;
    }

    .blog__item-link {
        margin-left: auto;
       margin-top: 10px;
    }
}

@media (max-width: 440px) { 
    .blog {
        padding-bottom: 75px;
    }
    .blog__item-title {
        margin-bottom: 10px;
    } 

    .blog__item-link {
        margin-left: auto;
        margin-right: 10px;
    } 

    .blog__item-img {
        width: 300px;
        height: 220px;
        min-width: 100%;
    } 
}
