@import url("https://fonts.googleapis.com/css2?family=Allerta&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lobster&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lobster&family=PT+Serif:ital@1&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Reem+Kufi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Agbalumo&family=Bebas+Neue&family=IBM+Plex+Sans+Arabic&family=Lobster&family=Noto+Serif&family=PT+Serif&family=Reem+Kufi&display=swap");
/* ===== Google Font Import - Poppins ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
  --clr-neon: rgba(60, 165, 241, 1);
  --clr-bg: rgba(7, 43, 119, 1);
}

:root {
  --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
  --item1-filter: blur(30px);
  --item1-zIndex: 11;
  --item1-opacity: 0;

  --item2-transform: translateX(0);
  --item2-filter: blur(0px);
  --item2-zIndex: 10;
  --item2-opacity: 1;

  --item3-transform: translate(50%, 10%) scale(0.8);
  --item3-filter: blur(10px);
  --item3-zIndex: 9;
  --item3-opacity: 1;

  --item4-transform: translate(90%, 20%) scale(0.5);
  --item4-filter: blur(30px);
  --item4-zIndex: 8;
  --item4-opacity: 1;

  --item5-transform: translate(120%, 30%) scale(0.3);
  --item5-filter: blur(40px);
  --item5-zIndex: 7;
  --item5-opacity: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
  background-color: #f4f4f4;
  font-family: Poppins;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.contanierforsizexlargeiphone {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
/* carousel */
.carousel {
  position: relative;
  height: 800px;
  overflow: hidden;
  margin-top: -50px;
  margin-bottom: 3rem;
}
.carousel .list {
  position: absolute;
  width: 1140px;
  max-width: 90%;
  height: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.carousel .list .item {
  position: absolute;
  left: 0%;
  width: 70%;
  height: 100%;
  font-size: 15px;
  transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel .list .item:nth-child(n + 6) {
  opacity: 0;
}
.carousel .list .item:nth-child(2) {
  z-index: 10;
  transform: translateX(0);
}
.carousel video {
  width: 32%;
  position: absolute;
  transform: translateX(100%) !important;
  top: 10%;
  transition: right 1.5s;
  mix-blend-mode: multiply;
  z-index: 1;
}
.carousel .list .item .introduce {
  opacity: 0;
  pointer-events: none;
}
.carousel .list .item:nth-child(2) .introduce {
  opacity: 1;
  pointer-events: auto;
  width: 400px;
  position: absolute;
  top: 50%;
  transform: translateY(-200%);
  left: -15%;
  transition: opacity 0.5s;
}
.carousel .list .item .introduce .title {
  font-size: 2em;
  font-weight: 500;
  line-height: 1em;
}
.carousel .list .item .introduce .topic {
  font-size: 4em;
  font-weight: 500;
}
.carousel .list .item .introduce .des {
  font-size: small;
  color: #5559;
}
.carousel .list .item .introduce .seeMore {
  font-family: Poppins;
  margin-top: 1.2em;
  padding: 5px 0;
  border-bottom: 1px solid #555;
  color: #000;
  border-left: none;
  border-right: none;
  border-top: none;
  background-color: transparent;
  font-weight: bold;
  letter-spacing: 3px;
  transition: background 0.5s;
}
.carousel .list .item .introduce .seeMore:hover {
  background: #eee;
}
.carousel .list .item:nth-child(1) {
  transform: var(--item1-transform);
  filter: var(--item1-filter);
  z-index: var(--item1-zIndex);
  opacity: var(--item1-opacity);
  pointer-events: none;
}
.carousel .list .item:nth-child(3) {
  transform: var(--item3-transform);
  filter: var(--item3-filter);
  z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4) {
  transform: var(--item4-transform);
  filter: var(--item4-filter);
  z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5) {
  transform: var(--item5-transform);
  filter: var(--item5-filter);
  opacity: var(--item5-opacity);
  pointer-events: none;
}
/* animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent {
  from {
    transform: translateY(-30px);
    filter: blur(10px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0px);
  }
}
.carousel .list .item:nth-child(2) .introduce .topic {
  animation-delay: 1.2s;
}
.carousel .list .item:nth-child(2) .introduce .des {
  animation-delay: 1.4s;
}
.carousel .list .item:nth-child(2) .introduce .seeMore {
  animation-delay: 1.6s;
}
/* next click */
.carousel.next .item:nth-child(1) {
  animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2 {
  from {
    transform: var(--item2-transform);
    filter: var(--item2-filter);
    opacity: var(--item2-opacity);
  }
}
.carousel.next .item:nth-child(2) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3 {
  from {
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    opacity: var(--item3-opacity);
  }
}
.carousel.next .item:nth-child(3) {
  animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4 {
  from {
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    opacity: var(--item4-opacity);
  }
}
.carousel.next .item:nth-child(4) {
  animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5 {
  from {
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
  }
}
/* previous */
.carousel.prev .list .item:nth-child(5) {
  animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3) {
  animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2) {
  animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1 {
  from {
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    opacity: var(--item1-opacity);
  }
}

/* detail  */
.carousel .list .item .detail {
  opacity: 0;
  pointer-events: none;
}
/* showDetail */
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4) {
  left: 100%;
  opacity: 0;
  pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) {
  width: 100%;
}
.carousel.showDetail .list .item:nth-child(2) .introduce {
  opacity: 0;
  pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) img {
  right: 50%;
}
.carousel.showDetail .list .item:nth-child(2) .detail {
  opacity: 1;
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: auto;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title {
  font-size: 4em;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  display: flex;
  gap: 10px;
  width: 100%;
  border-top: 1px solid #5553;
  margin-top: 20px;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div {
  width: 90px;
  text-align: center;
  flex-shrink: 0;
}
.carousel.showDetail
  .list
  .item:nth-child(2)
  .detail
  .specifications
  div
  p:nth-child(1) {
  font-weight: bold;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button {
  font-family: Poppins;
  background-color: transparent;
  border: 1px solid #5555;
  margin-left: 5px;
  padding: 5px 10px;
  letter-spacing: 2px;
  font-weight: 500;
}
.carousel.carousel.showDetail
  .list
  .item:nth-child(2)
  .checkout
  button:nth-child(2) {
  background-color: #693eff;
  color: #eee;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title,
.carousel.showDetail .list .item:nth-child(2) .detail .des,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel.showDetail .list .item:nth-child(2) .detail .des {
  animation-delay: 1.2s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  animation-delay: 1.4s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .checkout {
  animation-delay: 1.6s;
}
.arrows {
  position: absolute;
  bottom: 10px;
  width: 1140px;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
}
#prev,
#next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: monospace;
  border: 1px solid #5555;
  font-size: large;
  bottom: 20%;
  left: 10%;
}
#next {
  left: unset;
  right: 10%;
}
#back {
  position: absolute;
  z-index: 100;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  border-bottom: 1px solid #555;
  font-family: Poppins;
  font-weight: bold;
  letter-spacing: 3px;
  background-color: transparent;
  padding: 10px;
  /* opacity: 0; */
  transition: opacity 0.5s;
}
.carousel.showDetail #back {
  opacity: 1;
}
.carousel.showDetail #prev,
.carousel.showDetail #next {
  opacity: 0;
  pointer-events: none;
}
.carousel img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 30px 50px #dbdbdb;
}
.carousel.showDetail::before {
  transform: translate(-100%, -50%) rotate(90deg);
  filter: blur(130px);
}
@media screen and (max-width: 991px) {
  /* ipad, tablets */
  .carousel .list .item {
    width: 90%;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
}
@media screen and (max-width: 767px) {
  /* mobile */
  .carousel {
    height: 600px;
  }
  .carousel .list .item {
    width: 100%;
    font-size: 10px;
  }

  .carousel .list {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    width: 50%;
  }

  .carousel .list .item img {
    width: 40%;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail {
    backdrop-filter: blur(10px);
    font-size: small;
  }
  .carousel .list .item:nth-child(2) .introduce .des,
  .carousel.showDetail .list .item:nth-child(2) .detail .des {
    height: 100px;
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .checkout {
    display: flex;
    width: max-content;
    float: right;
  }
}
.hamburger {
  display: none;
  opacity: 0;
}
.select-menu {
  width: 80px;
  border: 2px solid #3ca5f1;
  border-radius: 8px;
}
.select-menu .select-btn {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  transform: translateX(-15px);
  cursor: pointer;
  justify-content: space-between;
}
.select-menu span img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  transform: translateX(-15px);
}
.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}
.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}
.select-menu .options {
  position: relative;
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: none;
}
.select-menu.active .options {
  display: block;
}
.options .option {
  display: flex;
  height: 55px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}
.options .option:hover {
  background: #f2f2f2;
}
.option i {
  font-size: 25px;
  margin-right: 12px;
}
.option .option-text {
  font-size: 18px;
  color: #333;
}
#check {
  display: none;
}
label #btn,
label #cancel {
  display: none;
  opacity: 0;
}
label #btn {
  right: 30px;
  top: 75px;
  color: white;
  padding: 6px 12px;
  transition: all 1s;
  display: block;
}
label #cancel {
  z-index: 1111;
  right: -195px;
  top: 17px;
  font-size: 30px;
  color: white;
  padding: 4px 9px;
  transition: all 1s ease;
  display: block;
}
#check:checked ~ .sidebar {
  right: 0;
  display: block;
  transition: all 1s;
}
#check:checked ~ label #btn {
  right: 250px;
  opacity: 0;
  pointer-events: none;
  display: block;
}
#check:checked ~ label #cancel {
  right: 195px;
  display: block;
}
#check:checked ~ section {
  margin-right: 250px;
  display: block;
}

