/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Changa&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --btn-color: hsl(247, 51%, 55%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --font-family: "Cairo", sans-serif;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #fffbfb;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

.img_icon {
  width: 15px;
  object-fit: contain;
  object-position: center center;
}

.active {
  display: flex !important;
  border: 0 !important;
  flex-wrap: wrap;
}
.active li {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgb(93 124 186 / 41%);
  z-index: 1;
}
#myVideo {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.myvideo__content__data {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  flex: 7;
}
.myvideo__content__img {
  flex: 1;
  align-content: center;
}
.content img {
  border-radius: 50%;
}
.content {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-evenly;
  background-size: cover;
  flex-wrap: wrap;
}
.content h1 {
  font-size: 3rem;
  color: #fff;
}
.content h2 {
  color: #fff;
  font-size: 2rem;
}
.content p {
  width: 70%;
  color: #ddd;
  text-align: justify;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1225px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: var(--black-color); */
  /* box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3); */
  z-index: var(--z-fixed);
  padding: 10px 0;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  max-width: 100%;
  gap: 3rem;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--black-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center center;
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

/* hero section */
.hero {
  height: 100vh;
  position: relative;
}
.hero .hero__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero .hero__container .hero__content {
  flex: 1;
  margin-top: 100px;
  height: 100vh;
}

.hero .hero__container .hero__content .hero__subtitle {
  background: #ffffff;
  border-radius: 100px;
  padding: 16px 32px 16px 32px;
  display: inline-flex;

  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.07),
    0px 34px 75px 0px rgba(0, 0, 0, 0.07),
    0px 137px 137px 0px rgba(0, 0, 0, 0.06),
    0px 308px 185px 0px rgba(0, 0, 0, 0.04),
    0px 548px 219px 0px rgba(0, 0, 0, 0.01),
    0px 856px 240px 0px rgba(0, 0, 0, 0);
  margin-bottom: 30px;
}
.hero .hero__container .hero__content .hero__subtitle p {
  color: #f85e9f;
  text-align: left;
  font-family: "CircularStd-Bold", sans-serif;
  font-size: 14px;
  line-height: 120%;
  font-weight: 700;
  position: relative;
}
.hero .hero__container .hero__content .hero__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__title--span {
  color: #f85e9f;
}
.hero .hero__container .hero__content .hero__description {
  margin-bottom: 2rem;
  /* color: var(--black-color-light);  */
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  color: rgba(25, 24, 37, 0.5);
}

.hero__btn {
  display: inline-block;
  background-color: rgb(238, 218, 197);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  border-radius: 100px;
  /* box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 5px 11px 0px rgba(0, 0, 0, 0.1), 0px 20px 20px 0px rgba(0, 0, 0, 0.09), 0px 45px 27px 0px rgba(0, 0, 0, 0.05), 0px 81px 32px 0px rgba(0, 0, 0, 0.01), 0px 126px 35px 0px rgba(0, 0, 0, 0); */
  transition: background-color 0.3s;
  border: 1px solid rgb(213 195 174);
  font-weight: var(--font-semi-bold);
}
.hero__btn--transparent {
  background-color: transparent;
  color: var(--black-color);
  box-shadow: none;
  border: 1px solid #eeeeee;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero__btn--transparent img {
  /* margin-right: 10px; */
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.img-a2 {
  background: linear-gradient(to left, #d9d9d9, #d9d9d9);
  border-radius: 32px;
  flex-shrink: 0;
  width: 272px;
  height: 400px;
  position: relative;
  object-fit: cover;
}
.img-a1 {
  background: linear-gradient(to left, #d9d9d9, #d9d9d9);
  border-radius: 32px;
  flex-shrink: 0;
  width: 272px;
  height: 300px;
  position: relative;
  object-fit: cover;
}
.hero__btn:hover {
  background-color: var(--black-color-light);
}
.hero__btn--transparent:hover {
  background-color: transparent;
}

.hero .hero__container .hero__img {
  position: relative;
  flex: 1;
  /* background: url("../images/globe.svg") no-repeat center center fixed;
  background-size: cover; */
}
.hero .hero__container .hero__img .images {
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center; */

  display: flex;
  flex-direction: row;
  gap: 31px;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 60px;
  top: 75px;
}
.a1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  /* position: relative; */
}
.a2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  /* position: relative; */
}
.hero .hero__container .hero__img .images img {
  /* width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px; */

  /* background: linear-gradient(to left, #d9d9d9, #d9d9d9);
  border-radius: 32px;
  flex-shrink: 0;
  width: 272px;
  height: 400px;
  position: relative;
  object-fit: cover; */
}

/*=============== Companies ===============*/
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.companies {
  margin: 100px 0;
}
.logos {
  overflow: hidden;
  padding: 60px 0;
  background: transparent;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  /* background: linear-gradient(to left, rgba(255, 255, 255, 0), white); */
}

.logos:after {
  right: 0;
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0), white); */
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
/*=============== why-join-us ===============*/
.why-join-us {
  /* height: 100vh; */
  /* margin-top: 50px; */
}
.why-join-us__head_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.why-join-us .why-join-us__head {
  flex: 2;
  max-width: 45%;
}
.why-join-us .why-join-us__head h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #f85e9f;
  font-size: 23px;
  line-height: 120%;
  font-weight: 700;
  text-align: start;
}

