@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Exo+2:wght@200&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 0.25s;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* body {
  min-height: 200vh;
} */
.title {
  text-align: center;
}
.ani {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.imgbox {
  width: 80%;
  height: 100%;
}
.imgbox img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  object-fit: contain;
  transition: filter 2s;
}
.imgbox img:hover {
  filter: grayscale(0%);
}
.show {
  opacity: 1;
  transform: translateY(0px);
}
ion-icon {
  font-size: 1.5rem;
  cursor: pointer;
}
.btn ion-icon,
.menu span ion-icon {
  font-size: 1rem;
}
a,
nav .menu span {
  color: #000;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #000; */
  justify-content: space-between;
}
header.jamed {
  /* From https://css.glass */
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(19.9px);
  -webkit-backdrop-filter: blur(19.9px); */
}
.logo {
  font-weight: 900;
  font-size: 1.5rem;
}
nav {
  gap: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.links {
  position: relative;
  padding: 2px 0px;
}
.links::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0%;
  background: #000;
  transition: 0.5s;
}
.links:hover:before {
  width: 100%;
}
.btn {
  color: #fff;
  outline: none;
  padding: 8px 15px;
  font-size: 0.8rem;
  border: 1px solid #000;
  background-color: #000;
}
.outline {
  outline: none;
  color: #000000;
  background: transparent;
}
.btn:hover,
.main .box:hover {
  cursor: pointer;
  /* box-shadow: 0px 2px 10px #3d416976; */
}
.btns {
  gap: 20px;
  display: flex;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.menuToggler {
  display: none;
}
.close {
  display: none;
}
._menu.down {
  display: flex;
}

/* ---------- Dropdown Menu ----------*/
.menu {
  position: relative;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.menu span {
  font-size: 1.1rem;
  cursor: pointer;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  top: 100%;
  border: 1px solid #000;
  z-index: 1;
  text-align: left;
  transition: 0.5s;
  flex-direction: column;
}
.dropdown-content a {
  color: #000;
  text-decoration: none;
  padding: 5px 10px;
}
.dropdown-content a:hover {
  background-color: #00000019;
}
.menu:hover .dropdown-content {
  display: flex;
}

/* hero section */
section {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 50px;
  /* min-height: 70vh; */
  align-items: center;
  justify-content: center;
}
.hero {
  gap: 40px;
  padding: 150px 20px;
  flex-direction: column;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero .title {
  width: 50%;
  text-align: center;
}
.hero .video {
  position: relative;
  width: 90%;
}
.hero .video video {
  width: 100%;
}

/* feature-section */
.feature-section {
  gap: 50px;
}
.feature-section .txt {
  gap: 25px;
  width: 80%;
  display: flex;
  flex-direction: column;
}
.feature-section .txt .expertise,
.feature-section .txt .title {
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.feature-section .txt .title {
  gap: 5px;
}
.feature-section .txt .expertise .sec {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/* portfolio-showcase */
.portfolio-showcase {
  flex-direction: column;
}
/* service-list */
.service-list {
  gap: 30px;
  background-color: #000;
  justify-content: space-around;
}
.service-list .expertise,
.client-feedback .expertise {
  gap: 30px;
  display: flex;
  padding: 20px;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* box-shadow: 1px 2px 1px #ffffff76; */
  border: 1px solid #fff;
}
.service-list .expertise .sec {
  gap: 5px;
}
/* client-feedback */
.client-feedback {
  gap: 30px;
  flex-direction: column;
}
.client-feedback .expertise {
  color: #000;
  align-items: flex-start;
  border-color: #000;
}
.client-feedback .expertise .message {
  text-align: left;
}
.client-feedback .expertise .info .imgbox, .client-feedback .expertise .info .name {
  width: 50%;
}
/* Responsive */
@media (max-width: 700px) {
  section {
    padding:30px 10px;
  }
  .hero .video {
    width: 95%;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    padding: 10px 5px;
    display: none;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    transition: 0.5s;
    border-top: 1px solid #000;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  }
  nav.active {
    display: flex;
  }
  .hero .title {
    width: 100%;
    text-align: center;
  }
  .menuToggler {
    display: flex;
  }
  .menu,
  .feature-section,
  .service-list {
    flex-direction: column;
  }
  .close.active {
    display: flex;
  }
  ._menu.down {
    display: none;
  }
  .dropdown-content {
    position: relative;
    top: 0%;
  }
  .feature-section .txt,
  .imgbox {
    width: 100%;
  }
}
