/* ====common css start here===== */
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-dark: #373C40;
  --color-light-gray: #C9D5DB;
  --color-blue: #29357B;
  --color-blue-2: #14ADDE;
  --color-sky-blue: #CBF3FF;
  --color-text-gray: #636262;
  --color-gray: #707070;
  --para-font: 'Plus Jakarta Sans', sans-serif;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
  --subheading-font: 'Plus Jakarta Sans', sans-serif;
  --btn-font: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ------Scrollbar CSS Start----- */
/* Firefox */

* {
  scrollbar-width: auto;
  scrollbar-color: var(--color-black) var(--color-dark);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: var(--color-dark);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 0px;
  border: 0px solid var(--color-white);
}

/* ------Scrollbar CSS End----- */
/* ==========loader common css========== */

.loader img {
  width: 150px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255 255 255 / 88%);
  transition: all 300ms ease-in-out;
}

.loader-off.loaderWrap {
  opacity: 0;
  visibility: hidden;
}



/* ============Loader Two CSS Start=============== */

@keyframes loader {

  0% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(-135deg);
  }

  100% {
    transform: rotate(-225deg);
  }

}

@keyframes span-1 {

  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(-50px, 0);
    border-color: #ee4d68;
  }

  100% {
    transform: translate(0);
  }

}

@keyframes span-2 {

  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(50px, 0);
    border-color: #875678;
  }

  100% {
    transform: translate(0);
  }

}

@keyframes span-3 {

  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(0, -50px);
    border-color: #ff9900;
  }

  100% {
    transform: translate(0);
  }

}

@keyframes span-4 {

  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(0, 50px);
    border-color: #00e4f6;
  }

  100% {
    transform: translate(0);
  }

}

.loader2 {
  width: 50px;
  height: 50px;
  position: relative;
  animation: loader 2s infinite ease-in-out;
}

.loader2 span {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  border: 4px solid #0b1b48;
}

.loader2 span:nth-child(1) {
  animation: span-1 2s ease-in-out infinite;
}

.loader2 span:nth-child(2) {
  animation: span-2 2s ease-in-out infinite;
}

.loader2 span:nth-child(3) {
  animation: span-3 2s ease-in-out infinite;
}

.loader2 span:nth-child(4) {
  animation: span-4 2s ease-in-out infinite;
}

/* ============Loader Two CSS End=============== */

body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 23px;
  color: var(--color-black);
  font-weight: 500;
  font-family: var(--para-font);
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
}

p {
  padding: 0;
  color: var(--color-black);
  font-weight: 500;
  line-height: 1.6;
  font-size: 12px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-blue);
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
  color: var(--color-white);
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