.why-join-us .why-join-us__head p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 700;
  color: #191825;
  line-height: 120%;
  text-align: start;
}
.why-join-us .why-join-us__content {
  flex: 1;
  max-width: 50%;
}
.why-join-us .why-join-us__content .swiper-container {
  width: 100%;
  height: 100%;
}

.why-join-us .why-join-us__content .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px !important;
}
.why-join-us .why-join-us__content .swiper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: #ffffff;
  border-radius: 32px;
  padding: 64px;
  gap: 64px;
  align-self: stretch;
  flex-shrink: 0;
  /* width: 350px; */
  /* position: relative; */
  /* box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1),
    0px 41px 89px 0px rgba(0, 0, 0, 0.1); */
}
.why-join-us .why-join-us__content .swiper-content img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  position: relative;
  object-fit: cover;
}

.swiper-slide-slide {
  width: 450px !important;
}
.why-join-us .why-join-us__content .swiper-content h2 {
  color: #191825;
  text-align: center;
  font-family: "CircularStd-Bold", sans-serif;
  font-size: 28px;
  line-height: 120%;
  font-weight: 700;
  position: relative;
  align-self: stretch;
}
.why-join-us .why-join-us__content .swiper-content p {
  color: rgba(25, 24, 37, 0.5);
  text-align: center;
  font-family: "Inter-Regular", sans-serif;
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

.why-join-us .why-join-us__content .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .content img {
    display: none;
  }
  .content h1 {
    font-size: 2rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
  .content p {
    width: 100%;
  }
  .myvideo__content__data{
    flex: auto;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .content img {
    display: none;
  }
  .content h1 {
    font-size: 2rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
  .content p {
    width: 100%;
  }
  .myvideo__content__data{
    flex: auto;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .content img {
    display: block;
  }
  .content h1 {
    font-size: 3rem;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content p {
    width: 90%;
  }
    .myvideo__content__data{
        flex: 7;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .content img {
    display: block;
  }
  .content h1 {
    font-size: 3rem;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content p {
    width: 90%;
  }
  .myvideo__content__data{
    flex: 7;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .myvideo__content__data{
    flex: 7;
  }
  .content img {
    display: block;
  }
  .content h1 {
    font-size: 3rem;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content p {
    width: 90%;
  }
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .why-join-us .why-join-us__head {
    flex: 2;
    max-width: 100%;
  }

  .why-join-us .why-join-us__content {
    flex: 1;
    max-width: 100%;
  }
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 4.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
    flex-direction: column;
    text-align: center;
    background-color: #ddd;
  }
  .nav_buttons {
    flex-direction: column;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    /* background-color: var(--black-color); */
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  /* background-color: var(--black-color); */
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav__link:hover {
  /* background-color: var(--black-color-light); */
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 4.5rem;
  pointer-events: initial;
  padding: 20px 0;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--black-color);
  /* background-color: var(--black-color-light); */
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color 0.3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  /* background-color: var(--black-color); */
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  /* background-color: var(--black-color-lighten); */
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .why-join-us .why-join-us__head {
    flex: 2;
    max-width: 100%;
  }

  .why-join-us .why-join-us__content {
    flex: 1;
    max-width: 100%;
  }
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .why-join-us .why-join-us__head {
    flex: 2;
    max-width: 45%;
  }

  .why-join-us .why-join-us__content {
    flex: 1;
    max-width: 50%;
  }

  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
    background-color: #ffeae4ab;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}
