html{  
    scroll-behavior: smooth; /* плавная прокрутка */
  }
  
  *, *:after, *:before {
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      /* transition: .5s ease-in-out; */
      /* добавим плавность переходов для всех элементов страницы*/
   }

  body {
    font-family: "ROBOTO", sans-serif;
    -webkit-user-select: none; /* запрет копирования для WebKit браузеров (Chrome, Safari, новые версии Opera) */
    -moz-user-select: none; /* запрет копирования для Firefox */
    -ms-user-select: none; /* запрет копирования для Internet Explorer */
    user-select: none; /* запрет копирования для остальных браузеров */
  }
  
  .nav_content, .nav-phone_content{
    display: flex;
    flex-grow: row wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #1e1f26;
    text-align: center;
    padding: 0 1em;
  }
  
  .nav h4{
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    margin: 0;
    /* padding-bottom: 0.5rem; */
    letter-spacing: 0.1rem;
    color: #94569F;
    transition: all 0.3s ease;
    z-index: 3;
  }
  h4:hover {
    transform: translate3d(0, -10px, 22px);
  }
  
  .nav h5{
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    margin: 0;
    padding-bottom: 0.5rem;
    letter-spacing: 0.1rem;
    color: #000000;
    transition: all 0.3s ease;
    z-index: 3;
  }
  h5:hover {
    transform: translate3d(0, -10px, 22px);
  }

  
  .nav h1 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 100px;
    margin: 0;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 3;
  }
  h1:hover {
    transform: translate3d(0, -10px, 22px);
    color: #94569F;
  }

  @media screen and (width < 480px) {
    .nav h1{
      font-size: 60px;
      padding-top: 10px;
    }
    
  }

  .nav_text h1{
    
    font-family: "Josefin Sans", sans-serif;
    font-size: 100px;
    margin: 0;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 3;
    text-align: center;
  }
  
 
  h3.span {
    font-size: 20px;
    letter-spacing: 0.7em;
    font-family: "ROBOTO", sans-serif;
    font-weight: 300;
    color: #faf2d7;
    z-index: 4;
  }
  span:hover {
    color: #94569F;
  }
  
  @media screen  and (width < 480px) {
    h3.span{
      font-size: 15px;
    }
  }

  a {
    text-decoration: none;
  }
  
  .nav-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    background: #1e1f26;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    /* margin-bottom: 30px; */
  }

  @media (width < 850px){
    .nav-container{
      height: 45px;
    }
  }
  
  .nav-container--top-first {
    position: fixed;
    top: 75px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .nav-container--top-second {
    position: fixed;
    top: 0;
  }

  .nav-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #81d100;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 16px;
    border-radius: 4px;
    text-align: center;
    padding: 0px 1vw;
  }

  @media screen and (width < 480px) {
    .nav-tab{
      font-size: 12px;
    }
  }
  

  .nav-tab2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #ffffff;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 16px;
    cursor: pointer;
  }

  .nav-tab2 a{
    text-decoration: none;
    font-size: 28px;
    color: white;
    padding-right: 2vw;
  }

  @media screen and (width<480px){
    .nav-tab2 a{
      font-size: 18px;
    }
  }

  .nav-tab a{
    color: #81d100;
  }
  
  .nav-tab:hover {
    color: #000000;
    background: #751b85;
    transition: all 0.5s ease;
  }

  

  .nav-tab2-p:hover {
    color: #94569F;
    transition: all 0.5s ease;
  }
  

  .background {
    position: absolute;
    height: 90vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: auto;
  }
  /* @media (min-width: 800px) {
    .nav h1,
    .slider h1 {
      font-size: 30px;
    }
  
    .nav h2,
    .slider h2 {
      font-size: 24px;
    }
  
    .nav-tab, .nav-tab2 {
      font-size: 16px;
    }
  } */

  .nav p{
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
  }

 @media screen and (width < 480px) {
  .nav p{
    font-size: 12px;
  }
 }

 .nav_text h3{
  padding-bottom: 20px;
 }

  .background {
    position: absolute;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
  }

  .loader span {
    color: #81d100;
    text-shadow: 0 0 0 #94569F;
    -webkit-animation: loading 1s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes loading {
    to {
      text-shadow: 20px 0 70px #94569F;
      color: #94569F;
    }
  }


/* для мобильного меню */

.nav-phone {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1e1f26;
  color: white;
  padding: 15px;
  font-family: Arial, sans-serif;
}

.nav-phone_content h1 {
  margin: 0;
  font-size: 24px;
}

.nav-phone_content .loader .m {
  font-size: 16px;
}

.nav-phone-stycky {
  position: relative;
}

.menu-icon-phone {
  cursor: pointer;
  font-size: 24px;
  user-select: none;
}

.nav-phone-menu {
  display: none;
  position: absolute;
  top: 100%; /* под .nav-phone-stycky */
  left: 0;
  background: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  /* Анимация */

  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.nav-phone-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Стили для верхней части навигации */
.nav-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-icon-phone {
  font-size: 24px;
  cursor: pointer;
}

.nav-phone-tab a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
}

.nav-phone-icons {
  display: flex;
  gap: 10px;
}

.nav-phone-icons a {
  color: white;
  font-size: 24px;
}

/* Мобильные стили */
@media (max-width: 768px) {
  .nav-phone-header {
      flex-direction: row;
  }
}


@media screen and (width > 480px){
  .nav-phone {
    display: none;
  }
}

@media screen and (width < 480px){
  .nav {
    display: none;
  }
}

.submenu-phone {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #444;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submenu-phone.active {
    display: block;
}

.submenu-phone li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.submenu-phone li a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 10px;
}