.sidebar {
  position: absolute;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(60, 165, 241, 0.7);
  backdrop-filter: blur(17px);
  --webkit-backdrop-filter: blur(17px);
  border: rgba(60, 165, 241, 0.7);
  transition: width 0.3s ease;
  z-index: 100;
}

.sidebar .logo {
  color: #000;
  display: flex;
  align-items: center;
  padding: 25px 15px 100px;
  transform: translateX(-50%);
}

.logo img {
  position: relative;
  width: 100px;
  left: 15px;
  top: 35px;
}
.logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 40px;
  display: block;
}

.sidebar:hover .logo h2 {
  display: block;
}
.sidebar .logo img {
  position: relative;
  left: 75px;
  transition: all 3s ease;
}

.sidebar .links {
  list-style: none;
  margin-top: 120px;
  overflow-y: auto;
  scrollbar-width: none;
  height: calc(100% - 140px);
}

.sidebar .links::-webkit-scrollbar {
  display: none;
}

.links li {
  display: flex;
  border-radius: 4px;
  align-items: center;
}

.links li:hover {
  cursor: pointer;
  background: #04596d;
}

.links h4 {
  color: #222;
  font-weight: 500;
  margin-bottom: 10px;
}
.links h4:hover {
  color: #04596d;
}

.sidebar .links h4 {
  display: block;
}

.links hr {
  margin: 10px 8px;
  border: 1px solid #4c4c4c;
}

.sidebar .links hr {
  border-color: transparent;
}

.links li span {
  padding: 12px 10px;
}

.links li a {
  padding: 10px;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
}

header .logo {
  position: absolute;
  z-index: 100;
  height: 6rem;
  margin-left: 2rem;
  object-fit: cover;
}
.navbar {
  width: 85%;
  margin: auto;
  padding: 2.1875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar,
header img {
  transform: translateY(10%);
}
.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 1rem;
  position: relative;
  padding: 0.5rem;
  z-index: 100;
  left: 20rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #3ca5f1;
  text-transform: uppercase;
}
.navbar ul li::after {
  content: "";
  height: 3px;
  width: 0;
  background: #072b77;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}

.navbar ul li:hover::after {
  width: 100%;
}

.content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
}
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-icon {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .whatsapp-icon {
    margin-top: 10px;
  }
  .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }
}
.socailicons {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 0px;
  z-index: 100;
}
.socailicons a {
  text-decoration: none;
  padding: 10px;
  background-color: #3ca5f1;
  margin: 10px;
  border-radius: 50%;
  color: white;
  font-size: 10px;
}
.notificationbar {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  background-color: #072b77;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 25px 25px;
  padding: 0 4rem;
}

.neon-button {
  font-size: 1.3rem;

  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: var(--clr-neon);
  border: var(--clr-neon) 0.125em solid;
  padding: 0.25em 1em;
  border-radius: 1em;

  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em currentColor;

  box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 0.5em 0 var(--clr-neon);

  position: relative;
}

.neon-button::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: var(--clr-neon);
  top: 120%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.9em;
  transform: perspective(1em) rotateX(40deg) scale(1, 0.35);
  filter: blur(1em);
  opacity: 0.7;
}

.neon-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 2em 0.5em var(--clr-neon);
  opacity: 0;
  border-radius: 0.9em;
  background-color: var(--clr-neon);
  z-index: -1;
  transition: opacity 100ms linear;
}

.neon-button:hover,
.neon-button:focus {
  color: var(--clr-bg);
  text-shadow: none;
}

.neon-button:hover::before,
.neon-button:focus::before {
  opacity: 1;
}
.neon-button:hover::after,
.neon-button:focus::after {
  opacity: 1;
}

.notificationbar h4 a {
  position: relative;
  opacity: 0;
  animation: showcontent 1s ease-in-out 0.3s 1 forwards;
  color: #ffffff;
  font-size: var(--font-size-l);
  font-weight: 700;
  line-height: normal;
  font-size: 1.5rem;
  padding: 0.5rem;
  text-decoration: none;
  font-family: "reem kufi", sans-serif;
}
.notificationbar h4 a:hover {
  color: #3ca5f1;
  transition: 0.2s;
}
.notificationbar h4 a:not(:hover) {
  transition: 0.2s;
}
.socailicons a i {
  font-size: 15px;
  color: rgb(255, 255, 255);
  opacity: 1;
}
.socailicons a:hover {
  background-color: #111;
  transition: all 0.5s;
}
.socailicons a:not(:hover) {
  transition: all 0.5s;
}
.socailicons a:hover i {
  color: white;
  transition: 0.5s all;
}
.socailicons a:not(:hover) i {
  transition: 0.5s all;
}
body {
  width: 1650px;
  max-width: 100%;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.details1 {
  position: relative;
  top: -60rem;
}

.details1 .name1 {
  position: relative;
  animation: showcontent 1s ease-in-out 1 forwards;
  color: #000;
  font-family: "poppins", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  font-size: 45px;
  opacity: 0;
  left: 15%;
}

.details1 p {
  position: relative;
  opacity: 0;
  animation: showcontent 1s ease-in-out 0.3s 1 forwards;
  color: #555;
  font-size: var(--font-size-l);
  font-weight: 700;
  line-height: normal;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin: 0 auto;
  left: 15%;
}

.card1 .seeMore {
  position: relative;
  font-family: Poppins;
  margin-top: 1.5em;
  padding: 0.5rem;
  border: none;
  border-bottom: 1px solid #555;
  background-color: transparent;
  font-weight: bold;
  letter-spacing: 3px;
  transition: background 0.5s;
  left: 15%;
}

.card1 .seeMore:hover {
  background: #eee;
}

@keyframes showcontent {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
.rectangle12 {
  position: absolute;
  width: 62.5rem;
  height: 31.25rem;
  border-radius: 550px 0px 0 550px;
  border: #072b77 2px solid;
  position: relative;
  top: 100px;
  left: 35%;
}
.slideriomg {
  position: absolute;
  width: 34.375rem;
  mix-blend-mode: multiply;
  transition: right 1.5s;
  transform: translateY(-135%);
  left: 25%;
}
.mainheader img {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  box-shadow: 0 30px 50px #dbdbdb;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}

.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: 150px;
  object-fit: cover;
  margin: 0 48px;
}
.logos-slide img:hover {
  height: 150px;
  margin: 0 48px;
  transition: all 2s ease-in-out;
  animation-play-state: paused;
}

.logos-slide img:not(:hover) {
  height: 120px;
  margin: 0 48px;
  transition: all 2s ease-in-out;
  animation-play-state: paused;
}
.aboutsection {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  transform: translateY(0%);
  z-index: 100;
  margin-bottom: 15%;
}
.aboutsection img {
  margin-top: 10%;
  left: 5%;
  position: relative;
  animation: float 5s ease-in-out infinite;
  height: 400px;
  border-radius: 0 100px 100px 100px;
}
.aboutsection img:hover {
  filter: blur(10px);
  transition: all 0.5s ease-in-out;
}

.aboutsection img:not(:hover) {
  filter: none;
  transition: all 0.7s ease-in-out;
}

@keyframes float {
  from {
    transform: translateY(0px);
  }
  65% {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0px);
  }
}

.aboutsection h2:before {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  border-radius: 50px;
  background-color: #000;
  position: absolute;
  left: -140px;
  top: 50%;
}

.aboutsection h2 {
  color: #000;
  font-family: "Bebas Neue", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  z-index: 100;
  font-size: 50px;
  transform: translateX(12%);
}

.aboutsection h2.stop-blinking::before {
  animation: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.aboutsection p {
  color: #1e1e1e;
  font-family: "Bebas Neue", sans-serif;
  font-size: var(--font-size-m);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 2.3px;
  line-height: 46.5px;
  position: relative;
  text-align: left;
  width: 600px;
  transform: translateX(-10%);
}
.textbox {
  transform: translateY(35%);
}
.curved-div {
  position: relative;
  background: #072b77;
  color: #fff;
  text-align: center;
}
.curved-div h2 {
  margin-bottom: 2rem;
  position: relative;
  animation: showcontent 1s ease-in-out 1 forwards;
  color: #fff;
  font-family: "bebas neue", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  font-size: 55px;
  opacity: 0;
}
.curved-div h2:before {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  border-radius: 50px;
  background-color: #fff;
  position: absolute;
  transform: translateX(500px);
  top: 50%;
}
.curved-div h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  border-radius: 50px;
  background-color: #fff;
  position: absolute;
  transform: translateX(900px);
  top: 50%;
}

.ourintersetimg {
  justify-content: center;
  align-items: center;
  display: flex;
}
.ourintersetimg img {
  height: 400px;
  width: 300px;
  object-fit: cover;
  margin: 0 50px;
  border-radius: 50px;
}
.ourintersetimg img {
  height: 400px;
  width: 300px;
  object-fit: cover;
  margin: 0 50px;
  border-radius: 50px;
}

.ourintersetimg img:hover::after {
  opacity: 0.5;
}
.ourintersetimg img:hover {
  filter: drop-shadow();
  transform: translateY(-5%);
  transition: 0.5s all;
}
.ourintersetimg img:not(:hover) {
  transition: 0.5s all;
}
.ourintersetimg h3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  animation: showcontent 1s ease-in-out 1 forwards;
  color: #fff;
  font-family: "bebas neue", cursive;
  font-size: 40px;
  opacity: 0;
}
.curved-div svg {
  display: block;
}
.aboutsvg {
  transform: rotate(180deg);
  background-color: #072b77;
}
@keyframes float {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 30px);
  }
  to {
    transform: translate(0, 0px);
  }
}

