.new-container {
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
  width: 100%;
  max-width: 1920px;
}
@media (max-width: 991.5px) {
  .new-container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 575.5px) {
  .new-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@font-face {
  font-family: "NotoSans";
  font-weight: 400;
  font-display: swap;
  font-style: normal;
  src: local("NotoSans"), url("/fonts/NotoSans/NotoSans.woff2") format("woff2");
}
@font-face {
  font-family: "NotoSans";
  font-weight: 500;
  font-display: swap;
  font-style: normal;
  src: local("NotoSans"), url("/fonts/NotoSans/NotoSans-Medium.woff2") format("woff2");
}
.header-new {
  position: relative;
  z-index: 9;
  font-family: "NotoSans";
}
.header-new__top {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  transition: background-color 0.6s ease-out;
}
@media (max-width: 991.5px) {
  .header-new__top {
    padding: 18px 0;
  }
}
.header-new__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-new__burger {
  position: relative;
  display: none;
  border: none;
  width: 24px;
  height: 19px;
  font-size: 0;
  background: none;
  cursor: pointer;
}
.header-new__burger::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 1px;
  background: #231f20;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.4s ease-out, top 0.4s ease-out, background-color 0.4s ease-out;
}
.header-new__burger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #231f20;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform 0.4s ease-out, bottom 0.4s ease-out, background-color 0.4s ease-out;
}
@media (max-width: 991.5px) {
  .header-new__burger {
    display: block;
  }
}
.header-new__burger-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #231f20;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease-out;
}
.header-new_active .header-new__burger::before {
  top: 50%;
  background-color: #fff;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1.3);
}
.header-new_active .header-new__burger::after {
  bottom: 50%;
  background-color: #fff;
  transform: translateX(-50%) translateY(50%) rotate(45deg) scale(1.3);
}
.header-new_active .header-new__burger-inner {
  opacity: 0;
}
.header-new__menu {
  display: flex;
  list-style: none;
  padding-left: 42px;
}
.header-new__menu > li {
  position: relative;
}
@media (max-width: 991.5px) {
  .header-new__menu {
    display: none;
  }
}
.header-new__menu-link {
  position: relative;
  margin: 0 20px;
  padding: 9px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #231f20;
  transition: color 0.6s ease-out;
}
.header-new__menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 31px;
}
.header-new__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #231f20;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease-out;
}
.header-new__menu-link:hover::before {
  pointer-events: all;
}
.header-new__menu-link:hover::after {
  transform: scaleX(1);
}
.header-new__btns {
  display: flex;
  align-items: center;
}
.header-new__btns .header-new__btn {
  margin-right: 68px;
}
@media (max-width: 991.5px) {
  .header-new__btns {
    display: none;
  }
}
.header-new__btn-search {
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  font-family: "NotoSans";
  background: none;
  cursor: pointer;
}
.header-new__btn-search::after, .header-new__btn-search::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 33px;
  height: 1px;
  background: #fff;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s, transform 0.2s;
}
.header-new__btn-search path {
  transition: stroke 0.6s ease-out;
}
.header-new__btn-search:hover path {
  stroke: #d1d2d4;
}
.header-new__search {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  padding-top: 7px;
  padding-bottom: 20px;
  width: 100%;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease-out, background-color 0.3s ease-out;
}
.header-new__search-input {
  flex-grow: 2;
  margin-right: 68px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 24px 4px;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  background: transparent;
}
.header-new__search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.header-new__search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.header-new__search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 991.5px) {
  .header-new__search-input {
    margin-right: 14px;
    padding: 10px 4px;
    font-size: 16px;
    line-height: 20px;
  }
}
.header-new__search-btn {
  flex-shrink: 0;
  border: none;
  padding: 0;
  background: none;
  transform: translateY(6px);
  cursor: pointer;
}
.header-new__search-btn path {
  transition: stroke 0.3s ease-out;
}
@media (max-width: 991.5px) {
  .header-new__search-btn svg {
    width: 16px;
    height: 16px;
  }
}
.header-new__search-btn:hover path {
  stroke: #d1d2d4;
}
@media (max-width: 991.5px) {
  .header-new__search-btn {
    transform: translateY(3px);
  }
}
.header-new__search-form {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 991.5px) {
  .header-new__search-form {
    padding-right: 5px;
  }
}
.header-new_search .header-new__search {
  background: #3592c0;
  transform: scaleY(1);
}
.header-new_search .header-new__btn-search {
  position: relative;
}
.header-new_search .header-new__btn-search::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-new_search .header-new__btn-search::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-new_search .header-new__btn-search svg {
  display: none;
}
.header-new_active .header-new__top {
  background: #3592c0;
}
.header-new_active .header-new__search-btn path {
  stroke: #fff;
}
.header-new_active .header-new__btn-search path {
  stroke: #fff;
}
.header-new_active .header-new__menu a {
  color: #fff;
}
.header-new_active .header-new__menu a::after {
  background-color: #fff;
}
.header-new_active .header-new__menu-link::before {
  pointer-events: all;
}
.header-new_active .header-new__logo path {
  fill: #fff;
}
.header-new_active .header-new__btn {
  color: #231f20;
  background: #c9db43;
}
.header-new_active .header-new__btn:hover {
  background: #a6bd38;
}
.header-new__products, .header-new__about, .header-new__club, .header-new__where {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top center;
  transition: background-color 0.6s ease-out;
}
.header-new__products .header-new__container, .header-new__about .header-new__container, .header-new__club .header-new__container, .header-new__where .header-new__container {
  padding-top: 7px;
  padding-bottom: 20px;
}
.header-new__products .header-new__container {
  position: relative;
  align-items: flex-start;
  padding-top: 26px;
  padding-right: 40px;
  padding-left: 579px;
  min-height: 224px;
  background-image: url(../img/menu-novelty.png);
  background-repeat: no-repeat;
  background-position: left 104px top;
}
.header-new__products .header-new__container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  margin-left: 110px;
  width: 100%;
  height: 224px;
  background-color: #97D4C8;
  transform: translateX(-100%);
}
@media (max-width: 1249.5px) {
  .header-new__products .header-new__container::after {
    display: none;
  }
}
@media (max-width: 1366.5px) {
  .header-new__products .header-new__container {
    padding-left: 473px;
    background-position: left 0 top;
  }
}
@media (max-width: 1249.5px) {
  .header-new__products .header-new__container {
    padding-left: 80px;
    background: none;
  }
}
.header-new__products-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 855px;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.header-new__products-menu > li {
  margin-right: 71px;
}
.header-new__products-menu > li:nth-child(3) {
  margin-right: auto;
  padding-right: 20px;
}
.header-new__products-menu > li:last-child {
  margin-right: 0;
}
.header-new__products-menu a {
  position: relative;
  display: inline-block;
  margin-bottom: 23px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}
