
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body{
  /*font-family: 'Kozuka Mincho Pro' ;*/
  font-family: 'Poppins', sans-serif !important;
  /*font-family: 'Noto Serif TC', serif ;*/
}

.animation{
  width: 100%;
  height: 500px;
}
.error{
  color:red;
}


.success{
  color:rgb(28 118 65);
}

.showotp{
  display:none;
}
@media screen and (max-width: 767px) {
.animation{
  width: 100%;
  height: 350px;
}
}



/** {
  cursor: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid black;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  z-index: 22222222222;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: black;
  opacity: .3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 22222222222;
}*/

/*.hover {
  background-color: red;
  opacity: 0.5;
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: .5;
}*/

/*mosuse carsure*/


a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

.fixed-top {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
#scroll {
    position:fixed;
    right: 34px;
    bottom: 30px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#000000;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#000000;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}
@media all and (max-width: 968px) {
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
  }
}

/* #header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
} */

/* #header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
} */

#header .logo a {
  color: #fff;
}

/* #header .logo img {
  max-height: 40px;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/*nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  
  background: #242526;
}*/


/*.fa-bars:before {
    content: "\f0c9";
    color: #000;
    font-size: 29px;
}*/

nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 45px 35px 26px;
    height: 27px;
    line-height: 23px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
  font-family: 'Poppins', sans-serif;
}
.nav-links li a{
  font-family: 'Poppins', sans-serif;
  /*color: #f2f2f2;*/
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  /*background: #3A3B3C;*/
  border-bottom: 5px solid #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  padding: 0px;
  position: absolute;
  background: #e7e7e7;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 55px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
    color: #0b0b0b;
    font-size: 30px;;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #ffffff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    background: #ffffff;
    /*margin-top: -20px;*/
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
/*  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }*/
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.content{
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
header{
  font-size: 35px;
  font-weight: 600;
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background: #37517e; */
  background: linear-gradient(105.57deg, #E1F3F9 4.69%, #F5F7F9 16.69%, #FBEEEF 29.55%, #FED7E6 43.54%, #F8ECED 69.3%, #F6F9FB 82%, #F4F9FA 95%);

  /*background: radial-gradient(46.07% 50% at 50% 50%, #EEEEEE 0%, #F0F0F0 100%);*/

}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    margin-top: -40%;
    width: 100%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/* section {
  padding: 30px 0;
  overflow: hidden;
} */

.section-bg {
  background-color: #f3f5fa;
}








/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.con-btn{
  background: linear-gradient(180deg, #000000 0%, rgba(8, 29, 52, 0.81) 100%);
border-radius: 2px;
padding: 10px;
border: none !important;
outline: none;
color: #ffff;
font-size: 14px;
font-family: 'Poppins', sans-serif;
}
@media (max-width: 768px) {
 .con-btn{
  background: linear-gradient(180deg, #000000 0%, rgba(8, 29, 52, 0.81) 100%);
border-radius: 2px;
padding: 0px 33px 0px;
border: none !important;
outline: none;
color: #ffff;
font-size: 14px;
} 
}

/* animation text */

div.middle{
  top:0;
  right:0;
  bottom:0;
  left:0;
  position:absolute;
  margin:auto;
  height:120px;
  width:100%;
  text-align:center;
}
/* .text-type-animation{
  text-transform:uppercase;
  font-size:60px;
  
} */
.txt-rotate{
  color:#BD2706;
font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 700;
font-size: 36px;
line-height: 52px;
text-align: center;
}
@media all and (max-width: 968px) {
  .txt-rotate{
    padding-top: 10px;
    color:#BD2706;
    /*font-family: 'Kaisei Decol';*/
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  }
}


.sam{
  height: 30px;
  width: 100%;
  background-color: #209dd8;
}
.sam:hover{
  height: 10px;
  width: 100%;
  background-color: #209dd8;
}
.ser{
  background: #081D34;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.18);
  padding: 36px;
  width: 90%;
  height: 100%;
  position: relative;
  margin: auto;
}
.ser::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 52%;
  top: 48%;
  z-index: 22222222222222222 !important;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 23.2px -23.2px 23.2px rgba(194, 194, 194, 0.1), inset -23.2px 23.2px 23.2px rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: all .35s;
}

/* animation text end */
.services-margin-tops{
margin-top: 30px;
}
@media all and (max-width: 968px) {
  .services-margin-tops{
    margin-top: 5px;
    }
}

/* claint slider */
.slider {
  width: 50%;
  margin: 100px auto;
}

.slick-slide {
margin: 0px 20px;
}

.slick-slide img {
width: 100%;
}

.slick-prev:before,
.slick-next:before {
color: black;
}


.slick-slide {
transition: all ease-in-out .3s;
/*opacity: .2;*/
}

.slick-active {
opacity: 1.5;
}

.slick-current {
opacity: 1;
}
.blog-padding{
  padding-left: 0px !important;
}
@media all and (max-width: 968px) {
  .blog-padding{
    padding-left: 14px !important;
  }
}
.loc-img{
  margin-top: -42px;
}
@media all and (max-width: 968px) {
  .loc-img{
    margin-top: -42px;
  }
}


.desktop-new{
  display: block !important;
}

@media all and (max-width: 968px) {
  .desktop-new{
    display: none !important;
  }
}



.mobile-one{
  background: #FFFFFF;
  box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
  border-radius: 8px;
  width: 195px;
  height: 98px;
  margin-top: 10%;
  position: absolute;
  z-index: 2222222222;
}
.mobile-two{
  background: #FFFFFF;
  box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
  border-radius: 8px;
  width: 195px;
  height: 98px;
  margin-top: 45%;
  position: absolute;
  z-index: 2222222222;
}
.mobile-three{
  background: #FFFFFF;
  box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
  border-radius: 8px;
  width: 195px;
  height: 98px;
  margin-left: 60%;
  margin-top: 10%;
  position: absolute;
  z-index: 2222222222;
}
.mobile-four{
  background: #FFFFFF;
  box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
  border-radius: 8px;
  width: 195px;
  height: 98px;
  margin-top: 45%;
  position: absolute;
  z-index: 2222222222;
  margin-left: 61%;
}
.mob-margin-tops{
  margin-top: 40px;
}
@media all and (max-width: 768px) {
  .mob-margin-tops{
    margin-top: 10px;
  }
  .mob-responsive-two{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .mobile-one{
    background: #FFFFFF;
    box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
    border-radius: 8px;
    width: 173px;
    height: 92px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2222222222;
  }
  .mobile-two{
    background: #FFFFFF;
    box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
    border-radius: 8px;
    width: 173px;
    height: 98px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2222222222;
  }
  .mobile-three{
    background: #FFFFFF;
    box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
    border-radius: 8px;
    width: 173px;
    height: 98px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2222222222;
  }
  .mobile-four{
    background: #FFFFFF;
    box-shadow: 0px 4px 30px -9px rgb(0 0 0 / 25%);
    border-radius: 8px;
    width: 173px;
    height: 98px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2222222222;
  }
  .mob-img{
    display: none !important;
  }
}



::-webkit-scrollbar {
  background: #000000;
  height: 5px;
  width: 5px;
  }
  
  ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #000000;
  }
  
  ::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 2px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
  background: #383838;
  }



  /* hero img */

  /* body, html {
    height: 100%;
    margin: 0;
  }
  
  .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("hero.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 100px;
  }
  @media all and (max-width: 1707px) {
    .hero-image {
      height: 40vh !important;
    }
  }
  @media all and (max-width: 1200px) {
    .hero-image {
      height: 50vh !important;
    }
  }
  .hero-sm-img{
    float: right;
    width: 23%;
  }
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
  }
  @media all and (max-width: 968px) {
    .hero-text {
      text-align: center;
      position: absolute;
      top: 50%;
      left: 20%;
      transform: translate(-12%, -50%);
      color: white;
    }
  } */


  :root {
    --color: #4973ff;
  }
  
  
  
  .contentnew {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%,-50%);
    /* text-align: center; */
  }
    .contentnewone {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%,-50%);
    /* text-align: center; */
  }

   @media all and (max-width: 968px) {
      .contentnew {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
     text-align: center; 
  }
      .contentnewone {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left:43%;
    transform: translate(-50%,-50%);
    /* text-align: center; */
  }

   }
   .img-index{
    z-index: 1;
    display: block !important;

   }
      @media all and (max-width: 767px) {
          .img-index{
            z-index: 1;
            display: none !important;

   }
      }
  
  .hero {
    position: relative;
    height: 60vh;
    margin-top: 90px;
    /* background: #333333; */
    background: linear-gradient(180deg, #081D34 0%, #081D34 100%);
    color: white;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
  }
        @media all and (max-width: 767px) {
            .hero {
    position: relative;
    height: 45vh;
    margin-top: 90px;
    /* background: #333333; */
    background: linear-gradient(180deg, #081D34 0%, #081D34 100%);
    color: white;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
  }
        }
  
  /* .hero h2 {
    position: relative;
    z-index: 1;
    font-size: 4.5rem;
    margin: 0 0 10px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
  } */
  
  
  
  /* ========================= */
  
  .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    /* background-color: var(--color); */
    background-color: #dbdbdb26;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    transition: 500ms;
  }
  
  .waves::before,
  .waves::after {
    content: '';
    position: absolute;
    width: 300vw;
    height: 300vw;
    top: -65vw;
    left: 50%;
    transform: translate(-50%, -75%);
  }
  
  .waves::before {
    border-radius: 44%;
    background: rgb(35 51 68);
    animation: waves 8s linear infinite;
  }
  
  .waves::after {
    border-radius: 44%;
    background: rgb(32 46 61 / 51%);
    animation: waves 15s linear infinite;
  }
  
  @keyframes waves {
    0% {
      transform: translate(-50%, -75%) rotate(0deg);
    }
    
    100% {
      transform: translate(-50%, -75%) rotate(360deg);
    }
  }

  .hero-piexl{
    display: flex !important;
  }
        @media all and (max-width: 767px) {
            .hero-piexl{
    display: flex !important;
    justify-content: center;
  }
        }

        .mins-nav{
          display: flex;
          justify-content: space-evenly;
          flex-wrap: wrap;
          width: 100%;
          height: 70px;
          background: #FFFFFF;
          box-shadow: 0px 1px 14px rgba(8, 29, 52, 0.4);
          border-radius: 4px;
          align-items: center;

        }

        @media all and (max-width: 767px) {
                  .mins-nav{
          display: flex;
          justify-content: space-evenly;
          flex-wrap: wrap;
          width: 100%;
          height: auto;
          background: #FFFFFF;
          box-shadow: 0px 1px 14px rgba(8, 29, 52, 0.4);
          border-radius: 4px;
          align-items: center;
        }

        }
        .webdesign{
          background: #081D34;
          border-radius: 5px;
          padding: 10px 30px 10px;
          color: #ffff; 
          margin: 10px;
        }


        @media all and (max-width: 767px) {
          .box-size:hover{
          background-color: #dadada;
          border-radius: 5px;
          padding: 10px 30px 10px;
        }
        }
       



            .webmargintops{
             margin-top: 70px ;
            }
       @media all and (max-width: 767px) {
            .webmargintops{
                margin-top: 0px ;
               }
          }
          .getintouch{
            background: #081D34;
            padding: 8px 15px 8px;
            border-radius: 4px;
            outline: none;
            border: none;
            /*font-family: 'Kozuka Mincho Pro';*/
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 28px;
            color: #FFFFFF;       
   }
         .try{
              background: #FFFFFF;
              border-radius: 3px;
              border: none;
              outline: none;
              padding: 10px 10px 10px;
         }
         .careers{
          background: #FFFFFF;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
        border-radius: 5px;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      .suticase{
        display: flex;
        justify-content: space-between;
       align-items: center;

      }
      @media all and (max-width: 767px) {
       .suticase{
        display: flex;
        justify-content: space-between;
       align-items: center;
       margin-left: auto;
       margin-right: auto;

      }
      }
      .careers-background{
        background-image: url('Background.jpg');
        /*background-color: #e5eecc;*/
        display: none;
        background-repeat: no-repeat;
        background-size: cover;
        padding:25px;
      }
      .immediate{
        background: #FFFFFF;
        box-shadow: 0px 10px 20px rgb(0 0 0 / 30%);
        width: 100%;
        height: auto;
        padding: 5%;
        margin: auto;
      }
      .immediate1{
            background: #FFFFFF;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 30%);
    width: 100%;
    height: auto;
    padding: 4%;
    margin: auto;
    text-align: center;
    border-radius: 5px;
      }
      .call-btn{
            background: #000000;
            border-radius: 10px;
            padding: 2%;
            text-align: center;
            width: 185px;
            height: 39px;
            color: #fff;
      }
      .apply-btn{
        padding: 1%;
    text-align: center;
    background: linear-gradient(180deg, #EEEAEB 0%, #CECACB 100%);
    box-shadow: 6.57227e-16px 10.7333px 21.4667px rgb(45 44 44 / 10%), inset -1.47511e-16px -2.40904px 2.40904px #c9c5c6, inset 1.47511e-16px 2.40904px 2.40904px #f2eeef;
    border-radius: 11px;
    width: 122px;
    height: 39px;
    border: none;
    outline: none;
      }
      .lets{
        background: #081D34;
        border-radius: 3px;
        padding: 10px 10px 10px;
        border: none;
        outline: none;
        color: #fff;
      }



      .form-input{
            border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    width: 100%;
    }
    .form-inputs{
        border-top: none;
        border-left: none;
        border-right: none;
        outline: none;
        width: 100%;
    }

    .labels{
  display: inline-block;
  background-color: indigo;
  color: white;
  padding: 0.5rem;
  font-family: sans-serif;
  border-radius: 0.3rem;
  cursor: pointer;
  margin-top: 1rem;
}




.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/*.btn {*/
  /*border: 2px solid gray;*/
  /*color: gray;*/
  /*background-color: white;*/
/*  padding: 8px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
}
*/
.btn{
        font-family: 'Poppins', sans-serif;
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 28px;
color: #081D34;
}
.upload-btn-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.send-message{
  background: #081D34;
border-radius: 3px;
border: none;
outline: none;
color: #ffff;
padding: 10px 10px 10px;
}
.blog-blue-btn{
  background: #081D34;
  border-radius: 2px;
  padding: 7px 15px 8px;
  border: none;
  outline: none;
  color: #ffff;
}
.d188{
    color: #fff !important;
}