@keyframes float2 {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, -50px);
  }
  to {
    transform: translate(0, 0px);
  }
}

@keyframes float3 {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 70px);
  }
  to {
    transform: translate(0, 0px);
  }
}
.OurInterest h2 {
  position: relative;
  animation: showcontent 1s ease-in-out 1 forwards;
  color: #000;
  font-family: "poppins", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  font-size: 45px;
  opacity: 0;
  left: 15%;
}
.frame226-frame,
.frame227-frame,
.frame228-frame,
.frame229-frame,
.frame230-frame,
.frame231-frame {
  align-items: flex-end;
  border: 2px solid;
  border-color: var(--sonic-silver);
  border-radius: 0px 100px 100px 100px;
  display: flex;
  height: 270px;
  overflow: hidden;
  padding: 74px 92px;
  width: 306px;
  z-index: 1;
}

* {
  box-sizing: border-box;
}

.frame226-frame:hover,
.frame227-frame:hover,
.frame228-frame:hover,
.frame229-frame:hover,
.frame230-frame:hover,
.frame231-frame:hover {
  opacity: 1;
  transition: all 1s ease-in-out;
  height: 383px;
}

.frame226-frame:not(:hover),
.frame227-frame:not(:hover),
.frame228-frame:not(:hover),
.frame229-frame:not(:hover),
.frame230-frame:not(:hover),
.frame231-frame:not(:hover) {
  opacity: 1;
  transition: all 1s ease-in-out;
  height: 270px;
}

.frame226-frame h1,
.frame227-frame h1,
.frame228-frame h1,
.frame229-frame h1,
.frame230-frame h1 {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  color: #072b77;
  font-size: 40px;
  opacity: 0;
  top: 10%;
  left: 10%;
}
.frame231-frame h1 {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  color: #072b77;
  font-size: 40px;
  opacity: 0;
  top: 10%;
  transform: translateX(-15%);
}
.frame226-frame:hover h1,
.frame227-frame:hover h1,
.frame228-frame:hover h1,
.frame229-frame:hover h1,
.frame230-frame:hover h1,
.frame231-frame:hover h1 {
  opacity: 1;
  transition: all 1s ease-in-out;
}

.diamond-1-1,
.validation-1-1,
.speedometer-1-1,
.shapes-1-1,
.iterative-1-1,
.hand-shake-1-1-1 {
  position: absolute;
  height: 121px;
  margin-left: 5.5rem;
  margin-top: 4rem;
  object-fit: cover;
  width: 121px;
  z-index: -1;
}
.containerselfyfive {
  transform: translateY(20%);
}

.card1 {
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 30px;
  flex-wrap: wrap;
  gap: 55px;
  display: flex;
  flex-direction: row;
}

.card1 h2 {
  color: #000;
  font-family: "poppins", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  font-size: 50px;
}
.Mission2,
.Mission3 {
  display: none;
  opacity: 0;
}
.Mission1 {
  transform: translateY(70%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.OurMission {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider1 {
  width: 100%;
  height: 700px;
  margin: auto;
  position: relative;
  overflow: hidden;
  position: relative;
  transform: translateY(100%);
  box-shadow: 0 30px 50px #dbdbdb;
}

.slider1 .list1 {
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: 1s;
}
.slider1 .list1 img {
  width: 1920px;
  height: 100%;
  object-fit: cover;
}
.slider1 img {
  background-color: rgba(0, 0, 0, 0.6);
}
.slider1 .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.slider1 .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}
.slider1 .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.slider1 .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.5s;
}
.slider1 .dots li.active {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .slider1 {
    height: 400px;
  }
}
.textbox2 h2 {
  margin-top: 10rem;
}
.textbox2 h2 {
  color: #000;
  font-family: "poppins", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  font-size: 50px;
  padding-top: 7rem;
  padding-bottom: 2rem;
  transform: translateX(40%);
}
.textbox3 h2 {
  color: #000;
  font-family: "poppins", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  font-size: 50px;
  padding-top: 5rem;
  transform: translateX(10%);
}
.textbox3 p {
  color: #555;
  font-size: var(--font-size-l);
  font-weight: 700;
  line-height: normal;
  font-size: 1.5rem;
  padding: 1rem;
  width: 75%;
  margin: 0 auto;
  text-align: left;
  transform: translateX(-5%);
}

.aboutsection3 {
  transform: translateY(100%);
  position: relative;
  display: flex;
  justify-content: space-between;
}

#carouselExampleAutoplaying {
  position: relative;
  border-radius: 50px;
  background-size: 200px;
  text-decoration: none;
  height: 250px;
  width: 250px;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  cursor: pointer;
  left: -10%;
  transform: translateY(40%) !important;
}
#carouselExampleAutoplaying img {
  position: relative;
  left: 0%;
  transform: translateY(0%) !important;
}
.frame232-frame,
.frame233-frame,
.frame234-frame,
.frame235-frame,
.frame236-frame,
.frame237-frame,
.frame238-frame,
.frame239-frame,
.frame240-frame,
.frame241-frame,
.frame242-frame,
.frame243-frame,
.frame244-frame,
.frame245-frame,
.frame246-frame {
  align-items: flex-end;
  border: 2px solid;
  border-color: var(--sonic-silver);
  border-radius: 0px 100px 100px 100px;
  display: flex;
  height: 270px;
  overflow: hidden;
  padding: 74px 92px;
  width: 306px;
  z-index: 1;
}

.frame232,
.frame233,
.frame234,
.frame235,
.frame236,
.frame237,
.frame238,
.frame239,
.frame240,
.frame241,
.frame242,
.frame243,
.frame244,
.frame245,
.frame246 {
  align-items: flex-end;
  border-radius: 0px 100px 100px 100px;
  display: flex;
  height: 270px;
  padding: 74px 92px;
  position: absolute;
  width: 306px;
  cursor: none;
}

* {
  box-sizing: border-box;
}

.frame232-frame:hover,
.frame233-frame:hover,
.frame234-frame:hover,
.frame235-frame:hover,
.frame236-frame:hover,
.frame237-frame:hover,
.frame238-frame:hover,
.frame239-frame:hover,
.frame240-frame:hover,
.frame241-frame:hover,
.frame242-frame:hover,
.frame243-frame:hover,
.frame244-frame:hover,
.frame245-frame:hover,
.frame246-frame:hover {
  opacity: 1;
  transition: all 1s ease-in-out;
  height: 383px;
  background-color: rgba(0, 0, 0, 0.5);
}

.frame232-frame:not(:hover),
.frame233-frame:not(:hover),
.frame234-frame:not(:hover),
.frame235-frame:not(:hover),
.frame236-frame:not(:hover),
.frame237-frame:not(:hover),
.frame237-frame:not(:hover),
.frame239-frame:not(:hover),
.frame240-frame:not(:hover),
.frame241-frame:not(:hover),
.frame242-frame:not(:hover),
.frame243-frame:not(:hover),
.frame244-frame:not(:hover),
.frame245-frame:not(:hover),
.frame246-frame:not(:hover) {
  opacity: 1;
  transition: all 1s ease-in-out;
  height: 270px;
}

.frame232-frame h1,
.frame233-frame h1,
.frame234-frame h1,
.frame235-frame h1,
.frame236-frame h1,
.frame237-frame h1,
.frame238-frame h1,
.frame239-frame h1,
.frame240-frame h1,
.frame241-frame h1,
.frame242-frame h1,
.frame243-frame h1,
.frame244-frame h1,
.frame245-frame h1,
.frame246-frame h1 {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  color: #072b77;
  font-size: 40px;
  opacity: 0;
  top: 10%;
  left: 10%;
}