.header-new__products-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease-out;
}
.header-new__products-menu a:hover::after {
  transform: scaleX(1);
}
.header-new__products-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-new__products-menu ul a {
  margin-bottom: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 400;
  font-size: 14px;
}
.header-new_menu-products .header-new__products {
  background-color: #3592c0;
  transform: scaleY(1);
}
.header-new_menu-products .header-new__products .header-new__products-menu {
  opacity: 1;
}
.header-new_menu-products .header-new__top {
  background-color: #3592c0;
}
.header-new_menu-about [data-for=about] ~ .header-new__menu-sub, .header-new_menu-club [data-for=club] ~ .header-new__menu-sub {
  background-color: #3592c0;
  transform: scaleY(1);
}
.header-new_menu-about [data-for=about] ~ .header-new__menu-sub a, .header-new_menu-club [data-for=club] ~ .header-new__menu-sub a {
  opacity: 1;
}
.header-new__menu-sub {
  position: absolute;
  left: -12px;
  top: 100%;
  list-style: none;
  margin-top: 36px;
  padding: 30px 32px;
  padding-bottom: 49px;
  min-width: 197px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: background-color 1s ease-out;
}
.header-new__menu-sub li:not(:last-child) {
  margin-bottom: 1px;
}
.header-new__menu-sub a {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.header-new__menu-sub a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease-out;
}
.header-new__menu-sub a:hover::after {
  transform: scaleX(1);
}
.header-new__burger-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  width: 100%;
  background: #fff;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.6s ease-out, background-color 0.6s ease-out;
}
.header-new_menu-burger .header-new__burger-menu {
  background-color: #3592c0;
  transform: scaleY(1);
}
.header-new__burger-menu-top {
  padding: 24px 49px;
  height: calc(var(--vh, 1vh) * 100 - 56px - 74px);
  min-height: 240px;
  max-height: 600px;
}
.header-new__burger-menu-bottom {
  padding: 16px 0;
}
.header-new__burger-menu-wrapper {
  width: 100%;
}
.header-new__burger-menu-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  transition: transform 0.6s ease-out;
}
.header-new__burger-menu-list > li:not(:last-child) {
  margin-bottom: 20px;
}
.header-new__burger-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-new__burger-menu-list a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}
.header-new__burger-sub-menu {
  position: absolute;
  left: 150%;
  top: 0;
  width: 100%;
}
.header-new__burger-sub-menu > a {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.header-new__burger-sub-menu > a::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 7px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}
.header-new__burger-sub-menu ul li {
  margin-bottom: 10px;
}
.header-new__burger-sub-menu ul a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.header-new__burger-menu-list_active {
  transform: translateX(-150%);
}
.header-new__burger-menu-item_has-child .header-new__burger-sub-menu {
  opacity: 0;
  pointer-events: none;
}
.header-new__burger-menu-item_has-child.header-new__burger-menu-item_active .header-new__burger-sub-menu {
  opacity: 1;
  pointer-events: all;
}
.header-new__burger-btn {
  border: 1px solid #c9db43;
  border-radius: 20px;
  padding: 8px 14px;
  font-family: "NotoSans";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #231f20;
  background: #c9db43;
}
.header-new__burger-search-btn {
  border: none;
  padding-right: 0;
  padding-left: 26px;
  font-family: "NotoSans";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  background: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M11.1392 11.1394L15.4286 15.4287M11.1392 11.1394C12.2595 10.0191 12.9524 8.47148 12.9524 6.76199C12.9524 3.3431 10.1808 0.571533 6.76187 0.571533C3.34298 0.571533 0.571411 3.3431 0.571411 6.76199C0.571411 10.1809 3.34298 12.9525 6.76187 12.9525C8.47135 12.9525 10.019 12.2596 11.1392 11.1394Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E %3C/svg%3E ");
  background-position: left center;
  background-repeat: no-repeat;
}
.header-new__btn {
  border: 1px solid #8d8d8d;
  border-radius: 28px;
  padding: 15px 22px;
  font-family: "NotoSans";
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #231f20;
  background-color: transparent;
  transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
}
.header-new__btn:hover {
  border-color: #a6bd38;
  color: #fff;
  background-color: #a6bd38;
}
@media (max-width: 575.5px) {
  .header-new__btn {
    padding: 7px 16px;
    font-size: 14px;
    letter-spacing: -0.03em;
  }
}
.header-new__logo {
  font-size: 0;
}
.header-new__logo-inner {
  width: 154px;
  height: 30px;
}
@media (max-width: 766.5px) {
  .header-new__logo-inner {
    width: auto;
    height: 20px;
  }
}

