
.main-page-container {
  width: 100%;
  max-width: 420px;
  height: 100%;
  min-height: 900px;
  background: url("./main/main_bg.jpg") no-repeat;
  text-align: center;
  background-position: center;
}

.mainIcon {
  position: relative;
  margin: 0 auto;
  top: -40px;
  z-index: 5;
}

.main-logo {
  width: 150px;
}

.signinIcon {
  width: 30px;
  height: 30px;
  background: url("./main/signin.png");
  position: relative;
  z-index: 10;
  top: -83px;
  left: 89%;
}

.signinIcon:hover {
  background: url("./main/signin_hover.png");
}


.main-carousel {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  margin: 0px;
  padding: 0px;
  margin: 0 auto;
  box-shadow: 3px 3px 10px #161616;
}

.slide-content {
  position: relative;
  top: 35%;
}

.slide-main-image {
  width: 320px;
}

.slide-main {
  color: #fff;
  font-size: 22px;
  font-family: 'Anton', sans-serif;
  text-shadow: 1px 1px 1px #161616;
}

.slide-sub {
  color: #fff;
  width: 75%;
  font-size: 14px;
  margin: 0 auto;
  letter-spacing: 1px;
  line-height: 16px;
  font-weight: 300;
  margin-top: -10px;
}

.slide-btn {
  width: 150px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  margin-top: 15px;
}

.slide-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #ffff99;
  color: #ffff99;
  font-family: 'Roboto Condensed', sans-serif;
}

.item {
  width: 100%;
  max-width: 1024px;
}

.slide1 {
  width: 100%;
  max-width: 420px;
  height: 500px;
  background: url("./main/main_slide_01.jpg");
  background-position: center;
}

.slide2 {
  width: 100%;
  max-width: 420px;
  height: 500px;
  background: url("./main/main_slide_02.jpg");
  background-position: center;
}

.slide3 {
  width: 100%;
  max-width: 420px;
  height: 500px;
  background: url("./main/main_slide_03.jpg");
  background-position: center;
}


.left-arrow {
  width: 20px;
  height: 26px;
  background: url("./main/left.png");
  top: 45%;
}

.left-arrow:hover {
  background: url("./main/left_hover.png");
}

.right-arrow {
  width: 20px;
  height: 26px;
  background: url("./main/right.png");
  top: 45%;
}

.right-arrow:hover {
  background: url("./main/right_hover.png");
}



#b-wrap {
	display: block;
	overflow: hidden;
}

.menu {
	width: 190px;
	height: 100%;
  min-height: 825px;
	position: fixed;
	left: -190px;
	top: 0;
  z-index: 20;
	background: url("./main/main_menu.jpg");
  background-position: right;
	box-shadow: 0 0 1px #161616;
	-webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    -o-transition: all ease 1s;
	transition: all ease 1s;
}

.mhead {
  padding-top: 10px;
	min-height: 50px;
}

/* Меню открыть */
.menu-ham {
	padding-top: 15px;
	float: left;
	margin-left: 20px;
	cursor: pointer;
  position: relative;
  z-index: 10;
}


.close-menu {
	float: left;
	min-height: 30px;
	padding-left: 25px;
	padding-top: 15px;
	cursor: pointer;
}



.accordion {
  width: 100%;
  margin-top: 60px;
  padding-left: 0;
}

.accordion .link {
  width: 189px;
  text-align: left;
  cursor: pointer;
  display: block;
  padding: 10px 15px 10px 25px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: 'Anton', sans-serif;
  border-bottom: 1px solid #161616;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion .link:hover {
  color: #ffff99;
  background-color: rgba(0, 0, 0, 0.5);
}

.accordion li:last-child .link { border-bottom: 0; }

.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 30px;
  left: auto;
  font-size: 12px;
  font-weight: 100;
}

.accordion li.open .link { color: #ffff99; }

.accordion li.open i { color: #ffff99; }

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/


.submenu {
  display: none;
  font-size: 14px;
  top: 0;
  left: 0;
}

.submenu li {
  width: 209px;
  left: 0;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 1px;
  margin-left: -60px;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  padding: 12px 12px 12px 45px;
  letter-spacing: 1PX;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.submenu a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #ffff99;
}

footer {
  position: relative;
  top: 150px;
  z-index: 12;
}

.fooet-logo {
  width: 350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.social-media-logo {
  width: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.facebook {
  width: 35px;
  height: 35px;
  background: url("./footer/fb_icon.png");
}

.facebook:hover {
  transition: 1s;
  background: url("./footer/fb_icon_hover.png");
}


.twitter {
  width: 35px;
  height: 35px;
  background: url("./footer/twitter_icon.png");
}

.twitter:hover {
  transition: 1s;
  background: url("./footer/twitter_icon_hover.png");
}

.youtube {
  width: 35px;
  height: 35px;
  background: url("./footer/youtube_icon.png");
}

.youtube:hover {
  transition: 1s;
  background: url("./footer/youtube_icon_hover.png");
}

.extra-menu {
  width: 280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.extra-menu p {
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  font-size: 12px;
}

.extra-menu p:hover {
  color: #ffff99;
}

.copyright {
  width: 90%;
  margin: 0 auto;
}

.copyright p {
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  font-size: 12px;
}

.fire {
  width: 1024px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
}

#particles-js {
  max-width: 1024px;
  height: 100%;
}

.count_particles {
  display: none;
}

canvas {
  top: 0;
  display: inline-block;
}
