@import url('https://fonts.googleapis.com/css2?family=Exo:ital@1&family=K2D&family=Kanit:ital,wght@0,400;0,500;1,400&family=Noto+Sans:wght@500&family=Open+Sans:ital,wght@1,500&family=Roboto+Mono:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Exo:ital@1&family=K2D&family=Kanit:ital,wght@0,400;0,500;1,400&family=Mulish:wght@500&family=Noto+Sans:wght@500&family=Open+Sans:ital,wght@1,500&family=Roboto+Mono:wght@500&display=swap');

* {
  margin: 0%;
  padding: 0;
}
body{
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Sans', sans-serif;
}


p {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.container {
  max-width: 1300px;
}
ul{
  padding: 0;
}
li {
  list-style: none !important;
  font-family: 'Noto Sans', sans-serif;
}
span{
  display: block;
}

a {
  text-decoration: none !important;

  transition: ease-in-out 0.3s;
}

img {
  width: 100%;

  transition: ease-in-out 0.3s;
}

.img img:hover {
  transform: scale(1.1);
}

.img {
  overflow: hidden;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

@keyframes moverr {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}
.creative-box img{
  transition: ease-in-out .2s;
  animation: moverr 1s infinite alternate;
}


.logo img {
  width: 300px;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  transition:ease-in-out .5s ;
}

.head-all {
  display: flex;

  justify-content: space-between;

  align-items: center;
}
.main_nav{
  /*position: absolute;*/
  width: 100%;
  z-index: 9999;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.397) 59%); */
}


.primary-btn3 {
  border-radius: 5px;
  background-color: #19497a;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 19px 25px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 15px;
  transition: .5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  border: none;
}

.primary-btn3::after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 2px;
  background-color: #0a1019;
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all .5s ease-out 0s;
}

.primary-btn3:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

.primary-btn3:hover {
  color: #fff;
}
.nab-navbar .nab-navbar-nav {
  display: flex;
  align-items: center;
}

.nab-navbar {
  display: flex;

  align-items: center;
}

nav {
  position: relative;
box-shadow: 0px 13px 20px -20px rgba(0,0,0,0.45);
  width: 100%;

  z-index: 999;
}

.header {
  position: relative;
}

/*.header::after {*/
/*  content: "";*/
/* background: linear-gradient(60deg, rgb(0 0 0 / 74%) 32%, rgb(0 0 0 / 4%) 59%);*/
/*  position: absolute;*/

/*  width: 100%;*/

/*  top: 0%;*/

/*  left: 0;*/

/*  height: 100%;*/

/*  z-index: 1;*/
/*}*/

.nab-navbar .nab-navbar-nav li {
  padding: 13px 23px;
  font-size: 14px;
  position: relative;
}
.clk_btn{
  position: absolute;
  right: 0;
  top: 11px;
  color: #fff;
  cursor: pointer;
}

.nab-navbar .nab-navbar-nav {
  padding-left: 0;

  margin-bottom: 0;
}

.nab-navbar .nab-navbar-nav li a {
  color: #fff;
  text-transform: uppercase;
}

.nav-btn {
  margin-left: 20px;
}
.header.slick-slide.slick-current.slick-active .head_line {
  animation: stickySlideDown 2s ease-in-out;
}
header.slick-slide.slick-current.slick-active p {
  animation: stickySlideDown 2.5s ease-in-out;
}

/*.header.slick-slide.slick-current.slick-active img {*/
/*  animation: zoomInImage 2.5s ease-in-out;*/
/*}*/

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}


@keyframes stickySlideDown {
  0%,
  25% {
    transform: translateX(-10%);
    left: 0%;
    opacity: 0;
  }

  75%,
  100% {
    transform: translateX(0px);
    left: 0%;
    opacity: 1;
  }
}

#myHeader.sticky {
  position: fixed;

  background-color: #fff;

  width: 100%;

  top: 0;

  z-index: 9999;

  animation: slideDown 1s ease-out;

  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
#myHeader.sticky .nab-navbar .nab-navbar-nav li a{
  color: #fff;
}
#myHeader.sticky nav{
  padding: 1px 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav-btn a {

  background-color: #19497a;

  color: #fff;

  font-size: 15px;

  padding: 15px 17px;
}

