@keyframes cookies_alert_backdrop_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cookies_alert_backdrop_hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cookies_alert_show {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookies_alert_hide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(200px);
  }
}
body {
  font-family: "poppinsregular", sans-serif;
  background-color: #0d133e;
  color: #000;
}
@media (min-width: 1200px) {
  body .container {
    max-width: 1230px;
  }
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "bebas_neueregular", sans-serif;
}
body .footer {
  background-color: #fff;
}
body .footer .footer-top {
  padding: 100px 0 44px;
}
body .footer .footer-top .footer-brand {
  max-width: 195px;
  margin-bottom: 37px;
  height: auto;
}
body .footer .footer-top .contact-title {
  font-size: 16px;
  font-family: "poppinsbold", sans-serif;
  text-transform: uppercase;
}
body .footer .footer-top .contacts .icon {
  width: 21px;
  height: 21px;
}
body .footer .footer-top .contacts .phone,
body .footer .footer-top .contacts .mail {
  color: #4d4d4d;
  margin-left: 20px;
  font-size: 16px;
  text-decoration: none;
}
body .footer .footer-top .contacts .phone:hover,
body .footer .footer-top .contacts .mail:hover {
  color: #29abe2;
}
body .footer .footer-top .menu-title {
  font-size: 16px;
  font-family: "poppinsbold", sans-serif;
  color: #0d133e;
  margin-bottom: 23px;
  text-transform: uppercase;
}
body .footer .footer-top .menu {
  margin-left: 0;
}
body .footer .footer-top .menu .link {
  margin-bottom: 4px;
}
body .footer .footer-top .menu .link a {
  font-size: 14px;
  color: #838383;
  text-decoration: none;
}
body .footer .footer-top .menu .link a:hover {
  color: #29abe2;
}
body .footer .footer-top .follow-title {
  font-size: 16px;
  font-family: "poppinsbold", sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}
body .footer .footer-top .social {
  display: flex;
  align-items: center;
  gap: 15px;
}
body .footer .footer-top .social li {
  text-transform: uppercase;
  font-weight: 600;
}
body .footer .footer-top .social li a {
  color: #fff;
  background-color: #0d133e;
  text-decoration: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}
body .footer .footer-top .social li a img {
  width: 100%;
  max-width: 14px;
  height: auto;
  filter: brightness(0) invert(1);
}
body .footer .footer-top .social li a:hover, body .footer .footer-top .social li a:focus {
  background-color: #29abe2;
}
body .footer .footer-bottom {
  background-color: #29abe2;
  padding: 12px 0;
  font-size: 12px;
}
body .footer .list-unstyled {
  margin-left: 0 !important;
}
body .cookies_alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  z-index: 999999999999;
}
body .cookies_alert .cookies_content_wrapper {
  display: flex;
  align-items: center;
  min-height: 100%;
  max-width: 500px;
  margin: auto;
}
body .cookies_alert .cookies_content_wrapper .cookies_content {
  background-color: #fff;
  border: 1px solid #D1D1D1;
  width: 100%;
  border-radius: 10px;
  margin: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-200px);
  transition: all 0.3s ease;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 15px;
  padding: 20px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 26px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert {
  background: transparent;
  border: solid 1px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.2s ease;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert span {
  display: block;
  background: url("../../../img/png/close.png") no-repeat center center/8px 8px;
  height: 8px;
  width: 8px;
  filter: brightness(0) invert(0.6);
  transition: all 0.2s ease;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert:hover, body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert:focus {
  border: solid 1px rgba(0, 0, 0, 0.6);
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert:hover span, body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert:focus span {
  filter: brightness(0) invert(0.3);
  transform: rotate(90deg);
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header p {
  width: 100%;
  font-size: 15px;
  color: #838383;
  letter-spacing: 0.1px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body {
  padding: 20px;
  border-top: 1px solid #D1D1D1;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check .form-check-input {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 6px;
  border: 1px solid #838383;
  margin: 0;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.1) !important;
  background-image: none !important;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check .form-check-input:after {
  content: "";
  display: block;
  background: url("../../../img/webp/check.webp") no-repeat center center/12px 10px;
  height: 10px;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(180deg);
  transition: all 0.3s ease;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check .form-check-input:checked[type=checkbox] {
  background-color: #29abe2;
  border: 1px solid #29abe2;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check .form-check-input:checked[type=checkbox]:after {
  transform: translate(-50%, -50%) scale(1) rotate(0);
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check .form-check-label {
  color: #838383;
  font-size: 14px;
  letter-spacing: 0.1px;
  opacity: 1;
  user-select: none;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .form-check .form-check-label span {
  color: #4d4d4d;
  font-weight: 600;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .btn-group {
  width: 100%;
  justify-content: space-between;
  column-gap: 20px;
  margin-top: 20px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .btn-group .btn {
  font-family: "poppinsmedium", sans-serif;
  font-size: 16px;
  line-height: 28px;
  border-radius: 50px;
  width: 50%;
  padding: 10px 20px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .btn-group .btn:hover {
  color: #29abe2;
  border-color: #29abe2;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_footer {
  background-color: #F3F3F3;
  padding: 12px 20px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_footer p {
  color: #838383;
  font-size: 14px;
  text-align: center;
  margin: 0;
  letter-spacing: 0.1px;
}
body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_footer p span {
  font-family: "poppinsmedium", sans-serif;
  color: #4d4d4d;
}
body .cookies_alert:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: brightness(0.4) blur(4px);
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  body .footer .footer-top {
    padding: 50px 0 40px;
  }
  body .footer .footer-top .contact-title {
    font-size: 14px;
  }
  body .footer .footer-top .menu-title {
    font-size: 14px;
  }
  body .footer .footer-top .contacts .phone,
body .footer .footer-top .contacts .mail {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .title {
    font-size: 18px;
    line-height: 22px;
  }
  body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header .close_cookies_alert {
    padding: 6px;
  }
  body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_header p {
    font-size: 14px;
  }
  body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .btn-group {
    flex-direction: column;
    row-gap: 10px;
    margin-top: 0;
  }
  body .cookies_alert .cookies_content_wrapper .cookies_content .cookies_body .btn-group .btn {
    font-size: 14px;
    padding: 6px 20px;
    width: 100%;
  }
}

body.cookies_alert_show {
  overflow: hidden;
  padding-right: 17px;
}
body.cookies_alert_show .header .navbar .navbar-brand {
  margin-left: -8px;
}
body.cookies_alert_show .header .navbar .navbar-toggler {
  margin-right: 8px;
}
body.cookies_alert_show .cookies_alert {
  display: block;
}
body.cookies_alert_show .cookies_alert .cookies_content_wrapper .cookies_content {
  animation: cookies_alert_show 0.5s ease forwards;
  animation-delay: 0.5s;
}
body.cookies_alert_show .cookies_alert:before {
  animation: cookies_alert_backdrop_show 0.3s ease forwards;
  animation-delay: 0.2s;
}

body.cookies_alert_hide .cookies_alert {
  display: block;
}
body.cookies_alert_hide .cookies_alert .cookies_content_wrapper .cookies_content {
  opacity: 1;
  transform: translateY(0);
  animation: cookies_alert_hide 0.5s ease forwards;
  animation-delay: 0.3s;
}
body.cookies_alert_hide .cookies_alert:before {
  opacity: 1;
  animation: cookies_alert_backdrop_hide 0.3s ease forwards;
  animation-delay: 0.8s;
}

/*# sourceMappingURL=footer.css.map */
