/* Created By Mohamed Gamal - mohamed--gamal.vercel.app */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: #f0c673;
  border-radius: 55px;
  transition: 0.5s;
}
a:hover {
  color: #9747ff;
}
.cursor {
  cursor: pointer;
}
.section2-container a {
  color: #9747ff !important;
}

body {
  background-color: #000;
}
body::-webkit-scrollbar-thumb {
  border-radius: 100vw;
  background: linear-gradient(180deg, #f0c673 0%, #bb236f 100%);
}
body::-webkit-scrollbar {
  width: 0.6em;
}
/*  ===================== NavBar =====================  */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrapper {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  margin-bottom: -140px;
}
/* --- primary header --- */
.primary-header {
  display: flex;
  min-height: 120px;
  padding: 1rem 2rem;
}
.primary-header .container {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.primary-header .home-link {
  height: 36px;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 300;
  line-height: 10px;
  letter-spacing: 0em;
  text-align: left;
  animation: 5s home-link infinite;
  padding: 5px;
  color: #9b51e0;
  margin-left: -22px;
}

/*Styling DropDown button*/
.dropbtn {
  background-color: transparent;
  color: black;
  padding: 0.5rem 0rem 0.5rem 1rem;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: transparent;
}

.dropdown {
  position: absolute;
  right: 15%;
  top: 1.3rem;
  z-index: 3;
  color: white;
}
.dropdown-toggle {
  color: wheat;
}
.dropdown-menu {
  min-width: 100% !important;
  padding: 0 !important;
  background-color: #030008;
  color: wheat;
  border: 1px solid #9747ff;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  min-width: 80px;
  padding: 0;
  box-shadow: 18px 18px 45px 19px rgba(79, 94, 120, 0.1);
}
.dropdown-content a {
  color: black;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
}
.custom-dropdown {
  background-color: transparent !important;
  border: none !important;
}
.custom-dropdown .dropdown-icon {
  width: 10px;
  height: 10px;
  margin-left: 8px;
  color: #000;
}
.custom-dropdown::after {
  display: none;
}
.dropdown-item {
  color: wheat;
  border-radius: 10px !important;
}
.dropdown-item:hover {
  background-color: #030007a0;
  color: wheat;
}
/* menu */
@keyframes home-link {
  0% {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(
      90deg,
      #9b51e0 40%,
      rgba(255, 173, 14, 0) 110.64%
    );
    -webkit-background-clip: text;
  }
  25% {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(
      70deg,
      #9b51e0 80%,
      rgba(255, 173, 14, 0) 110.64%
    );
    -webkit-background-clip: text;
  }
  50% {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(
      40deg,
      #9b51e0 120%,
      rgba(255, 173, 14, 0) 150.64%
    );
    -webkit-background-clip: text;
  }
  75% {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(
      20deg,
      #9b51e0 80%,
      rgba(255, 173, 14, 0) 150.64%
    );
    -webkit-background-clip: text;
  }
  100% {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(
      0deg,
      #9b51e0 40%,
      rgba(255, 173, 14, 0) 190.64%
    );
    -webkit-background-clip: text;
  }
}
.primary-header .home-link img {
  height: 100%;
}
.primary-header .primary-navigation .nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2rem;
  justify-content: right;
}
.primary-header .primary-navigation .nav-list a {
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: 700;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(255, 255, 255, 1);
}
/* --- primary header END --- */
/* --- Burger Toggle --- */
.primary-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 0;
  cursor: pointer;
}
.primary-toggle .line,
.primary-toggle .line:before,
.primary-toggle .line:after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--secondary-color);
  height: 3px;
  width: 30px;
  transition: transform 100ms ease-in-out;
}
.primary-toggle .line:before {
  margin-top: -8px;
}
.primary-toggle .line:after {
  margin-top: 8px;
}
#primary-toggle:checked + .primary-toggle .line:before {
  margin-top: 0px;
  transform: rotate(45deg);
}
#primary-toggle:checked + .primary-toggle .line {
  background-color: transparent;
}
#primary-toggle:checked + .primary-toggle .line:after {
  margin-top: 0px;
  transform: rotate(-45deg);
}
/* --- Burger Toggle END --- */
/* ---  Menu --- */
.primary-header .primary-toggle {
  display: flex;
}
.primary-header .primary-navigation {
  position: absolute;
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  top: calc(1rem + 100%);
  left: -35px;
  padding: 0;
  z-index: 999;
  background-color: var(--header-background-color);
  filter: brightness(105%);
  box-shadow: 0 2px 5px #000;
  background-color: #000;
  opacity: 0.9;
}
.primary-header .primary-navigation .nav-list {
  display: block;
  overflow: hidden;
}
.primary-header .primary-navigation .nav-list li {
  padding: 0 2rem;
}
.primary-header .primary-navigation .nav-list li:last-child {
  margin-bottom: 2rem;
}
.primary-header .primary-navigation .nav-list a {
  /* padding: 1rem 0; */
  font-family: Montserrat;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  margin: 37px 0;
}
.primary-header .primary-navigation .nav-list li:last-child a {
  border: 0;
}
.primary-header .primary-navigation .nav-list .user-profile span {
  margin-left: 0;
}
.primary-header #primary-toggle:checked ~ .primary-navigation {
  grid-template-rows: 1fr;
  justify-content: center;
  width: 104%;
  padding-bottom: 50%;
}

@media screen and (min-width: 100px) and (max-width: 1400px) {
  .dropdown {
    right: 18%;
  }
}
@media screen and (min-width: 100px) and (max-width: 1200px) {
  .dropdown {
    right: 22%;
  }
}
@media screen and (min-width: 100px) and (max-width: 992px) {
  .dropdown {
    top: 4rem;
    right: -8%;
  }
}
@media screen and (min-width: 100px) and (max-width: 1300px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 105%;
  }
}
@media screen and (min-width: 100px) and (max-width: 1100px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 106%;
  }
}
@media screen and (min-width: 100px) and (max-width: 900px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 108%;
  }
}
@media screen and (min-width: 100px) and (max-width: 700px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 110%;
    padding-bottom: 70%;
  }
}
@media screen and (min-width: 100px) and (max-width: 600px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 112%;
    margin-top: 50px;
  }
}
@media screen and (min-width: 100px) and (max-width: 570px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 113%;
    padding-bottom: 90%;
  }
}
@media screen and (min-width: 100px) and (max-width: 500px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 116%;
    padding-bottom: 110%;
  }
}
@media screen and (min-width: 100px) and (max-width: 450px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 118%;
  }
}
@media screen and (min-width: 100px) and (max-width: 440px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 119%;
  }
}
@media screen and (min-width: 100px) and (max-width: 400px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 120%;
    padding-bottom: 140%;
  }
}
@media screen and (min-width: 100px) and (max-width: 350px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 126%;
  }
}
@media screen and (min-width: 100px) and (max-width: 300px) {
  .primary-header #primary-toggle:checked ~ .primary-navigation {
    width: 127%;
  }
}
.BAKKOURA {
  color: rgba(169, 169, 169, 1);
  width: 100%;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
}
.linkbar {
  margin-left: 80px;
}
.Frame1 {
  margin-right: 100px;
}
.Frame1.mob {
  display: none;
}
@media screen and (max-width: 600px) {
  .Frame1.desktop {
    display: none;
  }
  .Frame1.mob {
    display: flex;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%);
  }
}
.Menu-text {
  position: absolute;
  color: red;
  right: 60px;
  top: 30px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(255, 255, 255, 1);
}