figure {
  margin: 0;
  padding: 0;
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
.heading {
  font-family: var(--heading-font);
  color: var(--color-black);
  position: relative;
  letter-spacing: 0;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}


h1 strong,
h2 strong,
.heading strong {
  font-weight: 500;
}


h3,
h4,
h5,
.subheading {
  font-family: var(--subheading-font);
  color: var(--color-blue);
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
}
::-ms-input-placeholder { /* Edge 12-18 */
  color: #A4A7B9 !important;
}

::placeholder {
  color: #A4A7B9 !important;
}

.form-control {
  height: 45px;
  border: 1px solid #E1E1E1;
  padding: 10px 15px;
  background-color: var(--color-white);
  font-size: 12px;
  color: var(--color-gray);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 4px;
  box-shadow: none !important;
  font-family: var(--para-font);
  color: var(--color-black);
}

select.form-control:not([size]):not([multiple]) {
  height: 50px;
}

.form-group{
  margin-bottom: 20px;
}
textarea.form-control {
  height: 100px;
  resize: none;
}

.form-control::placeholder {
  color: var(--color-gray);
  font-family: var(--para-font);
}

.form-control:focus {
  border-color: var(--color-blue-2);
}

.sec-space {
  padding: 40px 0;
}

button:focus {
  outline: none;
}
.bg-custom{
  background: #F7F7FA;
}

/* comone button design */
.button-solid {
  background: #29357B;
  background: transparent linear-gradient(91deg, #29357B 0%, #41C9F3 100%) 0% 0% no-repeat padding-box;
  color: var(--color-white);
  font-size: 13px;
  padding: 12px 25px;
  min-width: 170px;
  border: solid 0px var(--color-white) !important;
  border-radius: 0;
  transition: 0.5s;
  box-shadow: unset !important;
  border-radius: 47px;
}

.button-solid:hover {
  background: var(--color-dark);
  color: var(--color-white);
  background: transparent linear-gradient(91deg, #162470 0%, #1daad4 100%) 0% 0% no-repeat padding-box;
}


/*--------------Menu Section Start--------------*/
.header-top {
  background: transparent linear-gradient(270deg, #1CB0DE 0%, #41C9F3 100%) 0% 0% no-repeat padding-box;
  padding: 6px 0;
}

.header-top, .header-top a{
  color: var(--color-white);
  font-weight: 400;
}

.top-contacts a{
  padding: 0 10px;
  display: inline-block;
}
.sochal-icons ul{
  margin-bottom: 0;
}
.sochal-icons ul li{
  display: inline-block;
  list-style: none;
  padding: 0 4px;
}
.sochal-icons ul li a{
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: var(--color-white);
  border-radius: 50%;
  text-align: center;
}
.sochal-icons ul li a:hover{
  background-color: var(--color-blue);
}
.sochal-icons ul li a i{
  line-height: 32px;
  color: var(--color-black);
  font-size: 14px;
  transition: 0.5s;
}
.sochal-icons ul li a:hover i{
  color: var(--color-white);
}
#myHeader {
  min-height: 35px;
  top: 0;
  z-index: 999;
  width: 100%;
}

.menumain {
  width: 100%;
  z-index: 9955;
  transition: all .5s ease;
  position: relative;
  background-color: var(--color-sky-blue);
}

.menumain nav.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all .5s ease;
}
.menu-bottom{
  background-color: var(--color-blue);
}

.brand-logo {
  display: inline-block;
  position: relative;
  padding: 2px 0;
  /*z-index: -1;*/
}

.brand-logo img {
  width: 180px;
}

.navbar-nav {
  flex-wrap: wrap;
}

.navbar .navbar-collapse ul li a {
  color: var(--color-black);
  font-size: 13px;
  font-weight: 400;
  padding: 20px 5px;
  margin: 0px 10px;
  display: inline-block;
}

.menu-bottom .navbar .navbar-collapse ul li a{
  color: var(--color-white);
  padding: 15px 5px;
}

.navbar .navbar-collapse ul ul.dropdown-menu {
  box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
  padding: 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--color-white);
  border-radius: 0;
  margin: 0;
}

.navbar .navbar-collapse ul ul.dropdown-menu li {
  padding: 0;
}

.navbar .navbar-collapse ul ul.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  border-left: solid 2px transparent;
  margin-left: 0;
  color: var(--color-black);
  font-weight: 400;
  font-size: 13px;
}

.navbar .navbar-collapse ul ul.dropdown-menu li a:hover {
  color: var(--color-black);
  border-left: solid 2px var(--color-blue);
  background-color: var(--color-sky-blue) !important;
}

.dropdown-toggle::after {
  width: 10px;
  height: 8px;
  border: 0;
  background-image: url(../images/down-aro.png);
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  position: relative;
  background-size: contain;
}

/* styke menu  */

/* .sticky .menumain {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #000000a8;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
} */

/* menu fixd animation */

/*@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
} */

/* menu animation end */


.serch-bar {
  padding: 0;
  position: relative;
  max-width: 270px;
  width: 100%;
  /* margin-left: 40px; */
}
.searchul {
  overflow: hidden;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: #cbf3ff;
  overflow-y: scroll;
}

.searchul ul {
  list-style: none;
}

.searchul ul li {
  padding: 5px 8px;
}

.searchul ul li a {
  text-transform: capitalize;
  font-size: 13px;
  line-height: 18px;
}
.searchul ul li ul li a {
  font-size: 12px;
  line-height: 18px;
}
.serch-bar input{
  padding-left: 40px;
  height: 40px;
  color: #B5B5B5;
  border: solid 1px #FFFFFF !important;
}
.serch-bar button {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: transparent;
  outline: none !important;
  box-shadow: none !important;
  font-weight: 300;
}
/*--------------Menu Section End--------------*/



