@import url("https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@400;500&family=Rajdhani:wght@400;500&display=swap");
:root {
  --primary: #2c2b30;
  --secondary: #55595c;
  --tertiary: #363639;
  --drop-text: #494c4f;
  --lato: "Lato", sans-serif;
  --rajdhani: "Rajdhani", sans-serif;
  --segoe: "Segoe UI", sans-serif;
  --poppins: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* a {
  text-decoration: none;
  display: block;
}

body {
  height: 100vh;
  width: 100%;
}
body .grid {
  height: 100%;
  width: 100%;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
}
body .grid section.navbar {
  background: #2c2b30;
  display: flex;
  position: fixed;
  justify-content: space-between;
  padding-left: 5rem;
  padding-right: 10rem;
  z-index: 99;
  width: 100%;
}
body .grid section.navbar .options {
  display: flex;
  justify-content: flex-end;
  flex: 0.6;
  align-items: center;
}
body .grid section.navbar .options .dropdown {
  padding: 13px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
body .grid section.navbar .options .dropdown label {
  color: white;
  font-family: segoe UI;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
}
body .grid section.navbar .options .dropdown ion-icon {
  color: white;
  position: relative;
  top: 3px;
  left: 5px;
  cursor: pointer;
}
body .grid section.navbar .options .dropdown:nth-child(1) {
  border-bottom: 3px solid white;
}
body .grid section.navbar .options .dropdown:hover {
  border-bottom: 3px solid white;
}
body .grid section.navbar .options .dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
body .grid section.navbar .options .dropdown:hover .dropdown-menu-large {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
body .grid section.navbar .options .dropdown .dropdown-menu {
  position: absolute;
  background: #fff;
  top: 50px;
  left: 0;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading {
  padding: 1.5rem 3.5rem;
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading label {
  color: var(--drop-text);
  font-family: var(--rajdhani);
  letter-spacing: normal;
  font-weight: 500;
  font-size: 16px;
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading:hover {
  background-color: var(--secondary);
}
body .grid section.navbar .options .dropdown .dropdown-menu .heading:hover label {
  color: white;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large {
  position: absolute;
  background: #fff;
  top: 50px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 10;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading {
  padding: 1.5rem 3.5rem;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading label {
  color: var(--drop-text);
  font-family: var(--rajdhani);
  letter-spacing: normal;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading:hover {
  background-color: var(--secondary);
}
body .grid section.navbar .options .dropdown .dropdown-menu-large .heading:hover label {
  color: white;
}
body .grid section.hero {
  width: 100%;
  position: relative;
  margin-top: 150px;
}
body .grid section.hero .top {
  height: 600px;
  width: 100%;
  background: url(./assets/aliContainerHeroBanner.png) no-repeat center;
  background-size: cover;
}
body .grid section.hero .absolute-div {
  /* position: absolute; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  top: 48%;
}
body .grid section.hero .absolute-div .cover {
  width: 100%;
  background: var(--tertiary);
  display: flex;
  padding: 2rem 0;
}
body .grid section.hero .absolute-div .cover .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
body .grid section.hero .absolute-div .cover .box i {
  font-size: 50px;
  color: #d6d6d6;
  margin-bottom: 10px;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
  transform-origin: 0 100%;
}
body .grid section.hero .absolute-div .cover .box label {
  font-family: var(--segoe);
  text-transform: uppercase;
  color: #d6d6d6;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: bold;
}
body .grid section.hero .absolute-div .cover .box:hover i {
  transform: skew(-10deg);
}
body .grid section.hero .iframe {
  margin-top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .grid section.about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
body .grid section.about .details {
  width: 70%;
  display: flex;
}
body .grid section.about .details .about-us {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body .grid section.about .details .about-us label {
  margin-top: 1rem;
  display: block;
}
body .grid section.about .details .about-us label:nth-child(1) {
  font-size: 32px;
  color: var(--primary);
  font-family: var(--segoe);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
}
body .grid section.about .details .about-us label:nth-child(2) {
  color: var(--primary);
  font-family: var(--segoe);
  font-size: 18px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.8em;
}
body .grid section.about .details .about-us button {
  margin-top: 1rem;
  width: 140px;
  font-family: var(--poppins);
  font-size: 15px;
  text-transform: capitalize;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.5rem 0;
  border-radius: 4px;
  letter-spacing: 1.2px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: 0.3s all;
}
body .grid section.about .details .about-us button:hover {
  background: var(--primary);
  color: white;
}
body .grid section.about .details .img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
body .grid section.about .details .img img {
  box-shadow: 0px 0px 10px 0px #2c2b30;
  cursor: pointer;
}
body .grid section.clients {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.5rem;
}
body .grid section.clients .clientele {
  width: 85%;
  border: 5px solid var(--primary);
}
body .grid section.clients .clientele .header {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--primary);
}
body .grid section.clients .clientele .header label {
  text-transform: uppercase;
  font-size: 32px;
  font-family: var(--segoe);
  font-weight: 500;
  letter-spacing: 6px;
  color: white;
}
body .grid section.footer {
  background: var(--primary);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  padding-bottom: 4rem;
}
body .grid section.footer .bx {
  width: 70%;
  display: flex;
  margin-top: 1.5rem;
}
body .grid section.footer .bx .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body .grid section.footer .bx .card .heading label {
  font-family: var(--lato);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: white;
}
body .grid section.footer .bx .card .labels {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
body .grid section.footer .bx .card .labels .border {
  transition: 0.3s;
  margin-bottom: 0.7rem;
  padding-bottom: 10px;
  cursor: pointer;
}
body .grid section.footer .bx .card .labels .border label {
  padding-bottom: 0.5rem;
  color: white;
  font-family: var(--segoe);
  cursor: pointer;
  letter-spacing: 2px;
  transition: 0.2s all;
  position: relative;
  display: block;
  margin-bottom: 0;
}
body .grid section.footer .bx .card .labels .border label::after {
  content: "";
  position: absolute;
  height: 3px;
  background: white;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.3s all;
  border-radius: 15px;
}
body .grid section.footer .bx .card .labels .border:hover label::after {
  opacity: 1;
}
body .grid section.footer .bx .card .labels label {
  color: white;
  font-family: var(--segoe);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
body .grid section.footer .bx .card .labels .icons {
  margin-top: 1rem;
  display: flex;
}
body .grid section.footer .bx .card .labels .icons ion-icon {
  margin-right: 1rem;
  font-size: 22px;
  color: white;
}
body .grid section.footer .line {
  width: 85%;
  margin-top: 1rem;
}
body .grid section.footer .line hr {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.2901960784);
}
body .grid section.footer .cc {
  margin-top: 1.5rem;
}
body .grid section.footer .cc label {
  color: white;
  font-family: var(--segoe);
  letter-spacing: 2px;
}

.swiper {
  width: 100%;
  height: 200px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary) !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  filter: grayscale(100%);
  width: auto;
}
.swiper-slide img:hover {
  filter: grayscale(0);
}

.menu {
  display: none;
}

.none {
  display: none;
}

@media (max-width: 500px) {
  .swiper {
    height: 130px !important;
  }
  .swiper-slide img {
    width: 100% !important;
  }
  .opaque {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .block {
    display: block !important;
  }
  .grid .navbar {
    position: unset !important;
    background: #fff !important;
    align-items: center;
    padding: 10px !important;
  }
  .grid .navbar .logo {
    width: 50px;
    height: 50px;
  }
  .grid .navbar .logo img {
    width: 100%;
    height: 100%;
  }
  .grid .navbar .options {
    display: none !important;
  }
  .grid .navbar .menu {
    background: rgba(0, 0, 0, 0.0509803922);
    display: flex;
    padding: 0.25em;
    position: relative;
  }
  .grid .navbar .menu ion-icon {
    font-size: 30px;
  }
  .grid .navbar .menu .mobile-dropdown {
    position: absolute;
    right: -10px;
    z-index: 9;
    top: 70px;
    background: white;
    opacity: 0;
    transition: 0.3s all;
    transform: translateY(-10%);
  }
  .grid .navbar .menu .mobile-dropdown .dropdown {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .space {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .spaceLarge {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown a {
    font-family: var(--poppins);
    color: #55595c;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown ion-icon {
    font-size: 13px !important;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu {
    height: auto;
    margin-left: 1rem;
    margin-top: 5px;
    display: none;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu .heading {
    padding: 10px 0px;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu-large {
    height: auto;
    margin-left: 1rem;
    margin-top: 5px;
    display: none;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown .dropdown-menu-large .heading {
    padding: 10px 0px;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown:nth-child(1) {
    background: #55595c;
  }
  .grid .navbar .menu .mobile-dropdown .dropdown:nth-child(1) a {
    color: white !important;
  }
  .grid .hero {
    margin-top: 0px !important;
  }
  .grid .hero .top {
    height: 200px !important;
  }
  .grid .hero .absolute-div {
    position: unset !important;
  }
  .grid .hero .absolute-div .cover {
    padding: 25px !important;
    width: 100% !important;
    flex-direction: column;
  }
  .grid .hero .absolute-div .cover .box {
    margin-bottom: 45px;
  }
  .grid .hero .iframe {
    margin-top: 0rem !important;
    padding: 30px;
  }
  .grid .hero .iframe iframe {
    width: 100% !important;
    height: 200px !important;
  }
  .grid .about {
    margin-top: 0rem !important;
  }
  .grid .about .details {
    flex-direction: column !important;
    width: 80% !important;
  }
  .grid .about .details .about-us .none {
    display: none;
  }
  .grid .about .details .img {
    height: 240px !important;
    justify-content: center !important;
  }
  .grid .about .details .img img:nth-child(1) {
    display: none !important;
  }
  .grid .about .details .img .none {
    display: block !important;
    width: 100%;
    height: 100%;
    margin-top: 1rem;
  }
  .grid .clients .clientele .header label {
    font-size: 16px !important;
    text-align: center;
    width: 60%;
  }
  .grid .footer .bx {
    width: 100% !important;
    flex-direction: column !important;
    padding-left: 2rem;
  }
  .grid .footer .bx .card {
    margin-bottom: 2rem;
  }
  .grid .footer .bx .card .heading {
    margin-bottom: 1.5rem;
  }
  .grid .footer .cc {
    width: 90% !important;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */