.popup-wrapper {
   position: fixed;
   top: 0;
   left: -100%;
   -webkit-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   width: 100%;
   height: 100%;
   z-index: 6;
   /* полоса прокрутки (скроллбар) */
   /* ползунок скроллбара */
 }
 
 .popup-wrapper:after {
   content: "";
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #000;
   opacity: 0;
   visibility: hidden;
   z-index: -1;
 }
 
 .popup-wrapper__container {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   min-height: 100%;
 }
 
 .popup-wrapper ::-webkit-scrollbar {
   display: none;
 }
 
 .popup-wrapper ::-webkit-scrollbar-thumb {
   display: none;
 }
 
 .popup-wrapper.open {
   left: 0;
 }
 
 .popup-wrapper.open:after {
   opacity: 0.7;
   visibility: visible;
 }
 
 .popup-wrapper.open .mobile-menu {
   left: 0;
 }
 
 .popup-wrapper.open .mobile-menu__header {
   left: 0;
 }
 
 .popup-wrapper.open .mobile-menu__body:after {
   left: 0;
 }
 
 .mobile-container {
   width: 100%;
   max-width: 440px;
 }
 
 .popup__close {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   width: 22px;
   height: 22px;
   margin-left: 30px;
 }
 
 .close-popup {
   width: 100%;
   height: 100%;
   position: relative;
 }
 
 .close-popup:after {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   height: 1.5px;
   -webkit-transform: translate(0, -50%) rotate(45deg);
       -ms-transform: translate(0, -50%) rotate(45deg);
           transform: translate(0, -50%) rotate(45deg);
   background: var(--col1, linear-gradient(180deg, #9550D5 0%, #354DB4 100%));
 }
 
 .close-popup:before {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   height: 1.5px;
   -webkit-transform: translate(0, -50%) rotate(-45deg);
       -ms-transform: translate(0, -50%) rotate(-45deg);
           transform: translate(0, -50%) rotate(-45deg);
   background: var(--col1, linear-gradient(180deg, #9550D5 0%, #354DB4 100%));
 }
 
 .mobile-menu {
   position: fixed;
   top: 0;
   left: -100%;
   overflow-y: auto;
   width: 100%;
   max-width: 440px;
   height: 100%;
   overflow-y: auto;
   -webkit-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
 }
 
 .mobile-menu__header-info {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
 }
 
 .mobile-menu__header {
   position: fixed;
   top: 0;
   left: -100%;
   width: 100%;
   max-width: 440px;
   -webkit-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   padding: 8px 15px;
   background-color: #fff;
 }
 
 .mobile-menu__body {
   padding: 100px 0 50px;
   height: 100%;
 }
 
 .mobile-menu__body::after {
   content: "";
   position: fixed;
   top: 0;
   left: -100%;
   width: 100%;
   max-width: 440px;
   height: 100%;
   background-color: #111215;
   -webkit-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   z-index: -1;
 }
 
 .mobile-menu__navigation {
   padding: 0 15px;
 }
 
 .mobile-menu__social {
   padding: 0 15px 40px;
 }
 
 .mobile-menu__contacts {
   padding: 40px 15px;
   border-top: 1px solid #fff;
 }
 
 .mobile-menu__contacts-item {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   margin-bottom: 15px;
 }
 
 .mobile-menu__contacts-item:last-child {
   margin-bottom: 0;
 }
 
 .mobile-menu__contacts-icon {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
   min-width: 36px;
   max-width: 36px;
   height: 36px;
   border-radius: 100%;
   overflow: hidden;
   background: var(--col1, linear-gradient(180deg, #9550D5 0%, #354DB4 100%));
   margin-right: 10px;
 }
 
 .mobile-menu__svg {
   color: #fff;
   width: 16px;
   height: 16px;
 }
 
 .mobile-menu__contacts-text {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
          justify-content: center;
 }
 
 .mobile-menu__contacts-text-item {
   color: #fff;
   font-size: 14px;
   font-weight: 400;
   line-height: 120%;
   letter-spacing: 0.2px;
 }
 
 .mobile-menu__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
 
 }

.popup-menu {
   left: 0;
   opacity: 0;
   visibility: hidden;
 }
 
 .popup-menu__container {
   -webkit-box-pack: center;
       -ms-flex-pack: center;
           justify-content: center;
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
 }
 
 .popup-menu.open {
   opacity: 1;
   visibility: visible;
 }
 
 .menu-popup {
   width: 100%;
   max-width: 590px;
   padding: 40px 50px;
   background: var(--col1, linear-gradient(180deg, #9550D5 0%, #354DB4 100%));
   position: relative;
 }
 
 .menu-popup .popup__close {
   margin-left: 0px;
   position: absolute;
   right: 10px;
   top: 10px;
 }
 
 .menu-popup .close-popup:after,
 .menu-popup .close-popup:before {
   background: #fff !important;
 }
 
 .popup-body__title {
   color: #fff;
   font-size: 20px;
   font-weight: 600;
   line-height: 120%;
   text-transform: uppercase;
 }
 
 .popup-body__title {
   margin-bottom: 25px;
 }
 
 .popup-body .primary-btn__link {
   background: #1B1B1F;
 }