.frame232-frame:hover h1,
.frame233-frame:hover h1,
.frame234-frame:hover h1,
.frame235-frame:hover h1,
.frame236-frame:hover h1,
.frame237-frame:hover h1,
.frame238-frame:hover h1,
.frame239-frame:hover h1,
.frame240-frame:hover h1,
.frame241-frame:hover h1,
.frame242-frame:hover h1,
.frame243-frame:hover h1,
.frame244-frame:hover h1,
.frame245-frame:hover h1,
.frame246-frame:hover h1 {
  opacity: 1;
  transition: all 1s ease-in-out;
}

.xcgn_znzdb-removebg-preview-1,
.xf_zsdv-s-dgv-s-ef-removebg-preview-1-3,
.asd-vzvzsdvdvszvdsz-removebg-preview-1,
.aeragragrgagaagaga-removebg-preview-3-1,
.sgtrbsbrtsbt-removebg-preview-1,
.x5b49c522-ac4a-4d55-8,
.whats-app_-image_202,
.buttf01-removebg-preview,
.x32e7d0cb-becd-46db-8,
.x383861-600x600-removebg-preview,
.e19dfcc0-11a7-4f1a-8,
.oip__2_-removebg-preview,
.x73-a4662-transformed-2 {
  position: absolute;
  height: 121px;
  margin-left: 5.5rem;
  margin-top: 4rem;
  object-fit: cover;
  width: 121px;
  z-index: -1;
}
.x58572-whipping-cream-1000ml {
  position: absolute;
  height: 200px;
  margin-left: 6rem;
  margin-top: 2rem;
  z-index: -1;
  mix-blend-mode: multiply;
}
.butter_cup_sheet-sisay4-e-gr-transformed {
  position: absolute;
  height: 250px;
  margin-left: -2rem;
  margin-top: 0.5rem;
  z-index: -1;
  mix-blend-mode: multiply;
}

.card2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px;
  flex-wrap: wrap;
  gap: 55px;
  flex-direction: row;
  transform: translateY(10%);
}

.containerselfyfive1 {
  transform: translateY(20%);
}

.footer1 {
  position: relative;
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  background: #072b77;
  border-radius: 6px;
}

.footer1 .footer-row1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-row1 .footer-col1 h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-col1 .links1 {
  margin-top: 20px;
}
.footer-col1 .links1 li {
  list-style: none;
  margin-bottom: 10px;
  text-decoration: none;
  color: #bfbfbf;
}
.footer-col1 .links1 li:hover {
  color: #fff;
}
.footer-col1 .links1 li a {
  text-decoration: none;
  color: #bfbfbf;
}

.footer-col1 .links1 li a:hover {
  color: #fff;
}

.footer-col1 p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer-col1 form {
  display: flex;
  gap: 5px;
}

.footer-col1 input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489c6;
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}

.footer-col1 input::placeholder {
  color: #ccc;
}

.footer-col1 form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col1 form button:hover {
  background: #cecccc;
}

.footer-col1 .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col1 .icons i {
  color: #afb6c7;
}

