@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&amp;display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
}

header .brand {
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .navigation {
  position: relative;
}

header .navigation .navigation-items a.active {
  position: relative;
  color: yellow;
  padding: 2px 10px;
  font-weight: bold;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
  border-bottom: 2px solid;
  ;
}

header .navigation .navigation-items a.active:before {
  content: none
}


header .navigation .navigation-items a {
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
  width: 100%;
}



/* mobile navigation */

header .mobile-navigation .navigation-items a {
  position: relative;
  color: #fff;
  font-size: 2em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .mobile-navigation .navigation-items a:before {
  content: '';
  position: absolute;
  background: yellow;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .mobile-navigation .navigation-items a:hover:before {
  width: 100%;
}

header .mobile-navigation .navigation-items a.active {
  position: relative;
  color: yellow;
  padding: 2px 10px;
  font-weight: bold;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 2px solid;
}

header .mobile-navigation {
  transition: all 0.5s ease;
}

header .mobile-navigation.opacity-1 {
  transform: translateY(0);
}

header .mobile-navigation.opacity-0 {
  z-index: -5;
  transform: translateY(-150%);
}

.h-mobile-navigation {
  height: calc(100vh - 5rem);
}

/* mobile navigation */

section {
  padding: 100px 200px;
}

.home {
  position: relative;
  width: 100%;
  min-height: 98vh;

  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #2696E9;

}

.home:before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3, 96, 251, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content {
  z-index: 888;
  color: #fff;
  width: 100%;
  margin-top: 50px;
  display: none;
}

.home .content.active {
  display: block;
}

.home .content h1 {
  font-size: 4em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 75px;
  margin-bottom: 40px;
}

.home .content h1 span {
  font-size: 1.2em;
  font-weight: 600;
}

.home .content p {
  margin-bottom: 65px;
}

/* .home .content a {
  background: #fff;
  padding: 15px 35px;
  color: #1680AC;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
} */

.home .media-icons {
  z-index: 9999999;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
  height: 180px;
  width: 40px;
}

.home .media-icons a {
  color: #fff;
  font-size: 1.6em;
  transition: 0.3s ease;
  display: block;
}

.home .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}

.home .media-icons a:hover {
  transform: scale(1.3);
}

.home video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  justify-content: center;
  z-index: 999;
  /* height: 40px; */
  position: relative;
  display: flex;
  left: 0;
  bottom: 40px;
  align-items: center;

}

.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
  background: #ffff00;
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
  transform: scale(1.2);
}

.video-slide {
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

@media (max-width: 1040px) {
  header {
    padding: 12px 20px;
  }

  section {
    padding: 100px 20px;
  }

  .home .media-icons {
    right: 15px;
  }

  header .navigation {
    display: none;
  }

  header .navigation.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a {
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before {
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items {
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn {
    background: url(/assets/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active {
    z-index: 999;
    background: url(/assets/close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}

@media (max-width: 560px) {
  .home .content h1 {
    font-size: 3em;
    line-height: 60px;
  }
}

.case-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: 100px;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: -10rem; */
}

.case-card {
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.case-card-big {
  width: 215px;
  height: 400px
}

.case-card-small {
  width: 215px;
  height: 160px
}

.action-btn {
  background: #fff;
  color: #0e243c;
  padding: 15px 35px;
  transition: all 0.6s;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid transparent;
}

.action-btn:hover {
  background: rgba(14, 36, 60, 0.8);
  color: yellow;
  border-color: yellow;
}

/* --------------------------------------- */
.category-section {
  width: 100%;
  min-height: 700px;
  background-color: rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  display: flex;
  align-items: center
}

.section-title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 75px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.section-subtitle {
  color: #fff;
  font-size: 1em;
  margin-bottom: 65px;
}


.primary-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid;
  transition: all 0.6s;
  font-weight: 600;
  padding: 15px 45px;
  border-radius: 100px;
}

.primary-btn:hover {
  color: #222;
  background-color: yellow;
  border-color: #222;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);

}


.primary-btn-sm {
  background-color: transparent;
  color: #fff;
  border: 2px solid;
  transition: all 0.6s;
  font-weight: 600;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.primary-btn-sm:hover {
  color: #222;
  background-color: yellow;
  border-color: #222;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);

}



.search-btn {
  background-color: yellow;
  color: #0e243c;
  border: 2px solid;
  transition: all 0.6s;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 100px;
}



.rotate {
  animation: rotation 10s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}