.submenu-phone li a:hover {
    background-color: #555;
    color: #fff;
}

.nav-phone-menu {
    display: none;
    background-color: #1e1f26de;
    padding: 10px;
    position: absolute;
    top: 50px; /* Position under the menu icon */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-phone-menu.active {
    display: block; /* Show the menu when active */
}

.nav-phone-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-phone-menu li {
    padding: 10px;
    text-transform: uppercase;
}

.nav-phone-menu li a {
    text-decoration: none;
    color: #fff; /* Text color */
    display: block;
}

.nav-phone-menu li a:hover {
    background-color: #555; /* Highlight on hover */
    color: #fff;
}

  
   /* Подвал */

footer{
	position: static;
	bottom: 0;
  margin-top: 30px;
}

@media (max-height:100%)
{
	footer{
		position: static;	
	}
}

.footer-distributed{
	background-color: #000;
	box-sizing: border-box;
	widows: 100%;
	text-align: left;
	font: bold 16px;
	font-family: 'Arial';
	padding: 50px 30px 60px 30px;
	/*margin-top: 80px;*/
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right, .footer-distributed .footer-center-2{
	
	vertical-align: top;
}

@media screen and (width > 480px) {
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right, .footer-distributed .footer-center-2{
    display: inline-block;
  }
}

.footer-distributed .footer-left{
	width: 20%;
}

.footer-distributed .footer-card{
  display: flex; 
  padding: 20px 0px;
}

@media screen and (width < 480px) {
  .footer-distributed .footer-card{
    justify-content: center;
  }
}


.footer-distributed h3{
	color: white;
	font: normal 20px 'Arial';
	margin: 0;
    text-transform: uppercase;
}

.footer-distributed h3 span{
	color: #94569F;
}

/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 12px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 25%;
    padding: 0px 4vw;
}

.footer-distributed .footer-center-2 {
  width: 25%;
  /* padding: 0px 1vw; */
}


.footer-distributed .footer-center img {
    width: 30px;
    height: 30px;
    line-height: 42px;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-distributed .footer-center, .footer-distributed .footer-center-2{
    font-size: 16px;
    /* line-height: 3vw; */
}

.footer-center-2 a{
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    /* font-weight: 600; */
    padding-left: 2vw;
    line-height: 30px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 2;
}



/* Footer Right */

.footer-distributed .footer-right {
    width: 25%;
    padding: 0px 2vw;
}

.footer-distributed .footer-company-about {
    /* line-height: 1.5vw; */
    color: #92999f;
    font-size: 12px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.footer-distributed .footer-icons {
    margin-top: 35px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.footer-distributed .footer-icons a:hover {
    background-color: #94569F;
}

.footer-distributed a:hover {
    color: #94569F;
}

.footer-links a:hover {
    color: #94569F;
}

.footer-btn .btn{
  text-align: center;
  display: inline-block;
  padding: 5px 15px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  background-color: #81d100;
  font-size: 16px;
  color: #ffffff;
  font-family: "ROBOTO", sans-serif;
}

@media screen and(width < 480px) {
  .footer-btn .btn{
    font-size: 12px;
  }
}

.footer-btn .btn:hover{
  background-color: #94569F;
  color: #fff;
  transition: all 0.5s ease;
}

.fa:hover{
  color: #94569F;
  transition: all 0.5s ease;
}


.nav-container{
    position: sticky;
    top: 0;
    width: 100%;
}


@media screen and (width < 480px)  {
  .footer-distributed .footer-center-2,
  .footer-distributed .footer-left,
  .footer-distributed .footer-right {
    width: 100%;
    text-align: center;
    padding-top: 25px;
  }  
}

/* 0305 */


/* проба разворачивающееся меню */

.nav-container:hover a:before {
  transform: translate(-50%, 0);
  opacity: 1;
}

.submenu {
  position: absolute;
  z-index: 4000;
  left: 10%;
  top: 100%;
  width: 20%;
  background: #1e1f26c5;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: .3s;
  text-align: center;
}

.nav-container > .nav-tab:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.submenu a {
  text-transform: uppercase;
  font-size: 16px;
  font-family: "ROBOTO", sans-serif;
  letter-spacing: 1px;
  padding: 1vw;
  transition: .3s linear;
  color: #ffffff;
}

@media screen and (width < 480px) {
  .submenu a {
    font-size: 12px;
  }
}

.submenu li{
  padding: 10px;
}  

.submenu li:hover {
    animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
    margin-top: 10px;
  }
  

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}


/* анимация появления вверх */

.tab-block{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.tab-block.active{
  transform: translateY(0);
  opacity: 1;
}


.icon-fa{
  text-decoration: none; 
  font-size: 16px; 
  color: white; 
  padding-right: 20px;
}

@media screen and (width < 480px){
  .icon-fa{
    padding: 0px 10px;
  }
}


/* КНОПКА ДЛЯ ТЕЛА */

.btn-main{
  display: inline-block;
  overflow: hidden;
  padding: 1vw 1.5vw;
  cursor: pointer;
  overflow:hidden;
  top: 60%;
  left: 15vw;
  border-radius: 4px;
  background-color: #81d100;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  font-family: "ROBOTO", sans-serif;
  margin: 0.8vh 0px;
}


.btn-main:hover {
  background-color: #94569F;
  transition: all 0.5s ease;
}


.btn-for-shop{
  display: inline-block;
  overflow: hidden;
  padding: 1.5vw 5vw;
  cursor: pointer;
  overflow:hidden;
  top: 60%;
  left: 15vw;
  border-radius: 4px;
  background-color: #94569F;
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  font-family: "ROBOTO", sans-serif;
}


.btn-for-shop:hover {
  background-color: #751b85;
  transition: all 0.5s ease;
}




/* Всплывающие окна */
.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
	pointer-events: none;
  justify-content: center;
  align-items: center;
}

.modalDialog:target {
	display: block;
	pointer-events: auto;
}

.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 5% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 5px;
	background: #fff;
	/*background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);*/
}

@media screen and (width < 480px) {
  .modalDialog > div {
    width: 350px;
  }
}

.modalDialog p{
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000;
}

.close {
	background: #606061;
	color: #FFFFFF;
	/*line-height: 25px;*/
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 5px;
	/*-moz-box-shadow: 1px 1px 2px rgb(0, 0, 0), 0 0 1em rgb(31, 177, 255), 0 0 0.2em rgb(0, 55, 255);
	-webkit-box-shadow: 1px 1px 2px rgb(0, 0, 0), 0 0 1em rgb(31, 177, 255), 0 0 0.2em rgb(0, 55, 255);
	box-shadow: 1px 1px 2px rgb(0, 0, 0), 0 0 1em rgb(31, 177, 255), 0 0 0.2em rgb(0, 55, 255);*/
}

.close:hover { background: #94569F; }


/* CSS для формы */

.modalDialog label,
.modalDialog input,
.modalDialog textarea
.modalDialog button,
.modalDialog  select{
  font-size: 14px;
  line-height: 1.2;
  padding: 0px 15px;
}

.modalDialog label {
  margin-bottom: 0.4rem;
  display: block;
}

.modalDialog input,
textarea {
  padding: 0.4rem;
  width: 100%;
}

.modalDialog tr{
  margin: 10px 0px;
}

.personal-info{
  font-size: 10px;
  text-align: center;
  padding: 20px 0px;
}

.personal-info a{
  text-decoration: none;
  color: #81d100;
}

.base_page p{
  padding-bottom: 15px;
  text-align: justify ;
}


