body {
  background: url(/images/LCN.png);
  margin: 0 1%;
  font-family: "Montserrat";
  display: flex;
  flex-direction: column;
  align-items: center;

}

h2 {
  font-family: "Montserrat";
  margin: 0;
  font-size: calc(1vw + 1em);
  color: #C5C5C5;
}

h3 {
  font-family: "Montserrat";
  margin: 0;
  font-size: calc(1vw + 1em);
  color: #C5C5C5;
  padding: 1%;
}

p {
  font-family: "Montserrat";
  color: #C5C5C5;
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 95%;
  z-index: 1;
}

body::-webkit-scrollbar {
  width: 3px;
  height: 8px;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: #FF9900;
}

.logo {
  width: 5em;
  height: 5em;
  max-width: 60px;
  max-height: 60px;
}

.menu {
  display: flex;
  list-style: none;

}

.menu-vert {
  display: none;
  position: fixed;
  background-color: black;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 0 5px;
  margin: 0;
  list-style: none;
  flex-direction: column;
  align-items: center;
}
.menu-vert li{
  margin: 20px;
}


.menu-vert-icon {
  display: none;
}

nav li {
  font-family: "Montserrat bold";
  margin: auto 1rem;
  display: flex;
}

ul {
  list-style-type: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: #C5C5C5;
}

.text-box {
  transition: all 0.3s;
  background-color: #171615;
  min-width: 300px;
  font-size: calc(1vw + 1em);
  padding: 1%;

}

.text-main {
  width: 40%;
}

.container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.container article {
  margin: 5px 0;
}

.container article:nth-child(odd) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

}

.container article:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-around;
}

article {
  display: flex;
  align-items: center;
}

.main_img {
  width: 50%;
  margin-top:5px;
  max-height: 400px;
  object-fit: contain;
}

.icon {
  height: 30px;
  width: 30px;
  object-fit: contain;
  padding: 0 1%;
}

.text-box:first-child::first-letter {
  float: left;
  font-family: "Montserrat bold";
  font-size: calc(2vw + 2em);
  line-height: 1;
  color: #FF9900;
  margin-right: 0.3rem;
  text-shadow: 0.3vw 0.3vw #C5C5C5;
}

header {
  background-size: cover;
  z-index: 7;
  width: 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.login-menu{
  display: flex;
  flex-direction: column;
  justify-content:start; 
}
footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2vw 0;
  font-size: calc(1vw + 1em);
  width: 95%;
}

#ds {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
}

#avatar {
  display: flex;
  align-items: center;
}

form {
  display: flex;
  flex-direction: column;


}

#login {
  display: block;
}
.menu-btn{
    display:none; 
 }
@media screen and (max-width: 1000px) {
  .hor .brand, .hor .menu{
    display: none;
  }
  .main_img, .text-main{
      width:90%;
  }
  .menu-vert.active-menu {
    display: flex;
  }
  footer {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .menu-btn {
    display:block; 
    width: 5em;
    height: 5em;
	max-width: 60px;
	max-height: 60px;
	position: relative;
	z-index:2;
	overflow: hidden;
}

.menu-btn .bar {
  width: 5em;
	max-width: 60px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
  border-radius: 4px;
	transform: translate(-50%, -50%);
	background-color: #FF9900;
	transition: all 0.3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
	top: calc(50% - 9px);
}
.menu-btn .bar:nth-of-type(3) {
	top: calc(50% + 9px);
}

/* Меняем гамбургер иконку, когда меню открыто */
.menu-btn.active-button .bar:nth-of-type(1) {
  display: none;
}
.menu-btn.active-button .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.menu-btn.active-button .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}
}