/* =================scroll top css start here================ */

.go-top {
  bottom: 32px;
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  right: 30px;
  border-radius: 100%;
  z-index: 9;
  background: var(--color-white);
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  position: fixed;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgb(32 33 36 / 28%);
  display: none;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.go-top.show {
  display: block;
}
.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, #265CFF 0%, #c1282a 100%);
  background-image: linear-gradient(to right, #00132b 0%, #00132b 100%);
  background-image: -ms-linear-gradient(0deg, #265CFF 0%, #c1282a 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 100%;
}
.go-top::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 45px;
  height: 45px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  -o-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background-image: -webkit-linear-gradient(0deg, var(--color-blue) 0%, var(--color-blue-2) 100%);
  border-radius: 100%;
}
.go-top i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
  position: absolute;
  top: 43%;
  left: -5px;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}



.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}



.go-top:focus i:last-child,
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}



.go-top:focus i:first-child,
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}



@keyframes ripple {

  0%,

  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }



  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }



  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }

}

/* =================scroll top css start here================ */


/* ------------- Banner Section Start ------------- */
.banner-main{
  padding: 16px 0;
  padding-top: 20px;
}
.carousel-inner{
  position: relative;
}
.bannerimg::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent linear-gradient(89deg, #000000 0%, #00000005 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.left-banner {
  -ms-flex: 0 0 62%;
  flex: 0 0 62%;
  max-width: 62%;
}
.right-bannertext {
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
  max-width: 38%;
  padding: 20px 25px !important;
}
.banner-box{
  background-color: var(--color-white);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 4px;
  overflow: hidden;
}

.banner-main .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
  padding-bottom: 35px;
}

.banner-main h1 {
  font-size: 29px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 10px;
}

.banner-main p {
  font-size: 12px;
  font-weight: 300;
}

.carousel-caption p, .carousel-caption h1, .carousel-caption h2{
  color: var(--color-white);
}

.carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
  margin-left: 4px;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-control-prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: solid 1px #E5EBF3 !important;
    box-shadow: 0px 3px 6px #00000024;
    background: url(../images/left-i.png) no-repeat center var(--color-white) !important;
    border-radius: 50px;
    left: 20px;
    font-size: 0 !important;
    background-size: 14px !important;
    opacity: 1;
    z-index: 999;
    border: 0 !important;
    box-shadow: unset !important;
}
.carousel-control-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: solid 1px #E5EBF3 !important;
  right: 20px;
  box-shadow: 0px 3px 6px #00000024;
  background: url(../images/right-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  font-size: 0 !important;
  background-size: 14px !important;
  opacity: 1;
  z-index: 999;
  border: 0 !important;
  box-shadow: unset !important;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
  opacity: 0;
}


/* ------------- Banner Section End ------------- */
.small-title{
  margin-bottom: 10px;
}
.small-title h2{
  font-size: 16px;
  color: var(--color-black);
  font-weight: 600;
  margin-bottom: 10px;
}
.all-btn{
  color: var(--color-blue-2) !important;
  text-decoration: underline !important;
  font-size: 12px;
  line-height: 16px;
}
.small-title .all-btn{
  margin-bottom: 10px;
}
.event-box{
  padding-bottom: 35px;
}
.event-box h4{
  font-size: 12px;
  color: var(--color-black);
} 
.event-box h3{
  color: var(--color-black);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}
.event-box p{
  color: var(--color-black);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 8px;
}
.event-box figure{
  margin-bottom: 15px;
}

.events-slide.owlnav-active .owl-nav .owl-prev{
  top: unset;
  bottom: 0px;
  left: unset;
  right: 45px;
  transform: unset;
}

.events-slide.owlnav-active .owl-nav .owl-next{
  top: unset;
  bottom: 0px;
  left: unset;
  right: 0px;
  transform: unset;
}

/* ------------- Products slider ------------- */
.section-title {
  margin-bottom: 35px;
}


.product-img {
  position: relative;
  padding-top: 90%;
}

.product-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-title {
  padding: 10px 0;
  font-family: var(--heading-font);
  display: block;
}

.pr-title h3 {
  font-family: var(--heading-font);
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 0;
}


.shin {
  position: relative;
  overflow: hidden;
}

.shin::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}

