@charset "UTF-8";

/*fonts*/
@font-face {
    font-family: "Actay";
    src: url("../fonts/Actay-Regular.eot");
    src: url("../fonts/Actay-Regular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/Actay-Regular.woff") format("woff"),
    url("../fonts/Actay-Regular.woff2") format("woff2"),
    url("../fonts/Actay-Regular.ttf") format("truetype"),
    url("../fonts/Actay-Regular.otf");
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: "Actay";
    src: url("../fonts/ActayWide-Bold.eot");
    src: url("../fonts/ActayWide-Bold.eot?#iefix")format("embedded-opentype"),
    url("../fonts/ActayWide-Bold.woff") format("woff"),
    url("../fonts/ActayWide-Bold.woff2") format("woff2"),
    url("../fonts/ActayWide-Bold.ttf") format("truetype"),
    url("../fonts/ActayWide-Bold.otf");
    font-style: normal;
    font-weight: 700;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Actay";
  font-weight: 400;
}


a,
a:active,
a:focus,
a:visited,
a:hover{
  border: none;
  outline: none;
  text-decoration: none;
}


.new-btn,
.new-btn:active,
.new-btn:focus,
.new-btn:visited,
.new-btn:hover{
  border: none;
  outline: none;
  color: #fff;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  translate: all 0.3s;
  font-family: "Actay";
  display: inline-block;
  text-decoration: none;
  padding: 16px 32px 14px 32px;
  background: rgba(241, 96, 50, 1);
}
.new-btn:hover{
  background: rgba(255, 126, 80, 1);
}



.new-title{
  line-height: 1;
  font-size: 32px;
  font-weight: 700;
  color: #141414;
  text-transform: uppercase;
}

@media(max-width: 991px){
  .overflow-x{
    overflow-x: auto;
  }
}

