* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;

}

body {
  background-color: rgb(239, 238, 255);
  /* font-family: Arial, Helvetica, sans-serif; */
}


a:hover {
  text-decoration: none;
}

body button:focus {
  outline: none;
}


.loadingScreen {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

#page {
  display: flex;
  justify-content: center;
  align-items: center;
}

#container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#h3 {
  color: rgb(82, 79, 79);
}

#h3 img {
  width: 120px;
  animation: zoome-in 2s linear infinite;

}

@keyframes zoome-in {
  from {
    scale: 0.5;
  }

  to {
    scale: 0.8;
  }
}

#ring {
  width: 300px;
  height: 300px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}

#ring:nth-child(1) {
  border-bottom: 8px solid #081736;
  animation: rotate1 2s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }

  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}

#ring:nth-child(2) {
  border-bottom: 8px solid #0ea2dc;
  animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }

  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}

#ring:nth-child(3) {
  border-bottom: 8px solid #225d4f;
  animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }

  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}

#ring:nth-child(4) {
  border-bottom: 8px solid rgb(207, 135, 1);
  animation: rotate4 2s linear infinite;
}

@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }

  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}


.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #071b38;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff8d;
  outline: none;
  /* border: none; */
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}




/* image slider */

.slider {
  max-width: 1800px;
  margin: auto;
}

.slider .swiper {
  width: 100%;
  height: 100vh;
  margin-top: -25px;

}

.slider .swiper-slide {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 4% 5%;
  overflow: hidden;
  /* background-color: orange; */

}


.slider .swiper-slide .text {
  width: 60%;
  color: rgb(255, 255, 255);
  margin-top: 0;
  /* padding-right: 5%; */
  padding-top: 80px;
  text-align: left;
  margin-left: 4.5%;

}



.slider .swiper-slide .text h1 {
  font-size: 70px;
  width: 100%;
  color: #ffffff;
  margin-top: 50px;
  position: relative;
  z-index: 100;
  opacity: 1;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.slider .swiper-slide .text h1 span {
  color: #168bda;
}

.slider .swiper-slide .text h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 35px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.383);
}

.slider .swiper-slide .text p {
  font-size: 16px;
  margin-top: 10px;
  text-align: left;
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}

.slider .swiper-slide .btn {
  display: flex;
  flex-wrap: wrap;
}

.slider .swiper-slide button {
  padding: 12px 20px;
  border: none;
  background-color: #0276c3;
  color: white;
  border-radius: 10px;
  margin-top: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 16px;
}

.slider .swiper-slide button:hover {
  background-color: transparent;
  border: 1px solid gainsboro;

}

.slider .swiper-slide a:nth-child(2) button {
  background-color: transparent;
  border: 1px solid gainsboro;
  margin-left: 10px;
}

.slider .swiper-slide button:nth-child(2):hover {
  background-color: #0276c3;
  border: none;
}


.slider .slider1 {
  background-image: linear-gradient(to right, rgba(5, 24, 61, 0.805), rgba(0, 0, 0, 0)), url(../images/Visa\ Stamping\ Services\ 10.jpg);
  background-position: center;
  background-size: cover;
}

.slider .slider2 {
  background-image: linear-gradient(to right, rgba(5, 24, 61, 0.805), rgba(0, 0, 0, 0)), url(../images/Immigration\ &\ Visa\ Consultancy\ 2.avif);
  background-position: center;
  background-size: cover;
}

.slider .slider3 {
  background-image: linear-gradient(to right, rgba(5, 24, 61, 0.805), rgba(0, 0, 0, 0)), url(../images/Tour\ &\ Travel\ services\ 7.jpg);
  background-position: center;
  background-size: cover;
}


.slider .slider4 {
  background-image: linear-gradient(to right, rgba(5, 24, 61, 0.805), rgba(0, 0, 0, 0)), url(../images/Air\ Ticketing\ 10.jpg);
  background-position: center;
  background-size: cover;
}

.slider .slider5 {
  background-image: linear-gradient(to right, rgba(5, 24, 61, 0.805), rgba(0, 0, 0, 0)), url(../images/wakala\ service\ 2.jpg);
  background-position: center;
  background-size: cover;
}

.slider .slider6 {
  background-image: linear-gradient(to right, rgba(5, 24, 61, 0.805), rgba(0, 0, 0, 0.163)), url(../images/Manpower\ img\ 2.webp);
  background-position: center;
  background-size: cover;
}

.slider-design {
  max-width: 1800px;
  margin: auto;
  width: 100%;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  height: 80px;
  margin-bottom: -20px;
}

.slider-design .text {
  width: 50%;
  height: 80px;
  background-color: #0a1f3d;
  padding-right: 30px;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);

}

.slider-design .text .box {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  text-align: center;
  display: flex;
  justify-content: center;
  place-items: center;
  padding-top: 20px;
  z-index: 30;
  position: relative;
}

.slider-design .text .box img {
  mix-blend-mode: multiply;
  width: 80px;
  height: fit-content;
  z-index: 30;
  position: relative;
}

.slider-design .text .box h1 {
  font-size: 16px;
  z-index: 80;
  position: relative;
}

.slider-design .text .box h1 span {
  color: #0276c3;
  font-weight: 800;
  margin-left: 20px;
  z-index: 30;
  position: relative;
}





.sliderbtn {
  width: 100%;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: right;
  padding: 0 50px;
  justify-content: last baseline;
}

.sliderbtn img {
  width: 50px;
  /* border: 2px solid rgba(0, 0, 0, 0.423); */
  border-radius: 0;
  margin: 0 10px;
  padding: 12px;
  transform: rotate(0deg);
  background-color: #ffffffcf;
}

.sliderbtn img:hover {
  cursor: pointer;
  background-color: #0276c3;
  border: none;
  border: 2px solid #0276c3;

}

.sliderbtn .prev {
  transform: rotate(180deg);
}


.sec1 {
  max-width: 1800px;
  margin: auto;
  padding: 10% 5%;
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 50px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.633)), url(../images/bg\ img\ 5.jpg);
  background-position: center;
  background-size: 100% 100%;
  overflow: hidden;
  margin-top: 50px;
}

.sec1 .text {
  width: 45%;
}

.sec1 .text h5 {
  font-size: 15px;
  color: #0276c3;
}

.sec1 .text h1 {
  color: #071b38;
}

.sec1 .text h1 span {
  color: #225d4f;
}

.sec1 .text .line {
  width: 80px;
  height: 2px;
  background-image: linear-gradient(to right, rgb(13, 148, 110), rgba(0, 0, 0, 0));

}

.sec1 .text h4 {
  margin-top: 20px;
}