.head-socail {
  position: absolute;

  top: 37%;

  z-index: 99;

  left: 4%;
}

.head-socail a {
  display: block;

  margin-bottom: 30px;
}

.head-socail a img {
  width: 33px;
  height: auto;
  animation: zoom-in-zoom-out 2s ease-out infinite !important;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}


.cercal {
  z-index: 3;

  opacity: 0.4;

  width: 470px;

  height: 470px;

  background: #2de7be;

  border-radius: 50%;

  position: absolute;

  top: 15%;

  left: 25%;
}

.pogi-cercal {
  left: 25%;

  top: 15%;

  position: absolute;

  z-index: 4;
}

.pogi-cercal img {
  width: 150px;
}

.header_text {
  position: absolute;
  left: 10%;
  top: 35%;
  z-index: 99;
  width: 50%;
}

.header_text .head_line {
  font-size: 50px;
  color: #fff;
  font-weight: bolder;

  font-family: sans-serif;
}


.header_text p {
  font-size: 14px;

  font-weight: 300;

  line-height: 25px;
  color: #fff;

}
.header img{
  height: 650px;
  object-fit: cover;
}


button.slick-prev.slick-arrow{
  display: none !important;
}
button.slick-next.slick-arrow{
  display: none !important;
}

.slider-banner .slick-nav.prev-arrow.slick-arrow {
  position: absolute;
  right: 3%;
  top: 40%;
  z-index: 99;
  width: 52px;
  height: 52px;
  line-height: 51px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background: #19497a;
  color:#fff;
}

.slider-banner .slick-nav.next-arrow.slick-arrow {
  position: absolute;
  left: 3%;
  top: 40%;
  z-index: 99;
  width: 52px;
  height: 50px;
  line-height: 51px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background: #19497a;
  color:#fff;
}