/*new-stock*/
.new-stock__wrapper{
  margin-bottom: 60px;
}
.new-stock__wrapper .new-title{
  margin-bottom: 24px;
}
.new-stock{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.new-stock__item{
  color: #fff;
  display: flex;
  padding: 32px;
  height: 400px;
  position: relative;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  flex: 0 1 calc(25% - 20px);
}
.new-stock__item::after{
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.87%, rgba(0, 0, 0, 0.2) 100%),
  linear-gradient(180deg, rgba(0, 0, 0, 0) 52.74%, rgba(0, 0, 0, 0.2) 64.1%, rgba(0, 0, 0, 0.2) 100%),
  linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.new-stock__title{
  z-index: 2;
  font-size: 28px;
  font-weight: 700;
  line-height: 90%;
  position: relative;
  font-family: "Actay";
}
.new-stock__deck{
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 32px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  font-family: "Actay";
}

@media(max-width: 1439px){
  .new-stock__title{
    font-size: 24px;
  }
  .new-stock__deck{
    font-size: 12px;
  }
}
@media(max-width: 1199px){
  .new-stock__item{
    padding: 16px;
    height: 400px;
    flex: 0 1 calc(25% - 20px);
  }
  .new-stock__title{
    font-size: 24px;
  }
  .new-stock__deck{
    font-size: 12px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
@media(max-width: 991px){
  .new-stock{
    min-width: 767px;
  }
  .new-stock__item{
    width: 176px;
    height: 240px;
    flex: 0 1 calc(25% - 8px);
  }
  .new-stock__title{
    font-size: 15px;
    line-height: 1;
  }
  .new-stock__deck{
    font-size: 10px;
  }
}



/*new-category*/
.new-category{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.new-category__wrapper{
  margin-bottom: 60px;
}
.new-category__wrapper .new-title{
  margin-bottom: 24px;
}
.new-category__item,
.new-category__item:active,
.new-category__item:focus,
.new-category__item:visited,
.new-category__item:hover{
  flex: 0 1 calc(16.666% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  text-align: center;
  text-decoration: none;
  color: rgba(20, 20, 20, 1);
}
.new-category__item:last-child{
  padding-right: 0;
}
.new-category__img{
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  margin-bottom: 16px;
  border: 1px solid rgba(217, 217, 217, 1)
}
.new-category__img:before{
  content: "";
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  position: relative;
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  border: 10px solid #fff;
}
.new-category__img img{
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: auto;
}
@media(max-width: 991px){
  .new-category{
    min-width: 767px;
  }
  .new-category__item,
  .new-category__item:active,
  .new-category__item:focus,
  .new-category__item:visited,
  .new-category__item:hover{
    width: 115px;
    font-size: 12px;
    flex: 0 1 calc(16.666% - 8px);
  }
  .new-category__img {
    margin-bottom: 8px;
  }
  .new-category__img img {
    top: 0;
  }
  .new-category__img:before{
    border: 5px solid #fff;
  }
}

@media(max-width: 768px){
  .new-category__item,
  .new-category__item:active,
  .new-category__item:focus,
  .new-category__item:visited,
  .new-category__item:hover{
    width: 97px;
  }
}

/*new-present*/
.new-present__line{
  background: rgba(241, 96, 50, 1);
  line-height: 1;
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 8px 0 2px 0;
  margin-bottom: 16px;
  font-family: "Actay";
  text-transform: uppercase;
  color: rgb(255,255,255);
}
.new-present__line span{
  position: relative;
  padding-right: 25px;
  display: inline-block;
  animation: marquee 10s linear infinite;
}
.new-present__line span:after{
  content: "";
  top: 1px;
  width: 2px;
  bottom: 7px;
  right: 9px;
  position: absolute;
  background: #fff;
}
.new-present__line span:last-child:after{
  display: none;
}

.new-present__wrapper{
  display: flex;
  padding: 0 40px;
  position: relative;
  margin-bottom: 60px;
  background: rgba(198, 198, 198, 1);
}
.new-present__item{
  width: 50%;
}
.new-present__title{
  font-size: 64px;
  line-height: 98%;
  max-width: 680px;
  font-weight: 700;
  padding-top: 135px;
  margin-bottom: 8px;
  font-family: "Actay";
  text-transform: uppercase;
  color: rgba(20, 20, 20, 1);
}
.new-present__description{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: "Actay";
  color: rgba(20, 20, 20, 1);
}

.new-present__wrapper .new-btn{
  margin-bottom: 135px;
}
.new-present__image_wrapper{
  width: 100%;
  text-align: center;
}
.new-present__image{
  position: relative;
  display: inline-block;
}
.new-present__image img{
  z-index: 5;
  position: relative;
}
.new-present__image_text1{
  top: 95px;
  z-index: 3;
  width: 265px;
  padding: 16px;
  right: -115px;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
  position: absolute;
  font-family: "Actay";
  text-transform: uppercase;
  background: rgba(255, 255, 255, 1);
}
.new-present__image_text2{
  z-index: 3;
  bottom: 80px;
  width: 380px;
  left: -192px;
  color: #fff;
  padding: 16px;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  position: absolute;
  font-family: "Actay";
  text-transform: uppercase;
  background: rgba(20, 20, 20, 1);
}
.new-present__image_text2.mob{
  display: none;
}
.new-present__image_text2 span{
  color: rgba(241, 96, 50, 1);
}
@media(max-width: 1199px){
  .new-present__line{
    margin-bottom: 0;
  }
  .new-present{
    margin-bottom: 60px;
    background: rgba(198, 198, 198, 1);
  }
  .new-present__wrapper {
    padding: 0;
    background: none;
    margin-bottom: 0px;
  }
  .new-present__image_text2.deck{
    display: none;
  }
  .new-present__image_text2.mob{
    padding: 8px;
    display: block;
    font-size: 12px;
    position: static;
    max-width: 330px;
    margin-bottom: 78px;
  }
  .new-present__image_text1{
    top: 70px;
    width: 165px;
    padding: 8px;
    right: -62px;
    font-size: 12px;
    text-align: center;
  }
  .new-present__title{
    font-size: 40px;
    max-width: 330px;
    padding-top: 40px;
    margin-bottom: 16px;
  }
  .new-present__wrapper .new-btn{
    width: 100%;
    max-width: 330px;
    text-align: center;
    margin-bottom: 40px;
  }
  .new-present__image img {
    height: 400px;
  }
}

@media(max-width: 767px){
  .new-present__wrapper{
    max-width: 328px;
    min-height: 460px;
    margin-left: auto;
    position: relative;
    margin-right: auto;
  }
  .new-present__wrapper,
  .new-present__image,
  .new-present__item{
    width: 100%;
    display: block;
  }
  .new-present__title{
    max-width: 100%;
    padding-top: 24px;
    text-align: center;
  }
  .new-present__description{
    left: 0;
    width: 120px;
    bottom: 90px;
    font-size: 9px;
    position: absolute;
  }
  .new-present__image {
    left: 0;
    right: 0;
    top: 60px;
    margin: auto;
    max-width: 360px;
    position: absolute;
  }
  .new-present__image_text1{
    top: 55px;
    padding: 0;
    right: 16px;
    width: 112px;
    font-size: 9px;
    background: none;
    font-weight: 400;
    text-align: right;
  }
  .new-present__image_text2.mob{
    left: 0;
    top: 195px;
    z-index: 6;
    bottom: auto;
    padding: 8px;
    display: block;
    font-size: 12px;
    margin-bottom: 0;
    max-width: 240px;
    position: absolute;
  }
  .new-present__wrapper .new-btn{
    left: 0;
    right: 0;
    z-index: 6;
    margin: auto;
    bottom: 22px;
    position: absolute;
  }
}


.new-present__text{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 60px;
  font-family: "Actay";
  color: rgba(20, 20, 20, 1);
}
.new-present__text p{
  margin-bottom: 24px;
}
.new-present__text_title{
  line-height: 1;
  font-size: 32px;
  max-width: 680px;
  font-weight: 700;
  margin-bottom: 32px;
  font-family: "Actay";
  text-transform: uppercase;
  color: rgba(20, 20, 20, 1);
}

.new-present__text_numbers{
  display: flex;
}
.new-present__text_numbers.mob{
  display: none;
}
.new-present__text_numbers_item{
  width: 100%;
  max-width: 290px;
  padding-right: 16px;
} 
.new-present__text_numbers_item div:first-child{
  line-height: 1;
  font-size: 75px;
  font-weight: 700;
  font-family: "Actay";
  color: rgba(20, 20, 20, 1);
}
.new-present__text_numbers_item div:first-child > span{
  line-height: 1;
  font-weight: 700;
  font-size: 34px;
  font-family: "Actay";
}
.new-present__text_numbers_item div:last-child{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  font-family: "Actay";
  color: rgba(20, 20, 20, 1);
}
@media(max-width: 1440px){
  .new-present__text_numbers_item div:first-child{
    font-size: 65px;
  }
  .new-present__text_numbers_item div:first-child > span{
    font-size: 28px;
  }
}

@media(max-width: 991px){
  .new-present__text_numbers.deck{
    display: none;
  }
  .new-present__text_numbers.mob{
    display: flex;
  }
  .new-present__text_title{
    font-size: 24px;
    margin-bottom: 8px;
  }
  .new-present__text p{
    margin-bottom: 16px;
  }
  .new-present__text_numbers_item{
    text-align: center;
  }
  .new-present__text_numbers_item div:first-child{
    font-size: 42px;
  }
  .new-present__text_numbers_item div:last-child{
    margin-top: 4px;
    font-size: 14px;
  }
}

@media(max-width: 767px){
  .new-present__text{
    font-size: 14px;
    margin-bottom: 32px;
  }
  .new-present__text_title{
    font-size: 18px;
  }
  .new-present__text_numbers_item div:first-child{
    font-size: 26px;
  }
  .new-present__text_numbers_item div:last-child{
    margin-top: 0;
    font-size: 9px;
  }
}

/*new-video*/
.new-video{
  margin: 60px 0;
}
.new-video__title{
  line-height: 1;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Actay";
  text-transform: uppercase;
  color: rgba(20, 20, 20, 1);
}
.new-video__description{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: "Actay";
  color: rgba(20, 20, 20, 0.7);
}

.new-mens-segment{
  line-height: 1;
  font-size: 42px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 10px 0 0 0;
  font-family: "Actay";
  text-transform: uppercase;
  color: rgba(20, 20, 20, 1);
  border-top: 1px solid rgba(20, 20, 20, 1);
  border-bottom: 1px solid rgba(20, 20, 20, 1);
}
.new-mens-segment span{
  position: relative;
  padding-right: 16px;
  display: inline-block;
  animation: marquee 10s linear infinite;
}
.new-mens-segment span:after{
  content: "";
  top: 7px;
  right: 0;
  width: 2px;
  bottom: 15px;
  position: absolute;
  background: rgba(20, 20, 20, 1);
}
.new-mens-segment span:last-child:after{
  display: none;
}
@media(max-width: 767px){
  .new-mens-segment{
    font-size: 36px;
    padding: 5px 0 0 0;
  }
  .new-mens-segment span:after{
    top: 5px;
    right: 2px;
    width: 2px;
    bottom: 10px;
  }
}

/*new-sale*/
.new-sale{
  margin: 60px 0;
}
.new-sale .new-title{
  margin-bottom: 24px;
}
.new-sale__carousel,
.new-shop__carousel{
  overflow: hidden;
}
.new-sale__carousel .owl-item,
.new-shop__carousel .owl-item {
  float: left;
}
.new-sale__carousel_item{
  display: block;
  position: relative;
}
.new-sale__carousel_item_title{
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  font-family: "Actay";
  margin: 16px 0 8px 0;
  color: rgba(20, 20, 20, 1);
}
.new-sale .container-image-and-badge{
  position: relative;
}
.new-sale img{
  width: 100%;
  height: auto;
}
.new-sale .yith-wcbm-badge{
  left: 0;
  bottom: 0;
  right: auto;
  width: auto;
  height: auto;
  color: #fff;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  position: absolute;
  display: inline-block;
  padding: 5px 8px 4px 8px;
  font-family: "Actay" !important;
  background: #0E1E22;
}
.new-sale .yith-wcbm-badge:after{
  bottom: 0;
  content: "";
  width: 20px;
  height: 0px;
  right: -23px;
  position: absolute;
  border-top: 22px solid #0E1E22;
  border-left: 0 solid transparent;
  border-right: 23px solid transparent;
}
.new-sale .onsale{
  right: auto;
  padding: 4px;
  height: auto;
  color: #FFF;
  line-height: 1;
  min-width: auto;
  font-size: 16px;
  font-weight: 700;
  min-height: auto;
  position: absolute;
  font-family: "Actay";
  top: 12px !important;
  left: 12px !important;
  background: rgba(241, 96, 50, 1);
}
.new-sale .product-price {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  font-family: "Actay";
  color: rgba(118, 118, 118, 1);
}
.new-sale .woocommerce-Price-amount{
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 120% !important;
  font-family: "Actay" !important;
  color: rgba(118, 118, 118, 1) !important;
}
.new-sale del{
  font: 400 16px / 120% Actay !important;
}
/*owl-carousel*/
.owl-nav{
  display: none;
}
.owl-dots{
  text-align: center;
}
.owl-dots .owl-dot{
  width: 8px !important;
  height: 8px !important;
  border: none !important;
  background: rgba(118, 118, 118, 1) !important;
  margin: 24px 3px 0 3px !important;
}
.owl-dots  .owl-dot.active{
  width: 20px !important;
  background: rgba(242, 85, 35, 1) !important;
}

/*faq*/
.new-faq{
  margin-bottom: 60px;
}
.new-faq__title{
  margin-bottom: 24px;
}
.new-faq__title-text{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  color: rgba(20, 20, 20, 0.6);
}
.new-accordion__item{
  border-top: 1px solid rgba(20, 20, 20, 1);
}
.new-accordion__item:last-child{
  border-bottom: 1px solid rgba(20, 20, 20, 1);
}
.new-accordion__header{
  font-size: 22px;
  cursor: pointer;
  font-weight: 700;
  line-height: 120%;
  position: relative;
  padding-right: 45px;
  padding: 16px 0 13px 0;
  color: rgba(20, 20, 20, 1);
}
.new-accordion__header:after{
  content: "+";
  right: 0;
  top: 16px;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 20px;
  padding: 12px 0 10px 0; 
  line-height: 0.6;
  font-weight: 400;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s;
  font-family: "Actay";
  background: rgba(20, 20, 20, 1);
}
.new-accordion__header[aria-expanded="true"]:after{
  transform: rotate(45deg);
  transition: all 0.3s;
  background: rgba(20, 20, 20, 0.4);
}
.new-accordion__collapse,
.new-accordion__collapse p{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  font-family: "Actay";
  color: rgba(56, 38, 38, 0.6);
}
.new-accordion__collapse p{
  margin: 0;
}
.new-accordion__collapse{
  padding-bottom: 25px;
}

@media(max-width: 991px){
  .new-faq__title-text{
    font-size: 16px;
    padding-top: 7px;
  }
}
@media(max-width: 767px){
  .new-faq__title-text{
    font-size: 14px;
    padding-top: 0px;
  }
  .new-accordion__header{
    font-size: 15px;
    padding: 12px 40px 12px 0;
  }
  .new-accordion__header:after{
    content: "+";
    top: 11px;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 0.4;
    padding: 11px 0 10px 0;
  }
}

/*footer*/
.new-footer{
  padding: 3px 0 32px 0;
  background: linear-gradient(180deg, #112E39 0%, #142F3A 29.81%, #0E1E22 80.14%);
}
.new-footer__marquee{
  line-height: 1;
  font-size: 42px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 10px 0 0 0;
  font-family: "Actay";
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.new-footer__marquee span{
  position: relative;
  padding-right: 16px;
  display: inline-block;
  animation: marquee 10s linear infinite;
}
.new-footer__marquee span:after{
  content: "";
  top: 7px;
  right: 0;
  width: 2px;
  bottom: 15px;
  position: absolute;
  background: rgba(255,255,255,0.6);
}
.new-footer__marquee span:last-child:after{
  display: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0); /* Начало: видно начало текста */
    }
    100% {
        transform: translateX(-100%); /* Конец: текст уехал влево */
    }
}




.new-footer__title{
  color: #fff;
  line-height: 1;
  font-size: 32px;
  font-weight: 700;
  margin: 60px 0 32px;
  font-family: "Actay";
  text-transform: uppercase;
}
.new-footer__map{
  margin-bottom: 60px;
}
.new-footer__sitename{
  color: #fff;
  line-height: 1;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: "Actay";
  text-transform: uppercase;
}
.new-footer__info-address{
  margin-bottom: 8px;
}
.new-footer__info-address:last-child{
  margin: 0;
}
.new-footer__info-title{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
  font-family: "Actay";
}
.new-footer__info-text{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  font-family: "Actay";
  color: rgba(255,255,255,0.6);
}
.new-footer__info-text a,
.new-footer__info-text a:active,
.new-footer__info-text a:focus,
.new-footer__info-text a:visited,
.new-footer__info-text a:hover{
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: "Actay";
  display: inline-block;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
}
.new-footer__social{
  margin-top: 16px;
}
.new-footer__social-item{
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
}
.new-footer__social-item.wa{
  	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAyNC45MTZMMS42ODcgMTguNzUzQzAuNjQ2IDE2Ljk0OSAwLjA5OSAxNC45MDQgMC4xIDEyLjgwN0MwLjEwMyA2LjI1MTAyIDUuNDM4IDAuOTE2MDE2IDExLjk5MyAwLjkxNjAxNkMxNS4xNzQgMC45MTcwMTYgMTguMTYgMi4xNTYwMiAyMC40MDYgNC40MDQwMkMyMi42NTEgNi42NTIwMiAyMy44ODcgOS42NDAwMiAyMy44ODYgMTIuODE4QzIzLjg4MyAxOS4zNzUgMTguNTQ4IDI0LjcxIDExLjk5MyAyNC43MUMxMC4wMDMgMjQuNzA5IDguMDQyIDI0LjIxIDYuMzA1IDIzLjI2MkwwIDI0LjkxNlpNNi41OTcgMjEuMTA5QzguMjczIDIyLjEwNCA5Ljg3MyAyMi43IDExLjk4OSAyMi43MDFDMTcuNDM3IDIyLjcwMSAyMS44NzUgMTguMjY3IDIxLjg3OCAxMi44MTZDMjEuODggNy4zNTQwMiAxNy40NjMgMi45MjYwMiAxMS45OTcgMi45MjQwMkM2LjU0NSAyLjkyNDAyIDIuMTEgNy4zNTgwMiAyLjEwOCAxMi44MDhDMi4xMDcgMTUuMDMzIDIuNzU5IDE2LjY5OSAzLjg1NCAxOC40NDJMMi44NTUgMjIuMDlMNi41OTcgMjEuMTA5Wk0xNy45ODQgMTUuNjQ1QzE3LjkxIDE1LjUyMSAxNy43MTIgMTUuNDQ3IDE3LjQxNCAxNS4yOThDMTcuMTE3IDE1LjE0OSAxNS42NTYgMTQuNDMgMTUuMzgzIDE0LjMzMUMxNS4xMTEgMTQuMjMyIDE0LjkxMyAxNC4xODIgMTQuNzE0IDE0LjQ4QzE0LjUxNiAxNC43NzcgMTMuOTQ2IDE1LjQ0NyAxMy43NzMgMTUuNjQ1QzEzLjYgMTUuODQzIDEzLjQyNiAxNS44NjggMTMuMTI5IDE1LjcxOUMxMi44MzIgMTUuNTcgMTEuODc0IDE1LjI1NyAxMC43MzkgMTQuMjQ0QzkuODU2IDEzLjQ1NiA5LjI1OSAxMi40ODMgOS4wODYgMTIuMTg1QzguOTEzIDExLjg4OCA5LjA2OCAxMS43MjcgOS4yMTYgMTEuNTc5QzkuMzUgMTEuNDQ2IDkuNTEzIDExLjIzMiA5LjY2MiAxMS4wNThDOS44MTMgMTAuODg2IDkuODYyIDEwLjc2MiA5Ljk2MiAxMC41NjNDMTAuMDYxIDEwLjM2NSAxMC4wMTIgMTAuMTkxIDkuOTM3IDEwLjA0MkM5Ljg2MiA5Ljg5NDAyIDkuMjY4IDguNDMxMDIgOS4wMjEgNy44MzYwMkM4Ljc3OSA3LjI1NzAyIDguNTM0IDcuMzM1MDIgOC4zNTIgNy4zMjYwMkw3Ljc4MiA3LjMxNjAyQzcuNTg0IDcuMzE2MDIgNy4yNjIgNy4zOTAwMiA2Ljk5IDcuNjg4MDJDNi43MTggNy45ODYwMiA1Ljk1IDguNzA0MDIgNS45NSAxMC4xNjdDNS45NSAxMS42MyA3LjAxNSAxMy4wNDMgNy4xNjMgMTMuMjQxQzcuMzEyIDEzLjQzOSA5LjI1OCAxNi40NDEgMTIuMjM5IDE3LjcyOEMxMi45NDggMTguMDM0IDEzLjUwMiAxOC4yMTcgMTMuOTMzIDE4LjM1NEMxNC42NDUgMTguNTggMTUuMjkzIDE4LjU0OCAxNS44MDUgMTguNDcyQzE2LjM3NiAxOC4zODcgMTcuNTYzIDE3Ljc1MyAxNy44MTEgMTcuMDU5QzE4LjA1OSAxNi4zNjQgMTguMDU5IDE1Ljc2OSAxNy45ODQgMTUuNjQ1WiIgZmlsbD0id2hpdGUiLz48L3N2Zz4=);
}
.new-footer__social-item.telegram{
  	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIuNTEyMzkgMTEuNzY0OEM4LjQxNzk1IDkuMTkxODcgMTIuMzU1OSA3LjQ5NTYgMTQuMzI2MyA2LjY3NjA1QzE5Ljk1MjEgNC4zMzYwNiAyMS4xMjExIDMuOTI5NTggMjEuODgzIDMuOTE2MTZDMjIuMDUwNiAzLjkxMzIxIDIyLjQyNTMgMy45NTQ3NCAyMi42NjggNC4xNTE2OEMyMi44NzMgNC4zMTc5OCAyMi45Mjk0IDQuNTQyNjMgMjIuOTU2MyA0LjcwMDNDMjIuOTgzMyA0Ljg1Nzk2IDIzLjAxNjkgNS4yMTcxNCAyMi45OTAyIDUuNDk3NzlDMjIuNjg1NCA4LjcwMTA1IDIxLjM2NjIgMTYuNDc0NSAyMC42OTUxIDIwLjA2MjJDMjAuNDExMSAyMS41ODAzIDE5Ljg1MiAyMi4wODkzIDE5LjMxMDcgMjIuMTM5MkMxOC4xMzQzIDIyLjI0NzQgMTcuMjQwOSAyMS4zNjE3IDE2LjEwMTUgMjAuNjE0OEMxNC4zMTg2IDE5LjQ0NiAxMy4zMTEzIDE4LjcxODUgMTEuNTgwNyAxNy41NzhDOS41ODA1OCAxNi4yNiAxMC44NzcyIDE1LjUzNTUgMTIuMDE3IDE0LjM1MTdDMTIuMzE1MyAxNC4wNDE4IDE3LjQ5ODYgOS4zMjcxOCAxNy41OTg5IDguODk5NDlDMTcuNjExNSA4Ljg0NiAxNy42MjMxIDguNjQ2NjIgMTcuNTA0NiA4LjU0MTMzQzE3LjM4NjIgOC40MzYwNSAxNy4yMTE0IDguNDcyMDUgMTcuMDg1MiA4LjUwMDY5QzE2LjkwNjQgOC41NDEyNyAxNC4wNTgxIDEwLjQyMzkgOC41NDAzNSAxNC4xNDg2QzcuNzMxODcgMTQuNzAzNyA2Ljk5OTU4IDE0Ljk3NDIgNi4zNDM0NyAxNC45NjAxQzUuNjIwMTYgMTQuOTQ0NCA0LjIyODggMTQuNTUxMSAzLjE5NDQ3IDE0LjIxNDlDMS45MjU4MyAxMy44MDI1IDAuOTE3NTMgMTMuNTg0NCAxLjAwNTMzIDEyLjg4NDFDMS4wNTEwNiAxMi41MTkzIDEuNTUzNDEgMTIuMTQ2MiAyLjUxMjM5IDExLjc2NDhaIiBmaWxsPSJ3aGl0ZSIvPjwvc3ZnPg==);
}
.new-footer__social-item.vk{
  	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTMuMDcxOCAyMC40MDE0QzQuODcxOTIgMjAuNDAxNCAwLjE5NDg5IDE0Ljc3OTkgMCA1LjQyNTc4SDQuMTA3NDRDNC4yNDIzNiAxMi4yOTE1IDcuMjcwNCAxNS4xOTk2IDkuNjY4ODcgMTUuNzk5M1Y1LjQyNTc4SDEzLjUzNjZWMTEuMzQ3QzE1LjkwNTEgMTEuMDkyMiAxOC4zOTMyIDguMzkzOTIgMTkuMjMyNyA1LjQyNTc4SDIzLjEwMDRDMjIuNDU1OCA5LjA4MzUgMTkuNzU3NSAxMS43ODE4IDE3LjgzODcgMTIuODkxMUMxOS43NTc1IDEzLjc5MDUgMjIuODMwNyAxNi4xNDQgMjQgMjAuNDAxNEgxOS43NDI1QzE4LjgyODEgMTcuNTUzMiAxNi41NDk3IDE1LjM0OTYgMTMuNTM2NiAxNS4wNDk3VjIwLjQwMTRIMTMuMDcxOFoiIGZpbGw9IndoaXRlIi8+PC9zdmc+);
}
.new-footer__bottom{
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.6);
}
.new-footer__bottom img{
  margin-left: 8px;
  margin-bottom: 8px;
}
.new-footer__bottom a,
.new-footer__bottom a:active,
.new-footer__bottom a:focus,
.new-footer__bottom a:visited,
.new-footer__bottom a:hover,
.new-footer__copyright{
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  font-family: "Actay";
  text-decoration: none;
  color: rgba(255,255,255,0.6);
}
.new-footer__copyright{
  margin-top: 8px;
}