.sec1 .text p {
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.846);
}

.sec1 .text ul {
  width: 100%;
  display: flex;
  margin-top: 10px;
}

.sec1 .text ul li {
  width: 48%;
  display: flex;
  place-items: center;
  list-style: none;
}

.sec1 .text ul li h6 {
  font-size: 18px;
  margin-left: 20px;
}

.sec1 .text button {
  margin-top: 50px;
}

.sec1 .img-container {
  width: 45%;
  display: flex;
  position: relative;
  justify-content: space-between;
}

.sec1 .img-container .img-sec {
  width: 50%;
  justify-content: center;
  text-align: center;
}

.sec1 .img-container .img-sec img {
  width: 100%;
  margin-top: 30px;
}

.sec1 .img-container .img-sec img:first-child {
  border-radius: 50%;
  height: 230px;
  width: 95%;
  margin-top: 0;
}


.sec1 .img-container .img3 {
  width: 45%;
}

.sec1 .img-container .png {
  width: 100%;
  position: absolute;
  left: 0;
  margin-top: -150px;
  margin-left: 35%;
  opacity: 0.5;
  filter: brightness(0);
}

.sec1 .img-container .png2 {
  width: 40%;
  background-color: #071b38;
  color: white;
  position: absolute;
  left: 0;
  margin-left: -50px;
  margin-top: 300px;
  padding: 10px;
  display: flex;
  border-radius: 10px;
  place-items: center;
  justify-content: space-between;
  border: 5px solid white;
  animation: mymove infinite 5s;
}

@keyframes mymove {
  0% {
    margin-top: 300px;
  }

  50% {
    margin-top: 330px;
  }

  100% {
    margin-top: 300px;
  }
}

.sec1 .img-container .png2 h3 {
  font-size: 25px;
  color: #0276c3;
}

.sec1 .img-container .png2 h3 p {
  font-size: 15px;
  color: white;
  margin-bottom: 0;
  margin-top: 10px;
}

.sec1 .img-container .png2 img {
  height: fit-content;
  margin-left: 20px;
}

.sec2 {
  max-width: 1800px;
  margin: auto;
  padding: 0;
  padding: 20px 20px;
  background-image: linear-gradient(rgba(7, 25, 53, 0.845), rgba(12, 34, 66, 0.819)), url(../images/visa\ service\ 3.jpg);
  background-position: center;
  background-size: cover;
  margin-top: 60px;
}



.sec2-container {
  width: 95%;
  margin: auto;
  justify-content: space-evenly;
  display: flex;
  /* background-image: linear-gradient(rgba(255, 255, 255, 0.534), rgba(255, 255, 255, 0.515)), url(../images/white\ bg\ 2.PNG);
  background-position: center;
  background-size: 100% 120%; */
  border-radius: 150px;
  padding: 30px 0;
  /* box-shadow: 0 0 10px rgba(128, 128, 128, 0.121); */
}

.sec2 .box {
  width: 20%;
  color: rgb(255, 255, 255);
  overflow: hidden;
  text-align: center;
  justify-content: center;
  padding: 20px 10px;
  /* border-right: 0.1px solid rgba(248, 248, 248, 0.23); */
  padding-left: 0;
  backdrop-filter: blur(2px);
  background-color: #0000005d;
}

.sec2 .box2 {
  border: none;
}

.sec2 .box h2 {
  font-size: 40px;
}

.sec2 .box h4 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 0px;
  color: rgba(227, 227, 227, 0.952);
}

.sec2 .box h1 {
  color: #0276c3;
  width: 80%;
  margin: auto;
  /* background-color: #10b5f7; */
  font-weight: 600;
  font-size: 50px;
  border-radius: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  padding-bottom: 10px;
  /* border-bottom: 0.01px solid rgba(11, 161, 114, 0.496); */
  transition: ease-in-out 0.5s;
}

.sec2 h2 {
  margin-top: 150px;
  width: 60%;
  font-size: 50px;
  margin-left: 5%;
  font-weight: 700;
  color: white;
}

.sec2 h2 span {
  color: #0276c3;
}


.sec2 button {
  padding: 10px 30px;
  background-color: transparent;
  color: white;
  border-radius: 20px;
  border: 0.1px solid white;
  margin-top: 50px;
  margin-left: 10px;
}

.sec2 button:hover {
  background-color: #23463e;
  border: 0.1px solid #23463e;

}


.sec2 .btn1 {
  margin-left: 5%;
  background-color: #23463e;
  border: none;
}




.sec3 {
  max-width: 1800px;
  margin: auto;
  color: rgb(0, 0, 0);
  /* margin-top: -200px; */
  padding-top: 80px;
  margin-top: 40px;
  z-index: 10;
  position: relative;
  overflow: hidden;
  background: rgb(255, 255, 255);
}



.sec3 .png {
  width: 120%;
  position: absolute;
  left: 0;
  rotate: -15deg;
  margin-left: -10%;
  opacity: 0.1;
}

.sec3 .png2 {
  width: 40%;
  position: absolute;
  left: 0;
  margin-top: -230px;
  z-index: 20;
  /* mix-blend-mode: multiply; */
  margin-left: -20px;
}


.sec3 .plane {
  width: 20%;
  position: absolute;
  left: 0;
  mix-blend-mode: multiply;
  margin-top: -200px;
  z-index: 30;
}

.sec3 h5 {
  font-size: 15px;
  text-align: center;
  z-index: 30;
  margin-top: -50px;
  position: relative;
  color: rgba(0, 0, 0, 0.719);
}


.sec3 h1 {
  width: 40%;
  text-align: center;
  margin: auto;
  font-weight: 700;
  color: #0a1f3d;
  margin-top: 10px;
  z-index: 30;
  position: relative;
}

.sec3 h1 span {
  color: #0276c3;
}

.sec3 .line {
  height: 2px;
  margin: auto;
  margin-top: 10px;
  width: 60px;
  z-index: 30;
  position: relative;
  background-image: linear-gradient(to right, rgb(13, 148, 110), rgba(0, 0, 0, 0));

}


.sec3-container {
  width: 100%;
}

.sec3 .swiper {
  width: 80%;
  margin-top: -20px;
  padding: 10px;
  padding-bottom: 20px;
  z-index: 30;
  position: relative;
}

.sec3 .swiper-slide {
  padding: 20px;
  /* background-color: rgb(255, 246, 246); */
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  border: 0.1px solid rgba(0, 0, 0, 0.419);
}

.sec3 .swiper-slide .text {
  width: 100%;
  background-color: white;
  padding: 30px 20px;
  transition: ease-in-out 0.5s;
  border-radius: 8px;
  position: relative;
}