@media screen and (max-width: 767px) {
  .Menu-text {
    position: absolute;
    color: #9b51e0 !important;
    right: 40px !important;
    top: 30px;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
  }
  .feed-2 {
    bottom: 5rem !important;
  }
  .button-close-modal{
    top:1% !important;
  }
}

.nav-social {
  margin-left: 80px;
}
#menu img {
  position: absolute;
  right: -30px;
  top: 0;
}
@media screen and (max-width: 767px) {
  #menu img {
    position: absolute;
    right: -30px;
    top: 10px !important;
    width: 4rem !important;
  }
}
/* // ===================== NavBar ===================== // */
/*  ===================== section1 =====================  */
.Home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.section1 {
  width: 100%;
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../imgs/wallpapersden 1.png");
  background-size: cover;
  position: relative;
  z-index: -1;
} /* black_watch */
.section1 .black_watch {
  position: absolute;
  left: 47%;
  top: 50%;
  transform: translate(-47%, -50%);
  z-index: 1;
  /*   width: 657px;
  height: 677px; */
  width: 405px;
  height: 671px;
  background-image: url("../imgs/12.png");
  animation: 3s black_watch forwards;
  transition: 4.5s;
  background-size: cover;
}
.section1 .Yellow_watch {
  z-index: 2;
  width: 697px;
  height: 677px;
  background-image: url("../imgs/2022-01-16-15-00-47-\(C\,Smoothing4\)+\ \(1\).png");
  animation: 3s Yellow_watch forwards;
  transition: 4.5s;
  background-size: cover;
}
@keyframes Yellow_watch {
  from {
    margin-right: 0%;
  }
  to {
    margin-right: 25%;
  }
}
@keyframes black_watch {
  from {
    margin-left: 0%;
  }
  to {
    margin-left: 15%;
  }
}
.Brunette-Blonde {
  display: flex;
  color: red;
  position: absolute;
  margin-top: -250px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Libre Bodoni;
  font-size: 130px;
  font-weight: 400;
  line-height: 124px;
  letter-spacing: 0em;
  text-align: left;
  z-index: 100;
}
.Brunette-Blonde .Brunette,
.Brunette-Blonde .Blonde {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    91.23deg,
    #752b7a -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-background-clip: text;
  position: absolute;
}
.Brunette-Blonde .Brunette {
  left: 100px;
  animation: 1s Brunette backwards;
}
.Brunette-Blonde .Blonde {
  right: 100px;
  animation: 1s Blonde backwards;
}
@keyframes Brunette {
  from {
    left: -150px;
  }
  to {
    left: 100px;
  }
}
@keyframes Blonde {
  from {
    right: -150px;
  }
  to {
    right: 100px;
  }
}
@media screen and (max-width: 1600px) {
  .Brunette-Blonde .Brunette {
    left: 100px;
    line-height: 170px;
  }
  .Brunette-Blonde .Blonde {
    right: 100px;
    line-height: 170px;
  }
}
@media screen and (max-width: /* 1365px */1630px) {
  .Brunette-Blonde .Brunette {
    left: 25px;
  }
  .Brunette-Blonde .Blonde {
    right: 0px;
    margin-left: 50px;
  }
  .Brunette-Blonde .Blonde,
  .Brunette-Blonde .Brunette {
    font-size: 120px;
  }
}
@media screen and (max-width: 1035px) {
  .Brunette-Blonde .Brunette {
    top: 100px;
    left: -166px;
  }
  .Brunette-Blonde .Blonde,
  .Brunette-Blonde .Brunette {
    font-size: 120px;
  }
}
@media screen and (max-width: 800px) {
  .Brunette-Blonde .Brunette {
    left: -90px;
  }
  .Brunette-Blonde .Blonde {
    /* right: -75px; */
    right: -24px;
  }
}
@media screen and (max-width: 800px) {
  .Brunette-Blonde .Blonde,
  .Brunette-Blonde .Brunette {
    font-size: 90px;
  }
}
@media screen and (max-width: 570px) {
  .Brunette-Blonde .Blonde,
  .Brunette-Blonde .Brunette {
    font-size: 70px;
  }
}
@media screen and (max-width: 410px) {
  .Brunette-Blonde .Blonde,
  .Brunette-Blonde .Brunette {
    font-size: 50px;
  }
  .Brunette-Blonde .Brunette {
    top: 55px;
    left: -35px;
  }
  .Brunette-Blonde .Blonde {
    right: -4px;
  }
}
.hero_line {
  width: 1px;
  height: 20px;
  background-color: rgba(246, 216, 125, 1);
  position: absolute;
  margin-top: 800px;
  top: 0;
  left: 50%;
  transform: translate(0, -50%);
  animation: 3s hero_line infinite;
  overflow: auto;
}
.hero_line::after {
  content: "";
  color: rgba(246, 216, 125, 1);
  height: 500px;
}
@keyframes hero_line {
  from {
    height: 0px;
    transform: scaleY(0);
  }
  to {
    height: 100px;
    transform: scaleY(1);
  }
}
@media screen and (max-width: 820px) {
  .hero_line {
    display: none;
  }
}
.mobile {
  display: none;
}
@media screen and (max-width: 820px) {
  .disc {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .Yellow_watch,
  .black_watch {
    display: none;
  }
  .section1.mobile {
    display: flex;
    position: relative;
  }
  .Yellow_watch_mob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 459px;
    height: 459px;
    background-image: url("../imgs/2022-01-16-15-00-47-\(C\,Smoothing4\)+\ \(1\).png");
    background-size: cover;
    animation: 3s Yellow_watch_mob forwards;
    transition: 4.5s;
  }
  .black_watch_mob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 459px;
    height: 459px;
    background-image: url("../imgs/black_watch_mob.png");
    background-size: cover;
    animation: 3s black_watch_mob forwards;
    transition: 4.5s;
  }
}
@keyframes Yellow_watch_mob {
  from {
    top: 50%;
    left: 50%;
  }
  to {
    top: 60%;
    left: 35%;
  }
}
@keyframes black_watch_mob {
  from {
    top: 50%;
    left: 50%;
  }
  to {
    top: 40%;
    left: 65%;
  }
}