.footer-new {
  background: #414141;
  font-family: "NotoSans";
}
.footer-new__top {
  border-bottom: 1px solid rgba(209, 210, 212, 0.16);
  padding-top: 29px;
  padding-bottom: 11px;
}
@media (max-width: 991.5px) {
  .footer-new__top {
    padding-top: 18px;
  }
}
@media (max-width: 575.5px) {
  .footer-new__top {
    padding-bottom: 0;
  }
}
.footer-new__logo {
  margin-right: 30px;
  margin-bottom: 16px;
}
.footer-new__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.footer-new__btns {
  margin-bottom: 16px;
}
.footer-new__btns .footer-new__btn-icon:not(:last-child) {
  margin-right: 37px;
}
@media (max-width: 766.5px) {
  .footer-new__btns .footer-new__btn-icon:not(:last-child) {
    margin-right: 7px;
  }
}
.footer-new__center {
  border-bottom: 1px solid rgba(209, 210, 212, 0.16);
  padding-top: 48px;
  padding-bottom: 22px;
}
.footer-new__center .footer-new__container {
  align-items: flex-start;
}
@media (max-width: 766.5px) {
  .footer-new__center {
    padding-top: 15px;
    padding-bottom: 39px;
  }
}
.footer-new__menu {
  display: flex;
  list-style: none;
  margin: 0;
  margin-right: auto;
  padding: 0;
  padding-right: 30px;
}
@media (max-width: 991.5px) {
  .footer-new__menu {
    flex-wrap: wrap;
    padding-right: 0;
    width: 100%;
  }
}
.footer-new__menu > li:nth-child(1) {
  margin-right: 77px;
}
@media (max-width: 1249.5px) {
  .footer-new__menu > li:nth-child(1) {
    margin-right: 60px;
  }
}
@media (max-width: 991.5px) {
  .footer-new__menu > li:nth-child(1) {
    margin-right: 15px;
  }
}
@media (max-width: 766.5px) {
  .footer-new__menu > li:nth-child(1) {
    margin-bottom: 1px;
  }
}
.footer-new__menu > li:nth-child(2) {
  margin-right: 95px;
}
@media (max-width: 1249.5px) {
  .footer-new__menu > li:nth-child(2) {
    margin-right: 60px;
  }
}
@media (max-width: 991.5px) {
  .footer-new__menu > li:nth-child(2) {
    order: 3;
    margin-right: 15px;
  }
}
.footer-new__menu > li:nth-child(3) {
  margin-right: 84px;
}
@media (max-width: 1249.5px) {
  .footer-new__menu > li:nth-child(3) {
    margin-right: 60px;
  }
}
@media (max-width: 991.5px) {
  .footer-new__menu > li:nth-child(3) {
    order: 2;
    margin-right: 0;
  }
}
@media (max-width: 991.5px) {
  .footer-new__menu > li:nth-child(4) {
    order: 4;
  }
}
@media (max-width: 991.5px) {
  .footer-new__menu > li {
    margin-bottom: 40px;
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 766.5px) {
  .footer-new__menu > li {
    margin-bottom: 30px;
  }
}
.footer-new__menu a {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 9px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-new__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease-out;
}
.footer-new__menu a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 766.5px) {
  .footer-new__menu a {
    margin-bottom: 18px;
    font-size: 19px;
  }
}
.footer-new__menu-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-new__menu-sub li {
  margin-bottom: 1px;
}
@media (max-width: 575.5px) {
  .footer-new__menu-sub li {
    margin-bottom: 2px;
  }
}
.footer-new__menu-sub a {
  margin-bottom: 0;
  padding: 5px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: unset;
  color: #fff;
}
@media (max-width: 766.5px) {
  .footer-new__menu-sub a {
    margin-bottom: 0;
  }
}
.footer-new__socials {
  padding-top: 8px;
}
.footer-new__socials-title {
  margin-bottom: 28px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.029em;
  color: #8d8d8d;
}
@media (max-width: 766.5px) {
  .footer-new__socials-title {
    margin-bottom: 23px;
  }
}
.footer-new__socials-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.5px) {
  .footer-new__socials-list {
    justify-content: flex-start;
  }
}
.footer-new__socials-list li:not(:last-child) {
  margin-right: 5px;
}
.footer-new__socials-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d2d4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-out;
}
.footer-new__socials-list a:hover {
  background-color: #a6bd38;
  color: #fff;
  border: 1px solid #a6bd38;
}
.footer-new__bottom {
  padding-top: 35px;
}
.footer-new__bottom .footer-new__container {
  flex-direction: row-reverse;
}
@media (max-width: 991.5px) {
  .footer-new__bottom .footer-new__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 766.5px) {
  .footer-new__bottom {
    padding-top: 10px;
  }
}
.footer-new__rights {
  margin-right: auto;
  margin-bottom: 40px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.029em;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 575.5px) {
  .footer-new__rights {
    margin-bottom: 20px;
  }
}
.footer-new__links {
  display: flex;
  list-style: none;
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
}
.footer-new__links li:not(:last-child) {
  margin-right: 45px;
}
@media (max-width: 991.5px) {
  .footer-new__links li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.footer-new__links a {
  position: relative;
  padding-top: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 4px;
  letter-spacing: -0.029em;
  text-align: right;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s ease-out;
}
.footer-new__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease-out;
}
.footer-new__links a:hover {
  color: #fff;
}
.footer-new__links a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 991.5px) {
  .footer-new__links {
    flex-direction: column;
  }
}
.footer-new__logo {
  font-size: 0;
}
.footer-new__logo-inner {
  width: 154px;
  height: 30px;
}
@media (max-width: 766.5px) {
  .footer-new__logo-inner {
    width: auto;
    height: 20px;
  }
}
.footer-new__btn-icon {
  display: inline-block;
  outline: none;
  border: 1px solid #8d8d8d;
  border-radius: 30px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.footer-new__btn-icon svg {
  margin-right: 6px;
}
.footer-new__btn-icon:hover {
  outline: none;
  border: 1px solid #a6bd38;
  color: #fff;
  background-color: #a6bd38;
  transition: all 0.3s ease-out;
}