.sec3 .swiper-slide .text:hover {
  color: white;
}

.sec3 .swiper-slide .text .color-box {
  width: 100%;
  height: 100%;
  margin-left: -20px;
  margin-top: -380px;
  position: absolute;
  transition: ease-in-out 0.5s;
  background-color: #0a1530;
}

.sec3 .swiper-slide .text:hover .color-box {
  margin-top: -30px;
  border-radius: 10px;
}

.sec3 .swiper-slide .icon {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 0;
  margin-left: 5px;
  padding: 10px;
  rotate: 45deg;
  z-index: 10;
  border-radius: 5px;
  background-color: #0276c3;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.131);
}

.sec3 .swiper-slide .text:hover .icon {
  background-color: white;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.302);

}

.sec3 .swiper-slide .icon img {
  width: 90%;
  rotate: -45deg;
}

.sec3 .swiper-slide .text h4 {
  font-size: 25px;
  width: 40%;
  margin: auto;
  position: relative;
  z-index: 10;
}

.sec3 .swiper-slide .text p {
  font-size: 13px;
  width: 80%;
  margin: auto;
  z-index: 10;
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 0.1px solid orangered;
  transition: ease-in-out 0.1s;
}

.sec3 .swiper-slide .text:hover p {
  border-bottom: 0.1px solid rgb(255, 255, 255);

}


.sec3 .swiper-slide .text button {
  padding: 9px 15px;
  border: none;
  font-size: 13px;
  margin: auto;
  z-index: 10;
  position: relative;
  display: flex;
  border-radius: 5px;
  margin-top: 20px;
  background-color: rgb(251, 234, 234);

}

.sec3 .swiper-slide .text:hover button {
  background-color: white;
}

.sec3 .swiper-slide .text button .img {
  width: 20px;
  background-color: rgb(255, 245, 245);
  padding: 0;
  border-radius: 50%;
  margin-left: 10px;
}

.sec3 .swiper-slide .text button img {
  width: 18px;
  position: relative;
  padding: 0;
  rotate: -30deg;
  filter: brightness(0);
  background-color: transparent;
  transition: ease-in-out 0.3s;
}

.sec3 .swiper-slide .text:hover button img {
  background-color: #0276c3;
  filter: brightness(1);
  border-radius: 50px;
  rotate: 0deg;
}





.sec4 {
  max-width: 1800px;
  margin: auto;
  /* margin-top: 80px; */
  /* margin-bottom: 5px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  overflow: hidden;
}

.sec4-container {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  /* background-color: #000000; */
}

.sec4-container .box {
  width: 33.33%;
  background-color: white;
  padding: 3.8%;
  padding-bottom: 8%;
  position: relative;
  overflow: hidden;
  /* transition: ease-in-out 0.5s; */
}

.sec4-container .box .color-box {
  width: 100%;
  height: 150%;
  left: 0;
  top: 0;
  margin-top: -200px;
  rotate: 30deg;
  position: absolute;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.626), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  margin-left: -150%;
  transition: ease-in-out 0.8s;

}

.sec4-container .box:hover .color-box {
  margin-left: 100%;
}

.sec4-container .box1 {
  background-image: linear-gradient(rgba(255, 255, 255, 0.626), rgba(255, 255, 255, 0.685)), url(../images/Tour\ &\ Travel\ 8.jpg);
  background-position: center;
  background-size: cover;
}

.sec4-container .box1:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.711)), url(../images/Tour\ &\ Travel\ 8.jpg);
  background-position: center;
  background-size: cover;
  color: white;
}

.sec4-container .box3 {
  background-image: linear-gradient(rgba(255, 255, 255, 0.762), rgba(255, 255, 255, 0.749)), url(../images/Hajj\ &\ Umrah\ services.jpg);
  background-position: center;
  background-size: cover;
}

.sec4-container .box3:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.711)), url(../images/Hajj\ &\ Umrah\ services.jpg);
  background-position: center;
  background-size: cover;
  color: white;
}

.sec4-container .box5 {
  background-image: linear-gradient(rgba(255, 255, 255, 0.69), rgba(255, 255, 255, 0.69)), url(../images/Tour\ &\ Travel\ services.jpg);
  background-position: center;
  background-size: cover;
}

.sec4-container .box5:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.711)), url(../images/Tour\ &\ Travel\ services.jpg);
  background-position: center;
  background-size: cover;
  color: white;
}



.sec4-container .box:nth-child(even) {
  background-color: white;
}

.sec4-container .box2:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.711)), url(../images/Tour\ &\ Travel\ 9.webp);
  background-position: center;
  background-size: cover;
  color: white;
}

.sec4-container .box4:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.711)), url(../images/Air\ Ticketing\ 14.jpg);
  background-position: center;
  background-size: cover;
  color: white;
}

.sec4-container .box6:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.711)), url(../images/Visa\ Stamping\ Services\ 3.jpg);
  background-position: center;
  background-size: cover;
  color: white;
}


.sec4-container .box img {
  width: 70px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 50%;
}

.sec4-container .box h3 {
  margin-top: 50px;
  font-size: 30px;
}

.sec4-container .box p {
  margin-top: 30px;
  font-size: 16px;
}


.sec4-container2 {
  width: 25%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.504), rgba(0, 0, 0, 0.504)), url(../images/saudi\ img\ 7.jpg);
  background-position: center;
  background-size: cover;
  padding: 5%;
  justify-content: center;
}


.sec4-container2 h1 {
  width: 70%;
  margin: auto;
  font-size: 45px;
  line-height: 60px;
  color: white;
  margin-top: 150px;
  text-align: center;
}

.sec5 {
  max-width: 1800px;
  margin: auto;
  padding: 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  place-items: center;
  position: relative;
  margin-bottom: 50px;
}

.sec5 .text {
  width: 45%;
  /* background-color: #f4dadf; */
  padding: 50px;
  margin: 0 20px;
  height: 400px;
  border-radius: 10px;
  padding-bottom: 50px;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.483), rgba(0, 0, 0, 0.908)), url(../images/saudi\ visa\ stamping\ 8.webp);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.sec5 .text img {
  width: 65%;
  position: absolute;
  right: 0;
  margin-top: -150px;
  margin-right: -50px;
}

.sec5 .text:nth-child(2) {
  background-color: #e2d499;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.483), rgba(0, 0, 0, 0.908)), url(../images/Kuwait\ visa\ stampting\ 4.jpg);
  background-position: center;
  background-size: cover;
}

.sec5 .text h1 {
  width: 100%;
  font-size: 35px;
  font-weight: 600;
  margin-top: 180px;
  color: #ffffff;
  transition: ease-in-out 0.6s;
}