/* hover nav */
.service_hover{
  position: absolute;
  width: 100%;
  /* background: linear-gradient( 94deg, #5eb0eb -56.81%, #21d0b2 -3.21%, #21d0b2 44.09%, #34f5c5 100.85% ); */
  background-color: var(--blue);
  padding:0 15px;
  top: 130px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: ease-in-out .3s;
  z-index: 99;
}
.ser_tab a{
  color: #fff;
}
.nab-navbar ul li:hover .service_hover{
  opacity: 1;
  visibility: visible;
  top: 80px;
}
.ser_tab{
  display: flex;
  flex-wrap: wrap;
}
.service_btn{
  width: 30%;
  border-right: 1px solid #ffffff;
}
.service_contant{
  width: 70%;
  padding: 25px 0px;
}
.nav-item{
  display: block;
  width: 100%;
}
.nab-navbar ul{
  flex-wrap: wrap;
  background-color: #19497a;
  border-radius: 6px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: #5ba7e4;
}
.nab-navbar ul li .nav-item{
  padding: 3px 4px;
}
.list_item a{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  font-size: .875em;
  text-transform: uppercase;
}
.list-item__img {
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 0.375em;
  margin: 0 10px 0 0;
}
.list_item {
  width: 33.33%;
}
.list_item img{
  width: 60%;
    height: 60%;
}
.list-item__head {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  text-transform: capitalize;
}
.list-wrapper{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 2em 0em;
  border-top: 1px solid #fff;
}
.list-wrapper .list_item{
  padding: 10px 10px;
}
.sev_main_head {
  padding: 16px 21px 18px;
  color: #fff;
}
.all_email{
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.head_icon{
  display: flex;
}
.head_add{
  padding: 8px 0;
  background: #19497a;
}
.head_icon a img{
  width: 30px;
  margin-right: 15px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}
.email_head img{
  color: #fff;
  margin-right: 8px;
  width: 30px;
}
.client_all {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.client_box {
    width: 18%;
    padding: 0 10px;
    margin: 13px 12px;
    object-fit: contain;
}
.email_head a{
  color: #fff;
}
.margin{
  margin: 70px 0;
}

.web_text{
  border-right: 2px solid #000;
  padding-right: 20px;
}
.web_text .Community{
  color: #3a8886;
  margin-bottom: 15px;
  font-size: 18px;
}
.web_text .Studio{
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
}
.web_text img{
  margin-top: 30px;
  width: 80px;
}
.web_3 .img img{
  width: 95%;
}
.web_3{
  position: relative;
}


/* animation_text */

.animation_text {
  color: white;
  font-family: "Oswald", sans-serif;
  padding-right: 1em;
}
.animation_text div{
  font-size: 100px;
  color: #19497a;
  font-weight: 600;
}
.animation {
  margin-bottom: 30px;
}
@-webkit-keyframes example-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
    opacity: 0.0625;
  }
}
@keyframes example-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
    opacity: 0.0625;
  }
}
@-webkit-keyframes example-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
    opacity: 0.125;
  }
}
@keyframes example-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
    opacity: 0.125;
  }
}
@-webkit-keyframes example-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(11px);
    opacity: 0.1875;
  }
}
@keyframes example-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(11px);
    opacity: 0.1875;
  }
}
@-webkit-keyframes example-4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
    opacity: 0.25;
  }
}
@keyframes example-4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
    opacity: 0.25;
  }
}
@-webkit-keyframes example-5 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(13px);
    opacity: 0.3125;
  }
}
@keyframes example-5 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(13px);
    opacity: 0.3125;
  }
}
@-webkit-keyframes example-6 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
    opacity: 0.375;
  }
}
@keyframes example-6 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
    opacity: 0.375;
  }
}
@-webkit-keyframes example-7 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
    opacity: 0.4375;
  }
}
@keyframes example-7 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
    opacity: 0.4375;
  }
}
@-webkit-keyframes example-8 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
    opacity: 0.5;
  }
}
@keyframes example-8 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
    opacity: 0.5;
  }
}
@-webkit-keyframes example-9 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(17px);
    opacity: 0.5625;
  }
}
@keyframes example-9 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(17px);
    opacity: 0.5625;
  }
}
@-webkit-keyframes example-10 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
    opacity: 0.625;
  }
}
@keyframes example-10 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
    opacity: 0.625;
  }
}
@-webkit-keyframes example-11 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(19px);
    opacity: 0.6875;
  }
}
@keyframes example-11 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(19px);
    opacity: 0.6875;
  }
}
@-webkit-keyframes example-12 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
    opacity: 0.6875;
  }
}
@keyframes example-12 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
    opacity: 0.6875;
  }
}
@-webkit-keyframes example-13 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(21px);
    opacity: 0.6875;
  }
}
@keyframes example-13 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(21px);
    opacity: 0.6875;
  }
}
@-webkit-keyframes example-14 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(22px);
    opacity: 0.6875;
  }
}
@keyframes example-14 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(22px);
    opacity: 0.6875;
  }
}
.animation_text div:nth-child(1) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-1;
          animation-name: example-1;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(2) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-2;
          animation-name: example-2;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
          padding: 0 8px;
}
.animation_text div:nth-child(3) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-3;
          animation-name: example-3;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(4) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-4;
          animation-name: example-4;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
          padding: 0 8px;
}
.animation_text div:nth-child(5) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-5;
          animation-name: example-5;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(6) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-6;
          animation-name: example-6;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(7) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-7;
          animation-name: example-7;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(8) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-8;
          animation-name: example-8;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(9) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-9;
          animation-name: example-9;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(10) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-10;
          animation-name: example-10;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(11) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-11;
          animation-name: example-11;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(12) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-12;
          animation-name: example-12;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(13) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-13;
          animation-name: example-13;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.animation_text div:nth-child(14) {
  display: inline-block;
  text-shadow: 2px 2px 3px #3D6366;
  -webkit-animation-name: example-14;
          animation-name: example-14;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

/* animation_text */

.small_head{
  font-size: 20px;
  color: #19497a;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
  display: inline;
}
.big_head{
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
  margin-top: 20px;
}
.small_head::after{
  content: '';
  width: 50%;
  height: 2px;
  background-color: #19497a;
  position: absolute;
  bottom: -10px;
  left: 0;
  animation: left-right 2s linear infinite !important;
}

@keyframes left-right {
  from {
    width: 25%;
  }
  to{
    width: 80%;
  }
}

.ab_home{
  position: relative;
}
.an_img img{
  width: 100px;
}
.an_img{
  position: absolute;
  right: 50px;
  top: 0;
  z-index: -1px;
  animation-name: ribbonRotate;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear
}
 .bg-ab-img{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
 }
 .ab_home .img img{
  height: 600px;
  object-fit: cover;
 }
 .ab_home p{
     font-size:15px;
 }
 .ab_home .img{
  position: sticky;
  top: 90px;
 }
 
 .img_i{
  width: 90px;
  background-color: #19497a;
  padding: 7px;
  border-radius: 5px;
  margin-right: 15px;
 }
 .ab_contant ul li{
  align-items: self-start;
  padding-right: 15px;
  margin:10px;
  font-size:15px;
  font-family: 'Mulish', sans-serif;
      line-height: 28px;
 }
 .solutions{
  color: #19497a;
  font-size: 18px;
  font-weight: 600;
 }
 .ic_text p{
  font-size: 15px;
 }
 .ab_contant ul{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
 }

 .pro_box{
  position: relative;
 }
 .pro_text{
  position: absolute;
  top: 5%;
  left: 15px;
  text-align: left;
 }
 .pro_name{
  font-size: 23px;
  font-weight: 600;
  text-transform: capitalize;
 }
 
 .pro_item{
  margin: 6px;
 }
 .product{
  padding: 50px 0;
  position: relative;
 }
 .pro_text a{
  color: #19497a;
  font-size: 18px;
  margin-top: 10px;
  display: block;
  text-decoration: underline !important;
 }


 .ribbonRotate img{
  width: 150px;
 }

.ribbonRotate {
  position: absolute;
  right: 20px;
  top: 0;
  animation-name: ribbonRotate;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear
}

@keyframes ribbonRotate {
  0%,to {
      transform: rotate(0)
  }

  25%,75% {
      transform: rotate(15deg)
  }

  50% {
      transform: rotate(30deg)
  }
}


.alltuchtopdown{
  position: absolute;
  right: 20px;
  top: 0;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;

}

@keyframes alltuchtopdown {
  0% {
      transform: rotateX(0deg) translateY(0)
  }

  50% {
      transform: rotateX(0deg) translateY(-20px)
  }

  to {
      transform: rotateX(0deg) translateY(0)
  }
}

.client_all{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.client_head{
  border-bottom: 4px double #dde3f0;
  padding-bottom: 40px;
}
/*.client_box{*/
/*    width: 60%;*/
/*    text-align: center;*/
/*    padding: 0 10px;*/
/*    margin: auto;*/
/*    object-fit: contain;*/
/*}*/
.clients .row{
    align-items: center;
}
.clients-box ul li{
    position: relative;
    font-size: 15px;
    font-family: sans-serif;
    margin-bottom: 7px;
    padding-left: 23px;
}
.clients-box ul li i{
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 6px;
    color: #19497a;
}

.client_box img:hover{
  margin-left: 10px;
}
 .client_box img {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.client_all{
  margin-top: 30px;
}
.clients{
  position: relative;
  background: aliceblue;
  padding: 40px 0;
}
.an_img_2{
  position: absolute;
  right: 100px;
  top: -40px;
  animation: alltuchtopdown 5s ease-in-out 5s infinite alternate;
  animation-duration: 3s;

}
.hot_box{
  position: relative;
  overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.hot_text{
  position: absolute;
  left: 20px;
  top: 27px;
  z-index: 9;
    max-width: 70%;
}
.hot_head{
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
  color:#19497a;
}
.hot_box p{
     color: #000;
    font-size: 16px;
    line-height: 35px;
}
.hot_text a{
  color: #19497a;
  font-size: 17px;
  font-weight: 600;
  text-decoration: underline !important;
}

.testmonial {
  background: #fffbf3;
  padding: 50px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-img-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}
.testimonial-img-wrap img{
  width: 300px;
}
.img-shape img{
  width: 110px;
}
.testimonial-img-wrap .img-shape img {
  position: absolute;
  z-index: -1;
}
.testimonial-img-wrap .img-shape img:nth-child(2) {
  left: 10%;
  top: 18%;
}
.testimonial-img-wrap .img-shape img:nth-child(3) {
  left: 14%;
  bottom: 19%;
}
.testimonial-img-wrap .img-shape img:nth-child(4) {
  right: 0;
  bottom: 21%;
  animation-duration: 5s;
}
.testimonial-img-wrap .img-shape img:first-child {
  left: 0;
  bottom: 0;
}
.rightToLeft {
  animation-name: rightToLeft;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rightToLeft {
  0% {
      transform: translateX(-30px)
  }

  50% {
      transform: translateX(-10px)
  }

  to {
      transform: translateX(-30px)
  }
}

.test_item img{
  width: 150px;
  margin-top: 15px;
}
.name{
  font-size: 25px;
  font-weight: 600;
  color: #fff ;
}
.test_slider p{
    color:#fff;
}
.test_slider span{
    color:#fff;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.postion{
  font-size: 17px;
  margin-top: 5px;
  color: #fff ;
}
.test_item{
  position: relative;
  margin: 0px 10px;
  margin-bottom: 50px;
}
.quote img{
  width: 80px;
  position: absolute;
  bottom: -50px;
  right: 0;
  opacity: .5;
  animation-name: rightToLeft;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


.home_form input, textarea, select{
  width: 100%;
  border: none;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 20px;
  outline: none;
  border-radius: 4px;
}
.home_form .all_btn{
  width: 100%;
}

.all_btn{
  border: none;
  background-color: #000094;
  color: #fff;
  padding: 8px 30px;
  font-size: 18px;
  transition: ease-in-out .2s;
  border-radius: 2px;
}
.all_btn:hover{
  background-color: #000094;
  color: #fff;
}
.home_form{
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  background-color: #fff;
}
.home_form .big_head{
  color: #fff;
}
.contact_add li img{
  width: 25px;
  margin-right: 10px;
}
.contact_add li {
  color: #fff;
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.contact_add li span{
  font-weight: 500;
  font-size: 15px;
  color: #feda9b;
}
.contact_add{
     padding: 15px 28px;
    background:#19497a;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
.form_sado .row{
        align-items: center;
}
.contact_add li a {
  color: #fff;
}
.shochal_media{
  display: flex;
  margin-top: 20px;
  padding-top:10px;
}
.shochal_media li{
  margin-right: 10px;
}
.shochal_media li img{
  width: 29px;
  animation: zoom-in-zoom-out 2s ease-out infinite !important;
}


.form_sado {
    background: #00000078;
  padding: 60px 0;
}
form .primary-btn3{
  width: 100%;
  text-align: center;       
  justify-content: center;
}

.alltuchtopdown1 img:last-child{
  position: absolute;
  right: 20px;
  bottom: 0;
  animation: alltuchtopdown2 5s ease-in-out 0s infinite alternate;
  animation-duration: 5s;
  width: 100px;
}

@keyframes alltuchtopdown2 {
  0% {
      transform: rotateX(0deg) translateY(0);
      bottom: 0;
  }

  50% {
      transform: rotateX(0deg) translateY(-20px);
      bottom: 10%;
  }

  to {
      transform: rotateX(0deg) translateY(0);
      bottom: 5%;
  }
}

.get_all{
    background-repeat: no-repeat;
    background-size: cover;
  background-position: center;
}
.get_shado{
    padding: 50px 0;
    background: #00000085;
}
.get_all .big_head{
  color: #fff;
  font-size: 25px;
}
.get_all p{
  color: #fff;
}
.start_img img{
  width: 55%;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
    object-fit: contain;
}
section.home_form.margin{
  margin-bottom: 30px;
}
.start_img {
  text-align: center;
}
footer{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0px 30px;
}
.foot_logo img{
  width: 150px;
  border-radius: 10px;
}
.foot_logo{
  text-align: right;
}
.link_f{
  font-size: 25px;
}
.foot_logo{
  padding-top: 80px;
}
.foot_link{
  padding-left: 70px;
}

footer ul li a{
  color: #000;
}
footer ul li a:hover{
  color: #19497a;
}

footer ul li{
  margin-bottom: 20px;
}
/* width */
.nab-navbar ::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.nab-navbar ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.nab-navbar ::-webkit-scrollbar-thumb {
  background: #dde3f0; 
  border-radius: 10px;
}


/* width */
footer ::-webkit-scrollbar {
  width: 5px;
}

/* Track */
footer ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
footer ::-webkit-scrollbar-thumb {
  background: #19497a; 
  border-radius: 10px;
}

footer ul{
  margin-top: 35px;
  max-height: 230px;
  overflow: auto;
}
.foot_link_contact .shochal_media li{
  margin-right: 20px;
}
.foot_call img{
  width: 30px;
  margin-right: 10px;
      object-fit: contain;
}
.foot_call a{
  color: #000;
}
.foot_call span{
  color: #19497a;
  font-weight: 600;
}
.foot_call{
  margin-top: 15px;
  display: flex;
  margin-bottom: 15px;
}

.slick-dots{
  display: none !important;
}
.droupdown {
  position: absolute;
  background-color: #2776bb;
  left: 0;
  top: 45px;
  width: 250px;
  display: none;
  max-height: 300px;
  overflow: auto;
}
.droupdown li{
  padding: 0 !important;
}
.droupdown a{
  display: block;
  padding: 13px 23px;
}
.droupdown a:hover{
  background-color: #898d8d;
  color: #000;
}

.what-app {
  position: fixed;
  z-index: 99;
}

.btn-whatsapp-pulse-border {
  bottom: 30px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 32px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 20px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.what-app i {
  font-size: 45px;
  color: #fff;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.copyright_area {
  padding: 8px 3px;
  background-color: #2D3F61;
}
.copyright_text p {
  margin-bottom: 0;
  color: #fff;
}
.copyright_text a{
  color: #fff;
  text-decoration: underline !important;
}

.inner_header{
  position: relative;
}
.inner_header img{
  height: 400px;
  object-fit: cover;
}
.inner_header::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(60deg, rgb(0 0 0 / 74%) 32%, rgb(0 0 0 / 4%) 59%);
}

.inner_text{
  position: absolute;
  bottom: 20%;
  left: 5%;
  z-index: 99;
}
.inner_hrad{
  font-size: 50px;
    color: #fff;
    font-weight: bolder;
    font-family: sans-serif;
}
.brade_crom{
  display: flex;
}
.brade_crom a{
  color: #fff;
}
.brade_crom span{
  color: #fff;
}



.marcket-plase a{
    display:block;
    width:100%;
    margin-top:20px;
}
.marcket-plase .row{
       justify-content: center;

}

.testmonial_slider{
    background: #19497a;
    padding: 39px 63px;
    text-align: left;
}

.quality{
    font-size:20px;
    text-shadow: 1px 1px 0 #444;
    margin-bottom: 10px;
    font-weight: 500;
}


.why_box img {
    width: 71px;
    margin-bottom: 17px;
}
.why_box {
    border-radius: 5px;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 400px;
}
.why_box p{
    font-size:14px;
}
.foot_logo span {
    font-size: 30px;
    color: #ffff;
    margin-top: 16px;
    font-weight: 600;
    text-shadow: 1px 1px 0 #444;
    margin-right: -18px;
}






.right_hight {
    font-size: 23px;
    margin-bottom: 8px;
}
.blog_right ul li a{
    font-size: 15px;
    color: #fff;
    display: block;
    padding: 8px 13px;
    background: #2d2f8f;
    margin-bottom: 3px;
    transition: .3s;
}
.blog_right ul li a:hover{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.head_pera{
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.blog_text{
    text-align: left;
        padding: 17px;
}
.blog_item{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin:10px;
}
.blog_head {
    font-size: 19px;
    margin-bottom: 6px;
    color: #000000;
}
.blog_text a {
    font-size: 18px;
    display: block;
    color: #2d2f8f;
    font-weight: 600;
    margin-top: 9px;
}

.booking{
    font-size:20px;
    color:#fff;
}






@media only screen and (max-width: 1200px) {
.foot_logo img {
    width: 135px;
}
.foot_logo {
  padding-top: 95px;
}

}
@media only screen and (max-width: 1024px) {
  .hot_box{
    height: auto;
  }
}
@media only screen and (max-width: 991px) {
.logo img {
    width: 218px;
}
  .animation_text div {
    font-size: 70px;
}
.hot_box{
  margin-top: 20px;
}
.ab_contant{
  margin-top: 30px;
}
.foot_logo{
  text-align: left;
}
.foot_logo {
  padding-top: 0;
}
.foot_link {
  padding-left: 0px;
}
.margin {
  margin: 30px 0;
}
.ab_home .img img{
  height: auto;
}
.nab-navbar .nab-navbar-nav li {
    padding: 13px 13px;
    font-size: 13px;
    position: relative;
}
}

@media only screen and (max-width: 800px) {
    
  .toggle {
    visibility: visible;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 3;
  }

  .toggle>* {
    width: 80%;
    height: 3px;
    background: #19497a;
    margin: 3px 0;
  }


  .toggle.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle.active .line2 {
    opacity: 0;
  }

  .toggle.active .line3 {
    transform: rotate(45deg) translate(-7px, -8px);
  }

  .nab-navbar .nab-navbar-nav{
    position: absolute;
    width: 100%;
    background-color: #19497a;
    top: 80px;
    left: 0;
    display: none;
    z-index: 99999;
  }
  .logo img {
    width: 200px;
  }
  .droupdown{
    position: revert;
    width: 100%;
    display: none;
  }
  .clk_btn{
    width: 30px;
    color: #fff;
  }
  .nav-btn{
    display: none;
  }
  .header_text .head_line {
    font-size: 33px;
  }
  .header_text{
    width: 70%;
  }
  .header img{
    height: 550px;
  }
  .big_head{
    font-size: 30px;
    margin-top: 10px;
  }
  .client_box{
    width: 23%;
    padding: 0 10px;
    margin: 10px 1px;
  }
 
  .alltuchtopdown img{
    width: 100px;
  }
  .start_img img {
    width: 80%;
  }
}


@media only screen and (max-width: 767px) {
.slider-banner .slick-nav.prev-arrow.slick-arrow {
    display: none !important;
}

.slider-banner .slick-nav.next-arrow.slick-arrow {
    display: none !important;
}
  .contact_add {
    padding-top: 6px;
    padding-left: 10px;
}
.animation_text div {
  font-size: 45px;
}
.animation {
  margin-bottom: 15px;
}
.testimonial-img-wrap{
  margin-bottom: 30px;
}
.inner_hrad{
  font-size: 30px;
}
.inner_header img {
  height: 350px;
  object-fit: cover;
}
.foot_logo span {
    margin-top: 11px;
    margin-right: 0px;
    color:#000;
}
.why_box {
    height: auto;
}
}

@media only screen and (max-width: 550px) {
  .head-socail{
    display: none;
  }
  .header_text{
    left: 5%;
    width: 85%;
  }
  .big_head{
    font-size: 25px;
  }
  .client_box{
    width: 43%;
  }
  footer{
    padding: 20px 0px 0;
  }
  .ab_contant ul li{
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .animation_text div {
    font-size: 8vw;
}
.email_head{
  display: none;
}
.all_email{
  justify-content: end;
}
.testimonial-img-wrap img {
  width: auto;
}
.foot_logo img {
  width: 98px;
  margin-bottom: 15px;
}
}


@media only screen and (min-width: 1400px) {
    .foot_logo {
        margin-right: 50px;
        padding-top: 73px;
    }
}


.marcket-plase .col-md-12 .primary-btn3{
        background-color: #000;
}

.marcket-plase .col-md-3 .primary-btn3{
        background-color: #19497a;
}

   .share-btn-box{
        margin: 2rem auto;
    }
.share-btn {
    font-size: 26px;
    font-weight: 600;
    color: black;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-share {
    width: fit-content;
    height: fit-content;
}

.social-share ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.social-share ul li button,
.social-share ul li a {
    color: #fff;
    font-size: 19px;
    line-height: 24px;
    height: 24px;
    width: 34px;
    text-align: center;
    padding: 4px 8px !important;
    border-radius: 3px;
    text-transform: capitalize;
    display: block;
    height: fit-content;
    box-shadow: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.social-share ul li button:hover,
.social-share ul li a:hover {
    opacity: 0.8;
}

.social-share ul li button.facebook,
.social-share ul li a.facebook {
    background: #3B5999;
}

.social-share ul li button.twitter,
.social-share ul li a.twitter {
    background: #1DA1F2;
}

.social-share ul li button.whatsapp,
.social-share ul li a.whatsapp {
    background: #20cb45;
}

.social-share ul li a.google-plus {
    background: #fe6d4c;
}

.social-share ul li button.linkedin,
.social-share ul li a.linkedin {
    background: #0a66c2;
}

.social-share ul li button.telegram {
    background: #0a9ac2;
}

.social-share ul li button.email {
    background: #c2410a;
}