@media screen and (min-width: 1280px) {
    main {
      padding-top: 68px;
    }
}



/*section_banner_under_header*/

.btn_link_red {
  display: flex;
  padding: 13px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 62px;
  background: var(--color-link-red);
  color: #FFF;
  font-family: var(--font-family-minor);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  transition: var(--transition-time-default);
}

.btn_link_red_banner_under_header{
  gap: 5px;
}

.btn_link_red::after {
  content: '';
  width: 23px;
  height: 20px;
  display: block;
  background-size: 100% 100%;
  background-position-x: 0;
  background-image: url(../image/home/icon_arrow_white_right.svg);
  transition: var(--transition-time-default);
}

.btn_link_red:hover {
  background-color: var(--color-text-hover-black);
}

.btn_link_red:hover::after {
  background-position-x: 23px;
}

.section_banner_under_header{
  position: relative;
  height: 616px;
  flex-shrink: 0;
  border-radius: 0 0 20px 20px;
  background: url(../image/home/banner_home_mobile.webp) lightgray 50% / cover no-repeat;
}

.box_content_banner_under_header{
  position: absolute;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  gap: 16px;
  max-width: 360px;
}

.box_content_text_banner_under_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.title_banner_under_header {
  color:#1A1A1A;
  text-align: center;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.text_banner_under_header {
  color: #1A1A1A;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .box_content_banner_under_header{
    top: 134px;
  }

  .section_banner_under_header {
    height: 810px;
    background: url(../image/home/banner_home_tablet.webp) lightgray 50% / cover no-repeat;
  }

  .box_content_banner_under_header {
    gap: 40px;
    align-items: center;
  }

  .btn_link_red_banner_under_header{
    width: fit-content;
    margin: 0 auto;
  }

  .box_content_text_banner_under_header{
    gap: 20px;
  }

  .title_banner_under_header{
    font-size: 42px;
    width: 655px;
  }

  .text_banner_under_header{
    width: 451px;
    font-size: 20px;
  }

  .box_content_banner_under_header{
    max-width: none;
  }

}

@media screen and (min-width: 1280px) {
    .box_content_banner_under_header{
      top: 200px;
      max-width: 1320px;
      position: relative;
    }

    .section_banner_under_header {
      padding-right: 60px;
      padding-left: 60px;
      height: 800px;
      background: url(../image/home/banner_home_desktop.webp) lightgray 50% / cover no-repeat;
    }
    .box_content_text_banner_under_header {
      align-items: flex-start;
    }
    .title_banner_under_header, .text_banner_under_header {
      text-align: start;
    }
    .btn_link_red_banner_under_header {
      margin: 0;
    }
}

@media screen and (min-width: 1600px) {
     .section_banner_under_header {
      background: url(../image/home/banner_home_desktop.webp) lightgray 50% / cover no-repeat;
    }
}

/*section_under_banner*/

.section_under_banner{
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 40px;
  width: 100%; 
}

.container_section_under_banner{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;

}


.box_item_under_banner{
  display: flex;
  gap: 12px;
  height: 209px;
}

.box_text_item_under_banner{
  display: flex;
  flex-direction: column;
}

.box_text_item_under_banner{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}


.box_title_text_under_banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.item_photo_under_banner {
  width: 150px;
  border-radius: 20px;
  object-fit: cover;
}

.item_title_under_banner{
  color: #1A1A1A;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
}

.item_text_under_banner{
  color: #8C8986;
    font-family: var(--font-family-main);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.14;
}

.item_link_under_banner{
  display: flex;
  padding: 13px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 62px;
  border: 1px solid  #1A1A1A;
  background:#FFF;
  color:  #1A1A1A;
  font-family: var(--font-family-minor);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  transition: all var(--transition-time-default);
}

.item_link_under_banner::after {
  content: '';
  display: block;
  width: 23px;
  height: 20px;
  background-color: black;
  -webkit-mask-image: url('../image/home/icon_arrow_right.svg');
  mask-image: url('../image/home/icon_arrow_right.svg');
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  mask-position: 0px;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: all var(--transition-time-default);
}

.item_link_under_banner:hover::after {
  mask-position: 23px ;
  background-color: var(--color-text-hover-red); 
}

.item_link_under_banner:hover{
  color: var(--color-text-hover-red);
  border-color: var(--color-text-hover-red);
}