.sec5 .text:hover h1 {
  margin-top: 120px;
}

.sec5 .text h1 span {
  color: #7d4924;
}

.sec5 .text p {
  width: 100%;
  font-size: 16px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.603);
}

.sec5 .text button {
  margin-top: 50px;
  font-weight: 500;
}

.sec5 .text:hover button {
  margin-top: 10px;
}



.sec6 {
  max-width: 1800px;
  margin: auto;
  background-image: linear-gradient(rgba(216, 225, 255, 0.391), rgba(225, 227, 255, 0.469)), url(../images/bg\ img\ 4.avif);
  background-position: center;
  background-size: 100% 100%;
  padding: 0;
  position: relative;
  padding: 7%;
}

.sec6 .color-box {
  width: 40%;
  height: 100%;
  background-color: #0a1f3dd0;
  clip-path: polygon(100% 0, 64% 54%, 100% 100%, 0 100%, 0 0);
  position: absolute;
  left: 0;
  margin-top: -7%;
}


.sec6 .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 50;
  position: relative;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.323);
  backdrop-filter: blur(6px);
}

.sec6 .container .text {
  width: 30%;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 50px;
  text-align: left;
  justify-content: last baseline;
}

.sec6 .container .text h5 {
  color: #000000;
}

.sec6 .container .text h1 {
  color: #0276c3;
  font-weight: 600;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.sec6 .container .text p {
  color: rgba(0, 0, 0, 0.741);
}

.sec6 .container .text button {
  font-weight: 500;
}

.sec6-container {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}

.sec6-container .box {
  width: 50%;
  padding: 50px;
  text-align: left;
  transition: ease-in-out 0.5s;
  overflow: hidden;
  border: 0.1px solid rgb(255, 255, 255);
  position: relative;
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.391);
  /* background-image: linear-gradient( rgba(239, 212, 212, 0.523), rgba(255, 255, 255, 0.484)); */
}

.sec6-container .box:hover {
  background-color: white;
}

.sec6-container .box h2 {
  width: 100%;
  display: flex;
  color: #225d4f;
  justify-content: space-between;
  font-size: 25px;
}

.sec6-container .box .line {
  width: 80px;
  height: 2px;
  margin-top: -20px;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, rgba(196, 20, 20, 0.631), rgba(255, 255, 255, 0.484));
}

.sec6-container .box h2 img {
  width: 50px;
  position: relative;
  margin: auto;
  clip-path: polygon(100% 0, 100% 63%, 100% 100%, 0 100%, 0 0);
}

.sec6-container .box p {
  color: rgba(0, 0, 0, 0.781);
}

.sec6-container .box h3 {
  font-size: 50px;
  color: #0276c342;
  position: absolute;
  right: 0;
  margin-top: -30px;
  margin-right: 20px;
}


.sec7 {
  max-width: 1800px;
  margin: auto;
  padding: 20px 0%;
  padding-bottom: 40px;
  justify-content: space-evenly;
  padding-top: 80px;
  padding-bottom: 80px;
}

.sec7 h5 {
  width: 100%;
  text-align: center;
  font-size: 15px;
}

.sec7 h2 {
  width: 50%;
  margin: auto;
  text-align: center;
  font-size: 38px;
  color: #0a1f3d;
  font-weight: 800;
  margin-top: 10px;
}

.sec7 h2 span {
  color: #0276c3;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.sec7 .line {
  height: 2px;
  width: 100px;
  margin: auto;
  background-image: linear-gradient(to right, rgb(13, 148, 110), rgba(0, 0, 0, 0));
  margin-top: 10px;
}


.sec7 .swiper {
  width: 100%;
}

.sec7 .swiper-slide {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
}

.sec7 .swiper-slide img {
  width: 160px;
  height: 100px;
  /* border-radius: 50%; */
  border: 0.1px solid rgba(0, 0, 0, 0.135);
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.434);
  transition: ease-in-out 0.3s;
}

.sec7 .swiper-slide:hover img {
  /* rotate: 360deg; */
  border-radius: 50%;

}

.sec7 .swiper-slide:hover {
  /* background-image: linear-gradient(rgba(13, 25, 62, 0.74), rgba(5, 7, 36, 0.799)), url(../images/visa\ service\ 3.jpg);
  background-position: center;
  background-size: cover; */
  border-radius: 20px;
}

.sec7 .swiper-slide h1 {
  font-size: 30px;
  font-style: italic;
  margin-top: 10px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0000009d;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  /* border: 0.1px solid black; */
  color: rgb(0, 0, 0);

}

.sec7 .swiper-slide:hover h1 {
  -webkit-text-stroke-color: #ffffff9d;
  color: rgb(223, 91, 91);

}


.sec8 {
  max-width: 1800px;
  margin: auto;
  padding: 5% 6%;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.sec8 .png {
  width: 22%;
  height: 80%;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.253);
  position: absolute;
  margin-top: -20px;
  margin-left: -100px;
  left: 0;
}

.sec8 h1 {
  width: fit-content;
  text-align: left;
  margin-top: 20px;
  font-size: 45px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  z-index: 10;
  position: relative;
  font-family: "Quicksand"
    sans-serif;
  background-color: white;
  z-index: 20;
  padding: 10px;
  border-radius: 10px;
}

.sec8 h1 span {
  color: #e32020;
}