/* / form  style / */
/*form section*/
.modal {
  background-color: #00000034;
}
.padding-form {
  padding: 0px 10%;
}
.form-title {
  font-size: 10rem;
  line-height: 100%;
}
.form-title-ru {
  font-size: 7.5rem;
}
.form-desc {
  font-size: 1.125rem;
  line-height: 150%;
  color: #5a5a5a;
  font-weight: 300;
}
.form-label-row {
  color: #9b51e0;
  font-size: 1rem;
  padding-left: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.form-control-row {
  background-color: #0c0c15;
  color: #ffff;
  padding: 1rem 1.5rem;
  border-radius: 40px;
  border: 1px solid #421242;
  box-shadow: none;
  outline: none;
  font-size: 0.875rem;
  font-family: "Montserrat", serif;
  font-weight: 300;
}
.form-control-row::placeholder {
  color: #a9a9a9;
  font-weight: 300;
  font-family: "Montserrat", serif;
}
.form-control-row:focus {
  border: 1px solid #9747ff;
  box-shadow: none;
  color: #ffff;
  background-color: #0c0c15;
  outline: none;
}

.form-control-row:active {
  border: 1px solid #9747ff;
  box-shadow: none;
  background-color: #0c0c15;
  outline: none;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: none;
}
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: none;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: none !important;
}
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: none;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../imgs/arrow-select.svg"); /* Replace with your icon path */
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 0.6rem;
  padding-right: 2rem; /* Adjust based on the size of the icon */
}
.btn-close {
  --bs-btn-close-bg: none !important;
}
.button-close-modal {
  right: 3%;
  top: 3%;
  cursor: pointer;
}
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  background-position: right 1.2rem center;
  background-size: 0.6rem;
  padding-right: 2rem;
}
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  background-position: right 1.2rem center;
  background-size: 0.6rem;
  padding-right: 2rem;
}
.feed-2 {
  position: absolute;
  bottom: 1.5rem;
}
.text-check-2 {
  font-size: 0.875rem;
  color: #5a5a5a;
  font-family: "Montserrat", serif;
  font-weight: 300;
}
.text-check-2 > span {
  color: #f0c673;
}
.check-input-2 {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: transparent;
  background-image: url("../imgs/check-box-before.svg");
  background-size: cover;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
}
.check-input-2:checked {
  background-color: transparent;
  background-image: url("../imgs/check-box-after.svg");
  background-size: cover;
  border: none;
  box-shadow: none;
}
.form-check > label {
  position: relative;
  width: 80%;
  top: -2rem;
  left: 3rem;
}
.check-input-2:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.invalid-feedback {
  padding-left: 1.5rem;
}
.sucess-message {
  color: rgb(5, 70, 5);
  font-size: 1rem;
  text-transform: capitalize;
  display: none;
}
.modal-dialog {
  width: 90%;
  max-width: 75rem !important;
  margin-right: auto;
  margin-left: auto;
}
.modal-dialog-2 {
  width: 80%;
  max-width: 62rem !important;
  margin-right: auto;
  margin-left: auto;
}
.modal-header {
  border: none;
}
.text-area-height {
  height: 7rem;
}
.modal-content {
  border-radius: 0px;
  padding-left: 5% !important;
  padding-right: 5% !important;
}
.modal-footer {
  border: none;
}

.btn-order {
  background: none;
  border: none;
  background-image: url(../imgs/button-before.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transition: background 1s ease-in-out;
  color: #9747ff;
  font-size: 0.9rem;
  padding: 1rem 3rem;
}
.btn-order:hover {
  background-image: url(../imgs/button-after.svg);
  background-repeat: no-repeat;
  background-position: center;
}
/* // ===================== section1 ===================== // */
/*  ===================== section2 =====================  */
.section2 {
  width: 100%;
  margin-bottom: -4px;
}
.section2-container {
  position: relative;
  height: 862px;
  text-align: center;
  background: linear-gradient(180deg, rgba(3, 0, 7, 0) 50%, #030007 100%),
    linear-gradient(180deg, #030007 0%, rgba(3, 0, 7, 0) 50%);
}
.section2-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10%;
  bottom: 10%;
}
.section2-container video {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1550px) {
  .section2-container a {
    bottom: 20%;
  }
}
@media screen and (max-width: 1300px) {
  .section2-container {
    height: 666px;
  }
}
@media screen and (max-width: 800px) {
  .section2-container {
    height: 100%;
    margin-bottom: 70px;
  }
  .section2-container a {
    bottom: -25%;
    right: 30%;
  }
}
@media screen and (max-width: 500px) {
  .section2-container a {
    bottom: -40%;
    right: 20%;
  }
}
/* // ===================== section2 ===================== // */
/*  ===================== section3 =====================  */
.section3 {
  background-color: #040009;
  width: 100%;
  padding: 70px;
  position: relative;
  z-index: 300;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vh;
  margin-inline: auto;
  padding: 1vh;
}
.gallery > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: all 0.3s ease;
}
.gallery:has(img:hover) img:not(:hover) {
  scale: 0.8;
  opacity: 0.5;
  filter: grayscale(70%);
}
@media screen and (min-width: 100px) and (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery {
  padding: 20px;
  padding-top: 7rem;
  z-index: 300;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery img {
  margin: 10px;
  cursor: pointer;
  max-width: 300px;
  border-radius: 10px;
}
/* Lightbox styles */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  z-index: 300;
}
#lightbox img {
  max-width: 80%;
  width: 55rem;
  object-fit: cover;
  border: 3px solid white;
  max-height: 70vh;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}
#close-btn {
  position: absolute;
  top: 2%;
  right: 2%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}
