/* colors -> https://coolors.co/e54b4b-ebebd3-464655-e4b363-e8e9eb */

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

/* .slide body { */
  /* background: #F0F8EA; */
  /* font-family: 'Quicksand', sans-serif; */
/* } */
.requisites-text {
    color: #464655;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 0.5em 0;
}

.zagolov{
	font-family: "Open Sans", sans-serif;
		font-size: 1.5em;
		font-weight: 700;
		letter-spacing: 0.05em;
		margin-top: -0.5em;
		text-transform: uppercase;
		color: #464655;
		margin: 0px 0px 30px;
		padding: 0;
}

header.men {
  display: flex;
  align-items: center;      /* выравнивание по вертикали */
  justify-content: space-between; /* если нужно развести влево/вправо */
  flex-wrap: wrap;          /* если нужен перенос на мобильных */
  min-height: 60px;         /* подберите под ваш дизайн */
  padding: 0 1em;           /* если нужен горизонтальный отступ */
  
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0em; /* регулируйте расстояние между элементами слева */
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1em; /* регулируйте расстояние */
  flex: 1;
  justify-content: flex-end;
}


.logo1 {
  float: none;
  /* font-size: 2.5rem; */
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: #EBEBD3;
	padding: 0em 0em;
	 /* display: flex; */
    /* align-items: center; */
}

.logo1 span {
  font-weight: 400;
}


.logoimg img {
	/* width: 53px; */
	/* height: 29px; */
	width: 40px;
	height: 50px;
	/* padding: 0em 1em 0em 0em; */
}



.tel {
	
	 display: none;
}

.social_head {
	 display: none;
	
}


/* Кнопка наверх */
.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 60px;
  width: 30px; /* Уменьшено на 1/3 */
  height: 30px;
  background-color: #ff9933;
  color: white !important; /* Всегда белая стрелка */
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em; /* Соразмерно уменьшено */
  text-decoration: none;
/*  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
  z-index: 1100;
  cursor: pointer;
  opacity: 0; /* Скрыта по умолчанию */
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.scroll-to-top:visited,
.scroll-to-top:focus,
.scroll-to-top:active {
  color: white !important; /* Запрет изменения цвета */
  outline: none; /* Убираем контур фокуса */
}
/* Показываем кнопку при прокрутке */
.scroll-to-top.visible {
  opacity: 0.8;
  visibility: visible;
}
	

/* Основная полоса внизу */
.contact-bar {
  position: fixed;
  bottom: 0;
  width: 100%; /* Занимает всю ширину экрана */
  background-color: #464655; /* Цвет фона полосы */
  color: white;
  text-align: center;
  z-index: 1000; /* Поверх всех элементов */ 
  padding: 0.5em 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Эффект пульсации */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
}

/* Основная кнопка */
.main-button {
  background-color: #ff9933; /* Цвет кнопки */
  color: white;
  border: none;
  padding: 0em 1.5em;
  border-radius: 25px;
  cursor: pointer;
  align-items: center; /* Центрирование по вертикали */
  justify-content: center; /* Центрирование по горизонтали */
 
  font-size: 0.9em;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
  animation: pulse 2.5s infinite;
}

.main-button:hover {
  transform: scale(1.1);
}