.sec8-container {
  width: 100%;
  margin: auto;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec8-container .box {
  width: 31%;
  padding: 3%;
  display: flex;
  justify-content: space-evenly;
  place-items: center;
  border-radius: 10px;
  z-index: 10;
  color: #ffffff;
  background-color: #0a1f3d;
  box-shadow: 0 0 5px rgba(128, 128, 128, 0.653);
}

.sec8-container .box:hover {
  background-color: #0a1f3d;
  color: white;
}

.sec8-container .box img {
  width: 25%;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 8px;
  margin-left: -60px;
}

.sec8-container .box h3 {
  /* width: 50%; */
  margin-left: 30px;
  font-size: 25px;
}

.sec8-container .box:nth-child(3) img {
  width: 28%;
}


.sec9 {
  max-width: 1800px;
  margin: auto;
  padding: 4% 2%;
  width: 100%;
  color: rgb(0, 0, 0);
  position: relative;
  overflow: hidden;
}

.sec9 .png2 {
  width: 500px;
  position: absolute;
  margin-right: -350px;
  right: 0;
  margin-top: 11%;
}

.sec9 .png {
  width: 400px;
  height: 400px;
  background-color: #64b4eede;
  position: absolute;
  border-radius: 50%;
  margin-left: -200px;
  margin-top: -50px;
  display: none;
}

.sec9 .head-tx {
  width: 95%;
  text-align: left;
  margin: auto;
  position: relative;
  z-index: 10;
  margin-top: 10px;
}

.sec9 h5 {
  width: 100%;
  font-size: 20px;
  color: #0276c3;
}

.sec9 h5 img {
  width: 30px;
}

.sec9 h1 {
  font-size: 35px;
  color: #0a1f3d;
  text-align: left;
  width: 70%;
  /* margin: auto; */
  /* margin-left: 5%; */
  margin-top: 20px;
  font-weight: 700;
  /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
}


.sec9 .swiper {
  width: 95%;
  margin: auto;
  /* height: 100%; */
  overflow: hidden;
  padding-bottom: 00px;
  padding-top: 0px;
  margin-top: 50px;
}

.sec9 .swiper-slide {
  text-align: center;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.sec9 .swiper-slide .img {
  overflow: hidden;
}

.sec9 .swiper-slide .img img {
  width: 100%;
  height: 350px;
  border-radius: 0px;
  transition: ease-in-out 0.5s;
  /* opacity: 0.8; */
  box-shadow: 10px 10px 5px rgba(2, 36, 23, 0.428);
}

.sec9 .swiper-slide .text {
  width: 100%;
  margin-top: -150px;
  z-index: 10;
  position: relative;
  text-align: left;
  padding: 00px;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  place-items: center;
  background-image: linear-gradient(rgba(0, 2, 28, 0), rgba(0, 0, 0, 0.759), rgba(9, 16, 72, 0.948));
  /* background-color: #000000; */
}

.sec9 .swiper-slide:hover .text {
  background-image: linear-gradient(rgba(0, 2, 28, 0), rgba(10, 86, 122, 0.865), rgb(17, 75, 133));
  color: black;
}

.sec9 .swiper-slide .text .heading {
  width: 100%;
  padding: 15px;
}

.sec9 .swiper-slide .text img {
  height: fit-content;
  width: 40px;
  filter: brightness(50);
  display: none;
}


.sec9 .swiper-slide h4 {
  font-size: 22px;
  color: #ffffff;
  position: relative;
  z-index: 10;
  font-weight: 600;
  width: 100%;
}


.sec9 .swiper-slide h5 {
  font-size: 16px;
  color: #0276c3;
  margin: auto;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 11;
  text-align: left;
  background-color: transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);

}

.sec9 .swiper-slide .text .btn {
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 50%;
  margin-right: -60px;
  margin-top: 15px;
}

.sec9 .swiper-slide .text .btn img {
  margin-top: 20px;
  width: 30px;
  margin-left: -40px;
  filter: brightness(1);
}


.sec10 {
  max-width: 1800px;
  margin: auto;
  padding: 10px 4%;
  margin-bottom: -20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.sec10 .png {
  width: 100px;
  position: absolute;
  left: 0;
}

.sec10 .png2 {
  width: 30%;
  position: absolute;
  /* left: 0; */
  rotate: 180deg;
  opacity: 0.8;
  margin-top: -100px;
}


.sec10 .text-sec {
  width: 30%;
  background-color: #cee2f5;
  margin-right: 3%;
  border-radius: 30px;
  padding: 50px 50px;
  margin-top: 20px;
  padding-top: 60px;
  color: white;
  position: relative;
  z-index: 20;
}

.sec10 .text-sec h5 {
  color: #0276c3;
}

.sec10 .text-sec h1 {
  font-weight: 600;
  color: rgb(0, 0, 0);
  font-family: Arial, Helvetica, sans-serif;
}

.sec10 .text-sec button {
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  margin-top: 20px;
  color: rgb(255, 255, 255);
  background-color: #0a1f3d;
}


.sec10 .text-sec .line {
  width: 100%;
  height: 1px;
  background-color: rgba(18, 29, 110, 0.894);
  margin-top: 20px;
}

.sec10 .text-sec .box {
  width: 100%;
  display: flex;
  margin-top: 30px;
  color: black;
  place-items: center;
}

.sec10 .text-sec .box img {
  width: 50px;
  height: fit-content;
  margin-right: 20px;
  filter: brightness(0);
}

.sec10 .text-sec .box p {
  margin: 0;
  margin-bottom: 0;
  color: #0276c3;
}

.sec10 .form-sec {
  width: 50%;
  position: relative;
  z-index: 20;
}

.sec10 .form-sec h4 {
  width: fit-content;
  font-size: 25px;
  border-radius: 10px;
  color: #0276c3;
  font-weight: 800;
}

.sec10 .form-sec h1 {
  width: 80%;
  font-size: 35px;
}

.sec10 .form-sec form {
  width: 100%;
  padding: 0 30px;
  background-color: #071b38;
  border-radius: 30px;
  box-shadow: 0 0 8px rgb(201, 201, 201);
  padding-bottom: 50px;
}

.sec10 .form-sec h3 {
  text-align: center;
  font-size: 30px;
  /* background-color: #0276c3; */
  border-radius: 0 0 20px 20px;
  width: fit-content;
  margin: auto;
  padding: 8px 30px;
  margin-top: 20px;
  margin-bottom: -10px;
  padding-top: 30px;
  color: #0276c3;
}

.sec10 .form-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.sec10 .form-sec form p {
  margin: 0;
}

.sec10 .form-sec .input-con {
  width: 48%;
  margin-top: 30px;
}

.sec10 .form-sec .input-con .box {
  width: 100%;
}

.sec10 .input-con .box p {
  margin: 0;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.763);
  margin-left: 5px;
}

.sec10 .input-con .box input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.856);
  border-radius: 5px;
  padding: 10px;
  border: none;
  margin-top: 5px;
}

.sec10 .input-con .box input:focus {
  outline: none;
}


.sec10 .input-con .box textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.856);
  border-radius: 5px;
  padding: 10px;
  border: none;
  margin-top: 5px;
}

.sec10 .input-con .box textarea:focus {
  outline: none;
}

.sec10 .input-con .box button {
  margin: auto;
  padding: 8px 30px;
  border-radius: 20px;
  border: none;
  background-color: #0276c3;
  color: white;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
  margin-left: 30%;
}

.sec10 .email-num-sec {
  width: 80%;
  background-color: #0276c3;
  display: flex;
  justify-content: space-between;
  margin-bottom: -50px;
  margin-top: 30px;
  border-radius: 20px;
  padding: 10px 30px;
  display: none;
}

.sec10 .email-num-sec .box {
  width: 50%;
  display: flex;
  justify-content: center;
  text-align: center;
  text-align: left;
  place-items: center;
}

.sec10 .email-num-sec img {
  width: 30px;
  height: fit-content;
}

