.footer_3_main_footer {
  padding: 0 0 0;
  background-color: #1a160e;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

.footer_3_logo a {
  display: inline-block;
  width: 180px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.footer_3_footer_first {
  padding: 30px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.footer_3_footer_first > div {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.footer_3_footer_articles {
  display: grid;
  grid-template-columns: 1fr 1fr 0fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 24px;
}
.footer_3_footer_articles h3 {
  padding: 0 0 16px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.footer_3_footer_articles .footer_3_contacts li {
  padding: 0 0 0 30px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 20px;
}
.footer_3_footer_articles .footer_3_contacts li.phone {
  background-image: url(../img/phone_white_icon.svg);
}
.footer_3_footer_articles .footer_3_contacts li.email {
  background-image: url(../img/email_white_icon.svg);
}
.footer_3_footer_articles li {
  margin: 0 0 12px;
}
.footer_3_footer_articles li a {
  font-size: 16px;
  line-height: 1.33;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0);
  text-underline-offset: 6px;
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.footer_3_footer_articles li a:hover {
  text-underline-offset: 2px;
  text-decoration-color: rgb(255, 255, 255);
}
.footer_3_footer_articles p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.33;
  color: #fff;
}

.footer_3_footer_second {
  padding: 12px 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.footer_3_footer_second > div {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_3_copyright {
  text-align: center;
  font-size: 18px;
  line-height: 1.33;
  color: rgba(255, 255, 255, 0.75);
}

.footer_3_to_top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #0a91b0;
  border-radius: 50%;
}
.footer_3_to_top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg) translate(2px, 2px);
}

.footer_3_cookie_popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e6b52e;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.8);
  width: 80%;
  max-width: 900px;
  z-index: 1000;
}
.footer_3_cookie_popup .footer_3_cookie_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer_3_cookie_popup .footer_3_cookie_content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.footer_3_cookie_popup .footer_3_cookie_content p a {
  color: #06AED5;
  text-decoration: underline;
}
.footer_3_cookie_popup .footer_3_cookie_content p a:hover {
  color: #fff;
}
.footer_3_cookie_popup .footer_3_cookie_content .footer_3_btn_accept {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 15px;
}
.footer_3_cookie_popup .footer_3_cookie_content .footer_3_btn_accept:hover {
  background-color: #707070;
  color: #fff;
}
.footer_3_cookie_popup.hidden {
  display: none;
}

@media (min-width: 240px) and (max-width: 1023px) {
  .footer_3_footer_articles {
    grid-template-columns: 1fr;
  }
  .footer_3_footer_articles h3 {
    font-size: 18px;
  }
}
