.container_footer {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  background: var(--color-violet-600);
}

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

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

.footer_logo {
  width: 264px;
  height: 69px;
}

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

.title_box_information_footer {
  color: #fff;
  font-family: var(--font-family-helvetica);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  text-transform: uppercase;
  opacity: 0.6;
}

.link_information_footer {
  color: #fff;
  font-family: var(--font-family-helvetica);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 103%;
}

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

.box_link_information_footer,
.box_opening_hours_footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}

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

.decoration_line_footer {
  height: 1px;
  align-self: stretch;
  width: 100%;
  background-color: #fff;
  opacity: 0.2;
}

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

.box_social_link_footer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon_social_footer {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  fill: #ffffff;
  transition: var(--all-time-transition);
}

.link_social_footer {
  transition: var(--all-time-transition);
  border-radius: 50%;
}

.link_social_footer:hover {
  background: rgba(255, 255, 255, 0.1);
}

.box_information_link_footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.information_link_footer {
  color: #fff;
  font-family: var(--font-family-helvetica);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  opacity: 0.5;
  transition: var(--all-time-transition);
}

.information_link_footer:has(a:hover) {
  opacity: 1;
}

.information_link_footer a:hover {
  opacity: 1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: #fff;
}

.information_text_footer {
  color: #fff;
  font-family: var(--font-family-helvetica);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 744px) and (max-width: 1279px) {
  .container_footer_top {
    align-items: flex-start;
    gap: 40px;
  }
  .link_information_footer {
    font-size: 20px;
    line-height: 100%;
    display: flex;
  }
  .box_text_links_information_footer {
    height: 20px;
  }
}

@media screen and (min-width: 744px) {
  .container_footer {
    padding: 40px;
    gap: 60px;
    align-items: flex-start;
  }

  .container_footer_top {
    gap: 40px;
  }

  .box_visit_us_footer,
  .box_opening_hours_footer,
  .box_link_information_footer {
    gap: 20px;
  }

  .box_bottom_footer {
    flex-direction: column;
  }

  .box_information_link_footer {
    flex-direction: row-reverse;
    gap: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .container_footer {
    width: calc(100% - 80px);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    border-radius: 14px;
  }

  .container_footer_top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .box_information_footer {
    flex-direction: row;
    gap: 60px;
  }

  .link_information_footer br {
    display: none;
  }

  .box_bottom_footer {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

.box_link_information_footer a:hover {
  color: #fff;
}

.box_text_links_information_footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 22px;
  overflow: hidden;
}

.text_links_information_footer {
  transform: translateY(0);
  transition: var(--all-time-transition);
}

.link_information_footer:hover .text_links_information_footer {
  transform: translateY(-24px);
}

.list_information_link_footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.decoration_line_horizontal {
  display: none;
}

@media screen and (min-width: 1280px) and (max-width: 1650px) {
  .text_links_information_footer {
    transform: translateY(3px);
    transition: var(--all-time-transition);
  }
  .link_information_footer:hover .text_links_information_footer {
    transform: translateY(-19px);
  }
}
@media screen and (min-width: 744px) {
  .list_information_link_footer {
    flex-direction: row;
  }

  .information_link_footer,
  .information_text_footer {
    font-size: 14px;
  }
}

@media screen and (min-width: 876px) {
  .information_link_footer,
  .information_text_footer {
    font-size: 16px;
  }
}

@media screen and (max-width: 743px) {
  .box_text_links_information_footer {
    height: 18px;
  }

  .list_information_link_footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 383px) and (max-width: 743px) {
  .link_information_footer {
    display: flex;
    gap: 5px;
  }
}
html:has(body.home) body {
  background-color: #f2f3f6;
}

.box_link_for_client {
  display: none;
}

@media screen and (min-width: 1280px) {
  .footer_logo {
    min-width: 306px;
    max-width: 306px;
    min-height: 79px;
    max-height: 79px;
  }

  .box_link_for_client {
    display: flex;
  }

  .container_footer_top {
    gap: 120px;
  }

  .link_footer_logo {
    margin-bottom: auto;
  }

  .decoration_line_horizontal {
    display: flex;
    width: 1px;
    height: 100%;
    opacity: 0.2;
    background-color: #ffffff;
  }

  .box_link_for_client {
    width: 160px;
  }

  .box_information_footer {
    gap: 38px;
    width: 100%;
    /*justify-content: space-between;*/
  }
}

@media screen and (min-width: 1280px) and (max-width: 1285px) {
  .container_footer_top {
    gap: 20px;
  }
  .box_information_footer {
    gap: 10px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1286px) and (max-width: 1300px) {
  .container_footer_top {
    gap: 25px;
  }
  .box_information_footer {
    gap: 10px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1301px) and (max-width: 1320px) {
  .container_footer_top {
    gap: 30px;
  }
  .box_information_footer {
    gap: 13px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1321px) and (max-width: 1340px) {
  .container_footer_top {
    gap: 33px;
  }
  .box_information_footer {
    gap: 17px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1341px) and (max-width: 1350px) {
  .container_footer_top {
    gap: 40px;
  }
  .box_information_footer {
    gap: 17px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}

@media screen and (min-width: 1351px) and (max-width: 1375px) {
  .container_footer_top {
    gap: 40px;
  }
  .box_information_footer {
    gap: 17px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}

@media screen and (min-width: 1376px) and (max-width: 1390px) {
  .container_footer_top {
    gap: 50px;
  }
  .box_information_footer {
    gap: 20px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}

@media screen and (min-width: 1391px) and (max-width: 1410px) {
  .container_footer_top {
    gap: 40px;
  }
  .box_information_footer {
    gap: 20px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}

@media screen and (min-width: 1411px) and (max-width: 1430px) {
  .container_footer_top {
    gap: 50px;
  }
  .box_information_footer {
    gap: 25px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1431px) and (max-width: 1450px) {
  .container_footer_top {
    gap: 50px;
  }
  .box_information_footer {
    gap: 20px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 18px;
  }
}

@media screen and (min-width: 1451px) and (max-width: 1500px) {
  .container_footer_top {
    gap: 60px;
  }
  .box_information_footer {
    gap: 20px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 18px;
  }
}
@media screen and (min-width: 1501px) and (max-width: 1525px) {
  .container_footer_top {
    gap: 100px;
  }
  .box_information_footer {
    gap: 25px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 18px;
  }
}
@media screen and (min-width: 1526px) and (max-width: 1570px) {
  .container_footer_top {
    gap: 112px;
  }
  .box_information_footer {
    gap: 25px;
    width: 100%;
    /*justify-content: space-between;*/
  }
  .link_information_footer {
    font-size: 18px;
  }
}