.sec10 .email-num-sec .box p {
  margin: 0;
}

.sec10 img {
  width: 40%;
  margin-bottom: -20px;
}

.sec11 {
  max-width: 1800px;
  margin: auto;
  width: 100%;
  padding: 0;
  overflow: hidden;
  padding: 50px 0px;
  position: relative;
  margin-bottom: 0;
  margin-bottom: -50px;
}

.sec11 .color-box {
  width: 100%;
  height: 280px;
  position: absolute;
  left: 0;
  z-index: 10;
  /* background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgb(255, 255, 255)); */

}

.marquee {
  width: 100%;
}

.marquee-box-one {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 3em 0 0 0;
}

.marquee-content-one {
  display: flex;
  gap: 40px;
  padding: 0 20px;
  animation: scroll-one 50s linear infinite;
}

.marquee-box-two {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 3em 0 6em 0;
}

.marquee-content-two {
  display: flex;
  gap: 40px;
  padding: 0 20px;
  animation: scroll-two 50s linear infinite;
}

.marquee-content-two:hover {
  animation: none;
}

.marquee img {
  width: 150px;
  height: 90px;
  border: 0.2px solid #0a1f3d2b;
  border-radius: 10px;
  padding: 10px;
  background-color: white;
}

@keyframes scroll-one {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-two {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}




.sec12 {
  max-width: 1800px;
  margin: auto;
  display: flex;
  width: 90%;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 10;
  position: relative;
  margin-top: 20px;
  padding: 20px 0;
  margin-bottom: -100px;
  place-items: center;
  border-radius: 100px;
  background-color: #ffffff;
}

.sec12 .contact {
  width: 100%;
  padding: 20px 0;
  color: rgb(0, 0, 0);
  place-items: center;
  display: flex;
  justify-content: center;
}

.sec12 .contact h5 {
  width: 45%;
  font-size: 30px;
  color: #000000;
  margin-top: 20px;
  /* text-transform: uppercase; */
  padding-left: 0;
}

.sec12 .contact h5 span {
  color: #0276c3;
}

.sec12 .contact .btn {
  width: 40%;
  display: flex;
  margin-top: 15px;
  margin-left: 20px;
  justify-content: right;
}

.sec12 .contact input {
  width: 80%;
  padding: 10px;
  padding-left: 20px;
  border-radius: 30px;
  border: 0.2px solid rgba(0, 0, 0, 0.385);
  color: rgb(0, 0, 0);
  background-color: transparent;
}

.sec12 .contact input:focus {
  outline: none;
}

.sec12 .contact button {
  padding: 10px;
  border: none;
  background-color: #0276c3;
  /* margin-left: -5px; */
  color: rgb(0, 0, 0);
  border-radius: 50%;
  margin-left: -40px;
}

.sec12 .contact button:focus {
  outline: none;
}

.sec12 .contact button img {
  width: 30px;
  /* filter: brightness(0); */
}


.sec13 {
  max-width: 1800px;
  margin: auto;
  padding: 8% 5%;
  background-image: linear-gradient(rgba(6, 30, 91, 0.731), rgba(14, 22, 104, 0.646)), url(../images/About\ Us.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: white;
  padding-bottom: 15%;
  margin: 0;
}

.sec13 h3 {
  font-size: 40px;
}

.sec13 h1 {
  font-size: 55px;
  font-weight: bold;
}

.sec13 p {
  width: 60%;
  margin: auto;
  margin-top: 30px;
  font-size: 18px;
}

.sec13 .btn {
  width: 100%;
  display: flex;
  place-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.sec13 .btn button {
  padding: 10px 30px;
  color: white;
  border: none;
  background-color: #e32020;
  padding-left: 50px;
}

.sec13 .btn button:first-child {
  padding-right: 50px;
  padding-left: 30px;
}

.sec13 .btn button:hover {
  background: #000;
  color: white;
}

.sec13 .btn h5 {
  height: 100%;
  background-color: white;
  padding: 10px 30px;
  margin: 0;
  clip-path: polygon(41% 0, 100% 0, 57% 100%, 0% 100%);
  margin-left: -35px;
  margin-right: -35px;
}



.sec14 {
  max-width: 1800px;
  margin: auto;
  text-align: center;
  margin-bottom: 150px;
  /* padding-top: 50px; */
}

.sec14 .text-sec {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  place-items: center;
  background-color: #0a1f3d;
}

.sec14 .text-sec .tx {
  width: 75%;
}

.sec14 .text-sec h1 {
  text-align: left;
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-left: 4%;
}


.sec14 .text-sec .box {
  width: 25%;
  height: 100%;
  background-color: #0276c3;
  padding-left: 20px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}

.sec14 .text-sec .box .line {
  width: 60px;
  height: 80px;
  background-color: white;
  clip-path: polygon(71% 0, 100% 0, 25% 100%, 0 100%);

}

.sec14 .text-sec p {
  margin-left: 10%;
  font-size: 18px;
  color: white;
  font-weight: normal;
  font-family: Arial, Helvetica, sans-serif;
}

.sec14 .text-sec button {
  margin-left: 10%;
  background-color: transparent;
  border: none;
  color: #ffffffbd;
}

.sec14 .text-sec button img {
  width: 30px;
  /* filter: brightness(0); */
  opacity: 0.5;
}

.sec14 .team-member {
  width: 95%;
  margin: auto;
  justify-content: space-between;
  display: flex;
  margin-top: 50px;
}

.sec14 .team-member .box {
  width: 33%;
  margin: 0 10px;
  background-color: #202020;
  color: white;
  margin-bottom: -150px;
  padding-bottom: 20px;
}

.sec14 .team-member .box img {
  width: 100%;
}

.sec14 .team-member .box h6 {
  font-size: 20px;
}

.sec14 .team-member .box h3 {
  margin-top: 30px;
  color: #e32020;
}




.sec15 {
  max-width: 1800px;
  margin: auto;
  padding: 5% 2%;
  margin-bottom: 2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  position: relative;
  place-items: center;
  background-color: #071b38;
  overflow: hidden;
}


.sec15 img {
  width: 42%;
  /* height: 350px; */
  /* height: auto; */
  z-index: 10;
  position: relative;
  /* border-radius: 50%; */
  /* border: 10px solid white; */
  /* margin-left: -5%; */
}

.sec15 .text {
  width: 45%;
  color: rgb(255, 255, 255);
}


.sec15 .text h1 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 20px;
  /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
}

.sec15 .text h1 span {
  color: #0276c3;
  /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
}

.sec15 .line {
  width: 80px;
  height: 2px;
  margin-top: -5px;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, rgb(13, 148, 110), rgba(0, 0, 0, 0));
}

.sec15 .text button {
  margin-top: 30px;
  font-weight: 500;
}





.sec16 {
  max-width: 1800px;
  margin: auto;
  text-align: center;
}

.sec16 .heading-sec {
  width: 80%;
  margin: auto;
  margin-top: -150px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
}

.sec16 .heading-sec h3 {
  font-weight: 400;
  margin-top: 20px;
  font-size: 20px;
}

.sec16 .heading-sec h5 {
  width: 100%;
  display: flex;
  justify-content: center;
  place-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.sec16 .heading-sec h5 .line {
  width: 35px;
  height: 3px;
  background-color: rgba(255, 0, 0, 0.272);

}

.sec16 .heading-sec h5 .box {
  width: 60px;
  height: 15px;
  border-radius: 5px;
  background-color: rgba(255, 0, 0, 0.596);
}

.sec16 .btn-container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  opacity: 0.8;
  margin-top: 00px;
  border-bottom: 2px solid rgb(123, 168, 201);
}

.sec16 .btn-container .btn {
  width: 16.66%;
  margin-bottom: -20px;
  padding: 15px 10px;
  opacity: 0.5;
}

.sec16 .btn-container #btn1 {
  background-color: #8cfee4;
  border-bottom: 10px solid #01011b;
  opacity: 1;
}

