* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background: #0f0f0f;
}

.header {
  max-width: 1320px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__menu-burger {
  height: 30px;
  width: 30px;
  position: relative;
  margin-right: 30px;
}

.burger {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  top: 50%;
}

.burger-before {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  top: 20%;
}

.burger-after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  top: 80%;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fa-youtube {
  font-size: 35px;
  color: #e93f33;
  position: relative;
  margin-right: 5px;
}
.fa-youtube::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  left: 35%;
  top: 35%;
  z-index: -1;
}

.header__logo-name {
  color: white;
  font-weight: 300;
  letter-spacing: -1.5px;
  position: relative;
  font-family: "Roboto", sans-serif;
}
.header__logo-name span {
  font-size: 11px;
  font-weight: 100;
  position: absolute;
  top: 0;
  right: -20px;
  color: #998a8a;
  letter-spacing: 0;
}

.header__center {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

input {
  background: none;
  width: 550px;
  color: white;
  font-size: 18px;
}

form {
  border: 1px solid #998a8a;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-radius: 25px 0px 0 25px;
}

.fa-keyboard {
  color: #998a8a;
  font-size: 21px;
}

.fa-magnifying-glass {
  border: 1px solid #998a8a;
  font-size: 17px;
  font-weight: 100;
  color: #d9c3c3;
  padding: 12px 22px;
  border-radius: 0px 25px 25px 0px;
  background: rgba(255, 255, 255, 0.1843137255);
}

.fa-microphone {
  margin-left: 10px;
  color: white;
  font-size: 17px;
  background: rgba(255, 252, 252, 0.0705882353);
  border-radius: 50%;
  padding: 14px 16px;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  width: 150px;
}

.header__right-block {
  position: relative;
}

.fa-video,
.fa-bell {
  font-size: 20px;
}

.header__right-circle {
  position: absolute;
  top: -53%;
  right: -95%;
  background: #e93f33;
  padding: 3px 6px;
  font-family: "Roboto";
  font-size: 12px;
  border-radius: 50%;
  border: 1px solid #211f1f;
}

.header__right-profile {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.container {
  display: flex;
  max-width: 1320px;
  margin: 20px auto;
}

.section-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
  width: 25%;
}

.section-1__item {
  color: white;
  display: flex;
}

.section-1__item-second {
  color: white;
  display: flex;
}
.section-1__item-second i {
  font-size: 22px;
  color: #e93f33;
  position: relative;
  margin-right: 0px;
}
.section-1__item-second .section-1__item-name {
  margin-left: 22px;
}
.section-1__item-second .fa-youtube::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  left: 30%;
  top: 25%;
  z-index: -1;
}

.section-1__item-name {
  margin-left: 30px;
  margin-bottom: 15px;
}

.fa-lightbulb {
  margin-left: 4px;
}

hr {
  border: 0.7px solid rgba(255, 255, 255, 0.2980392157);
  margin-bottom: 15px;
}

.section-1__title {
  text-align: center;
  margin-bottom: 15px;
  color: white;
}

.section-2 {
  height: 1300px;
  width: 70%;
  padding: 0 15px;
  position: relative;
  border: 1px solid white;
}
.section-2 ul {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.section-2 ul a {
  display: inline-block;
}
.section-2 ul li {
  background: #272727;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
  color: white;
}
.section-2 ul li:hover {
  background: #3f3f3f;
  transition: 0.3s;
}
.section-2 ul li:first-child {
  background: white;
  color: black;
}
.section-2 ul li:last-child {
  position: relative;
  box-shadow: inset -30px 0 20px #0f0f0f;
}
.section-2 ul li:last-child::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  box-shadow: -10px 0 10px #0f0f0f;
  background: #0f0f0f;
  right: 0;
  top: 0;
}
.section-2 ul li:last-child::after {
  content: ">";
  position: absolute;
}/*# sourceMappingURL=style.css.map */