.shin:hover::before,
.shin:focus::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* image Shin effect */




/* OWL Aro start */
.owlnav-active .owl-nav {
  display: block;
}

.owlnav-active .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: solid 1px #E5EBF3 !important;
  box-shadow: 0px 3px 6px #00000024;
  background: url(../images/left-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  left: -10px;
  font-size: 0 !important;
  background-size: 14px !important;
}

.owlnav-active .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: solid 1px #E5EBF3 !important;
  right: -10px;
  box-shadow: 0px 3px 6px #00000024;
  background: url(../images/right-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  font-size: 0 !important;
  background-size: 14px !important;
}

.owlnav-active.vehicle-list .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  left: -18px;
}

.owlnav-active.vehicle-list .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  right: -18px;
}

/* OWL Aro End */

/* ------------- Products slider End ------------- */
.left-solution{
  -ms-flex: 0 0 63%;
    flex: 0 0 63%;
    max-width: 63%;
}
.right-why{
  -ms-flex: 0 0 37%;
    flex: 0 0 37%;
    max-width: 37%;
}
.oursolutionsmain{
  background-color: var(--color-white);
  box-shadow: 0px 3px 6px #00000029;
  padding: 22px;
  border-radius: 4px;
}

.service-box {
  border: 1px solid #E8EEF3;
  border-radius: 4px;
  padding: 16px 5px;
  text-align: center;
  margin: 5px;
  transition: 0.5s;
  display: block;
}
.service-box img {
  height: 42px;
  width: auto !important;
  margin: 0 auto 5px auto;
}
.service-box h4 {
  font-size: 10px;
  margin-bottom: 0px;
  color: var(--color-black);
  min-height: 26px;
}

.service-box:hover{
  /* background: transparent linear-gradient(229deg, #29357B 0%, #41C9F3 100%) 0% 0% no-repeat padding-box; */
  border-color: var(--color-blue-2);
}
/* .service-box:hover img{
  filter: brightness(0) invert(100%);
} */
/* .service-box:hover h4{
  color: var(--color-white);
} */

.why-netgulf{
  background-color: var(--color-white);
  box-shadow: 0px 3px 6px #00000029;
  padding: 22px;
  border-radius: 4px;
  height: 100%;
}

.cl-box{
  border: 1px solid #D5D5D5;
  padding: 15px;
  margin: 5px;
}
.cl-box img{
  height: 55px;
  width: auto !important;
  margin: 0 auto;
}

.border-b{
  border-bottom: solid 1px var(--color-blue-2);
}

.due-formmain .form-control{
  background-color: #fff;
  border-color: #3eb8e5;
}
.due-formmain .form-control:focus{
  border-color: var(--color-blue-2);
}

.footer{
  background: var(--color-blue);
}