.sec16 .btn-container h4 {
  font-size: 18px;
  font-weight: 400;

}

.sec16-container {
  margin: auto;
  width: 80%;
  margin-top: 50px;
}

.sec16-container #service-container2 {
  display: none;
}

.sec16-container #service-container3 {
  display: none;
}

.sec16-container #service-container4 {
  display: none;
}

.sec16-container #service-container5 {
  display: none;
}

.sec16-container #service-container6 {
  display: none;
}

.sec16-container .box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec16-container img {
  width: 55%;
  height: 450px;
  border-radius: 10px;
}

.sec16-container .text {
  width: 45%;
  text-align: center;
  justify-content: center;
  display: grid;
  padding: 0 50px;
  padding-right: 0;
}

.sec16-container .text h6 {
  text-align: left;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.43);
}

.sec16-container .text .line {
  width: 50px;
  height: 2px;
  opacity: 0.5;
  background-color: red;
}

.sec16-container .text h1 {
  width: 100%;
  text-align: left;
  font-size: 30px;
  font-weight: 800;
  margin-top: 20px;
}

.sec16-container .text p {
  width: 100%;
  text-align: left;
  margin-top: 20px;
  line-height: 30px;
  font-size: 16px;
}

.sec16-container .text ul {
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec16-container .text ul li {
  width: 30%;
  margin-top: 30px;
  display: flex;
  list-style: none;
  place-items: center;
  text-align: left;
  color: rgb(4, 54, 142);
}

.sec16-container .text ul li span {
  padding: 8px;
  background-color: #eb7a7a;
  margin-right: 10px;
  border-radius: 50%;
  color: white;
}


.sec16-container .text button {
  padding: 8px 20px;
  border-radius: 30px;
  border: none;
  color: white;
  margin: auto;
  margin-left: 0;
  background-color: #eb7a7a;
  margin-top: 30px;
}


.sec17 {
  max-width: 1800px;
  margin: auto;
  padding: 150px 30px;
  background-image: linear-gradient(rgba(16, 7, 58, 0), rgba(5, 11, 58, 0)), url(../images/white\ bg\ 4.PNG);
  background-position: center;
  background-size: 100% 100%;
  margin-bottom: -5px;
  padding-top: 20px;
  margin-top: 20px;
}

.sec17 h5 {
  font-size: 15px;
  margin: auto;
  text-align: center;
}

.sec17 h1 {
  width: 50%;
  margin: auto;
  font-size: 45px;
  color: #0a1f3d;
  text-align: center;
  font-weight: 700;
}

.sec17 h1 span {
  color: #0276c3;
}

.sec17 .line {
  width: 100px;
  margin: auto;
  height: 2px;
  background-image: linear-gradient(to right, rgb(13, 148, 110), rgba(0, 0, 0, 0));
}

.sec17-container {
  width: 100%;
  display: flex;
  margin-top: 35px;
  justify-content: center;
}

.sec17-container .box {
  width: 22%;
  border-radius: 5px;
  display: flex;
  margin: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background-color: #071b38;
}

.sec17-container .box:hover {
  background-color: #0a1f3d;
}

.sec17-container .box .tx {
  width: 60%;

}

.sec17-container .box .img {
  position: absolute;
  width: 40%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.86);
  padding: 30px;
  border-radius: 50%;
  margin-top: -40px;
  margin-right: -20px;
}

.sec17-container .box:hover .img {
  background-color: #0276c3;

}

.sec17-container .box .img img {
  width: 100%;
  filter: brightness(0);
}

.sec17-container .box:hover .img img {
  filter: brightness(1);
}

.sec17-container .box p {
  display: none;
}

.sec17-container .box h5 {
  font-size: 20px;
  text-align: left;
  margin-top: 20px;
  color: #ffffff;
  margin-left: 10px;
  margin-bottom: 10px;
}

.sec17-container .box:hover h5 {
  color: white;
}

.sec17 h3 {
  font-size: 15px;
  width: fit-content;
  margin: auto;
  color: white;
  background-color: #0a1f3d;
  padding: 5px;
  border-radius: 30px;
  margin-top: 50px;
  padding-left: 20px;
}

.sec17 h3:hover {
  background-color: #225d4f;
}

.sec17 h3 button {
  padding: 10px 30px;
  border: none;
  margin-left: 20px;
  border-radius: 20px;
  background-color: white;
}


.sec18 {
  max-width: 1800px;
  margin: auto;
  margin-top: 80px;
}

.sec18-container {
  width: 80%;
  background-color: #0a1f3d;
  display: flex;
  margin: auto;
  border-radius: 20px;
  place-items: center;
  color: white;
  padding-left: 3%;
  margin-bottom: -100px;
  z-index: 10;
  padding-top: 10px;
  position: relative;
}

.sec18-container .tx {
  width: 40%;
}

.sec18-container .tx h5 {
  color: #ffffff65;
  font-size: 18px;
}

.sec18-container .tx h1 {
  color: rgb(255, 255, 255);
  margin-top: 10px;
}


.sec18-container .tx h1 span {
  color: #0276c3;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.sec18-container ul {
  width: 20%;
}

.sec18-container ul li {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.632);
}

.sec18-container img {
  width: 40%;
  margin-top: -100px;
}


