body footer.footer {
  background-color: #04012F;
  overflow: hidden;
}
body footer.footer .footer_top {
  padding: 40px 0 24px;
  border-bottom: solid 1px #ffffff;
}
body footer.footer .footer_top .col_wrapper {
  display: flex;
  flex-wrap: wrap;
}
body footer.footer .footer_top .col_wrapper > div {
  background-color: rgba(255, 255, 255, 0.04);
  border-right: 3px solid #04012F;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body footer.footer .footer_top .col_wrapper > div:last-child {
  border-right: none;
}
body footer.footer .footer_top .col_wrapper .col_1 {
  max-width: 30%;
}
body footer.footer .footer_top .col_wrapper .col_1 .logo {
  display: block;
  max-width: max-content;
}
body footer.footer .footer_top .col_wrapper .col_1 .logo img {
  height: auto;
  width: 100%;
  max-width: 354px;
}
body footer.footer .footer_top .col_wrapper .col_2 {
  max-width: 12%;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav {
  flex-direction: column;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item {
  max-width: max-content;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link {
  color: #ffffff;
  padding: 0 24px 0 0;
  position: relative;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:after {
  content: "";
  background: url("../../img/webp/arrow_nav_footer.webp") no-repeat center center/cover;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.2s ease;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:before {
  content: "";
  background-color: #ffffff;
  height: 2px;
  width: 12px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-6px, -50%) scaleX(0);
  transition: all 0.2s ease;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:hover {
  color: #F5C779;
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:hover:after {
  transform: translateX(4px);
}
body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:hover:before {
  transform: translate(-6px, -50%) scaleX(1);
}
body footer.footer .footer_top .col_wrapper .col_3 {
  max-width: 28%;
}
body footer.footer .footer_top .col_wrapper .col_3 ul li {
  padding: 4px 0;
}
body footer.footer .footer_top .col_wrapper .col_3 ul li a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  padding: 0;
  transition: all 0.2s ease;
  display: flex;
}
body footer.footer .footer_top .col_wrapper .col_3 ul li a img {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
  display: block !important;
}
body footer.footer .footer_top .col_wrapper .col_3 ul li a:hover {
  color: #F5C779;
}
body footer.footer .footer_top .col_wrapper .col_3 .list_social {
  gap: 12px;
  margin: 0;
  padding: 0;
}
body footer.footer .footer_top .col_wrapper .col_3 .list_social li a {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  padding: 9px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
body footer.footer .footer_top .col_wrapper .col_3 .list_social li a img {
  height: 30px;
  width: 30px;
  transition: all 0.4s ease-in-out;
}
body footer.footer .footer_top .col_wrapper .col_3 .list_social li a:after {
  content: "";
  background-color: #04012F;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
body footer.footer .footer_top .col_wrapper .col_3 .list_social li a:hover:after {
  height: 0;
  width: 0;
}
body footer.footer .footer_top .col_wrapper .col_4 {
  max-width: 30%;
}
body footer.footer .footer_top .col_wrapper .col_4 ul li a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  padding: 4px 0;
  transition: all 0.2s ease;
  display: flex;
}
body footer.footer .footer_top .col_wrapper .col_4 ul li a img {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
}
body footer.footer .footer_top .col_wrapper .col_4 ul li a:hover {
  color: #F5C779;
}
body footer.footer .footer_bottom {
  padding: 16px 0;
}
body footer.footer .footer_bottom p {
  font-size: 18px;
}
body footer.footer .footer_bottom p a {
  color: #ffffff;
  transition: all 0.1s linear;
}
body footer.footer .footer_bottom p a:hover {
  color: #F5C779;
}
body footer.footer .footer_bottom .nav {
  gap: 24px;
}
body footer.footer .footer_bottom .nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 18px;
  padding: 0;
}
body footer.footer .footer_bottom .nav .nav-item .nav-link:hover {
  color: #F5C779;
}

@media (max-width: 1780px) {
  body footer.footer .footer_top .col_wrapper .col_1 .logo img {
    height: auto;
    max-width: 304px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 {
    max-width: 14%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 {
    max-width: 26%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 ul li a {
    font-size: 20px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 ul li a img {
    height: 20px;
    width: 20px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 .list_social li a img {
    height: 24px;
    width: 24px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a {
    font-size: 18px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a img {
    height: 20px;
    width: 20px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a p {
    font-size: 18px;
  }
}
@media (max-width: 1580px) {
  body footer.footer .footer_top .col_wrapper > div {
    padding: 10px 15px;
  }
  body footer.footer .footer_top .col_wrapper .col_1 .logo img {
    max-width: 254px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 {
    max-width: 15%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 {
    max-width: 25%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 ul li a {
    font-size: 18px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 ul li a img {
    height: 18px;
    width: 18px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a {
    font-size: 16px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a img {
    height: 18px;
    width: 18px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a p {
    font-size: 16px;
  }
  body footer.footer .footer_top .col_wrapper ~ p {
    font-size: 14px;
  }
  body footer.footer .footer_bottom p {
    font-size: 16px;
  }
  body footer.footer .footer_bottom .nav .nav-item .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 1380px) {
  body footer.footer .footer_top .col_wrapper .col_1 .logo img {
    max-width: 214px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link {
    font-size: 14px;
    line-height: 22px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:after {
    height: 22px;
    width: 22px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 {
    max-width: 22%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 ul li a {
    font-size: 16px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 .list_social {
    gap: 8px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 .list_social li a {
    padding: 6px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 .list_social li a img {
    height: 20px;
    width: 20px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 {
    max-width: 33%;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a {
    font-size: 14px;
  }
  body footer.footer .footer_bottom p {
    font-size: 14px;
  }
  body footer.footer .footer_bottom .nav .nav-item .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 1180px) {
  body footer.footer .footer_top .col_wrapper > div {
    padding: 10px;
  }
  body footer.footer .footer_top .col_wrapper .col_1 {
    max-width: 26%;
  }
  body footer.footer .footer_top .col_wrapper .col_1 .logo img {
    max-width: 194px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 {
    max-width: 16%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 {
    max-width: 24%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 ul li a img {
    height: 16px;
    width: 16px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 .list_social {
    gap: 8px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 {
    max-width: 34%;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a img {
    height: 16px;
    width: 16px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a p {
    font-size: 14px;
  }
  body footer.footer .footer_top .col_wrapper ~ p {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  body footer.footer .footer_top .col_wrapper > div {
    padding: 20px 10px;
  }
  body footer.footer .footer_top .col_wrapper .col_1 {
    max-width: 100%;
    border-right: none;
    border-bottom: 3px solid #04012F;
  }
  body footer.footer .footer_top .col_wrapper .col_1 .logo img {
    max-width: 254px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 {
    max-width: 22%;
  }
  body footer.footer .footer_top .col_wrapper .col_3 {
    max-width: 32%;
  }
  body footer.footer .footer_top .col_wrapper .col_4 {
    max-width: 46%;
  }
}
@media (max-width: 767px) {
  body footer.footer .footer_top {
    padding: 20px 0;
  }
  body footer.footer .footer_top .col_wrapper > div {
    max-width: 100%;
    padding: 20px;
    border-right: none;
    border-bottom: 3px solid #04012F;
    align-items: start;
  }
  body footer.footer .footer_top .col_wrapper > div:last-child {
    border-bottom: none;
  }
  body footer.footer .footer_top .col_wrapper .col_2 {
    max-width: 100%;
  }
  body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 24px;
  }
  body footer.footer .footer_top .col_wrapper .col_2 .nav .nav-item .nav-link:after {
    height: 24px;
    width: 24px;
  }
  body footer.footer .footer_top .col_wrapper .col_3 {
    max-width: 100%;
  }
  body footer.footer .footer_top .col_wrapper .col_4 {
    max-width: 100%;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a {
    font-size: 16px;
  }
  body footer.footer .footer_top .col_wrapper .col_4 ul li a p {
    font-size: 16px;
  }
}

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