@media screen and (min-width:768px) {
  .section_under_banner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    width: 704px;
    margin-left: auto;
    margin-right: auto;
  }


  .box_item_under_banner {
    display: flex;
    gap: 22px;
    height: 170px;
  }

  .item_photo_under_banner {
    border-radius: 30px;
  }

  .item_title_under_banner {
    font-size: 18px;
  }

}
@media screen and (min-width: 1400px) {
  .section_under_banner {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
    width: 100%;
   
  }

  .container_section_under_banner{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 28px;
    justify-content: space-around;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
  }

  .box_item_under_banner{
    max-width: 421px;
  }

  .box_item_under_banner {
    display: flex;
    gap: 22px;
    height: 170px;
  }

  .item_photo_under_banner {
    border-radius: 30px;
  }

  .item_title_under_banner {
    font-size: 18px;
  }

}

/*section_offer*/

.section_offer {
  width: 100%;
  padding-top: 60px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.container_top_offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.box_title_top_offer{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.text_top_title_offer{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1A1A1A;
  font-family:var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
}

.text_top_title_offer::before{
  content: "";
  width: 10px;
  display: block;
  height: 10px;
  border-radius: 50%;
  background: #1A1A1A;
}


.title_top_offer{
  color: #1A1A1A;
  text-align: center;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.text_under_title_offer{
  color: #1A1A1A;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 520px;
}


.list_offer {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 68px;
  padding-top: 10px;
  overflow-x: auto;
  margin: 0 -10px;
  padding-left: 10px;
}

.link_item_offer{
  display: flex;
  width: 245px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  border-radius: 36px;
  background:  #FFF;
  box-shadow: 0 2px 5px 0 rgba(83, 110, 151, 0.25);
  transition: all var(--transition-time-default);
}

.link_item_offer:hover{
  box-shadow: 0 7px 19px 0 rgba(83, 110, 151, 0.25);
}

.photo_item_offer{
  height: 216px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 36px;
  object-fit: cover;
}

.box_text_item_offer{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin-bottom: 8px;
}


.title_item_offer{
  color:  #1A1A1A;
  font-kerning: none;
  font-feature-settings: 'liga' off;
  font-family: var(--font-family-minor);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  height: 40px;
  align-self: stretch;
}

.text_item_offer{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  align-self: stretch;
  overflow: hidden;
  color:  #535863;
  text-overflow: ellipsis;
  font-family: var(--font-family-main);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.46;
}


@media screen and (min-width: 768px) {

  .section_offer {
    padding-top: 80px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 80px;
    gap: 38px;
  }

  .container_top_offer {
    gap: 30px;
  }


  .title_top_offer {
    font-size: 42px;
  }

  .text_under_title_offer {
    font-size: 18px;
  }


  .list_offer {
    gap: 28px;
    padding-bottom: 38px;
    padding-top: 0;
    margin: 0 -20px;
    padding-left: 20px;
  }

  .link_item_offer {
    width: 343px;
  }

  .photo_item_offer {
    height: 270px;
  }

  .box_text_item_offer {
    gap: 20px;
    padding: 30px;
    margin-bottom: 0;
  }


  .title_item_offer {
    font-size: 22px;
    height: auto;
  }

  .text_item_offer {
    display: block;
  }
}
@media screen and (min-width: 1440px) {

  .section_offer {
    padding-top: 80px;
    padding-right: 60px;
    padding-left: 60px;
    padding-bottom: 100px;
    gap: 70px;
  }

  .text_under_title_offer {
    max-width: none;
    width: 820px;
  }


  .list_offer {
    width: 1348px;
    gap: 26px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
  }

  .link_item_offer {
    width: 421px;
    height: 509px;
  }
}

/*section_about_us*/

.section_about_us{
  padding-top: 32px;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.container_about_us{
  padding-left: 10px;
  padding-right: 10px;
}
.box_about_us{
  display: flex;
  padding: 20px;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  border-radius: 36px;
  border: 1px solid #D9D9D9;
  background:  #FFF;
}

.text_top_about_us {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text_top_about_us::before {
  content: "";
  width: 10px;
  display: block;
  height: 10px;
  border-radius: 50%;
  background: #1A1A1A;
}

.title_about_us {
  color:  #E22833;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}


.text_under_title_about_us{
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}


.container_banner {
  width: 100%;
  margin-inline: auto;
  position: relative;
  height: 32px;
  overflow: hidden;
  mask-image: linear-gradient(
          to right,
          rgba(0,0,0,0),
          rgba(0,0,0,1) 20%,
          rgba(0,0,0,1) 80%,
          rgba(0,0,0,0)
  );
}



@keyframes scrollLeft {
  to {
    left: -130px;
  }
}

.item_banner {
  width: 130px;
  height: 32px;
  border-radius: 6px;
  position: absolute;
  left: max(calc(130px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  padding: 7.23px 9.303px 7.027px 9.562px;
}

.item_banner img{
  width: 100%;
}


.item1 {
  animation-delay: calc(30s / 8 * (8 - 1) * -1);
}
.item2 {
  animation-delay: calc(30s / 8 * (8 - 2) * -1) ;
}
.item3 {
  animation-delay: calc(30s / 8 * (8 - 3) * -1) ;
}
.item4 {
  animation-delay: calc(30s / 8 * (8 - 4) * -1) ;
}
.item5 {
  animation-delay: calc(30s / 8 * (8 - 5) * -1) ;
}
.item6 {
  animation-delay: calc(30s / 8 * (8 - 6) * -1) ;
}
.item7 {
  animation-delay: calc(30s / 8 * (8 - 7) * -1) ;
}
.item8 {
  animation-delay: calc(30s / 8 * (8 - 8) * -1) ;
}

.photo_about_us {
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
}


@media screen and (min-width: 768px) {
  .section_about_us {
    padding-top: 0;
    padding-bottom: 80px;
    gap: 80px;
  }

  .container_about_us {
    padding-left: 20px;
    padding-right: 20px;
  }

  .box_about_us {
    padding: 40px;
    gap: 40px;
  }

  .text_top_about_us {
    margin-bottom: 20px;
  }

  .title_about_us {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .text_under_title_about_us {
    font-size: 18px;
  }

  .container_banner {
    height: 65px;
  }

  @keyframes scrollLeft {
    to {
      left: -268px;
    }
  }

  .item_banner {
    width: 268px;
    height: 65px;
    left: max(calc(268px * 8), 100%);
    padding: 14.942px 19.226px 14.521px 19.761px;
  }
}
@media screen and (min-width: 1440px) {
  .section_about_us {
    padding-bottom: 100px;
    gap: 100px;
  }

  .container_about_us {
    padding-left: 60px;
    padding-right: 60px;
  }

  .box_about_us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 40px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
  .container_banner{
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }

}

/*section_banner_under_about_us*/

.background_section_banner_under_about_us {
  border-radius: 40px 40px 0px 0px;
  background: #FFD03E;
  width: 100%;
  overflow: hidden;
}

.section_banner_under_about_us{
  display: flex;
  width: 100%;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 28px;
  align-self: stretch;
  padding-bottom: 192px;
  overflow: hidden;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.photo_banner_under_about_us{
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.container_content_banner_under_about_us{
  display: flex;
  padding: 0px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.title_banner_under_about_us{
  color: #1A1A1A;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.27;
}

.text_banner_under_about_us{
  color:  #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.link_banner_under_about_us{
  color: #FFF;
  font-family:var(--font-family-minor);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  display: flex;
  padding: 13px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 62px;
  background:  #E22833;
  transition: all var(--transition-time-default);
}

.link_banner_under_about_us::after{
  content: '';
  width: 23px;
  height: 20px;
  display: block;
  background-size: 100% 100%;
  background-image: url(../image/home/icon_arrow_white_right.svg);
  background-position-x: 0;
  transition: all var(--transition-time-default);

}

.link_banner_under_about_us:hover {
  background: var(--color-text-hover-black);
}

.link_banner_under_about_us:hover::after {
  background-position-x: 23px ;
}

.box_link_decoration_line{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.photo_line_banner_under_about_us{
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .section_banner_under_about_us {
    padding-bottom: 121px;
  }

  .photo_banner_under_about_us {
    width: 100%;
    max-height: 590px;
    object-fit: cover;
  }

  .box_link_decoration_line_banner_under_about_us{
    margin-left: 0 !important;
  }

  .container_content_banner_under_about_us {
    padding: 0px 20px;
  }

  .title_banner_under_about_us {
    font-size: 42px;
  }

  .text_banner_under_about_us {
    font-size: 20px;
    width: 492px;
  }

  .link_banner_under_about_us {
    width: fit-content;
  }

  .box_link_decoration_line {
    gap: 0;
  }

  .photo_line_banner_under_about_us {
    padding: 0;
    width: 391px;
  }
}
@media screen and (min-width: 1080px) {
  .section_banner_under_about_us {
    padding-bottom: 0;
    flex-direction: row-reverse;
    display: grid;
    grid-template-columns: 1fr 1fr;

  }

  .photo_banner_under_about_us {
    width: 720px;
    height: 729px;
    object-fit: cover;
    margin-left: auto;

  }

  .container_content_banner_under_about_us {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 554px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .title_banner_under_about_us {
    font-size: 42px;
  }

  .text_banner_under_about_us {
    font-size: 20px;
    width: 492px;
  }

  .link_banner_under_about_us {
    width: fit-content;
  }

  .box_link_decoration_line {
    gap: 0;
  }

  .photo_line_banner_under_about_us {
    padding: 0;
    width: 391px;
  }
}

@media screen and (min-width: 1600px) {
  .photo_banner_under_about_us {
    max-height: 729px;
    width: 960px;
  }
}

/*section_photo_book*/

.section_photo_book{
  position: relative;
  margin-top: -135px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 29px;
  padding: 40px 20px;
  border-radius: 40px 40px 0px 0px;
  background: #F5F5F5;
}

.box_top_photo_book{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.title_top_photo_book{
  color:  #1A1A1A;
  text-align: center;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.text_top_photo_book{
  color: #1A1A1A;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.list_photo_book{
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(309px, 1fr));
}


.item_photo_book{
  display: flex;
  /* max-width: 421px; */
  flex-direction: column;
  align-items: center;
  border-radius: 36px;
  background:  #FFF;
  box-shadow: 0px 2px 5px 0px rgba(83, 110, 151, 0.25);
  overflow: hidden;
}
.photo_photo_book{
  width: 100%;
  object-fit: cover;
}


.text_photo_book{
  padding: 30px;
  color:  #1A1A1A;
  text-align: center;
  font-kerning: none;
  font-feature-settings: 'liga' off;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.link_more_photo_book {
  color: #FFF;
  font-family: var(--font-family-minor);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  display: flex;
  padding: 13px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 62px;
  background: #E22833;
  transition: all var(--transition-time-default);
}


.link_more_photo_book::after {
  content: '';
  width: 23px;
  height: 20px;
  display: block;
  background-size: 100% 100%;
  background-image: url(../image/home/icon_arrow_white_right.svg);
  background-position-x: 0;
  transition: all var(--transition-time-default);

}

.link_more_photo_book:hover {
  background: var(--color-text-hover-black);
}

.link_more_photo_book:hover::after {
  background-position-x: 23px;
}


.box_link_more_photo_book{
  width: 100%;
  display: flex;
  justify-content: center;

}

.about_us_link_more{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 42px;
}

@media screen and (min-width: 768px) {


  .section_photo_book{
    margin-top: -75px;
  }
  .title_top_photo_book {
    font-size: 42px;
  }

  .text_top_photo_book{
    font-size: 20px;
    width: 492px;
  }
  .list_photo_book {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (min-width: 1280px){
  .section_photo_book{
    margin-top: -35px;
  }
}

@media screen and (min-width: 1024px) {
  .list_photo_book {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*section_process_creating*/

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

  .process_creating_desktop{
    display: none !important;
  }

}

.section_process_creating{
  width: 100%;
  padding: 60px 10px;

}

.container_content_process_creating{
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.container_top_process_creating{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list_process_creating{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;

}

.item_process_creating{
  display: flex;
  padding: 14px 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-radius: 26px;
  background: #F7F9FA;
}

.decoration_line_process_creating{
  display: none;
}

.box_title_item_process_creating{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
}

.title_item_process_creating {
  color: #16181B;
  font-family: var(--font-family-minor);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.93;
  letter-spacing: -1px;
}

.text_item_process_creating{
  color: #535863;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.btn_link_red_tablet{
  display: none;
}

.icon_process_creating{
  width: 65px;
  height: 65px;
  display: block;
}

@media screen and (min-width: 768px) {
  .section_process_creating {
    padding: 80px 20px;
  }



  .btn_link_red_mobile_desktop{
    display: none;
  }

  .list_process_creating {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));*/
  }

  .item_process_creating {
    padding: 14px 40px;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    height: 148px;
  }

  .decoration_line_process_creating {
    display: block;
    width: 1px;
    height: 100%;
    background: #D9D9D9;
  }

  .box_title_item_process_creating {
    justify-content: center;
  }

  .title_item_process_creating {
    font-size: 22px;
  }

  .text_item_process_creating {
    font-size: 16px;
  }


  .btn_link_red_tablet {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

}

.process_creating_tablet{
  width: 100% !important;
}

@media screen and (min-width: 768px) {
  .process_creating_tablet{
    width: fit-content !important;
  }
}

@media screen and (min-width: 1440px) {

  .process_creating_tablet{
    display: none !important;
  }

  .item_process_creating{
    justify-content: flex-start;
  }

  .section_process_creating {
    padding: 100px 60px;
  }

  .container_content_process_creating {
    gap: 70px;
    display: grid;
    grid-template-columns: minmax(490px, 490px) 1fr;
  }

  .btn_link_red_mobile_desktop{
    display: flex;
    width: fit-content;
  }

  .container_top_process_creating{
    gap: 28px;
    height: fit-content;
    position: sticky;
    top: 180px;
  }

  .list_process_creating {
    flex: 1 0 0;
    gap: 28px;
  }

  .btn_link_red_tablet {
    display: none;
  }
}



/** ================ general_styles ================  **/

.btn_link_red {
  display: flex;
  padding: 13px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 62px;
  background: var(--color-link-red);
  color: #FFF;
  font-family: var(--font-family-minor);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.33;
  transition: var(--transition-time-default);
}


.btn_link_red::after {
  content: '';
  width: 23px;
  height: 20px;
  display: block;
  background-size: 100% 100%;
  background-position-x: 0;
  background-image: url(../image/home/icon_arrow_white_right.svg);
  transition: var(--transition-time-default);
}

.btn_link_red:hover {
  background-color: var(--color-text-hover-black);
}

.btn_link_red:hover::after {
  background-position-x: 23px;
}

.text_upper_title_with_before {
  position: relative;
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding-left: 18px;
}

.text_upper_title_with_before::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  content: '';
  background: #1A1A1A;
}

.title_section_home_page {
  color: #1A1A1A;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.text_under_title_section_home_page {
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}

.box_title_home_page {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


@media screen and (min-width: 768px) {

  .title_section_home_page {
    font-size: 32px;
  }

  .text_under_title_section_home_page {
    font-size: 18px;
  }

  .box_title_home_page {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.icon_rating{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #D3D3D3;
}

.icon_rating.filled{
  fill: #FFB906;
}

.hide{
  display: none;
}

/** ================ general_styles ================  **/

/*section_advantages*/

.section_advantages{
  padding: 80px 10px 60px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box_title_home_page_advantages{
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.box_logo_text_advantages{
  width: 100%;
  justify-content: center;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #1A1A1A;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.item_advantages_list{
  display: flex;
  padding: 10px 10px 18px 10px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.item_advantages_list:not(:first-child) {
  margin-top: 17px;
}

.item_advantages_list:not(:last-child){
  border-bottom: 1px solid #E5E5E5;
}

.box_title_home_page_align_center {
  align-items: center;
}

.box_text_advantages_item{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.title_advantages_item{
  color:  #1A1A1A;
  text-align: center;
  font-feature-settings: 'cv01' on, 'cv03' on, 'cv04' on;
  font-family: var(--font-family-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.text_advantages_item{
  color: #656565;
  text-align: center;
  font-feature-settings: 'cv03' on, 'cv04' on;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.62;
}

.decoration_line_advantages{
  display: none;
}

@media screen and (min-width: 768px) {
  .section_advantages {
    padding: 80px 20px 80px 20px;
    gap: 51px;
  }

  .box_title_home_page_advantages {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 18px;
    width: 100%;
    justify-content: center;
  }

  .box_logo_text_advantages {
    width: fit-content;
    gap: 18px;
    flex-direction: row;
    font-family: var(--font-family-minor);
    font-size: 32px;
  }

  .icon_logo_advantages{
    display: flex;
    width: 184px;
    height: 46px;
    padding: 8.639px 0.92px 9.095px 0.92px;
    justify-content: center;
    align-items: center;
  }

  .item_advantages_list {
    padding: 20px 20px 40px 20px;
  }

  .box_text_advantages_item {
    gap: 6px;
  }

  .btn_link_red_advantages {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

}

@media screen and (min-width: 1280px) {
  .section_advantages {
    padding: 100px 58.5px 100px 58.5px;
  }

  .decoration_line_advantages{
    background: #E4E4E4;
    width: 1px;
    display: block;
    align-self: stretch;
  }


  .list_advantages {
    display: flex;
    flex-direction: row;
    gap: 41px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }

  .item_advantages_list {
    width: 100%;

    padding: 20px;
    border: none !important;
    margin: 0 !important;
  }
}

/*section_banner_calendar*/

.section_banner_calendar{
  display: flex;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 40px 40px 0px 0px;
  background: #FFD03E;
}

.title_banner_calendar{
  color: #1A1A1A;
  text-align: center;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 2.09;
}


.list_photo_banner_calendar{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.item_photo_banner_calendar{
  flex-grow: 1;
  flex-basis: 338px;
}

.photo_banner_calendar{
  width: 100%;
  border-radius: 26px;
  max-height: 210px;
  object-fit: cover;
}

.text_bottom_calendar{
  color:  #1A1A1A;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.box_bottom_calendar{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.box_link_decoration_line{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  align-self: stretch;
}

.photo_decoration_line{
  padding-left: 30px;
  padding-right: 30px;
}

.btn_link_red_tablet{
  width: fit-content;
}

.box_link_decoration_line{
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .photo_banner_calendar{
      max-height: 417px;
  }
  .section_banner_calendar {
    padding: 40px 20px;
    gap: 44px;
  }

  .title_banner_calendar {
    font-size: 42px;
  }

  .text_bottom_calendar {
    font-size: 20px;
  }

  .box_bottom_calendar {
    gap: 44px;
  }

}

@media screen and (min-width: 1200px) {
  .section_banner_calendar {
    padding: 62px 60px 63px 60px;
    gap: 44px;
  }

  .text_bottom_calendar {
    font-size: 20px;
    width: 578px;
  }

  .list_photo_banner_calendar {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*section_reviews*/

.section_reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.box_title_home_page_reviews{
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
  width: 100%;
}

.list_reviews_mobile{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  margin-left: 10px;
  padding-right: 10px;
  height: 289px;
  padding-bottom: 25px;
}

.item_reviews_mobile{
  width: 224px !important;
  display: flex !important;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  justify-content: space-between;
  border-radius: 26px;
  background: #F5F5F5;
}

.mySwiperWrapperReviews{
  align-items: center;
}

.box_reviews_rating{
  display: block;
  height: 18px;
}
.box_top_reviews_item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text_reviews{
  color: #191919;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-height: 150px;
  overflow-y: auto;
}

.text_reviews::-webkit-scrollbar {
  display: none;
}

.box_bottom_reviews{
  display: flex;
  align-items: flex-end;
  gap: 11px;
}

.box_author_reviews{
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.photo_author_reviews{
  width: 56px;
  height: 56px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.name_author_reviews{
  color: #191919;
  font-family: var(--font-family-minor);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.box_swiper_reviews_tablet_desktop {
  display: flex;
  position: relative;
  align-items: center;
  height: 315px;
}
.list_reviews_mobile {
  display: none;
}



.box_title_home_page_reviews{
  padding: 0 20px 0 20px;
}

.mySwiperReviews{
  overflow: visible;
}

.mySwiperReviews::before,
.mySwiperReviews::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mySwiperReviews::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1));

}

.mySwiperReviews::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.1));

}

.button_next_navigation_reviews,
.button_prev_navigation_reviews {
  position: static;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E22833;
  background: #FFF;
  border-radius: 50%;
  margin: 0;
}

.button_next_navigation_reviews::after,
.button_prev_navigation_reviews::after {
  display: none;
}

.box_swiper_navigation_reviews{
  display: none;
}

@media screen and (min-width: 768px) {
  .box_swiper_navigation_reviews{
    display: flex;
    align-items: center;
    gap: 17px;
    height: 64px;
  }

  .mySwiperReviews::before,
  .mySwiperReviews::after {
    width: 209px;
  }

  .box_swiper_reviews_tablet_desktop {
    height: 371px;
  }

  .item_reviews_mobile {
    width: 254px;
    border-radius: 33px;
    padding: 20px;
  }



}

/*section_faq*/

.container_list_faq{
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.section_faq{
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 60px;
}

.box_title_home_page_faq {
  align-items: center;

}

.list_faq{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.item_faq{
  display: flex;
  flex-direction: column;
  align-self: stretch;
  transition: all var(--transition-time-default);
  background: #FFF;
  border-radius: 18px;
}

.box_top_item_faq {
  border-radius: 18px;
  transition: all var(--transition-time-default);
  border: 1px solid #CECECE;
  padding: 10px;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.box_top_item_number_title_faq{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}

.number_item_faq{
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  /* 25.2px */
  letter-spacing: 0.54px;
}

.title_item_faq{
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;

  letter-spacing: 0.48px;
}

.btn_open_item_faq{
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/home/icon_plus_red.svg);
  transition: all var(--transition-time-default);
}

.box_content_item_faq{
  transition: all var(--transition-time-default);
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  max-height: 0;
  padding: 0 10px 0 10px;
  scrollbar-width: none;
}

.content_item_faq{
  color: #FFF;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.42px;
  padding-bottom: 20px;
}


.item_faq.open {
  border-color:  #E22833;
  background: #E22833;

}

.content_item_faq,
.number_item_faq,
.title_item_faq {
  transition: all var(--transition-time-default);
}


.item_faq.open .content_item_faq,.item_faq.open .number_item_faq ,.item_faq.open .title_item_faq{
  color: #fff;
}


.item_faq.open .btn_open_item_faq{
  background-image: url(../image/home/icon_white_minus.svg);
}


.item_faq.open .box_content_item_faq {
  max-height: 500px;
  overflow-y: auto;
  margin-top: 18px;
  visibility: visible;
}

.item_faq.open .content_item_faq::-webkit-scrollbar {
  display: none;
}

.item_faq.open .box_top_item_faq {
  border-color: var(--color-link-red);
}

.box_top_item_faq:hover {
  cursor: pointer;
  border-color: var(--color-link-red);

}

.box_top_item_faq:hover .title_item_faq {
  color: var(--color-link-red);
}

.box_top_item_faq:hover .number_item_faq {
  color: var(--color-link-red);
}

.item_faq.open .box_top_item_faq:hover .title_item_faq {
  color: #FFF;
}

.item_faq.open .box_top_item_faq:hover .number_item_faq {
  color: #FFF;
}


@media screen and (min-width: 768px) {
  .section_faq {
    gap: 50px;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
  }

  .list_faq {
    gap: 20px;
  }
  .item_faq{
    border-radius: 38px;
  }

  .box_top_item_faq {
    border-radius: 38px;
    padding: 20px;
    align-items: center;
    box-sizing: border-box;
    height: 80px;
  }

  .box_top_item_number_title_faq {
    gap: 40px;
    align-items: center;
  }


  .number_item_faq {
    font-size: 22px;
  }

  .title_item_faq {
    font-size: 22px;
  }



  .content_item_faq {
    font-size: 18px;
  }

  .box_content_item_faq{
    padding: 0 20px 0 20px;

  }

  .item_faq.open .box_content_item_faq {
    margin-top: 30px;
  }

}

@media screen and (min-width: 1440px) {
  .section_faq {
    gap: 50px;
    padding-top: 100px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 100px;
  }
}

/*section_banner_business_card*/

.section_banner_business_card{
  border-radius: 40px 40px 0px 0px;
  overflow: hidden;
  position: relative;
  padding: 40px 10px;

}

.photo_banner_business_card{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.container_content_business_card{
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.text_under_banner_home_page{
  color:  #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.box_btn_link_red_decoration_line{
  display: flex;
  width: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .section_banner_business_card {
    padding: 53px 20px 33px 20px;

  }

  .container_content_business_card {
    gap: 30px;

  }

  .text_under_banner_home_page {
    font-size: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .section_banner_business_card {
    padding: 163px 60px 163px 60px;

  }

  .container_content_business_card {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }

  .text_under_banner_home_page {
    font-size: 20px;
  }

  .title_section_home_page{
    max-width: 459px;
  }

  .text_under_banner_home_page{
    width: 600px;
  }
}

/*section_contacts*/

.section_contacts{
  padding: 60px 10px 80px 10px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container_top_contacts_info{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container_contacts_info{
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  border-radius: 32px;
  border: 1px solid #D9D9D9;
  background: #FFF;
}


.box_info_contacts_home_page,
.box_top_info_contacts_home_page,
.box_bottom_info_contacts_home_page,
.box_phones_contacts_home_page{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.box_item_contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.title_item_contacts{
  color: #E22833;
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.text_item_contacts{
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-main);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.span_item_contacts{
  color: #1A1A1A;
  font-family: var(--font-family-main);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 6px;
}

.text_opacity_item_contacts{
  display: flex;
  align-items: center;
  color: #1A1A1A66;
}

.box_social_network_contacts{
  display: flex;
  align-items: center;
  gap: 10px;
}


.link_item_social_contacts{
  border-radius: 16px;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
}

.icon_item_social_contacts{
  width: 25px;
  height: 25px;
  transition: all var(--transition-time-default);
}

.link_item_social_contacts:hover .icon_item_social_contacts{
  fill: #E22833;
}

.container_reverse_form_contacts{
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 32px;
  background: #F5F5F5;
}

.box_top_reverse_form_contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.title_reverse_form_contacts{
  color: #1A1A1A;
  font-family: var(--font-family-minor);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text_orange_form_contacts{
  color: #E22833;
  font-weight: 600;
}

.text_under_title_reverse_form_contacts{
  color: #535863;
  font-family: var(--font-family-minor);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form_reverse_contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.label_reverse_contacts{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.text_label_reverse_contacts{
  padding-left: 17px;
  color: #535863;
  font-family: var(--font-family-minor);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.input_reverse_contacts{
  display: flex;
  padding: 13px 18px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 30px;
  background: #FFF;
  overflow: hidden;
  color: #1A1A1A;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-family-main);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.input_reverse_contacts:focus{
  border: 1px solid black;
}

.textarea_reverse_contacts{
  overflow: hidden;
  color: #1A1A1A;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-family-main);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 20px;
  background: #FFF;
  display: flex;
  height: 175px;
  padding: 16px 18px;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  resize: none;
}

.textarea_reverse_contacts:focus{
  border: 1px solid black;
}

.box_maps_contacts_home_page{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.title_maps{
  text-align: center;
}

.iframe_maps_home_page{
  height: 460px;
  flex-shrink: 0;
  border-radius: 26px;
}


@media screen and (min-width: 768px) {

  .box_top_info_contacts_home_page,
  .box_bottom_info_contacts_home_page{
    flex-direction: row;
    gap: 26px;
  }

  .box_top_info_contacts_home_page{
    justify-content: space-between;
  }

  .box_bottom_info_contacts_home_page{
    align-items: flex-end;
  }

  .box_bottom_info_contacts_home_page .box_phones_contacts_home_page{
    width: 100%;
  }

  .box_top_info_contacts_home_page .box_item_contacts {
    width: 313px;
  }

  .section_contacts{
    padding: 80px 20px 100px 20px;
  }

  .text_item_contacts{
    font-size: 24px;
  }

  .box_info_contacts_home_page{
    gap: 26px;
  }

  .container_contacts_info{
    padding: 26px;
  }

  .container_reverse_form_contacts {
    padding: 30px;
  }

}

@media screen and (min-width: 1280px) {
  .section_contacts{
    padding: 100px 60px 100px 60px;
  }

  .box_top_info_contacts_home_page,
  .box_bottom_info_contacts_home_page{
    flex-direction: column;
  }

  .box_bottom_info_contacts_home_page{
    align-items: flex-start;
  }
  .container_top_contacts_info{
    flex-direction: row;
    gap: 48px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .container_contacts_info{
    width: 100%;
    padding: 48px;
  }

  .container_reverse_form_contacts{
    min-width: 554px;
    max-width: 554px;
  }

  .section_contacts{
    gap: 60px;
  }

}