body {
  background-color: black;
}
button {
  cursor: pointer;
}
.btn:hover {
  border: 1px solid #ffffff;
}
.header-second-btn {
  font-family: Gilroy;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  background: #ffffff;
  padding: 16px;
  border-radius: 30px;
  color: black;
  border: none;
}
.header-first-btn {
  border: 1px solid #efdaed;
  font-family: Gilroy;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
  padding: 16px;
  border-radius: 30px;
  background: transparent;
}
@font-face {
  font-family: "Gilroy";
  src: url("/static/fonts/Gilroy-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Gilroy";
  src: url("/static/fonts/Gilroy-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("/static/fonts/Gilroy-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Kreadon";
  src: url("/static/fonts/Kreadon-L.otf");
  font-weight: 300;
}

@font-face {
  font-family: "Kreadon";
  src: url("/static/fonts/Kreadon-R.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Kreadon";
  src: url("/static/fonts/Kreadon-M.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Kreadon";
  src: url("/static/fonts/Kreadon-B.otf");
  font-weight: 700;
}
.right {
  text-align: right;
}
.alicenter {
  align-items: center;
}
.top {
  padding-left: 100px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1246px;
  }
}
@media (min-width: 1400px) {
  .header {
    max-width: 1400px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

.header {
  margin: 22px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 77px;
}

.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  color: white;
  text-decoration: none;
  font-family: Gilroy;
  font-weight: 500;
  font-size: 16px;
  line-height: 18.83px;
  letter-spacing: 0%;
}
.buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 16px;
  border: 1px solid white;
  border-radius: 30px;
  background: none;
  color: white;
  cursor: pointer;
  font-family: Gilroy;
  font-weight: 500;
  font-size: 16px;
  line-height: 18.83px;
  letter-spacing: 0%;
}
.btn.primary {
  background: white;
  color: black;
}

.hamburger-menu {
  display: none;
  height: 46px;
  margin: 22px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
  width: 30px;
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  right: 0;
  transform: rotate(0);
  width: 30px !important;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  right: 0;
  width: 30px !important;
}

#menu__toggle:checked ~ .menu__btn {
  width: 50px;
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
  background: #000000;
  color: white;
  text-align: center;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 28px;
  right: 0px;
  width: 57px;
  height: 50px;
  cursor: pointer;
  z-index: 11;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;

  height: 4px;
  background-color: #ffffff;
  transition-duration: 0.25s;
}
.menu__btn > span {
  width: 30px;
}
.menu__btn > span::before {
  content: "";
  top: -8px;
  width: 15px;
}
.menu__btn > span::after {
  content: "";
  top: 8px;
  width: 15px;
  right: 0;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  z-index: 10;
  width: 200px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #fff;
  transition-duration: 0.25s;
  box-shadow: 1px 0px 6px #08391c;
}
.menu_item1 {
  font-family: Gilroy;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 43px;
}

.menu_item1:hover {
  color: rgb(253, 132, 220);
  text-decoration: none;
}

.menu__box button {
  background-color: #ffa001;
  width: 80%;
  border-radius: 5px;
  border: 2px solid #ffa001;
  color: white;
  padding: 5px;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .hamburger-menu {
    display: block;
  }
  .head_con {
    display: none;
  }
}
@media (min-width: 1400px) {
  .head_con {
    display: block;
  }
  .hamburger-menu {
    display: none;
  }
}
#menu__toggle:checked ~ .menu__btn {
  top: 10px;
  right: 10px;
}
