/*for main*/

.no_highlights,
img,
button,
a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer {
  display: block;
  width: 100%;
  position: relative;
  padding: 12em 0 10em;
  font-size: 10px;
}
.footer_container {
  display: block;
  width: 152em;
  margin: 0 auto;
  /*background-color: #F9F7FF;*/
  background-image: url(/media/images/bg_footer_desk.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  border-radius: 2em;
  position: relative;
}
.footer_info_box {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 5.4em 4.4em 5.2em;
}
.footer_links_line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10em;
  margin-top: 6.4em;
}
.footer_links_container {
  display: block;
}
.footer_links_title {
  display: block;
  font-size: 1.6em;
  line-height: 1.3em;
  text-transform: uppercase;
  color: #39296A;
  font-weight: 700;
}
.footer_links_list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2em;
  list-style: none;
}
.footer_link_item {
  display: block;
  margin-top: calc(1em - 4px);
  position: relative;
  padding: 2px 0;
}
.footer_link_item:first-child {
  margin-top: 0;
}
.footer_link_item::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #867FCD;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
}
.footer_link_item:hover::before {
  width: 100%;
}
.footer_link {
  display: block;
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 600;
  color: #867FCD;
  text-decoration: none;
  cursor: pointer;
}
.footer_docs_line {
  display: flex;
  font-display: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 6.4em;
}
.footer_docs_list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4em;
  list-style: none;
}
.footer_doc_item {
  display: block;
  position: relative;
  padding: 2px 0;
}
.footer_doc_item::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #39296A;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .4s ease;
}
.footer_doc_item:hover::before {
  width: 100%;
}
.footer_doc_link {
  display: block;
  font-size: 1.4em;
  line-height: 1.3em;
  color: #39296A;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.social_list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  list-style: none;
}
.social_item {
  display: block;
}
.social_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.4em;
  height: 4.4em;
  border-radius: 1.6em;
  background-color: #887EF1;
  cursor: pointer;
  font-size: 1em;
  transition: background-color .6s ease;
}
.social_link:hover {
  background-color: #BF9EFF;
}
.social_link img {
  display: block;
  width: 48%;
  height: 48%;
  object-fit: contain;
  transition: transform .6s ease;
}
.social_link:hover img {
  transform: scale(1.05);
}
.footer_bottom_line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-left: 9.7em;
  margin-top: 3.4em;
  gap: 14em;
}
.footer_bottom_line:before {
  content: '';
  display: block;
  width: 7em;
  height: 3.6em;
  background-image: url("../img/roche.ec0e8bb2c410.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.footer_bottom_line_text {
  display: block;
  font-size: 1.2em;
  line-height: 1.5em;
  color: #867FCD;
  width: 22em;
}
.footer_bottom_line_text:nth-child(1) {
  width: 45em;
}
.footer_bottom_line_text a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.footer_bottom_line_text a:hover {
  text-decoration: underline;
}
.flying_buttons_container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
/*  background-color: #FFFFFF;
  border-bottom-left-radius: 4em;
  padding-left: 3em;
  padding-bottom: 3em;*/
}
.white_button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 1.6em;
  font-size: 1em;
  font-family: "Raleway";
  border: 2px solid #887EF1;
  transition: transform .6s ease, background-color .6s ease;
  outline: none;
  cursor: pointer;
}
.white_button:hover {
  transform: scale(1.05);
  background-color: #887EF1;
}
.white_button span {
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 600;
  color: #3F4060;
  transition: color .6s ease;
}
.white_button:hover span {
  color: #FFFFFF;
}
.lavender_button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #887EF1;
  border-radius: 1.6em;
  font-size: 1em;
  font-family: "Raleway";
  border: 2px solid #887EF1;
  transition: transform .6s ease, background-color .6s ease;
  outline: none;
  cursor: pointer;
}
.lavender_button:hover {
  transform: scale(1.05);
  background-color: #FFFFFF;
}
.lavender_button span {
  font-size: 1.6em;
  line-height: 1.3em;
  font-weight: 600;
  color: #FFFFFF;
  transition: color .6s ease;
}
.lavender_button:hover span {
  color: #887EF1;
}
.footer_map_button,
.footer_help_button {
  width: 23em;
  height: 6em;
}
.footer_help_button_mobile {
  display: none;
}
.footer_map_button:before {
  content: '';
  display: block;
  width: 2em;
  height: 2em;
  background-image: url(/media/images/icon_map_lavender.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: .8em;
}
.footer_help_button {
  margin-left: 2em;
}
.footer_dynamic_images_box {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.footer_dynamic_image {
  display: block;
  position: absolute;
}
.img_footer_hand_1 {
  width: 29em;
  top: 0;
  right: 49em;
  transform: rotate(130deg);
  transform-origin: 50% 0;
  transition: transform 1s ease .5s;
}
.img_footer_hand_2 {
  width: 23.8em;
  bottom: 0;
  right: 0;
  transform: translateY(40em) translateX(20em);
  transition: transform 1s ease .8s;
}
.img_footer_heart_wrapper {
  width: 17em;
  top: 24em;
  right: 27em;
  transform: scale(0);
  transition: transform 1s ease 1s;
}
.img_footer_heart_wrapper:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/media/images/img_footer_heart.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transform: scale(.9);
}
.img_footer_heart {
  display: block;
  width: 100%;
}
.active_dynamic_elem .img_footer_hand_1,
.active_dynamic_elem .img_footer_hand_2,
.active_dynamic_elem .img_footer_heart_wrapper {
  transform: none;
}
.active_dynamic_elem .img_footer_heart {
  animation: img_footer_heart 4s linear 2s infinite;
}
@keyframes img_footer_heart {
  0%, 100% {
    transform: scale(1.0);
  }
  80% {
    transform: scale(.8);
  }
  90% {
    transform: scale(1.05);
  }
}
.active_dynamic_elem .img_footer_heart_wrapper:before {
  animation: img_footer_heart_back 4s linear 2s infinite;
}
@keyframes img_footer_heart_back {
  0%, 70% {
    opacity: 0;
    transform: scale(.9);
  }
  85% {
    opacity: 1;
    transform: scale(.6);
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media screen and (max-width: 1600px) {
  .footer {
    font-size: .52vw;
  }
  /* .footer_container {
    width: 100%;
  } */
}

@media screen and (max-width: 769px) {
  .footer {
    padding: 0;
    font-size: 1vw;
  }
  .footer_container {
    width: 100%;
    margin: 0;
    background-color: #F9F7FF;
    background-image: none;
    border-radius: 0;
  }
  .footer_info_box {
    padding: 16em 3em 50em;
  }
  .footer_links_line {
    display: block;
    gap: 8em;
    margin-top: 8em;
  }
  .footer_links_container {
    width: 100%;
    margin-top: 8em;
  }
  .footer_links_title {
    font-size: 5em;
    line-height: 1.2em;
  }
  .footer_links_list {
    flex-wrap: wrap;
    height: 21em;
    margin-top: 4em;
  }
  .footer_link_item {
    margin-top: 0;
    margin-bottom: calc(2em - 4px);
    padding: 2px 0;
    width: 50%;
  }
  .footer_link_item:nth-child(n+4) {
    padding-left: 8em;
  }
  .footer_link_item::before {
    height: 1px;
    border-radius: 1px;
  }
  .footer_link {
    font-size: 4em;
    line-height: 1.2em;
  }
  .footer_docs_line {
    display: block;
    margin-top: 8em;
  }
  .footer_docs_list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2em 0em;
  }
  .footer_doc_item {
    display: block;
    width: 48%;
    padding: 2px 0;
  }
  .footer_doc_item::before {
    height: 1px;
    border-radius: 1px;
  }
  .footer_doc_link {
    font-size: 3.5em;
    line-height: 1.3em;
  }
  .social_list {
    gap: 2em;
    margin-top: 8em;
  }
  .social_link {
    width: 12em;
    height: 12em;
    border-radius: 4em;
  }
  .social_link img {
    width: 48%;
    height: 48%;
  }
  .footer_bottom_line {
    display: block;
    padding-left: 0;
    padding-top: 22em;
    margin-top: 3.4em;
    gap: 0;
    border-top: 1px solid #F8EEFF;
  }
  .footer_bottom_line:before {
    width: 20em;
    height: 10em;
    left: 0;
    top: 8em;
  }
  .footer_bottom_line_text {
    font-size: 3em;
    line-height: 1.5em;
    width: 100%;
    margin-top: 1em;
  }
  .footer_bottom_line_text:nth-child(1) {
    width: 100%;
    margin-top: 0;
  }
  .flying_buttons_container {
    display: none;
  }
  .white_button {
    border-radius: 4em;
    border: 1px solid #887EF1;
  }
  .white_button span {
    font-size: 3.5em;
  }
  .lavender_button {
    border-radius: 4em;
    border: 1px solid #887EF1;
  }
  .lavender_button span {
    font-size: 3.5em;
  }
  .footer_help_button_mobile {
    display: flex;
    width: 100%;
    height: 12em;
    margin-top: 8em;
  }
  .footer_dynamic_images_box {
    display: none;
  }
}