.footer-col1 .icons i:hover {
  color: #fff;
}
.links li a {
  padding: 10px;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
  font-family: "Cairo", sans-serif;
  text-decoration: none;
  display: block;
}
@media (max-width: 768px) {
  .footer1 {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer1 .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col1 form {
    display: block;
  }

  .footer-col1 form :where(input, button) {
    width: 100%;
  }

  .footer-col1 form button {
    margin: 10px 0 0 0;
  }
}
.Contact-form {
  transform: translateY(20%);
  position: relative;
  min-height: 100vh;
  z-index: 0;
  padding: 15rem;
  justify-content: center;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
}
.container {
  max-width: 700px;
  margin-top: 0 auto;
}
.Contact-form h1 {
  text-align: center;
  color: #000;
  font-family: "Bebas Neue", cursive;
  font-size: var(--font-size-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  position: relative;
  z-index: 100;
  font-size: 50px;
}
.Contact-form h2 {
  line-height: 40px;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 500;
  color: #072b77;
  text-align: center;
}
.Contact-form .main {
  position: relative;
  display: flex;
  margin: 30px 0;
}
.content {
  flex-basis: 50%;
  padding: 3em 3em;
  background: #fff;
  box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.form-img {
  flex-basis: 50%;
  background: #f0f4f8;
  background-size: cover;
  padding: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  align-items: center;
  display: grid;
}
.form-img img {
  max-width: 100%;
  transform: rotate(90deg);
  mix-blend-mode: multiply;
}
.btn222,
button,
input {
  border-radius: 35px;
}
.btn222,
button:hover {
  color: #132a5c;
  transition: 0.5 ease;
}
.btn222 {
  margin-top: 10px;
}
.Contact-form form {
  margin: 30px 0;
}
.Contact-form input:focus {
  background: transparent;
  border: 1px solid #072b77;
}
.Contact-form input,
textarea {
  outline: none;
  margin-bottom: 15px;
  font-stretch: 16px;
  color: #999;
  padding: 14px 20px;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  background: #fcfcfc;
}
.Contact-form button {
  font-size: 18px;
  color: #fff;
  width: 100%;
  background: #072b77;
  font-weight: 600;
  transition: 0.3 ease;
  padding: 14px 15px;
}
@media (max-width: 736px) {
  .Contact-form .main {
    flex-direction: column;
  }
  .Contact-form form {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .form-img {
    border-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    order: 2;
  }
  .content {
    order: 1;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
  }
}

@media screen and (max-width: 375px) {
  .aboutsection img {
    display: none;
    opacity: 0;
  }
}
.logos1 {
  transform: translateY(60%);
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}

.logos1:before,
.logos1:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos1:hover .logos-slide1 {
  animation-play-state: paused;
  transition: all 0.5s ease-in-out;
}

.logos-slide1 {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide1 img {
  height: 120px;
  margin: 0 48px;
}
.logos-slide1 img:hover {
  height: 150px;
  margin: 0 48px;
  transition: all 2s ease-in-out;
}

.logos-slide1 img:not(:hover) {
  height: 120px;
  margin: 0 48px;
  transition: all 2s ease-in-out;
}
.ourproductssection2 {
  transform: translateY(100%);
}
/* carousel */
.carousel1 {
  position: relative;
  height: 800px;
  overflow: hidden;
  margin-top: -50px;
  margin-bottom: 3rem;
  transform: translateY(50%);
  z-index: 100;
}
.carousel1 .list1 {
  position: absolute;
  width: 1140px;
  max-width: 90%;
  height: 80%;
  left: 50%;
  transform: translateX(-50%);
}
.carousel1 .list1 .item1 {
  position: absolute;
  left: 0%;
  width: 70%;
  height: 100%;
  font-size: 15px;
  transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel1 .list1 .item1:nth-child(n + 6) {
  opacity: 0;
}
.carousel1 .list1 .item1:nth-child(2) {
  z-index: 10;
  transform: translateX(0);
}
.carousel1 .list1 .item1 img {
  width: 60%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 1.5s;
}

.carousel1 .list1 .item1 .introduce1 {
  opacity: 0;
  pointer-events: none;
}
.carousel1 .list1 .item1:nth-child(2) .introduce1 {
  opacity: 1;
  pointer-events: auto;
  width: 400px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}
.carousel1 .list1 .item1 .introduce1 .title1 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1em;
}
.carousel1 .list1 .item1 .introduce1 .topic1 {
  font-size: 4em;
  font-weight: 500;
}
.carousel1 .list1 .item1 .introduce1 .des1 {
  font-size: small;
  color: #5559;
}
.carousel1 .list1 .item1 .introduce1 .seeMore1 {
  font-family: "Poppins";
  margin-top: 1.2em;
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid #555;
  background-color: transparent;
  font-weight: bold;
  letter-spacing: 3px;
  transition: background 0.5s;
}
.carousel1 .list1 .item1 .introduce1 .seeMore1:hover {
  background: #eee;
}
.carousel1 .list1 .item1:nth-child(1) {
  transform: var(--item1-transform);
  filter: var(--item1-filter);
  z-index: var(--item1-zIndex);
  opacity: var(--item1-opacity);
  pointer-events: none;
}
.carousel1 .list1 .item1:nth-child(3) {
  transform: var(--item3-transform);
  filter: var(--item3-filter);
  z-index: var(--item3-zIndex);
}
.carousel1 .list1 .item1:nth-child(4) {
  transform: var(--item4-transform);
  filter: var(--item4-filter);
  z-index: var(--item4-zIndex);
}
.carousel1 .list1 .item1:nth-child(5) {
  transform: var(--item5-transform);
  filter: var(--item5-filter);
  opacity: var(--item5-opacity);
  pointer-events: none;
}
/* animation text in item2 */
.carousel1 .list1 .item1:nth-child(2) .introduce1 .title1,
.carousel1 .list1 .item1:nth-child(2) .introduce1 .topic1,
.carousel1 .list1 .item1:nth-child(2) .introduce1 .des1,
.carousel1 .list1 .item1:nth-child(2) .introduce1 .seeMore1 {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent {
  from {
    transform: translateY(-30px);
    filter: blur(10px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0px);
  }
}
.carousel1 .list1 .item1:nth-child(2) .introduce1 .topic1 {
  animation-delay: 1.2s;
}
.carousel1 .list1 .item1:nth-child(2) .introduce1 .des1 {
  animation-delay: 1.4s;
}
.carousel1 .list1 .item1:nth-child(2) .introduce1 .seeMore1 {
  animation-delay: 1.6s;
}
/* next click */
.carousel1.next1 .item1:nth-child(1) {
  animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2 {
  from {
    transform: var(--item2-transform);
    filter: var(--item2-filter);
    opacity: var(--item2-opacity);
  }
}
.carousel1.next1 .item1:nth-child(2) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3 {
  from {
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    opacity: var(--item3-opacity);
  }
}
.carousel1.next1 .item1:nth-child(3) {
  animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4 {
  from {
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    opacity: var(--item4-opacity);
  }
}
.carousel1.next1 .item1:nth-child(4) {
  animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5 {
  from {
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
  }
}
/* previous */
.carousel1.prev1 .list1 .item1:nth-child(5) {
  animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel1.prev1 .list1 .item1:nth-child(4) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carouse1.prev1 .list1 .item1:nth-child(3) {
  animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel1.prev1 .list1 .item1:nth-child(2) {
  animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1 {
  from {
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    opacity: var(--item1-opacity);
  }
}

/* detail  */
.carousel1 .list1 .item1 .detail1 {
  opacity: 0;
  pointer-events: none;
}
/* showDetail */
.carousel1.showDetail1 .list1 .item1:nth-child(3),
.carousel1.showDetail1 .list1 .item1:nth-child(4) {
  left: 100%;
  opacity: 0;
  pointer-events: none;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) {
  width: 100%;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .introduce1 {
  opacity: 0;
  pointer-events: none;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) img {
  right: 50%;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 {
  opacity: 1;
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: auto;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .title1 {
  font-size: 4em;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .specifications1 {
  display: flex;
  gap: 10px;
  width: 100%;
  border-top: 1px solid #5553;
  margin-top: 20px;
}
.carousel1.showDetail1
  .list1
  .item1:nth-child(2)
  .detail1
  .specifications1
  div {
  width: 90px;
  text-align: center;
  flex-shrink: 0;
}
.carousel1.showDetail1
  .list1
  .item1:nth-child(2)
  .detail1
  .specifications1
  div
  p:nth-child(1) {
  font-weight: bold;
}
.carousel1.carousel1.showDetail1 .list1 .item1:nth-child(2) .checkout1 button {
  font-family: "Poppins";
  background-color: transparent;
  border: 1px solid #5555;
  margin-left: 5px;
  padding: 5px 10px;
  letter-spacing: 2px;
  font-weight: 500;
}
.carousel1.carousel1.showDetail1
  .list1
  .item1:nth-child(2)
  .checkout1
  button:nth-child(2) {
  background-color: #693eff;
  color: #eee;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .title1,
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .des1,
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .specifications1,
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .checkout1 {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .des1 {
  animation-delay: 1.2s;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .specifications1 {
  animation-delay: 1.4s;
}
.carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .checkout1 {
  animation-delay: 1.6s;
}
.arrows1 {
  position: absolute;
  bottom: 10px;
  width: 1140px;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
}
#prev1,
#next1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: monospace;
  border: 1px solid #5555;
  font-size: large;
  bottom: 20%;
  left: 10%;
}
#next1 {
  left: unset;
  right: 10%;
}
#back1 {
  position: absolute;
  z-index: 100;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  border-bottom: 1px solid #555;
  font-family: "Poppins";
  font-weight: bold;
  letter-spacing: 3px;
  background-color: transparent;
  padding: 10px;
  /* opacity: 0; */
  transition: opacity 0.5s;
}
.carousel1.showDetail1 #back1 {
  opacity: 1;
}
.carousel1.showDetail1 #prev1,
.carousel1.showDetail1 #next1 {
  opacity: 0;
  pointer-events: none;
}

.carousel1.showDetail1::before {
  transform: translate(-100%, -50%) rotate(90deg);
  filter: blur(130px);
}
@media screen and (max-width: 991px) {
  /* ipad, tablets */
  .carousel1 .list1 .item1 {
    width: 90%;
  }
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .specifications1 {
    overflow: auto;
  }
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .title1 {
    font-size: 2em;
  }
}
@media screen and (max-width: 767px) {
  /* mobile */
  .carousel1 {
    height: 600px;
  }
  .carousel1 .list1 .item1 {
    width: 100%;
    font-size: 10px;
  }

  .carousel1 .list1 {
    height: 100%;
  }
  .carousel1 .list1 .item1:nth-child(2) .introduce1 {
    width: 50%;
  }

  .carousel1 .list1 .item1 img {
    width: 40%;
  }
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 {
    backdrop-filter: blur(10px);
    font-size: small;
  }
  .carousel1 .list1 .item1:nth-child(2) .introduce1 .des1,
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .des1 {
    height: 100px;
    overflow: auto;
  }
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .checkout1 {
    display: flex;
    width: max-content;
    float: right;
  }
}

.wrapper5 .outer5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25rem;
  transform: translateY(60%);
}

.wrapper5 .card5 {
  background: #3ca5f1;
  width: 1000px;
  display: flex;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  justify-content: space-between;
  border-radius: 100px 20px 20px 100px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  animation: animate5 15s linear infinite;
  animation-delay: calc(3s * var(--delay));
}
.wrapper5 .card5:last-child {
  animation-delay: calc(-3s * var(--delay));
}
@keyframes animate5 {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.5);
  }
  5%,
  20% {
    opacity: 0.4;
    transform: translateY(100%) scale(0.7);
  }
  25%,
  40% {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0%) scale(1);
  }
  45%,
  60% {
    opacity: 0.4;
    transform: translateY(-100%) scale(0.7);
  }
  65%,
  100% {
    opacity: 0;
    transform: translateY(-100%) scale(0.5);
  }
}
.card5 .content5 {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.wrapper5 .card5 .img5 {
  height: 150px;
  width: 150px;
  position: absolute;
  left: -5px;
  margin-left: 30px;
  border: #072b77 5px solid;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.card5 .img5 img {
  height: 100%;
  height: 100%;
  display: flex;
  border-radius: 80%;
  justify-content: center;
  align-items: center;
}
.card5 .details5 {
  margin-left: 150px;
}

.details5 p {
  color: #ffffff;
  font-family: "Bebas Neue", cursive;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  margin-left: 30px;
}

.details5 span {
  font-size: 30px;
  color: #ffffff;
  font-family: "Bebas Neue", cursive;
  font-weight: 700;
  margin-left: 310px;
}
.card5 a {
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 25px;
  color: #072b77;
  background-color: white;
  transition: all 0.3s ease;
}
.card5 a:hover {
  transform: scale(0.94);
}

@media screen and (max-width: 840px) {
  .ourintersetimg {
    flex-direction: column;
  }
  .wrapper5 .card5 {
    background: #3ca5f1;
    width: 700px;
    display: flex;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    border-radius: 100px 20px 20px 100px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    animation: animate5 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
  }
  .details5 p {
    color: #ffffff;
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    margin-left: 30px;
  }

  .details5 span {
    font-size: 30px;
    color: #ffffff;
    font-family: "Bebas Neue", cursive;
    font-weight: 700;
    margin-left: 310px;
  }
  .card5 a {
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 25px;
    margin-left: 430px;
    color: #072b77;
    background-color: white;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 420px) {
  .wrapper5 .card5 {
    background: #3ca5f1;
    width: 400px;
    display: flex;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    border-radius: 100px 20px 20px 100px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    animation: animate5 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
  }
  .details5 p {
    color: #ffffff;
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    position: relative;
    width: 100px;
    top: 60px;
    margin-top: px;
    margin-left: 30px;
  }

  .details5 span {
    font-size: 30px;
    color: #ffffff;
    font-family: "Bebas Neue", cursive;
    font-weight: 700;
    margin-left: 310px;
    width: 100px;
    position: relative;
    top: 30px;
    left: -75%;
  }
  .card5 a {
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 25px;
    margin-left: 430px;
    color: #072b77;
    width: 100px;
    position: relative;
    left: -75%;
    background-color: white;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 320px) {
  .wrapper5 .card5 {
    background: #3ca5f1;
    width: 300px;
    display: flex;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    justify-content: space-between;
    border-radius: 100px 20px 20px 100px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    animation: animate5 15s linear infinite;
    animation-delay: calc(3s * var(--delay));
  }
  .details5 p {
    color: #ffffff;
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    position: relative;
    width: 100px;
    top: 60px;
    margin-top: px;
    margin-left: 30px;
  }

  .details5 span {
    font-size: 30px;
    color: #ffffff;
    font-family: "Bebas Neue", cursive;
    font-weight: 700;
    margin-left: 310px;
    width: 100px;
    position: relative;
    top: 30px;
    left: -75%;
  }
  .card5 a {
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 25px;
    margin-left: 430px;
    color: #072b77;
    width: 100px;
    position: relative;
    left: -100%;
    background-color: white;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  /* mobile */
  .aboutsection p {
    width: 300px;
    text-align: left;
  }
  .carousel1 {
    height: 600px;
  }
  .carousel1 .list1 .item1 {
    width: 100%;
    font-size: 10px;
  }

  .carousel1 .list1 {
    height: 100%;
  }
  .carousel1 .list1 .item1:nth-child(2) .introduce1 {
    width: 50%;
  }

  .carousel1 .list1 .item1 img {
    width: 40%;
  }
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 {
    backdrop-filter: blur(10px);
    font-size: small;
  }
  .carousel1 .list1 .item1:nth-child(2) .introduce1 .des1,
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .des1 {
    height: 100px;
    overflow: auto;
  }
  .carousel1.showDetail1 .list1 .item1:nth-child(2) .detail1 .checkout1 {
    display: flex;
    width: max-content;
    float: right;
  }
}
@media screen and (max-width: 768px) {
  .curved-div h2::before {
    left: 0px;
    height: 4px;
    width: 90px;
  }
  .curved-div h2::after {
    left: -50px;
    height: 4px;
    width: 90px;
  }
  .aboutsection .textbox p {
    width: 400px;
    text-align: left;
    left: 15%;
  }
  .textbox {
    margin-bottom: 2rem;
  }
  .aboutsection {
    margin-top: -7rem;
  }
  .containerselfyfive {
    margin-top: -20rem;
    margin-bottom: 30rem !important;
  }
}
@media screen and (max-width: 1280px) {
  /* small laptops */
  .carousel .list .item {
    width: 90%;
    left: 10%;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    transform: translateY(-10%);
  }
  .rowflex img {
    margin: 0 50px;
    height: 200px;
  }
  .logos {
    transform: translateY(-30%);
  }
  .aboutsection {
    position: relative;
    display: flex;
    justify-content: space-between;
    transform: translateY(-30%);
    z-index: 100;
  }
  .aboutsection img {
    position: relative;
    height: 350px;
    animation: float 5s ease-in-out infinite;
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Bebas Neue", cursive;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    transform: translateX(20%);
    font-size: 50px;
  }

  .aboutsection p {
    color: #1e1e1e;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    width: 480px;
  }
  .Mission1 {
    position: relative;
    height: 700px;
    transform: translateY(90%);
  }
}
@media screen and (max-width: 768px) {
  /* mobile */
  .aboutsection p {
    width: 300px;
    text-align: left;
  }
  .carousel {
    height: 600px;
  }
  .carousel .list .item {
    width: 100%;
    font-size: 10px;
  }

  .carousel .list {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    width: 50%;
  }

  .carousel .list .item img {
    width: 40%;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail {
    backdrop-filter: blur(10px);
    font-size: small;
  }
  .carousel .list .item:nth-child(2) .introduce .des,
  .carousel.showDetail .list .item:nth-child(2) .detail .des {
    height: 100px;
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .checkout {
    display: flex;
    width: max-content;
    float: right;
  }
}
@media screen and (max-width: 1024px) {
  .ourintersetimg img {
    height: 300px;
    width: 200px;
    object-fit: cover;
    margin: 0 50px;
    border-radius: 50px;
  }
  .curved-div h2::before {
    transform: translatex(250px);
  }
  .curved-div h2::after {
    transform: translatex(650px);
  }
  .hamburger {
    display: block;
    opacity: 1;
  }
  .carousel img {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 700px;
    position: absolute;
    top: 37%;
    transform: translateY(-250%);
    left: -15%;
    transition: opacity 0.5s;
  }
  .carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
  }
  .carousel .list .item .introduce .topic {
    font-size: 3em;
    font-weight: 500;
  }
  .carousel .list .item .introduce .des {
    font-size: medium;
    width: 75%;
    color: #000;
  }
  .containerselfyfive {
    transform: translateY(30%);
  }
  .containerselfyfive1 {
    transform: translateY(6%);
  }

  .navbar ul,
  .navbar button {
    opacity: 0;
    display: none;
  }
  .carousel video {
    top: 14%;
    left: 10%;
    height: 800px;
  }
  .hamburger {
    position: relative;
    left: 90%;
    transform: translateY(-40%);
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    width: 100%;
    height: 400px;
    transform: translateX(-30%);
    position: relative;
    top: 40%;
  }
  .rowflex img {
    margin: 0 50px;
    height: 200px;
  }
  .logos {
    transform: translateY(0%);
  }
  .aboutsection {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(0%);
    z-index: 100;
  }
  .aboutsection img {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 25%;
    left: -1%;
    animation: float 5s ease-in-out infinite;
  }
  .textbox {
    transform: translateY(45%);
  }
  .OurInterest {
    transform: translateY(35%);
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Bebas Neue", cursive;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    font-size: 45px;
    transform: translateX(38%);
  }
  .aboutsection p {
    color: #1e1e1e;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    text-align: center;
    width: 700px;
    transform: translateX(20%);
  }
  .Mission1 {
    position: relative;
    height: 600px;
    transform: translateY(90%);
  }
}

@media screen and (max-width: 840px) {
  .containerselfyfive {
    margin-top: -20rem;
    margin-bottom: 15rem;
  }
  .curved-div h2::before {
    transform: translatex(150px);
  }
  .curved-div h2::after {
    transform: translatex(570px);
  }
  .carousel img {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 700px;
    position: absolute;
    top: 37%;
    transform: translateY(-250%);
    left: -15%;
    transition: opacity 0.5s;
  }
  .carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
  }
  .carousel .list .item .introduce .topic {
    font-size: 3em;
    font-weight: 500;
  }
  .carousel .list .item .introduce .des {
    font-size: medium;
    width: 75%;
    color: #000;
  }
  .containerselfyfive {
    transform: translateY(45%);
  }
  .containerselfyfive1 {
    transform: translateY(6%);
  }

  .navbar ul,
  .navbar button {
    opacity: 0;
    display: none;
  }
  .carousel video {
    top: 14%;
    left: 10%;
    height: 800px;
  }
  .hamburger {
    position: relative;
    left: 90%;
    transform: translateY(-40%);
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    width: 100%;
    height: 400px;
    transform: translateX(-30%);
    position: relative;
    top: 40%;
  }
  .rowflex img {
    margin: 0 35px;
    height: 170px;
  }
  .logos {
    transform: translateY(0%);
  }

  .OurInterest {
    transform: translateY(35%);
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Bebas Neue", cursive;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    font-size: 45px;
    transform: translateX(38%);
  }
  .aboutsection p {
    color: #1e1e1e;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    text-align: center;
    width: 650px;
    transform: translateX(15%);
  }
  .Mission1 {
    display: none;
  }
  .Mission2,
  .Mission3 {
    opacity: 1;
    display: block;
    position: relative;
    height: 600px;
    transform: translateY(85%);
  }
  .Mission3 {
    opacity: 1;
    display: block;
    position: relative;
    height: 600px;
    right: 50%;
    transform: translateY(85%);
  }
  .Mission2 {
    opacity: 1;
    display: block;
    position: relative;
    height: 600px;
    left: 110%;
    transform: translateY(103%);
  }
}
@media screen and (max-width: 600px) {
  #carouselExampleAutoplaying {
    display: none;
    opacity: 0;
  }
  .Contact-form {
    transform: translateY(0%) !important;
  }
  .containerselfyfive1 {
    transform: translateY(-5%) !important;
  }
  .aboutsection3 {
    transform: translateY(50%);
  }
  .curved-div h2::before {
    left: -70px;
  }
  .curved-div h2::after {
    left: -140px;
  }
  .carousel img {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 700px;
    position: absolute;
    top: 37%;
    transform: translateY(-180%);
    left: -10%;
    transition: opacity 0.5s;
  }
  .carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
  }
  .carousel .list .item .introduce .topic {
    font-size: 3em;
    font-weight: 500;
  }
  .carousel .list .item .introduce .des {
    font-size: medium;
    width: 60%;
    color: #000;
  }
  .containerselfyfive {
    transform: translateY(20%);
  }
  .containerselfyfive1 {
    transform: translateY(0%);
  }

  .navbar ul,
  .navbar button {
    opacity: 0;
    display: none;
  }
  .carousel video {
    top: 10%;
    left: 10%;
    height: 800px;
  }
  .hamburger {
    position: relative;
    left: 90%;
    transform: translateY(-40%);
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    width: 100%;
    height: 250px;
    transform: translateX(-30%);
    position: relative;
    top: 55%;
  }
  .OurInterest h2 {
    margin-left: 70px;
  }
  .rowflex img {
    margin: 50px 20px;
    height: 130px;
  }
  .logos {
    transform: translateY(0%);
  }
  .aboutsection img {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 80px;
    object-fit: cover;
    width: 450px;
    animation: float 5s ease-in-out infinite;
  }
  .aboutsection img {
    margin-top: 30%;
  }
  .textbox {
    transform: translateY(45%);
  }
  .OurInterest {
    transform: translateY(35%);
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Bebas Neue", cursive;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    font-size: 45px;
    transform: translateX(33%);
  }
  .aboutsection p {
    color: #1e1e1e;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    text-align: center;
    width: 500px;
    transform: translateX(10%);
  }
}
@media screen and (max-width: 420px) {
  .Contact-form {
    transform: translateY(5%) !important;
  }
  .textbox2 h2 {
    transform: translateX(65px);
  }
  .curved-div h2::before {
    display: none;
  }
  .curved-div h2::after {
    display: none;
  }
  .aboutsection h2::before {
    left: -100px;
    height: 4px;
    width: 90px;
  }
  .aboutsection h2 {
    left: 50px;
  }
  .aboutsection .textbox p {
    width: 300px;
    text-align: left;
    left: 15%;
  }
  .Contact-form {
    justify-content: center;
    align-items: center;
    position: relative;
    left: -7%;
  }
  .carouselExampleAutoplaying {
    display: none;
    opacity: 0;
  }
  .neon-button {
    display: none;
    opacity: 0;
  }
  .carousel img {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 700px;
    position: absolute;
    top: 37%;
    transform: translateY(-180%);
    left: -10%;
    transition: opacity 0.5s;
  }
  .carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
  }
  .carousel .list .item .introduce .topic {
    font-size: 3em;
    font-weight: 500;
  }
  .carousel .list .item .introduce .des {
    font-size: medium;
    width: 40%;
    color: #000;
  }
  .containerselfyfive {
    transform: translateY(20%);
  }
  .containerselfyfive1 {
    transform: translateY(0%);
  }

  .navbar ul,
  .navbar button {
    opacity: 0;
    display: none;
  }
  .carousel video {
    top: 10%;
    left: 10%;
    height: 800px;
  }
  .hamburger {
    position: relative;
    left: 90%;
    transform: translateY(-40%);
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    width: 100%;
    height: 250px;
    transform: translateX(-30%);
    position: relative;
    top: 55%;
  }
  .OurInterest h2 {
    margin-left: 10px;
  }
  .rowflex img {
    margin: 0px 50px;
    height: 130px;
  }
  .row2 {
    animation-name: float;
  }
  .rowflex {
    flex-direction: column;
  }
  .logos {
    transform: translateY(0%);
  }
  .logos:before {
    display: none;
    opacity: 0;
  }

  .logos:after {
    display: none;
    opacity: 0;
  }

  .aboutsection img {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
    width: 350px;
    animation: float 5s ease-in-out infinite;
  }
  .aboutsection img {
    margin-top: 60%;
  }
  .OurInterest {
    transform: translateY(35%);
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Bebas Neue", cursive;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    font-size: 45px;
    transform: translateX(25%);
  }
  .aboutsection p {
    color: #1e1e1e;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    text-align: center;
    width: 350px;
    transform: translateX(10%);
  }
}
@media screen and (max-width: 320px) {
  .frame226-frame h1,
  .frame227-frame h1,
  .frame228-frame h1,
  .frame229-frame h1,
  .frame230-frame h1,
  .frame231-frame h1 .frame232-frame h1,
  .frame233-frame h1,
  .frame234-frame h1,
  .frame235-frame h1,
  .frame236-frame h1,
  .frame237-frame h1,
  .frame238-frame h1,
  .frame239-frame h1,
  .frame240-frame h1,
  .frame241-frame h1,
  .frame242-frame h1,
  .frame243-frame h1,
  .frame244-frame h1,
  .frame245-frame h1,
  .frame246-frame h1 {
    transform: translateX(-1rem) !important;
  }

  .aboutsection .textbox p {
    width: 200px;
    text-align: left;
  }
  .aboutsection .textbox h2::before {
    height: 2px;
    width: 50px;
    left: -70px;
  }
  .aboutsection .textbox {
    margin-bottom: 30%;
    margin-top: -50%;
  }
  .frame226-frame,
  .frame227-frame,
  .frame228-frame,
  .frame229-frame,
  .frame230-frame,
  .frame231-frame,
  .frame232-frame,
  .frame233-frame,
  .frame234-frame,
  .frame235-frame,
  .frame236-frame,
  .frame237-frame,
  .frame238-frame,
  .frame239-frame,
  .frame240-frame,
  .frame241-frame,
  .frame242-frame,
  .frame243-frame,
  .frame244-frame,
  .frame245-frame,
  .frame246-frame {
    height: 220px;
    width: 256px;
  }
  .diamond-1-1,
  .validation-1-1,
  .speedometer-1-1,
  .shapes-1-1,
  .iterative-1-1,
  .hand-shake-1-1-1 .xcgn_znzdb-removebg-preview-1,
  .xf_zsdv-s-dgv-s-ef-removebg-preview-1-3,
  .asd-vzvzsdvdvszvdsz-removebg-preview-1,
  .aeragragrgagaagaga-removebg-preview-3-1,
  .sgtrbsbrtsbt-removebg-preview-1,
  .x5b49c522-ac4a-4d55-8,
  .whats-app_-image_202,
  .butter_cup_sheet-sisay4-e-gr-transformed,
  .buttf01-removebg-preview,
  .x32e7d0cb-becd-46db-8,
  .x383861-600x600-removebg-preview,
  .x58572-whipping-cream-1000ml,
  .e19dfcc0-11a7-4f1a-8,
  .oip__2_-removebg-preview,
  .x73-a4662-transformed-2 {
    position: absolute;
    height: 121px;
    margin-left: 4rem;
    margin-top: 4rem;
    object-fit: cover;
    width: 121px;
    z-index: -1;
  }
  .hand-shake-1-1-1 {
    margin-left: 4rem;
  }
  .xcgn_znzdb-removebg-preview-1 {
    margin-left: 4rem;
  }
  #carouselExampleAutoplaying {
    display: none;
    opacity: 0;
  }
  .aboutsection3 {
    transform: translateY(70%);
  }
  .card2 {
    transform: translateY(10%);
  }
  .Contact-form {
    left: -25%;
    transform: translateY(10%) !important;
  }
  .textbox3 {
    transform: translateY(-30%) !important;
  }
  .textbox2 h2 {
    transform: translateX(50px) !important;
    font-size: 40px;
  }

  .aboutsection .textbox h2 {
    width: 200px;
  }
  .containerselfyfive h2 {
    font-size: 40px;
  }
  .notificationbar .socailicons {
    transform: translateX(-25%);
  }

  header .logo {
    position: absolute;
    z-index: 100;
    height: 4.9rem;
    margin-left: 1rem;
    object-fit: cover;
  }
  .hamburgermenunav {
    transform: translateX(-25%);
  }
  .notificationbar h4 a {
    font-size: 20px;
  }
  .socailicons a {
    text-decoration: none;
    padding: 5px;
    background-color: #3ca5f1;
    margin: 10px;
    border-radius: 50%;
    color: white;
    font-size: 5px;
  }
  .carousel img {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 700px;
    position: absolute;
    top: 37%;
    transform: translateY(-180%);
    left: -10%;
    transition: opacity 0.5s;
  }
  .carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
  }
  .carousel .list .item .introduce .topic {
    font-size: 3em;
    font-weight: 500;
  }
  .carousel .list .item .introduce .des {
    font-size: medium;
    width: 40%;
    color: #000;
  }
  .containerselfyfive {
    transform: translateY(20%);
  }
  .containerselfyfive1 {
    transform: translateY(0%);
  }

  .navbar ul,
  .navbar button {
    opacity: 0;
    display: none;
  }
  .carousel video {
    top: 10%;
    left: 10%;
    height: 800px;
  }
  .hamburger {
    position: relative;
    left: 90%;
    transform: translateY(-40%);
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    width: 100%;
    height: 250px;
    transform: translateX(-30%);
    position: relative;
    top: 55%;
  }
  .OurInterest h2 {
    margin-left: 7px;
    font-size: 37px;
  }
  .rowflex img {
    margin: 0px 50px;
    height: 130px;
  }
  .row2 {
    animation-name: float;
  }
  .rowflex {
    flex-direction: column;
  }
  .logos {
    transform: translateY(0%);
  }
  .logos:before {
    display: none;
    opacity: 0;
  }

  .logos:after {
    display: none;
    opacity: 0;
  }
  .carousel1 {
    margin-top: -60%;
  }
  .ourproductssection2 {
    margin-top: -10%;
  }
  .aboutsection3 {
    margin-top: -20%;
  }
  .aboutsection img {
    display: block;
    opacity: 1;
    position: relative;
    width: 200px;
    height: 300px;
    margin: 0 70px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    animation: float 5s ease-in-out infinite;
  }
  .aboutsection img {
    margin-top: 90%;
  }
  .OurInterest {
    transform: translateY(35%);
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Bebas Neue", cursive;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    font-size: 45px;
    transform: translateX(28%);
  }
  .aboutsection p {
    color: #1e1e1e;
    font-family: "Bebas Neue", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    text-align: center;
    width: 270px;
    transform: translateX(15%);
  }
}
.footterbottom {
  background-color: #18007a;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.footterbottom p {
  margin-top: 20px;
}
.footterbottom p {
  list-style: none;
  margin-bottom: 10px;
  text-decoration: none;
  color: #bfbfbf;
}
.footterbottom p a {
  list-style: none;
  margin-bottom: 10px;
  text-decoration: none;
  color: #3ca5f1;
}
.footterbottom p a:hover {
  color: #fff;
}
.footterbottom p:hover {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .neon-button {
    display: none;
    opacity: 0;
  }
  label #btn,
  label #cancel {
    position: absolute;
    background-image: linear-gradient(to right, #18007a, #04596d);
    transition: all 5s ease-in-out;
    border-radius: 25px;
    cursor: pointer;
    display: block;
    opacity: 1;
  }
  label #btn {
    right: 30px;
    top: 75px;
    color: white;
    padding: 6px 12px;
    transition: all 1s;
    display: block;
  }
  label #cancel {
    z-index: 1111;
    right: -195px;
    top: 17px;
    font-size: 30px;
    color: white;
    padding: 4px 9px;
    transition: all 1s ease;
    display: block;
  }
  #check:checked ~ .sidebar {
    left: 0;
    display: block;
    transition: all 1s ease;
    overflow: hidden;
  }
  #check:checked ~ label #btn {
    left: 250px;
    opacity: 0;
    pointer-events: none;
    display: block;
  }
  #check:checked ~ label #cancel {
    left: 195px;
    display: block;
  }
  #check:checked ~ section {
    margin-left: 250px;
    display: block;
  }
  section {
    background: url(bg.jpeg) no-repeat;
    background-position: center;
    background-size: cover;
    height: 5vh;
    transition: all 1s ease-in;
    display: block;
  }
  .sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(17px);
    --webkit-backdrop-filter: blur(17px);
    transition: width 1s ease;
    z-index: 100;
  }
}
@media screen and (min-width: 1920px) {
  body {
    width: 1920px;
  }
  .rectangle12 {
    transform: translateX(24%);
  }
  .carousel img {
    transform: translateY(-15%);
    z-index: -1;
  }
  .aboutsection3 {
    transform: translateY(10%);
  }
  .curved-div h2:before {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    border-radius: 50px;
    background-color: #fff;
    position: absolute;
    transform: translateX(700px);
    top: 50%;
  }
  .curved-div h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 5px;
    border-radius: 50px;
    background-color: #fff;
    position: absolute;
    transform: translateX(1080px);
    top: 50%;
  }
  .carousel video {
    height: 500px;
  }
}
@media screen and (max-width: 376px) {
  .frame226-frame h1,
  .frame227-frame h1,
  .frame228-frame h1,
  .frame229-frame h1,
  .frame230-frame h1,
  .frame231-frame h1 .frame232-frame h1,
  .frame233-frame h1,
  .frame234-frame h1,
  .frame235-frame h1,
  .frame236-frame h1,
  .frame237-frame h1,
  .frame238-frame h1,
  .frame239-frame h1,
  .frame240-frame h1,
  .frame241-frame h1,
  .frame242-frame h1,
  .frame243-frame h1,
  .frame244-frame h1,
  .frame245-frame h1,
  .frame246-frame h1 {
    transform: translateX(-1rem) !important;
  }

  .aboutsection .textbox p {
    width: 200px;
    text-align: left;
  }
  .aboutsection .textbox h2::before {
    height: 2px;
    width: 50px;
    left: -70px;
  }
  .aboutsection .textbox {
    margin-bottom: 30%;
    margin-top: -50%;
  }
  .frame226-frame,
  .frame227-frame,
  .frame228-frame,
  .frame229-frame,
  .frame230-frame,
  .frame231-frame,
  .frame232-frame,
  .frame233-frame,
  .frame234-frame,
  .frame235-frame,
  .frame236-frame,
  .frame237-frame,
  .frame238-frame,
  .frame239-frame,
  .frame240-frame,
  .frame241-frame,
  .frame242-frame,
  .frame243-frame,
  .frame244-frame,
  .frame245-frame,
  .frame246-frame {
    height: 220px;
    width: 256px;
  }
  .diamond-1-1,
  .validation-1-1,
  .speedometer-1-1,
  .shapes-1-1,
  .iterative-1-1,
  .hand-shake-1-1-1 .xcgn_znzdb-removebg-preview-1,
  .xf_zsdv-s-dgv-s-ef-removebg-preview-1-3,
  .asd-vzvzsdvdvszvdsz-removebg-preview-1,
  .aeragragrgagaagaga-removebg-preview-3-1,
  .sgtrbsbrtsbt-removebg-preview-1,
  .x5b49c522-ac4a-4d55-8,
  .whats-app_-image_202,
  .butter_cup_sheet-sisay4-e-gr-transformed,
  .buttf01-removebg-preview,
  .x32e7d0cb-becd-46db-8,
  .x383861-600x600-removebg-preview,
  .x58572-whipping-cream-1000ml,
  .e19dfcc0-11a7-4f1a-8,
  .oip__2_-removebg-preview,
  .x73-a4662-transformed-2 {
    position: absolute;
    height: 121px;
    margin-left: 4rem;
    margin-top: 4rem;
    object-fit: cover;
    width: 121px;
    z-index: -1;
  }
  .hand-shake-1-1-1 {
    margin-left: 4rem;
  }
  .xcgn_znzdb-removebg-preview-1 {
    margin-left: 4rem;
  }
  #carouselExampleAutoplaying {
    display: none;
    opacity: 0;
  }
  .aboutsection3 {
    transform: translateY(70%);
  }
  .card2 {
    transform: translateY(10%);
  }
  .Contact-form {
    left: -25%;
    transform: translateY(10%) !important;
  }
  .textbox3 {
    transform: translateY(-30%) !important;
  }
  .textbox2 h2 {
    transform: translateX(50px) !important;
    font-size: 40px;
  }

  .aboutsection .textbox h2 {
    width: 200px;
  }
  .containerselfyfive h2 {
    font-size: 40px;
  }
  .notificationbar .socailicons {
    transform: translateX(-25%);
  }

  header .logo {
    position: absolute;
    z-index: 100;
    height: 4.9rem;
    margin-left: 1rem;
    object-fit: cover;
  }
  .hamburgermenunav {
    transform: translateX(-25%);
  }
  .notificationbar h4 a {
    font-size: 20px;
  }
  .socailicons a {
    text-decoration: none;
    padding: 5px;
    background-color: #3ca5f1;
    margin: 10px;
    border-radius: 50%;
    color: white;
    font-size: 5px;
  }
  .carousel img {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    opacity: 1;
    pointer-events: auto;
    width: 700px;
    position: absolute;
    top: 37%;
    transform: translateY(-180%);
    left: -10%;
    transition: opacity 0.5s;
  }
  .carousel .list .item .introduce .title {
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
  }
  .carousel .list .item .introduce .topic {
    font-size: 3em;
    font-weight: 500;
  }
  .carousel .list .item .introduce .des {
    font-size: medium;
    width: 40%;
    color: #000;
  }
  .containerselfyfive {
    transform: translateY(20%);
  }
  .containerselfyfive1 {
    transform: translateY(0%);
  }

  .navbar ul,
  .navbar button {
    opacity: 0;
    display: none;
  }
  .carousel video {
    top: 10%;
    left: 10%;
    height: 800px;
  }
  .hamburger {
    position: relative;
    left: 90%;
    transform: translateY(-40%);
  }

  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .rectangle12 {
    width: 100%;
    height: 250px;
    transform: translateX(-30%);
    position: relative;
    top: 55%;
  }
  .OurInterest h2 {
    margin-left: 7px;
    font-size: 37px;
  }
  .rowflex img {
    margin: 0px 50px;
    height: 130px;
  }
  .row2 {
    animation-name: float;
  }
  .rowflex {
    flex-direction: column;
  }
  .logos {
    transform: translateY(0%);
  }
  .logos:before {
    display: none;
    opacity: 0;
  }

  .logos:after {
    display: none;
    opacity: 0;
  }
  .carousel1 {
    margin-top: -60%;
  }
  .ourproductssection2 {
    margin-top: -10%;
  }
  .aboutsection3 {
    margin-top: -20%;
  }
  .aboutsection img {
    display: block;
    opacity: 1;
    position: relative;
    width: 200px;
    height: 300px;
    margin: 0 70px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    animation: float 5s ease-in-out infinite;
  }
  .aboutsection img {
    margin-top: 90%;
  }
  .OurInterest {
    transform: translateY(35%);
  }
  .aboutsection h2 {
    color: #000;
    font-family: "Cairo", sans-serif;
    font-size: var(--font-size-l);
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    position: relative;
    z-index: 100;
    font-size: 45px;
    transform: translateX(28%);
  }
  .aboutsection p {
    color: #1e1e1e;
    font-family: "Cairo", sans-serif;
    font-size: var(--font-size-m);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 2.3px;
    line-height: 46.5px;
    position: relative;
    text-align: center;
    width: 270px;
    transform: translateX(15%);
  }
}