/* Контейнер с иконками */
.contact-options {
  display: none;
  gap: 20px;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.contact-options a {
  margin: 0 10px;
}

.contact-options img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-options a img:hover {
  transform: scale(1.2); /* Увеличение при наведении */
  opacity: 0.8;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





.site-nav {
  position: absolute;
  top: 100%;
  right: 0%;
  background: #464655;
  clip-path: circle(0px at top right);
  transition: clip-path ease-in-out 700ms;
/*   display: none; */
	z-index: 900;
	
	
}


/* @media (max-width: 839px) { */
/* .site-nav-img { */
	
	/* float: right; */
	/* display: block; */
	/* padding: 0em 1em 0em 0em; */
	
	/* max-width: 20px; */
}






.site-nav-img img:hover,
.site-nav-img img:focus {
	border: 2px solid #ff9900;
}



.site-nav--open {
  clip-path: circle(250% at top right);
/*   display: block; */
}

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

.site-nav li {
  border-bottom: 1px solid #575766;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: #EBEBD3;
  display: block;
  padding: 1em 4em 1em 1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: none;
  
}

.site-nav a:hover,
.site-nav a:focus {
  background: #ff9900;
  color: #464655;
}



.site-nav--icon {
  display: inline-block;
  font-size: 1.5em;
  margin-right: 0em;
  width: 1.1em;
  text-align: right;
  color: rgba(255,255,255,.4);
}

.menu-toggle {
  padding: 2em;
  position: absolute;
  top: .5em;
  right: .5em;
  cursor: pointer;
  
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  background: #EBEBD3;
  width: 2.5em;
  height: 3px;
  border-radius: 4px;
  transition: all ease-in-out 500ms;
   
}

.hamburger::before {
  transform: translateY(-9px);
}

.hamburger::after {
  transform: translateY(6px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translateY(-3px) rotate(-90deg);
}

@media (max-width: 839px) {
 .header-nav {
    display: flex;
    align-items: center;    /* выравнивание по вертикали */
    justify-content: flex-end;
    gap: 1.2em;             /* увеличьте до нужного значения */
  }
  .site-nav-img {
    padding: 0;
    margin: 0;
  }
  .site-nav-img img {
    max-width: 28px;        /* если нужно уменьшить иконку */
    height: auto;
    display: block;
    margin: 0;
    margin: 1.7em 2.5em ;
  }
  .menu-toggle {
    padding: 3em 1em;         /* уменьшите или увеличьте, если нужно */
    margin: 0;
  }
}


@media (min-width: 840px) {
	
	.tel {
	 float: left;
	 font-size: 0.8em;
	 color: #EBEBD3;
	 padding: 2.3em 2em 1em 0em;
	 display: block;
}


.social_head img {
	float: left;
	width: auto;
	height: auto;
	max-width: 40px;
	padding: 1em 5px 1em 5px;
	transition: transform 0.3s ease;
}

.social_head a:hover img {
	width: auto;
	height: auto;
	/* max-width: 55px; */
	transform: scale(1.2);
}

.header-nav {
    display: flex;
    align-items: center;    /* выравнивание по вертикали */
    justify-content: flex-end;
    gap: 1.2em;             /* увеличьте до нужного значения */
  }
  .site-nav-img {
    padding: 0;
    margin: 0;
  }
  .site-nav-img img {
    max-width: 30px;        /* если нужно уменьшить иконку */
    height: auto;
    display: block;
    margin: 0;
    margin: 1.7em 3.5em ;
  }
  .menu-toggle {
    padding: 3em 1em;         /* уменьшите или увеличьте, если нужно */
    margin: 0;
  }


.contact-bar {
	display: block;
}

}




@media (min-width: 1090px) {
  
  .menu-toggle {
    display: none;
  }
  
  .contact-bar {
	display: none;
}
  

  
  
 .tel {
	 /* float: left; */
	 font-size: 0.8em;
	 color: #EBEBD3;
	 margin: 1em 0em;
	 /* padding: 4em 1.5em 1em 0em; */
	 display: block;

}

.social_head {
	display: block;
}

.social_head img {
	/* float: left; */
	width: auto;
	height: auto;
	max-width: 50px;
	padding: 1em 5px 1em 5px;
	transition: transform 0.3s ease;
	position: relative;
}

.social_head a:hover img {
	width: auto;
	height: auto;
	/* max-width: 55px; */
	transform: scale(1.2);
}




  .site-nav {
    height: auto;
    position: relative;
	padding: 0em 0em;
	margin: 1em 0em;
    background: transparent;
    float: none;
	margin-left: 0em;
    clip-path: initial;
  }
  

.site-nav-img img {
	width: auto;
	height: auto;
	max-width: 40px;
	transition: transform 0.3s ease;
	float: none;
	/* float: right; */
	display: block;
	padding: 0em;
	margin-right: 1em;
	margin-left: 0em; /* если нужно */
	
	/* display: block; */
	/* position: relative; */
	/* padding: 0em  0em; */

}

.site-nav-img img:hover {
	width: auto;
	height: auto;
	/* max-width: 55px; */
	transform: scale(1.2);
}


  .site-nav li {
    display: inline-block;
    border: none;
  }
  
  .site-nav a {
    padding: 0;
  margin-left: 0.3em;
	
  }
  
  .site-nav a:hover,
  .site-nav a:focus {

	color: #ff9900;
    background: transparent;
  }
  
  .site-nav--icon {
    display: none;
  }
  
/* } */