@font-face {
    font-family: 'Graphik Arabic';
    src: url('../newfont/GraphikArabic-Regular.woff2') format('woff2'),
        url('../newfont/GraphikArabic-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000;
  height: 100vh;
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family: 'Graphik Arabic';
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 10px;
}
a {
  text-decoration: none;
}
.slider {
  width: 1350px;
  max-width: 100vw;
  height: 700px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.slider .list {
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: 1s;
}
.slider .list img {
  width: 1380px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
}
.slider .contentContainer {
  width: 1380px;
  max-width: 100vw;
  height: 93%;
  object-fit: cover;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding-left: 1.9rem;
  padding-right: 0.4rem;
}
.slider p.rotateText {
  position: absolute;
  top: 63%;
  left: -105px;
  transform: translate(50%, -50%);
  padding: 0;
  transform: rotate(-90deg);
  font-size: 18px;
  color: white;
}
.slider .contentContainer h1 {
	font-family: Arial, Helvetica, sans-serif;
  font-size: 180px;
  max-width: 558px;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  color: transparent;
  font-weight: 700;
  line-height: 83%;
  letter-spacing: 12px;
}
.slider .contentContainer .textAndFormButton {
/*	direction: rtl;*/
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: 80%;
  margin-top: 6.5rem;
  max-width: 550px;
  margin-left: 0.5rem;
}
.slider .contentContainer .textAndFormButton h3 {
  line-height: normal;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 1.9rem;
  margin-top: 63px;
}
.slider .contentContainer .textAndFormButton p {
  font-weight: 200;
  margin-bottom: 0.17rem;
  font-size: 1.3rem;
  max-width: 400px;
}
.slider .contentContainer .textAndFormButton .buttons-Container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  width: 100%;
}
.slider .contentContainer .textAndFormButton button {
  background: transparent;
  border-radius: 25px;
  border: 1px solid white;
  color: white;
  padding: 5px 5px 5px 20px;
  font-size: 18px;
  align-self: center;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
.slider .contentContainer .textAndFormButton .playIcon {
  position: absolute;
  right: 220px;
  bottom: 60px;
  border: 1px solid white;
  padding: 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.slider .contentContainer .textAndFormButton .open-form-btn span {
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: black;
  padding: 7px 8px 8px 11px;
  font-size: 25px;
  background: linear-gradient(180deg, #f7ecffd8, #e0befab3);
}
.slider .contentContainer .textAndFormButton .open-form-btn:hover span {
  background: linear-gradient(180deg, #c579ff, #e6c6ff);
}
.slider .contentContainer .textAndFormButton .buttons-Container .playIcon h4 {
  position: absolute;
  color: white;
  font-size: 10px;
  user-select: none;
  pointer-events: none;
  animation: Rotation 5s linear infinite;
}
.slider
  .contentContainer
  .textAndFormButton
  .buttons-Container
  .playIcon
  h4
  span {
  position: absolute;
  top: -50px;
  text-transform: uppercase;
  display: inline-block;
  transform-origin: 0 50px;
}
@keyframes Rotation {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.slider .buttons {
  position: absolute;
  top: 65%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  z-index: 0;
}
.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
  cursor: pointer;
}
.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.5s;
  cursor: pointer;
}
.slider .dots li.active {
  width: 30px;
}
@media screen and (max-width: 1325px) {
  .slider p.rotateText {
    left: -165px;
  }
}
@media screen and (max-width: 1225px) {
  .slider p.rotateText {
    left: -225px;
  }
}
@media screen and (max-width: 1090px) {
  .slider p.rotateText {
    left: -255px;
  }
}
@media screen and (max-width: 886px) {
  .video-container {
    left: 25px;
    bottom: 25px;
    border-radius: 20px;
    border-width: 3px;
    width: 100px;
    height: 135px;
  }
}

@media screen and (max-width: 768px) {
  .slider .buttons {
    top: 60%;
    left: 3%;
    width: 95%;
  }
  .slider p.rotateText {
    top: 40%;
  }
  .slider .contentContainer {
    height: 85%;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1.2rem 0.2rem 0 2.8rem;
  }
  .slider .contentContainer h1 {
    font-size: 90px;
    line-height: 85%;
    margin-left: -3px;
    letter-spacing: 24px;
  }
  .slider .contentContainer .textAndFormButton {
    height: 70%;
    margin-top: 0.3rem;
    margin-left: 0rem;
  }
  .slider .contentContainer .textAndFormButton h3 {
    line-height: normal;
    font-weight: 300;
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
  }
  .slider .contentContainer .textAndFormButton p {
    margin-bottom: 0rem;
    font-size: 1rem;
    max-width: 400px;
  }
  .slider .contentContainer .textAndFormButton .buttons-Container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin-top: 0.7rem;
    width: 100%;
  }
  .slider .contentContainer .textAndFormButton .buttons-Container .playIcon {
    position: relative;
    right: 0px;
    bottom: 0px;
    border: 1px solid white;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  .slider
    .contentContainer
    .textAndFormButton
    .buttons-Container
    .playIcon
    h4
    span {
    position: absolute;
    top: -40px;
    text-transform: uppercase;
    display: inline-block;
    transform-origin: 0 40px;
  }
  .slider .contentContainer .textAndFormButton button {
    background: transparent;
    border-radius: 25px;
    border: 1px solid white;
    color: white;
    padding: 5px 5px 5px 20px;
    font-size: 18px;
    align-self: center;
    margin-top: 0rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    cursor: pointer;
  }
}

@media screen and (max-width: 585px) {
  .slider .contentContainer {
    padding: 1.2rem 1.5rem 0 1.5rem;
  }
  .slider .contentContainer h1 {
    font-size: 80px;
  }
  .slider p.rotateText {
    display: none;
  }
}
/* Corner Video */
.video-container {
  z-index: 400;
  overflow: hidden;
  background: #eee;
  position: absolute;
  left: 30px;
  bottom: 25px;
  border-radius: 20px;
  width: 130px;
  height: 180px;
  transition: all 0.3s ease;
  box-shadow: -4px 8px 12px rgba(42, 42, 42, 0.4),
    4px 8px 12px rgba(42, 42, 42, 0.4), 0px 2px 12px rgba(42, 42, 42, 0.4);
  border: 1px solid white;
}
.video-container video {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 104%;
  min-height: 104%;
  z-index: 100;
  transition: opacity 0.4s ease-in-out;
  opacity: 0.8;
}
.video-container:hover {
  width: 143px;
  height: 198px;
}

.video-container.active {
  width: 280px;
  height: 500px;
  left: 25px;
  bottom: 25px;
}
.video-container.closed {
  display: none;
}

.close-button,
.minus-button {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  border: none;
  color: #404040e2;
  font-size: 18px;
  cursor: pointer;
  z-index: 200;
  background: transparent;
}
.minus-button {
  display: none;
}

.video-container.active .close-button {
  display: none;
}
.video-container.active .minus-button {
  display: block;
  font-size: 24px;
  top: 8px;
  right: 8px;
}

@media only screen and (max-width: 983px) {
  .video-container {
    left: 25px;
    bottom: 25px;
    border-radius: 20px;
    border-width: 3px;
    width: 100px;
    height: 135px;
  }
}

/* Corner Plus */
.floating-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  padding: 18px;
  border: 1px solid black;
  border-radius: 50%;
  transition: 0.3s all;
  border: 1px solid rgb(77, 77, 77);
  gap: 8px;
}

.floating-button:hover {
  border: 1px solid white;
}

.floating-button.open {
  border-radius: 60px;
}

.floating-button .circle {
  background-color: #333;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transform: rotate(-90deg);
  background: linear-gradient(to left, #ffffff45 10%, #212121 40%);
  position: relative; /* To position waves inside */
  overflow: hidden;
  transition: all 0.47s ease;
}

.floating-button .plus-icon,
.minus-icon {
  font-size: 30px;
}

.floating-button .minus-icon {
  display: none;
}

.floating-button .icons {
  max-height: 0;

  visibility: hidden;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease;
  gap: 5px;
}

.floating-button.open .circle + .icons {
  display: flex;
  max-height: 180px;
  opacity: 1;
  visibility: visible;
}

.icons i {
  background: transparent;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 32px;
  border: 1px solid white;
  font-weight: 700;
}

.floating-button.open .circle {
  transform: rotate(0deg);
}

.floating-button.open .icons {
  opacity: 1;
}

.floating-button.open .plus-icon {
  display: none;
}

.floating-button.open .minus-icon {
  display: block;
}

/* Circular wave animation */
.floating-button::before,
.floating-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: wave 1.5s infinite;
  opacity: 1;
  pointer-events: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.896);
  z-index: 300;
  animation-delay: 0.3s;
}
.floating-button.open::before,
.floating-button.open::after {
  display: none;
}
.floating-button::after {
  animation: wave2 1.5s infinite;
}

@keyframes wave {
  0% {
    width: 75px;
    height: 75px;
    opacity: 0.8;
  }
  50% {
    width: 115px;
    height: 115px;
    opacity: 0.5;
  }
  100% {
    width: 133px;
    height: 133px;
    opacity: 0;
  }
}
@keyframes wave2 {
  0% {
    width: 85px;
    height: 85px;
    opacity: 0.8;
  }
  50% {
    width: 125px;
    height: 125px;
    opacity: 0.5;
  }
  100% {
    width: 140px;
    height: 140px;
    opacity: 0;
  }
}

/* video popup */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.8s all ease;
  display: flex;
}
.video-popup.show {
  opacity: 1;
  visibility: visible;
}

.video-popup iframe {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.video-popup .close-btn {
  border: none;
  font-weight: bold;
  position: absolute;
  top: 155px;
  right: 45px;
  background: none;
  border: 1px solid white;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s all ease;
  z-index: 100;
}
.video-popup iframe {
  max-width: 92%;
  max-height: 90%;
  border-radius: 10px;
}
.video-popup .close-btn:hover {
  background: white;
  color: #000;
}

/* Form Popup */
.form.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.form.popup .bottomText {
  max-width: 950px;
  text-align: center;
  margin-top: 10px;
  color: #68737dda;
  font-size: 15px;
  font-weight: 400;
  padding: 0 2rem;
}
.form.popup.show {
  opacity: 1;
  visibility: visible;
  z-index:999;
}
.form.popup .popup-content {
  background: linear-gradient(
    145.4deg,
    hsla(0, 0%, 36%, 0.95) 2.02%,
    hsla(0, 0%, 9%, 1) 34.36%
  );
  padding: 80px;
  border-radius: 25px;
  text-align: center;
  max-width: 950px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: white;
}

.form.popup .popup-content h2 {
  margin: 0 0 3rem;
  font-size: 35px;
  text-transform: capitalize;
}
.form.popup .popup-content form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
.form.popup .popup-content form .inputsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.form.popup .popup-content form .inputsContainer div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid white;
  min-width: 200px;
}
.form.popup .popup-content input {
  margin: 10px 0;
  color: white;
  background: transparent;
  box-shadow: none;
  outline: none;
  border: none;
}
.form.popup .popup-content form .inputsContainer div label span {
  color: blue;
}
.form.popup .popup-content .submitButton {
  background: linear-gradient(90deg, #aa61fc, #ff99c8);
  border: none;
  color: #fff;
  font-weight: bold;
}

.form.popup .popup-content button:hover {
  opacity: 0.9;
}

.form.popup .close-btn {
  border: none;
  font-weight: bold;
  position: absolute;
  top: 155px;
  right: 45px;
  background: none;
  border: 1px solid white;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s all ease;
  z-index: 100;
}

.form.popup .close-btn:hover {
  background: white;
  color: #000;
}
.form.popup .open-form-btn {
  background: transparent;
  border-radius: 25px;
  border: 1px solid white;
  color: white;
  padding: 5px 5px 5px 20px;
  font-size: 18px;
  align-self: center;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
.form.popup .open-form-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: black;
  padding: 5px;
  font-size: 25px;
  background: linear-gradient(180deg, #f7ecffd8, #e0befab3);
}
.form.popup .open-form-btn:hover span {
  background: linear-gradient(180deg, #c579ff, #e6c6ff);
}
@media screen and (max-width: 768px) {
  .form.popup {
    padding: 0px 30px;
  }
  .form.popup .popup-content {
    padding: 40px 30px;
    margin-top: 8rem;
  }
  .form.popup .close-btn {
    position: static;
    margin-bottom: 1.5rem;
  }
  .form.popup .popup-content form .inputsContainer {
    flex-direction: column;
    width: 100%;
  }

  .form.popup .popup-content form .inputsContainer div {
    width: 100%;
  }
  .form.popup .popup-content h2 {
    margin: 0 0 3rem;
    font-size: 25px;
    width: 100%;
  }
  .video-popup .close-btn {
    border: none;
    font-weight: bold;
    position: absolute;
    top: 155px;
    right: 25px;
    background: none;
    border: 1px solid white;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s all ease;
    z-index: 100;
  }
}
@media (max-width: 767px) {
.open-form-btn
 {
    width: 100% !important;
}
}