.footer-top{
  padding: 30px 0;
}
.brand-footer{
  text-align: center;
  margin-bottom: 10px;
}
.brand-footer img{
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.footer-nave{
  color: var(--color-white);
}
.footer-nave ul{
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer-nave ul li{
  display: inline-block;
  padding: 15px 15px;
}
.footer-nave ul li a{
  color: #BCC4F2;
  font-size: 12px;
  font-weight: 300;
}
.contact-footer ul{
  text-align: center;
}
.contact-footer ul li{
  display: inline-block;
  list-style: none;
  padding: 15px 20px;
  position: relative;
}
.contact-footer ul li::after{
  content: "";
  width: 1px;
  height: 15px;
  background-color: var(--color-white);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.contact-footer ul li:last-child::after{
  display: none;
}
.cn-box{
  display: flex;
  align-items: center;
  color: var(--color-white);
}
.cn-box i{
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--color-blue-2);
  text-align: center;
  line-height: 30px;
  font-size: 16px;
}
.cn-box .dtls{
 color: var(--color-white);
 font-weight: 300;
 text-align: left;
 line-height: 16px;
 padding-left: 10px;
}
.cn-box .dtls span{
  display: block;
  color: #BCC4F2;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
}

.side-nave{
  display: flex;
  width: 100%;
  border: solid 1px #4F588E;
}
.side-nave .side-main{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  border-right: solid 1px #4F588E;
  padding: 12px 15px;
  font-weight: 400;
}
.side-nave .side-main:last-child{
  border-right: solid 0px #4F588E;
}
.side-nave .side-main img{
  width: 18px;
  height: 18px;
  background-size: contain;
  flex-shrink: 0;
  margin-right: 10px;
}
.side-nave .side-main:hover{
  background-color: var(--color-blue-2);
}

.footer-button{
  background-color: var(--color-blue-2);
  padding: 8px 0;
}
.footer-button p{
  margin-bottom: 0;
  color: var(--color-white);
}
.footer-button p a{
  color: var(--color-white);
}
.footer-button p a:hover{
  text-decoration: underline;
}


/* Category Page */

.leftbg{
  background: #FCFCFE;
}
.describe{
  padding: 18px;
}
.describe p{
  color: #201C1C;
}
.describe ul li{
  list-style: none;
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  color: #201C1C;
}
.describe ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: transparent linear-gradient(180deg, #29357B 0%, #41C9F3 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 7px;
  left: 0;
}
.service-div{
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 1px solid #E8EEF3;
  border-radius: 4px;
  padding: 30px 25px;
  text-align: center;
  transition: 0.5s;
}
.service-div:hover{
  border-color: var(--color-blue-2);
}
.service-div h3{
  font-size: 16px;
  color: var(--color-black);
  font-weight: 600;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-div p{
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 57px;
}
.service-div p + p{
  display: none;
}
.service-div .button-solid{
  min-width: unset;
  padding: 8px 22px;
  font-size: 12px;
}
.service-div figure{
  /* width: 65px; */
  height: 65px;
  margin: 0 auto 10px;
}
.service-div figure img{
  width: 100%;
  height: 100%;
  background-size: contain;
  object-fit: contain;
}

.service-slide .service-div{
  margin: 2px;
}

/* border animation */



.description-box  ul{
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
}

.description-box ul li{
  margin-left: 30px;
  font-size: 12px;
  margin-bottom: 0px;
}


.description-box img{
  margin-bottom: 15px;
}

.borde-right{
  border-right: solid 1px #F7F7FA;
}

.sm-shodo{
  box-shadow: 0px 1px 4px #00000029;
}
.newsmain .post-box{
  align-items: center;
  padding: 15px 0;
}
.post-box{
  display: flex;
  padding: 22px 0;
  border-bottom: solid 1px #ECEDF1;
}
.post-box:nth-child(1){
  padding-top: 0;
}
.post-box:last-child{
  border-bottom: solid 0px transparent;
  padding-bottom: 0;
}
.post-boximg{
  width: 250px;
  flex-shrink: 0;
}
.post-boximg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-describe{
  width: 100%;
  padding: 10px;
  padding-left: 20px;
}
.post-describe h4{
  font-size: 11px;
  color: #A4A7B9;
  margin-bottom: 5px;
}

.post-describe h3{
  font-size: 13px;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-describe p{
  font-size: 12px;
  color: #201C1C;
  margin-bottom: 10px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-boximg{
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.news-boximg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmprofile{
  position: fixed;
  right: 0;
  top: 100px;
  background: transparent linear-gradient(180deg, #29357B 0%, #41C9F3 100%) 0% 0% no-repeat padding-box;
  display: flex;
  align-items: center;
  border-radius: 7px 0 0 7px;
  z-index: 9990;
}
.cmprofile .imgicon{
  padding: 6px 8px;
  border-right: solid 1px #182051;
}
.cmprofile .imgicon img {
  height: 35px;
}
.cmprofile span{
  width: 0px;
  line-height: 15px;
  font-size: 12px;
  padding: 0px;
  color: #fff;
  font-weight: 400;
  transition: 0.5s;
}

.cmprofile:hover span{
  width: 85px;
  padding: 5px 10px 5px 15px;
}

.chaticon{
  background: transparent linear-gradient(180deg, #29357B 0%, #41C9F3 100%) 0% 0% no-repeat padding-box;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 43px;
  text-align: center;
  position: fixed;
  right: 100px;
  bottom: 78px;
  z-index: 9;
}
.chaticon img{
  height: 30px;
}


.navbar-nav li > ul.dropdown-menu{
  visibility: hidden;
  overflow: hidden;
}

.dropdown-submenu {
  position:relative;
}
.dropdown-submenu>.dropdown-menu {
  top:0; 
  left: 100%;
  margin-top:-6px;
}
.dropdown-submenu> .dropdown-item{position: relative;}
.dropdown-submenu> .dropdown-item::after{
  top: 15px;
  position: absolute;
  background-size: contain;
  right: 5px;
  left: auto;
  filter: brightness(0);
}
.navbar-nav > li:nth-last-child(1) .dropdown-submenu>.dropdown-menu, .navbar-nav > li:nth-last-child(2) .dropdown-submenu>.dropdown-menu{
  right:100%;
  left: auto;
} 

/* banner image ratio */
.bannerimg{
  position: relative;
  padding-top: 62%;
  width: 100%;
  overflow: hidden;
}
.bannerimg img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right-bannertext .event-box figure img{
  max-height: 120px;
  object-fit: contain;
}

.categorybanner{
  position: relative;
  padding-top: 35%;
  width: 100%;
  overflow: hidden;
}
.categorybanner img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.tt-dataset.tt-dataset-usersList a{
  color: #000 !important;
  font-size: 12px;
  line-height: normal;
  padding: 8px 14px; 
}
.error{
  color:red;
}
p:empty {
  display: none;
}


/* ================== */
.stellarnav.light{
  background-color: var(--color-blue) !important;
  z-index: 9990;
}

.stellarnav > ul > li > a{
  padding: 19px 18px !important;
}

.stellarnav li.has-sub > a:after{
  border: 0 !important;
  margin-left: 3px !important;
  background-image: url(../images/down-aro.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 8px;
  background-size: contain;
}
.stellarnav > ul > li > a{
  color: var(--color-white) !important;
}
/* .stellarnav ul ul{
  width: 260px !important;
}
.stellarnav ul ul ul{
  left: 260px !important;
} */
.stellarnav.light ul ul{
  box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}
.stellarnav ul ul li a{
  border-left: solid 2px transparent !important;
  white-space: unset;
  line-height: 1.6;
  padding-right: 25px !important;
  font-size: 13px;
  padding: 11px 15px;
}
.stellarnav ul ul li a::after{
  filter: brightness(0);
  left: 12px;
}
.stellarnav ul ul li a:hover, .stellarnav ul ul li a:active{
  color: var(--color-black) !important;
  border-left: solid 2px var(--color-blue) !important;
  background-color: var(--color-sky-blue) !important;
}
.brand-footer img {
  filter: brightness(0) invert(1);
}


/* sm-style 21-03-2024 */

.border-sm{
  border: solid 1px #ECEDF1;
}

.post-boximg{
  position: relative;
  padding-top: 50.5%;
}

.post-boximg img{
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
}

.news-boximg img{
    background: #e7e7e7;
    padding: 5px;
    object-fit: contain;
}
.border-blue{
  border: solid 1px #3eb8e5;
  background: #f0fcff;
  border-bottom: 4px solid #137296;
  border-radius: 10px;
}
.border-blue .small-title h2{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 19px;
}
/* form flag style start */

.selectboxit-container{
  width: 20%;
}
.selectboxit-enabled {
  width: 100% !important;
}
.selectboxit-text{
  display: none !important;
}
.selectboxit-container .selectboxit {
  border-radius: 4px 0 0 4px !important;
  background-color: var(--color-white) !important;
  height: 45px !important;
  border-right: 0;
  background: #fff;
}
.selectboxit .selectboxit-option-icon-container , .selectboxit-arrow-container{
  height: 45px !important;
}
.selectboxit .selectboxit-option-icon-container {
  margin-left: 14px;
}
#phone-error{
  top: 48px;
}
/* form flag style start */


.small-title p{
  color: var(--color-gray);
  font-size: 11px;
}
.formmain input[type="tel"]{
  border-radius: 0 4px 4px 0;
}


.recent-slide .post-describe{
  height: 150px;
}

.bg-whitesm{
  background-color: var(--color-white);
  border-radius: 4px;
}

.smapmain{
  margin-left: 30px;
}

.smapmain li a{
  color: var(--color-black);
}

.form-boxsm {
  border: solid 1px #3eb8e5;
  background: #f0fcff;
  border-bottom: 4px solid #137296;
  border-radius: 10px;
  padding: 30px;
}