@import 'reset.css';

html,
body {
 width: 100%;
 background: #710042;
 margin: 0;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 13px;
 color: #ffade7;
}

.wrapper {
 width: 880px;
 margin: 0 auto;
}

.header {
 width: 100%;
 height: 108px;
 background: url(i/header_bg.png) repeat-x 0 0;
 border-bottom: 1px solid #af0086;
}

.header .logo {
 float: left;
 width: 340px;
 height: 108px;
}

.header .logo a {
 display: block;
 width: inherit;
 height: inherit;
 background: url(i/x_logo.png) no-repeat left center;
}

.header .logo a span {
 display: none;
}

.header .info {
 float: right;
 width: 322px;
 height: 108px;
 background: url(i/info_txt.png) no-repeat left center;
}

.container {
 width: 100%;
 min-height: 400px;
 overflow: hidden;
 padding: 40px 0;
 border-bottom: 1px solid #aa0082;
 border-top: 1px solid #aa0082;
 background: url(i/cont_bg.png) repeat-x left bottom;
}

.container .chat {
 overflow: hidden;
 margin-bottom: 45px;
}

.container .chat .video {
 float: left;
 width: 420px;
}

.container .chat .age {
 float: right;
 width: 322px;
 padding: 0 10px;
 text-align: center;
}

.container .chat .age h2 {
 width: 100%;
 height: 58px;
 background: url(i/com_txt.png) no-repeat 0 0;
 margin-bottom: 20px;
}

.container .chat .age h2 span {
 display: none;
}

.container .chat .age a {
 display: inline-block;
 margin-bottom: 8px;
}

.container .entry {
 width: 100%;
}

.container .entry h3 {
 width: 100%;
margin-bottom: 10px;
font-size: 30px;
font-family: Comic Sans MS, sans-serif;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Тень смещение-x смещение-y размытие цвет */

}

.container .entry h3 span {
 
}

.container .entry p {
 margin-bottom: 18px;
 line-height: 22px;
}

.container .entry strong {
 font-size: 16px;
 font-weight: bold;
 line-height: 22px;
}

.footer {
 width: 100%;
 height: 68px;
 line-height: 68px;
 border-top: 1px solid #570033;
 text-align: center;
 font-size: 12px;
}

.footer a {
 color: #fbdd3f;
}

.footer a:hover {
 text-decoration: none;
}

/* Меню, шапка сайта */

.menu {
 list-style: none;
 padding: 0;
 margin: 0;
 float: left;
}

.menu>li {
 position: relative;
 display: block;
 float: left;
}

.menu>li>a {
 display: block;
 padding: 15px 20px;
 color: white;
 text-decoration: none;
}

.menu>li>a:hover {
 background-color: #aa0082;
}

.submenu {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 background-color: #af0086;
 padding: 10px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 width: 100%;
 min-width: 300px;
 border-radius: 10px;
}

.submenu .submenu-column {
 display: inline-block;
 vertical-align: top;
 width: 33%;
 float: left;
}

.submenu .submenu-column ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

.submenu .submenu-column ul li {
 margin: 0;
}

.submenu .submenu-column ul li a {
 display: block;
 padding: 10px;
 color: white;
 text-decoration: none;
}

.submenu .submenu-column ul li a:hover {
 color: #75025b;
}

.burger {
 display: none;
 cursor: pointer;
 padding: 15px;

 color: white;
 text-align: center;
}

.burger div {
 width: 25px;
 height: 3px;
 background-color: white;
 margin: 5px auto;
 transition: all 0.3s;
}

.burger.active div:nth-child(1) {
 transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
 opacity: 0;
}

.burger.active div:nth-child(3) {
 transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
 .menu>li:nth-child(1)>a {
  padding-left: 0;
 }

 .menu>li:nth-child(1)>a:hover {
  background: transparent;
 }
 .menu{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
 }

}

@media (max-width: 768px) {
 .menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #af0086;
  overflow-y: auto;
  transition: left 0.3s;
  z-index: 1000;
  float: none;
  display: block;
  padding-top: 60px;
 }

 .menu.active {
  left: 0;
 }

 .menu>li {
  width: 100%;
  float: none;
 }

 .submenu {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: none;
 }

 .burger {
  display: block;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1001;
 }

 .submenu .submenu-column {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  float: none;
 }

 .burger.active {
  position: absolute;
 }
}


@media (max-width: 930px) {
 .container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
 }

 .wrapper {
  width: 100%;
  margin: 0 auto;

 }
}

@media (max-width: 768px) {
 .container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
 }

 .wrapper {
  width: 100%;
  margin: 0 auto;

 }

 .header .logo {
  float: none;
  margin: 0 auto;
  height: 85px;
 }

 .header .logo a {
  display: inline-block;
  margin: 0 auto;
  background: url(i/x_logo.png) no-repeat center center;
 }

 .header .info {
  float: none;
  width: 100%;
  height: 75px;
  background: url(i/info_txt.png) no-repeat center center;
  display: block;
 }

 .header {
  border-bottom: 0;
  padding-bottom: 15px;
  height: 100%;
 }

 .container .chat .video {
  float: none;
  width: 420px;
  margin: 0 auto;
 }

 .container .chat .age {
  float: none;
  width: 322px;
  padding: 20px 10px;
  text-align: center;
  margin: 0 auto;

 }
}