* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  direction: rtl;
}

.banner {
  min-height: 100vh;
  background: #120e0f url(bg-img.jpg);
  background-position: center;
  background-size: cover;
  padding: 40px 100px;
  display: flex;
  align-items: center;
}

header {
  position: absolute;
  right: 10px;
  top: 20px;
  display: flex;
  align-items: center;
}

.toggle {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: white;
  margin-left: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle::before {
  content: " ";
  position: absolute;
  width: 28px;
  height: 3px;
  background: #120e0f;
  transform: translateY(-6px);
  transition: 0.5s;
}

.toggle.active::before {
  transform: translateY(0px) rotate(45deg);
}

.toggle::after {
  content: " ";
  position: absolute;
  width: 28px;
  height: 3px;
  background: #120e0f;
  transform: translateY(6px);
  transition: 0.5s;
}

.toggle.active::after {
  transform: translateY(0px) rotate(-45deg);
}

.navigation {
  direction: ltr;
  text-align: center;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #120e0f url(manu.jpg);
  background-position: left;
  background-size: cover;
  display: none;
  padding-left: 10px;
}

.navigation.active {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.navigation li {
  padding: 20px;
  list-style: none;
  margin: 4px 0;
}

.navigation li a {
  color: azure;
  font-size: 2em;
  padding: 5px 12px;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-weight: 600;
  font-family: b davat;
}

.navigation li a:active,
.navigation li a:hover {
  background: blue;
  border-radius: 5px;
  transition: 0.4s;
}

.content {
  position: relative;
  max-width: 800px;
}

.content h1 {
  color: white;
  font-size: 50px;
  font-weight: bold;
  font-family: b davat;
  text-align: center;
}

.content h2 {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: bold;
  font-family: b nazanin;
  text-align: center;
}

.buttons {
  position: relative;
  top: 50%;
  text-align: center;
  font-family: b nazanin;
}

.buttons button {
  height: 50px;
  font-size: 20px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  background: rgb(18, 85, 90);
  border-radius: 11px;
  outline: none;
  cursor: pointer;
  margin: 22px;
}

.btn ion-icon {
  font-size: 1.3em;
}

.clip {
  left: 100px;
  bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
.clip .clipBox {
  position: relative;

  width: 250px;
  height: 200px;
  border: 8px solid rgb(77, 73, 73);
  border-radius: 55px;
  text-align: center;
  cursor: pointer;
  background: rgb(209, 14, 186);
}
.clip .clipBox h1 {
 position: absolute;
 left: 75px;
  color: rgb(209, 14, 186);
  font-family: b davat;
}

.clip .clipBox img {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 45px;
}
.clip .clipBox:hover img {
  opacity: 0;
}
.clip .clipBox ion-icon {
  z-index: 0;

  left: 50%;
  top: 25%;
  font-size: 4em;
  color: ivory;
}
.socialIcon {
  position: absolute;
  bottom: 20px;
  right: 100px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.socialIcon li {
  list-style: none;
}
.socialIcon li a {
  font-size: 2em;
  color: rgb(255, 255, 255);
}
.socialIcon li a:hover {
  color: red;
}
@media (max-width: 860px) {
  .banner {
    padding: 40px;
    flex-direction: column;
    align-items: flex-end;
  }
  .content {
    margin-top: 150px;
  }
  .clip {
    position: relative;
    left: initial;
    bottom: initial;
  }
  .socialIcon {
    position: relative;
    bottom: initial;
    right: initial;
  }
}