.sec19 {
  max-width: 1800px;
  margin: auto;
  padding: 4%;
  display: flex;
  padding-top: 200px;
  flex-wrap: wrap;
  background-image: linear-gradient(rgba(166, 198, 229, 0.875), rgba(187, 200, 224, 0.875)), url(../images/white\ bg\ 5.avif);
  background-position: center;
  background-size: 100% 120%;
  justify-content: space-evenly;
}

.sec19 .png {
  width: 15%;
  right: 0;
  position: absolute;
  margin-top: 300px;
  /* opacity: 0.8; */
}

.sec19 .img {
  width: 50%;
}

.sec19 .img img {
  width: 100%;
}

.sec19 .text {
  width: 45%;
}

.sec19 .text h5 {
  color: #0276c3;
}

.sec19 .text h1 {
  font-size: 45px;
  color: #0a1f3d;
}

.sec19 button {
  padding: 10px 20px;
  border: none;
  background-color: #0a1f3d;
  color: white;
  margin-top: 20px;
  margin-right: 10px;
}


.sec20 {
  max-width: 1800px;
  margin: auto;
  width: 100%;
  /* background-image: linear-gradient(to top, rgba(255, 255, 255, 0.303), rgba(255, 255, 255, 0)), url(../images/bg\ img\ 2.PNG); */
  background-position: center;
  background-size: 110% 100%;
  /* margin-bottom: 100px; */
  /* padding: 4%; */
  justify-content: space-between;
  display: flex;
  place-items: center;
}

.sec20 .text {
  width: 50%;
  padding-left: 5%;
}

.sec20 .text .line {
  width: 80px;
  height: 2px;
  margin-top: 10px;
  background-image: linear-gradient(to right, rgb(13, 148, 110), rgba(0, 0, 0, 0));

}

.sec20 .text h1 {
  font-size: 45px;
  color: #0a1f3d;
}

.sec20 .text p {
  margin-top: 30px;
}

.sec20 .text button {
  margin-top: 30px;
}

.sec20 img {
  width: 50%;
  /* border-radius: 50%; */
  height: fit-content;
  /* border: 10px solid white; */
}



.whatsapp {
  max-width: 1800px;
  margin: auto;
  position: fixed;
  z-index: 50;
  width: fit-content;
  right: 0;
  margin-top: 28%;
  margin-right: 30px;
}

.whatsapp img {
  width: 35px;
  margin-bottom: 20px;
  /* position: absolute; */

}




/* footer style  */

.footer {
  max-width: 1800px;
  margin: auto;
  padding: 60px 0;
  padding-bottom: 0;
  margin-top: 0;
  background-color: #071b38;
  background-attachment: fixed;
  border-top: 2px solid white;
  padding-top: 150px;
}

.footer-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 50px;
  padding-bottom: 00px;
  /* background-color: #6a4646; */
}

.sec2-text {
  width: 25%;
}

.sec2-text .line {
  width: 100%;
  height: 1px;
  background-color: #ffffff40;
  margin-top: 5px;
  margin-bottom: 20px;
  margin-right: 8px;
}


.sec2-text .line .tx {
  width: 30px;
  height: 100%;
  transition: ease-in-out 0.5s;
}

.sec2-text:hover .line .tx {
  width: 100%;
}

#sec2-other-links {
  width: 20%;
}

#sec2-other-links2 {
  width: 10%;
}

.sec2-text li span {
  color: #0276c3;
  margin-right: 10px;
}

.sec2-text li:hover {
  margin-left: 10px;
}

.sec2-text h1 {
  font-size: 25px;
  font-weight: 600;
  color: #0276c3;
  display: flex;
  place-items: center;
  margin-bottom: 20px;
}


.sec2-text h2 {
  font-size: 18px;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.sec2-text h2 span {
  color: #0276c3;
  font-weight: bold;
}

.sec2-text h5 {
  font-size: 18px;
}

.sec2-text .d span {
  color: #0276c3;
  padding: 3px;
  height: 25px;
  border-radius: 5px;
  margin-right: 5px;
}

.sec2-text .d {
  display: flex;
  margin-top: 8px;
}

.sec2-text .d p {
  font-size: 18px;
  font-weight: 400;
  color: #ffffffaf;
  text-align: left;
}

.icons h5 {
  font-size: 24px;
  font-weight: 600;
  color: #0276c3;

}

.icons ul {
  display: flex;
}

.icons ul li {
  list-style: none;
  text-decoration: none;
}

.icons ul li a img {
  width: 35px;
  /* color: #ffffffac; */
  font-size: 20px;
  margin: 10px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 50%;
  border: 0.1px solid #ffffff;
  opacity: 0.5;
  /* filter: brightness(0); */
  /* background-color: rgba(0, 0, 0, 0.134); */
}

.icons ul li a img:hover {
  margin-top: 5px;
  opacity: 1;
}


.sec2-text ul li {
  list-style: none;
  text-decoration: none;
  list-style: none;
  margin-top: 10px;

}

.sec2-text ul li a {
  font-size: 15px;
  color: #ffffffaf;
  list-style: none;
  text-decoration: none;
}

.sec2-text ul li a span {
  color: #0276c3;
  width: 20px;
  height: 0px;
  background-color: #0276c3b4;
}



.footer-base {
  text-align: center;
  padding: 10px;
  color: #000000dd;
  /* padding-bottom: px; */
  font-size: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.176);
  margin-top: 30px;
  background-color: #0a1f3d;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 100px;
}


.footer-base p {
  margin-bottom: 0;
  margin-top: 10px;
  color: #ffffffc9;
  font-size: 18px;
  font-weight: 500;
}

.footer-base .tx {
  display: flex;
}

.footer-base .tx img {
  width: 50px;
}

.footer-base .tx p {
  margin: 0 5px;
  margin-top: 8px;
}

.footer-base .tx h1 span {
  color: #e32020;
}

.designation-contact h6 {
  color: #000000dd;

}

@media screen and (max-width: 800px) {
  .footer {
    padding-top: 100px;
  }

  .sec2-text .line {
    width: 50%;
    height: 0.5px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .sec2-text {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
  }


  #sec2-other-links2 {
    width: 40%;
  }

  #sec2-other-links {
    width: 60%;
  }

  .footer-base {
    padding: 10px 20px;
    /* background: #000; */
    text-align: center;
    justify-content: center;
  }

  .footer-base .tx p {
    color: rgba(255, 255, 255, 0.419);
    margin-top: 10px;
  }

  .footer-base p {
    font-size: 15px;
    margin: 0;
    text-align: center;
  }


  .whatsapp {
    top: auto;
    bottom: 0;
    margin-right: 15px;
  }

  .whatsapp img {
    margin-bottom: 15px;
  }



}