/* navigation buttons */
#prev-btn,
#next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
#prev-btn {
  left: 10px;
}
#next-btn {
  right: 10px;
}
#prev-btn:hover,
#next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Styles for thumbnails */
.thumbnail-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.thumbnail {
  max-width: 50px;
  width: 100px;
  cursor: pointer;
  margin-top: 40px;
  margin-left: 5px;
  margin-right: 5px;
  border: 2px solid #fff;
  transition: opacity 0.3s;
}
.thumbnail:hover,
.thumbnail.active-thumbnail {
  opacity: 0.7;
}
@media screen and (min-width: 100px) and (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* // ===================== section3 ===================== // */
/*  ===================== section4 =====================  */
.section4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 150px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.section4 {
  background-color: #040009;
  width: 100%;
  height: 820px;
}
.section4 .right_side {
  background-image: url("../imgs/wallpapersden\ 2.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 800px;
  height: 800px;
  position: relative;
}
.section4 .left_side {
  position: relative;
}
.section4 .left_side h1 {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    91.23deg,
    #752b7a -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-background-clip: text;
  font-family: Libre Bodoni;
  font-size: 80px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0em;
  text-align: left;
}
.section4 .left_side p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin-top: 50px;
}
.section4 .left_side a {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 450;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  background-image: url("../imgs/Rectangle 3373.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 12px 26px 11px 31px;
  position: absolute;
  bottom: -118px;
  right: -10%;
  z-index: 1;
}
.section4 .left_side a:hover {
  background-image: url("../imgs/buttons/Property\ 1=Variant2.png");
  transition: 0.9s;
}
.section4 .left_side a:hover {
  color: rgba(240, 198, 115, 1);
  transition: 0.5s;
}
.section4 .right_side .section4Image {
  background-image: url("../imgs/section4colse.png");
  background-size: cover;
  width: 530px;
  height: 532px;
  animation: 9s section4Image infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes section4Image {
  0% {
    background-image: url("../imgs/section4colse.png");
  }
  25% {
    background-image: url("../imgs/section4open.png");
  }
  50% {
    background-image: url("../imgs/Property\ 1=Variant4.png");
  }
  100% {
    background-image: url("../imgs/Property\ 1=Variant3\ \(1\).png");
  }
}
@media screen and (min-width: 100px) and (max-width: 1300px) {
  .section4 {
    padding-left: 100px;
  }
  .section4 .right_side {
    width: 600px;
  }
}
@media screen and (min-width: 100px) and (max-width: 1155px) {
  .section4 {
    flex-direction: column;
    height: 1100px;
  }
  .section4 .right_side {
    width: 100%;
  }
  .section4 .left_side {
    width: 100%;
  }
  .section4 .left_side a {
    right: 0;
    bottom: -4rem;
  }
  .section4 .left_side p {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 100px) and (max-width: 820px) {
  .section1 .Yellow_watch,
  .section1 .black_watch {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .section3 {
    padding: 25px;
  }
  .section4 {
    padding-left: 25px;
  }
}
@media screen and (min-width: 100px) and (max-width: 550px) {
  .mobile {
    height: 500px;
  }
  .section1 {
    height: 1000px;
  }
  /* // =====================  section1 Complement it with ather sections  ===================== // */
  .section4 .right_side .section4Image {
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 100px) and (max-width: 450px) {
  .section4 .right_side .section4Image {
    width: 300px;
    height: 300px;
  }
  .section4 {
    height: 900px;
  }
}
@media screen and (min-width: 100px) and (max-width: 500px) {
  .section4 .left_side h1 {
    font-size: 50px;
    line-height: 45px;
  }
}
/* // ===================== section4 ===================== // */
/*  ===================== section5 =====================  */
.section5 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #040009;
  width: 100%;
  overflow: hidden;
}
.section5 h1 {
  background: linear-gradient(
    91.23deg,
    #3c113f -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: Libre Bodoni;
  font-size: 130px;
  font-weight: 400;
  line-height: 117px;
  letter-spacing: 0em;
  text-align: left;
}
.section5 img {
  width: 100%;
  margin-top: -100px;
}
.section5 a {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 450;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  background-image: url("../imgs/Rectangle 3373.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 13px 26px 15px 31px;
  margin-top: -100px;
}
.section5 a:hover {
  background-image: url("../imgs/buttons/Property\ 1=Variant2.png");
  transition: 0.9s;
}
.img5-mobile {
  display: none;
}
@media screen and (min-width: 100px) and (max-width: 650px) {
  .img5 {
    display: none;
  }
  .img5-mobile {
    display: flex;
    padding: 35%;
  }
}
@media screen and (min-width: 100px) and (max-width: 900px) {
  .section5 img {
    width: 145%;
  }
  .section5 h1 {
    font-size: 90px;
    line-height: 80px;
  }
}
@media screen and (min-width: 100px) and (max-width: 650px) {
  .section5 img {
    width: 165%;
  }
  .section5 h1 {
    font-size: 90px;
    line-height: 80px;
  }
}
@media screen and (min-width: 100px) and (max-width: 580px) {
  .section5 h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .space {
    display: none;
  }
}
@media screen and (min-width: 100px) and (max-width: 555px) {
  .section5 h1 {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 100px) and (max-width: 400px) {
  .section5 h1 {
    margin-bottom: 45px;
    font-size: 50px;
    line-height: 50px;
  }
}
/* // ===================== section5 ===================== // */
/*  ===================== section6 =====================  */
.section6 {
  background-color: #040009;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}
.section6 .left_side {
  position: relative;
  width: 50%;
}
.section6 .left_side .eye {
  position: relative;
  bottom: 520px;
  left: 297px;
  width: 44px;
  height: 32px;
  background-size: cover;
  overflow: hidden;
  border-radius: 50%;
}
.section6 .right_side .top {
  background: linear-gradient(
    91.23deg,
    #3c113f -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.section6 .right_side .top h1 {
  font-family: Libre Bodoni;
  font-size: 130px;
  font-weight: 400;
  line-height: 117px;
  letter-spacing: 0em;
  text-align: left;
}
.section6 .right_side .top p {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
}
.section6 .right_side .botom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
}
.section6 .right_side .botom p {
  max-width: 285px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin-top: 15px;
}
.section6 .right_side .botom h2 {
  color: rgba(255, 255, 255, 1);
  font-family: Montserrat;
  font-size: 19px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
}
.section6 .right_side .botom .right_side {
  position: relative;
}
.section6 .right_side .botom .right_side a {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14px 26px;
  font-family: Montserrat;
  font-size: 7px;
  font-size: 14px;
  font-weight: 450;
  line-height: 21px;
  letter-spacing: 0em;
  position: absolute;
  right: 0;
  margin-top: 45px;
  /* border: 1px solid rgba(151, 71, 255, 1); */
  background-image: url(../imgs/read\ more\ about\ bakkoura\ background.png);
  background-size: contain;
}

.section6 .right_side .botom .right_side a:hover {
  background-image: url("../imgs/read\ more\ about\ bakkoura\ background\ -\ after\ action.png");
  transition: 0.5s;
  border: none;
}
.section6 .left_side .eye img {
  width: 40px;
  margin-left: 5px;
  position: static;
}
@media screen and (min-width: 100px) and (max-width: 1220px) {
  .section6 {
    flex-direction: column;
    overflow: hidden;
  }
  .section6 .left_side:first-child {
    width: 100%;
  }
  .section6 .right_side:first-child {
    margin-top: -300px;
    width: 100%;
  }
  .section6 .right_side .top h1 {
    margin-top: -240px;
  }
  .section6 .right_side .botom {
    margin-top: 30px;
    margin-bottom: 160px;
  }
  .section6 .right_side .top,
  .section6 .right_side .botom {
    padding: 0 25px;
  }
  .left_side1 {
    margin-top: -270px;
  }
  .left_side1 img:first-child {
    margin-left: 200px;
  }
  .section6 .left_side .eye {
    left: 389px;
  }
  .section6 .right_side .botom p {
    max-width: 100%;
  }
  .eye_open {
    animation: 10s eye_open_1220 infinite;
  }
}
@media screen and (min-width: 100px) and (max-width: 1220px) {
  .section6 .left_side .eye {
    left: 497px;
  }
}
@media screen and (min-width: 100px) and (max-width: 1000px) {
  .section6 .left_side .eye {
    left: 397px;
  }
  .left_side1 img:first-child {
    margin-left: 100px;
  }
}
@media screen and (min-width: 100px) and (max-width: 750px) {
  .section6 .left_side .eye {
    left: 297px;
  }
  .left_side1 img:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 100px) and (max-width: 600px) {
  .section6 .left_side .eye {
    left: 245px;
    bottom: 428px;
  }
  .section6 .left_side .eye img {
    width: 30px;
  }
  .left_side1 img:first-child {
    width: 700px;
  }
}
@media screen and (min-width: 100px) and (max-width: 500px) {
  .left_side1 img:first-child {
    margin-left: -50px;
  }
  .section6 .left_side .eye {
    left: 194px;
    bottom: 429px;
  }
}
@media screen and (min-width: 100px) and (max-width: 450px) {
  .left_side1 img:first-child {
    margin-left: -100px;
  }
  .section6 .left_side .eye {
    left: 145px;
    bottom: 429px;
  }
}
@media screen and (min-width: 100px) and (max-width: 677px) {
  .left_side1 {
    margin-top: -100px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 100px) and (max-width: 620px) {
  .section6 .right_side .top h1 {
    font-size: 80px;
    line-height: 74px;
    margin-top: -200px;
  }
  .section6 .right_side .botom {
    flex-direction: column;
  }
  .section6 .right_side .botom .right_side {
    margin-top: 20px;
  }
}
@media screen and (min-width: 100px) and (max-width: 450px) {
  .section6 .right_side .top h1 {
    font-size: 60px;
    line-height: 58px;
  }
}
@media screen and (min-width: 621px) and (max-width: 220px) {
  .section6 .right_side .botom h2 {
    margin-top: 120px;
  }
}
.section6 .left_side .eye {
  width: 58px;
  height: 35px;
}
.section6 .left_side .eye img {
  border-radius: 50%;
}
/* // ===================== section6 ===================== // */
/*  ===================== section7 =====================  */
.section7 {
  background-color: #040009;
  width: 100%;
  padding-left: 290px;
  padding-right: 290px;
  background-image: url(../imgs/wallpapersden\ 3.png);
  background-size: cover;
}
.section7 h1 {
  font-family: Libre Bodoni;
  font-size: 130px;
  font-weight: 400;
  line-height: 117px;
  letter-spacing: 0em;
  text-align: left;
  background: linear-gradient(
    91.23deg,
    #3c113f -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.section7 p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  margin-bottom: 30px;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin-top: 30px;
}
form {
  margin-top: 81px;
  width: 100%;
  padding-bottom: 400px;
}
.inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
input {
  padding: 15px;
  max-width: /* 420px */ 100%;
  background-color: rgba(12, 12, 21, 1);
  border: 1px solid rgba(66, 18, 66, 1);
  border-radius: 35px;
  color: white;
  outline-color: rgba(151, 71, 255, 1);
}
.Message {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 59px;
  padding-bottom: 50px;
}
@media screen and (min-width: 100px) and (max-width: 1100px) {
  .section7 {
    padding: 0 100px;
  }
  form {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 100px) and (max-width: 900px) {
  .section7 h1 {
    font-size: 90px;
    line-height: 87px;
  }
  .section7 p {
    margin-left: 0;
  }
}
@media screen and (min-width: 100px) and (max-width: 777px) {
  .section7 h1 {
    font-size: 70px;
    line-height: 70px;
  }
  .section7 .inputs {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 100px) and (max-width: 450px) {
  .section7 h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media screen and (min-width: 100px) and (max-width: 620px) {
  .section7 {
    padding: 0 25px;
  }
}
section {
  overflow: hidden;
}
.radio {
  width: 28px;
  height: 28px;
}
form .last {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
form .last p {
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin: 0 25px;
}
form .last p span {
  color: rgba(240, 198, 115, 1);
}
.submit {
  cursor: pointer;
  background-image: url(../imgs/Rectangle\ 3373.png);
  background-size: cover;
  border: none;
  padding: 15px 20px;
  transition: 0.5s;
}
.submit:hover {
  background-image: url(../imgs/buttons/Property\ 1=Variant2.png);
}
input[type="radio"] {
  accent-color: #f0c673;
}
.radio:checked {
  background-color: #f0c673;
}
/* // ===================== section7 ===================== // */
/*  ===================== Footer =====================  */
footer {
  font-family: Montserrat;
  background: rgba(0, 0, 0, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 30px;
}
footer .container {
  display: flex;
  align-items: center;
  margin-bottom: 59px;
}
footer .container .copyright {
  margin-top: -20px;
}
footer .logo {
  margin: 42px 0;
}
footer .container .links a {
  margin: 20px;
  color: rgba(169, 169, 169, 1);
}
footer .container .copyright p {
  color: rgba(169, 169, 169, 1);
  text-align: center;
  margin-top: 10px;
}
footer .cookies {
  color: rgba(169, 169, 169, 1);
  text-align: center;
  line-height: 50px;
}
footer .cookies a {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
}
.footer .submit {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  background-image: url("../imgs/Rectangle 3373.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 13px 26px 15px 31px;
  margin-top: -100px;
}
.footer .submit:hover {
  background-image: url("../imgs/buttons/Property\ 1=Variant2.png");
  transition: 0.9s;
}
@media screen and (min-width: 100px) and (max-width: 1270px) {
  footer .container {
    flex-direction: column;
  }
  .sosyal {
    margin-top: 30px;
  }
  footer .container .links {
    margin-top: 30px;
  }
}
@media screen and (min-width: 100px) and (max-width: 720px) {
  footer .container .links a {
    display: block;
  }
}
.cookies a {
  background-repeat: no-repeat;
  background-size: contain;
  padding: 10px 40px;
  font-size: 7px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  background-image: url("../imgs/Rectangle\ 3373.png");
  margin-left: 50px;
  cursor: pointer;
}
.cookies a:hover {
  background-image: url("../imgs/buttons/Property\ 1=Variant2.png");
  transition: 0.5s;
  border: none;
}
@media screen and (min-width: 100px) and (max-width: 627px) {
  .cookies a {
    margin: 30px;
    margin-top: 50px;
  }
}
/* // ===================== Footer ===================== // */
/*  ===================== SuccessPage =====================  */
.SuccessPage {
  width: 100%;
  height: 100%;
  background-image: url("../imgs/lightsec.png");
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25% 0 25% 0;
  block-size: cover;
}
.SuccessPage .container h1 {
  font-family: Libre Bodoni;
  font-size: 80px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0em;
  text-align: left;
  background: linear-gradient(
    91.23deg,
    #752b7a -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.SuccessPage .container p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin-top: 16px;
}
.SuccessPage .container a {
  position: absolute;
  top: 25px;
  right: 25px;
}
@media screen and (min-width: 100px) and (max-width: 555px) {
  .SuccessPage {
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 50px;
  }
}
/* // ===================== SuccessPage ===================== // */
/*  ===================== popupPage =====================  */
.popupPage {
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  block-size: cover;
}
.popupPage .container h1 {
  font-family: Libre Bodoni;
  font-size: 80px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0em;
  text-align: left;
  background: linear-gradient(
    91.23deg,
    #752b7a -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.popupPage .container p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin-top: 16px;
}
.popupPage .container a {
  position: absolute;
  top: 22px;
  right: 20px;
}
@media screen and (min-width: 100px) and (max-width: 1270px) {
  .popupPage {
    padding: 83px 25px 54px 25px;
  }
}
@media screen and (min-width: 100px) and (max-width: 810px) {
  .popupPage .container h1 {
    font-size: 50px;
    line-height: 62px;
  }
}
@media screen and (min-width: 100px) and (max-width: 530px) {
  .popupPage .container h1 {
    font-size: 40px;
    line-height: 42px;
  }
}
/* // ===================== popupPage ===================== // */
.none {
  display: none !important;
}
.m_characher {
  color: #f8d099 !important;
}
.e_characher {
  color: #9b51e0 !important;
}
.n_characher {
  color: #f8d099 !important;
}
.u_characher {
  color: #9b51e0 !important;
}
@media screen and (min-width: 1869px) and (max-width: 50000px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 29rem;
    top: 10rem;
  }
  .text-life-can-be-change {
    background: linear-gradient(to right, #752b7a94, #bb236f52, #ffad0e00);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 19rem;
    top: 21rem;
  }
}

@media screen and (min-width: 1439px) and (max-width: 1870px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 21rem;
    top: 10rem;
  }
  .text-life-can-be-change {
    background: linear-gradient(to right, #752b7ae8, #bb236fab, #ffad0e00);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 9rem;
    top: 21rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 6rem;
    top: 10rem;
  }
  .text-life-can-be-change {
    background: linear-gradient(to right, #752b7ae8, #ff40a082, #ffa80033);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 34px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 7rem;
    top: 21rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 10rem;
    top: 10rem;
  }
  .text-life-can-be-change {
    background: linear-gradient(to right, #752b7ae8, #ff40a082, #ffa80033);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 34px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 0rem;
    top: 15rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 10rem;
    top: 10rem;
  }
  .text-life-can-be-change {
    background: linear-gradient(to right, #752b7ae8, #ff40a082, #ffa80033);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 34px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 0rem;
    top: 15rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 10rem;
    top: 10rem;
  }
  .text-life-can-be-change {
    background: linear-gradient(to right, #752b7ae8, #ff40a082, #ffa80033);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 34px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 0rem;
    top: 15rem;
  }
}

/* For medium mobile devices (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 34px;
    top: 22rem;
  }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
  .text-all-swits {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 20px;
    font-family: Libre Bodoni;
    font-weight: 500;
    line-height: 28px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 11px;
    top: 16rem;
  }
}
/*______________________________________________________________*/

/*to hear the soul section titles */
/* For small mobile devices (320px - 480px) */
@media screen and (min-width: 320px) and (max-width: 480px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 2px;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 23px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: 0rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 25px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 27px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 3rem;
    bottom: 14rem;
  }

  /* Menu border */
  .menu-border {
    text-align: center !important;

    background-image: url("../imgs/Rectangle 3373.png") !important;

    background-repeat: no-repeat !important;

    background-size: contain !important;

    padding: 11px 46px 21px 31px !important;

    z-index: 111111 !important;

    font-family: Montserrat;

    font-size: 16px;

    position: absolute;

    right: -9px;

    top: 1rem;
  }
}

/* For medium mobile devices (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 29px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 3px;
    top: 6rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: 0rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 25px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 3rem;
    bottom: 14rem;
  }
}

/* For large mobile devices (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 5px;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: -4rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}

/* For small tablets (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 5px;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: -4rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}

/* For medium tablets (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 5px;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: -4rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}
/* For large tablets (1367px - 1600px) */
@media screen and (min-width: 1367px) and (max-width: 1600px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 5px;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: -4rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}

/* For small desktops (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1449px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 5px;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    bottom: -4rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}

/* For medium desktops (1367px - 1600px) */
@media screen and (min-width: 1450) and (max-width: 1600px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 1rem;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    top: 21rem;
  }
  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}

/* For large desktops (1601px and above) */
@media screen and (min-width: 1601px) {
  .text-all-swits-text-soul-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 36px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    right: 1rem;
    top: 10rem;
  }
  .every-wing-is-new-beginning-text-soul-section {
    background: linear-gradient(to right, #752b7a94, #bb236f7a, #ffad0e0d);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 30px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 34px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 0px;
    top: 21rem;
  }

  .text-all-swits-up-on-the-wink-section {
    background: linear-gradient(to right, #752b7a, #bb236f80, #ffad0e1f);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 27px;
    font-family: Libre Bodoni;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    position: absolute;
    z-index: 111111;
    left: 7rem;
    top: 26rem;
  }
}

/* sizes
  
Mobile:
- Small mobile devices: 320px - 480px
- Medium mobile devices: 481px - 767px
- Large mobile devices: 768px - 1024px

Tablet:
- Small tablets: 768px - 1024px
- Medium tablets: 1025px - 1366px
- Large tablets: 1367px - 1600px

Desktop:
- Small desktops: 1025px - 1366px
- Medium desktops: 1367px - 1600px
- Large desktops: 1601px and above

--------------------------------------------
*/

/* For small mobile devices (320px - 480px) */
@media screen and (min-width: 320px) and (max-width: 480px) {
  /* Your styles for small mobile devices */
}

/* For medium mobile devices (481px - 767px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
  /* Your styles for medium mobile devices */
}

/* For large mobile devices (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* Your styles for large mobile devices */
  
}

/* For small tablets (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* Your styles for small tablets */
}

/* For medium tablets (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  /* Your styles for medium tablets */
}

/* For large tablets (1367px - 1600px) */
@media screen and (min-width: 1367px) and (max-width: 1600px) {
  /* Your styles for large tablets */
}

/* For small desktops (1025px - 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  /* Your styles for small desktops */
}

/* For medium desktops (1367px - 1600px) */
@media screen and (min-width: 1367px) and (max-width: 1600px) {
  /* Your styles for medium desktops */
}

/* For large desktops (1601px and above) */
@media screen and (min-width: 1601px) {
  /* Your styles for large desktops */
}

@media screen and (min-width: 200px) and (max-width: 765px) {
  /* Menu border */
  .menu-border {
    text-align: center !important;

    background-image: url("../imgs/Rectangle 3373.png") !important;

    background-repeat: no-repeat !important;

    background-size: contain !important;

    padding: 11px 46px 21px 31px !important;

    z-index: 111111 !important;

    font-family: Montserrat;

    font-size: 16px;

    position: absolute;

    right: -9px;

    top: 1rem;

    font-weight: 700;
  }
}
@media screen and (min-width: 766px) and (max-width: 100000px) {
  /* Menu border */
  .menu-border {
    text-align: center !important;

    background-image: url("../imgs/Rectangle 3373.png") !important;

    background-repeat: no-repeat !important;

    background-size: contain !important;

    padding: 11px 46px 21px 31px !important;

    z-index: 111111 !important;

    font-family: Montserrat;

    font-size: 16px;
    font-weight: 700;

    position: absolute;

    right: 24px;

    top: 1rem;
  }
}

.section8 img {
  height: auto;
  width: 70%;
  margin-top: 0px;
  margin-bottom: 4rem;
}

@media screen and (min-width: 758px) and (max-width: 100000px) {
  .all_logos {
    width: -webkit-fill-available;
    margin-right: 5rem;
    margin-left: 5rem;
    max-width: max-content;
  }
  .all_logos_mobile {
    display: none !important;
  }
  .title-logos-section {
    width: -webkit-fill-available;
    max-width: 53rem;
  }
  .title-logos-section-mobile {
    display: none !important;
  }
  .footer-img {
    width: -webkit-fill-available;
    max-width: 18rem;
  }
}

@media screen and (min-width: 0px) and (max-width: 757px) {
  .all_logos {
    display: none !important;
  }
  .all_logos_mobile {
    width: -webkit-fill-available;
    margin-right: 2px;
    margin-left: 2px;
    margin-bottom: 1rem;
  }
  .title-logos-section {
    display: none !important;
  }
  .footer-img {
    width: -webkit-fill-available;
    max-width: 18rem;
  }
}

section .cookies {
  color: rgba(151, 71, 255, 1);
  text-align: center;
  line-height: 50px;
  font-family: Montserrat !important;
}
section .cookies a {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
}

@media screen and (min-width: 100px) and (max-width: 627px) {
  section .cookies a {
    margin: 10px;
    margin-top: 50px;
    font-weight: 600;
  }
}

@media screen and (min-width: 1222px) and (max-width: 5000px) {
  .hand-under-eye {
    width: fit-content;
    position: relative;
    left: 8rem;
    top: 50rem;
  }
}

@media screen and (min-width: 0px) and (max-width: 1221px) {
  .hand-under-eye {
    display: none;
  }
}

.section6 {
  height: 50rem;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 35px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.514);
  z-index: 1111111111;
}

/* Modal Content */
.modal-content {
  background-color: #030008;
  border: 0.5px solid #9747ff58;
  margin: auto;
  z-index: 11111111;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: rgba(151, 71, 255, 1);
  text-decoration: none;
  cursor: pointer;
}

.titels {
  display: flex;
  margin-top: 2rem;
}
.order-title {
  font-family: Libre Bodoni;

  background: linear-gradient(
    to left,
    rgba(255, 173, 14, 0.05) 0%,
    rgba(187, 35, 111, 0.5) 50%,
    #3c113f 100%
  );
  -webkit-background-clip: text; /* For Safari */
  -webkit-text-fill-color: transparent; /* For Safari */
  background-clip: text;
  color: transparent;
  font-size: 6.25rem;
}
.order-desc {
  color: #a9a9a9 !important;
  font-size: 16px !important;
  font-family: Montserrat !important;
  font-weight: 300 !important;
  line-height: 21px !important;
  word-wrap: break-word !important;
  max-width: 27rem;
}
.order-desc-2 {
  color: #a9a9a9 !important;
  font-size: 16px !important;
  font-family: Montserrat !important;
  font-weight: 300 !important;
  line-height: 21px !important;
  word-wrap: break-word !important;
  text-transform: none;
}
.light-img {
  width: 150% !important;
  position: absolute;
  height: 200%;
  top: -40%;
}
.sucess-message {
  z-index: 100000000;
}
.order-form {
  display: flex;
  justify-content: space-between !important;
  flex-wrap: wrap;
  align-content: center;
}

.check-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.min-width-for-inputs {
  min-width: 20rem;
}

.container-order {
  padding-right: 10rem !important;
  padding-left: 10rem !important;
}
.modal-dialog-22 {
  max-width: 50rem !important;
  overflow: hidden;
}

@media screen and (min-width: 0px) and (max-width: 700px) {
  .container-order {
    padding-right: 5px !important;
    padding-left: 5px !important;

    width: min-content !important;
  }
  .section6 {
    height: auto;
  }
  .title--2 {
    font-size: 3.5rem;
  }
  .popupPage {
    padding: 0 25px !important;
  }
  .min-width-for-inputs {
    min-width: 20rem;
  }
  .popupPage .container p {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(169, 169, 169, 1);
    margin-top: 16px;
  }

  .radio-order {
    margin-right: 7px !important;
  }

  .titels {
    display: flex;
    margin-top: 2rem;
    flex-direction: column;
  }

  .popupPage .container h1 {
    font-size: 40px;
    line-height: 74px;
  }
}

div#myModal::-webkit-scrollbar-thumb {
  border-radius: 100vw !important;
  background: linear-gradient(180deg, #f0c673 0%, #bb236f 100%) !important;
}
div#myModal::-webkit-scrollbar {
  width: 0.6em !important;
}
div#myModal {
  overflow-y: scroll !important;
}

.e-car {
  display: inline !important;
  background-size: contain !important;
}
@media screen and (min-width: 0px) and (max-width: 700px) {
  .e-car {
    display: inline !important;
    background-size: contain !important;
    margin-top: 10px !important;
  }
}

._1 {
  color: #b72fb7;
  font-size: 15px;
  font-family: Book Antiqua !important;
  font-weight: 700;
  line-height: 16px;
  word-wrap: break-word;
}

._2 {
  color: #b72fb7;
  font-size: 15px;
  font-family: Sahel !important;
  font-weight: 400;
  line-height: 16px;
  word-wrap: break-word;
}

.marquee {
  height: 31px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: black;
  z-index: 9999999;
  display: flex;
  align-items: center;
}

.marquee div {
  white-space: nowrap; /* Ensure that the text doesn't wrap to the next line */
  display: inline-block;
  position: absolute;
  animation: marquee 20s linear infinite; /* Adjust the animation duration as needed */
  width: -webkit-fill-available;
}

.marquee span {
  display: inline-block; /* Ensure spans are displayed in a row */
  margin-right: 20px; /* Adjust the spacing between spans as needed */
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* 
.section5-5 .right_side{
  background-image: url("imgs/Group\ 9335.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 800px;
  height: 800px;
  position: relative;
} */

/*  ===================== section4 =====================  */
.section5-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 150px;
  overflow: hidden;
}
.section5-5 {
  background-color: #040009;
  width: 100%;
  height: 820px;
}
.section5-5 .right_side {
  background-image: url("../imgs/Group\ 9335.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 35rem;
  height: 800px;
  position: relative;
}
.section5-5 .left_side {
  position: relative;
}
.section5-5 .left_side h1 {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    91.23deg,
    #752b7a -1.78%,
    rgba(187, 35, 111, 0.5) 55.68%,
    rgba(255, 173, 14, 0) 102.3%
  );
  -webkit-background-clip: text;
  font-family: Libre Bodoni;
  font-size: 80px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: 0em;
  text-align: left;
}
.section5-5 .left_side p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(169, 169, 169, 1);
  margin-top: 50px;
}
.section5-5 .left_side a {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 450;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  background-image: url("../imgs/Rectangle 3373.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 12px 26px 11px 31px;
  position: absolute;
  bottom: -118px;
  right: -10%;
  z-index: 1;
}
.section5-5 .left_side a:hover {
  background-image: url("../imgs/buttons/Property\ 1=Variant2.png");
  transition: 0.9s;
}
.section5-5 .left_side a:hover {
  color: rgba(240, 198, 115, 1);
  transition: 0.5s;
}
.section5-5 .right_side .section5-5Image {
  background-image: url("../imgs/section5-5colse.png");
  background-size: cover;
  width: 25rem;
  height: 532px;
  max-height: 25rem;
  animation: 13s section5-5Image infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes section5-5Image {
  0% {
    background-image: url("../imgs/section5-5-front-img.png");
  }
  25% {
    background-image: url("../imgs/section5-5-back-img.png");
  }
  50% {
    background-image: url("../imgs/section5-5-front-img.png");
  }
  100% {
    background-image: url("../imgs/section5-5-back-img.png");
  }
}
@media screen and (min-width: 100px) and (max-width: 1300px) {
  .section5-5 {
    padding-left: 100px;
  }
  .section5-5 .right_side {
    width: 600px;
  }
}
@media screen and (min-width: 100px) and (max-width: 1155px) {
  .section5-5 {
    flex-direction: column;
    height: 1100px;
  }
  .section5-5 .right_side {
    width: 100%;
    min-height: 1rem;
  }
  .section5-5 .left_side {
    width: 100%;
  }
  .section5-5 .left_side a {
    right: 0;
    bottom: -4rem;
  }
  .section5-5 .left_side p {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 100px) and (max-width: 820px) {
  .section1 .Yellow_watch,
  .section1 .black_watch {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .section3 {
    padding: 25px;
  }
  .section5-5 {
    padding-left: 25px;
    flex-direction: column-reverse;
  }
  .section5-5-logos {
    justify-content: center !important;
  }
  .section5-5 .left_side p {
    padding: 1rem !important;
    text-align: center !important;
  }
}
@media screen and (min-width: 100px) and (max-width: 550px) {
  .mobile {
    height: 500px;
  }
  .section1 {
    height: 1000px;
  }
  /* // =====================  section1 Complement it with ather sections  ===================== // */
  .section5-5 .right_side .section5-5Image {
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 100px) and (max-width: 450px) {
  .section5-5 .right_side .section5-5Image {
    width: 250px;
    height: 250px;
  }
  .section5-5 {
    height: 900px;
  }
}
@media screen and (min-width: 100px) and (max-width: 500px) {
  .section5-5 .left_side h1 {
    font-size: 50px;
    line-height: 45px;
    justify-items: center;
    justify-content: center;
  }
}
.section5-5-logos {
  display: flex;
  align-items: center;
}

/* // ===================== section5-5 ===================== // */

.swiper-wrap {
  position: relative;
}
.swiper-container {
  margin-top: 40px;
  height: auto;
  .swiper-pagination {
    bottom: 0;
  }
}
.swiper-button-prev.disabled,
.swiper-button-next.disabled,
.swiper-pagination.disabled {
  display: none;
}
.swiper-wrapper.disabled {
  transform: translate3d(0px, 0, 0) !important;
}

.swiper-slide {
  /* width: inherit !important; */
}

.swiper-button-next,
.swiper-button-prev {
  color: #f0c673 !important;
  height: 14.38px !important;
  border: 1px !important;
  width: 26px !important;
}

@media screen and (min-width: 100px) and (max-width: 1040px) {
  .swiper-slide {
    width: inherit !important;
  }
}
