body {
  scroll-behavior: smooth;
}

.templateux_testimonial {
  background-color: #f5f5f5;
  padding-bottom: 13em;
}

.color_black {
  color: #000000 !important;
}

.pb-3 {
  padding-bottom: 1rem;
}

.mt-2 {
  margin-top: .5rem !important;
}

.pb-0 {
  padding-bottom: 0;
}

.pr-4 {
  padding-right: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.pt-5 {
  padding-top: 2.5rem;
}

.footer_top_margin {
  margin-top: -6em;
  padding-top: calc(6em + 7em);
}

.font_italic {
  font-style: italic;
}

.templateux-navbar {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

.primary_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #f8f9fa !important;
  -webkit-box-shadow: 0px 0px 6px 0px #00000029;
          box-shadow: 0px 0px 6px 0px #00000029;
  -webkit-animation: header-down 1s;
          animation: header-down 1s;
}

.templateux_navbar_item {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

@-webkit-keyframes header-down {
  from {
    top: -30px;
  }
  to {
    top: 0;
  }
}

@keyframes header-down {
  from {
    top: -30px;
  }
  to {
    top: 0;
  }
}

@-webkit-keyframes menu-down {
  from {
    top: -85px;
  }
  to {
    top: 85px;
  }
}

@keyframes menu-down {
  from {
    top: -85px;
  }
  to {
    top: 85px;
  }
}

.color_white {
  color: #ffffff !important;
}

.site-nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 0;
}

.primary_header .site-nav ul li a {
  color: black !important;
  border-radius: 5000px;
  padding: 4px 12px 5px 12px;
  font-size: 12px;
  text-transform: capitalize;
}

.primary_header .site-nav ul li.active a {
  background-image: -webkit-gradient(linear, left top, right top, from(#30c9cd), to(#330d69));
  background-image: linear-gradient(to right, #30c9cd, #330d69);
  color: white !important;
}

.home_screen {
  min-height: 100vh;
  height: calc(100vh + 50px);
  background-color: #000;
  /* background-image: url("/images/companybanner.gif"); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.templateux-cover, .templateux-cover .row {
  min-height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.logo {
  max-height: 70px;
}

.primary_header .logo.logo_white {
  display: none;
}

.logo.logo_primary {
  display: none;
}

.primary_header .logo.logo_primary {
  display: block;
}

.btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#30c9cd), to(#330d69));
  background-image: linear-gradient(to right, #30c9cd, #330d69);
  color: white !important;
  border: none;
  border-radius: 4px;
}

.contact_input_container label {
  display: block;
  margin-bottom: 5px;
  position: relative;
}

.contact_input_container input {
  border: none;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  height: 32px;
  width: 100%;
  border-radius: 3px;
  background-color: white;
  padding: 0px 10px;
}

.contact_input_container textarea {
  border: none;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  height: 32px;
  width: 100%;
  resize: none;
  height: 100px;
  border-radius: 3px;
  background-color: white;
  padding: 10px;
}

.templateux-footer {
  background-image: url("/images/main_footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  color: white;
}

.bg-section{
  background-image: url("/images/main_footer.png")!important;
  background-repeat: no-repeat;
  background-size: cover;
  padding:0em 0em 7em 0em;
}

.block-social {
  margin-bottom: 0;
}

.block-social li a span {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  margin: 0px 7px;
  color: white;
}

.block-social li {
  vertical-align: top;
}

.connect_us {
  background-color: black;
  text-align: center;
  padding: 5px 15px;
}

.d-inline-block {
  display: inline-block;
  vertical-align: top;
}

.image_gallery {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(4, 1fr);
}

.image_gallery_items {
  min-height: 300px;
  position: relative;
}

.image_gallery_items .image_gallery_items_img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-box-shadow: 0px 0px 5px 1px #00000029;
          box-shadow: 0px 0px 5px 1px #00000029;
}

.image_gallery_items img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-box-shadow: 0px 0px 5px 1px #00000029;
          box-shadow: 0px 0px 5px 1px #00000029;
}

.image_gallery_items span {
  visibility: hidden;
  z-index: 20;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.image_gallery_items:hover span {
  visibility: visible;
  padding: 15px;
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  word-break: break-all;
  word-break: break-word;
  white-space: pre-wrap;
  background-color: rgba(0, 0, 0, 0.29);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.image_gallery_items:hover .image_gallery_items_img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  z-index: 4;
}

.grid_col_span_2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.grid_col_span_3 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}

.image_gallery_mid_row_span_item {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
}

.image_gallery_last_row_span_item {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 2;
  grid-row-end: 5;
}
#mobile-menu {
  
}
#mobile-menu.primary_mobile_menu {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  right: 0;
  top: 100px;
  z-index: 998;
  -webkit-animation: menu-down 100ms;
          animation: menu-down 100ms;
  background-color: #f8f9fa;
}

#mobile-menu.primary_mobile_menu ul li a {
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.image_gallery_mob .owl-carousel.wide-slider-testimonial .owl-nav > button, .image_gallery_mob .owl-carousel.wide-slider .owl-nav > button {
  opacity: 0.5 !important;
}

.image_gallery_mob .owl-dots {
  background-color: rgba(0, 0, 0, 0.3);
}

.image_gallery_mob .owl-carousel.wide-slider-testimonial .owl-dots button, .image_gallery_mob .owl-carousel.wide-slider .owl-dots button {
  margin: 7px 10px 7px 0px !important;
}

.service_icon {
  height: 80px;
}

.service_image {
  width: 100%;
  max-height: 230px;
}

.text-right {
  text-align: right;
}

.contact_btn {
  background-color: white;
  color: black !important;
  border: none;
  border-radius: 4px;
  min-width: 100px;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: pointer;
}

.mandatory {
  position: absolute;
  top: 13px;
  right: 15px;
  color: #f43030;
  font-size: 12px;
  display: none;
}

.toast_msg {
  position: fixed;
  bottom: -150px;
  left: 15px;
  right: 15px;
  z-index: 999;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.toast_content {
  width: 100%;
  max-width: 300px;
  word-break: break-all;
  word-break: break-word;
  white-space: pre-wrap;
  padding: 10px;
  border-radius: 4px;
}

.error_toast {
  bottom: 15px;
  -webkit-animation: toast-up 1s;
          animation: toast-up 1s;
}

.success_toast {
  bottom: 15px;
  -webkit-animation: toast-up 1s;
          animation: toast-up 1s;
}

.error_toast .toast_content {
  background-color: #f82c2c;
}

.success_toast .toast_content {
  background-color: #136e13;
}

@-webkit-keyframes toast-up {
  from {
    bottom: -150px;
  }
  to {
    bottom: 15px;
  }
}

@keyframes toast-up {
  from {
    bottom: -150px;
  }
  to {
    bottom: 15px;
  }
}

.testimonial_custom_item {
  /* background-color: #ffffff;
    padding: 80px;
    border-radius: 5000px;
    box-shadow: 0px 0px 6px 0px #00000029;
    margin: 10px; */
}

.testimonial_person {
  display: inline-block;
  border-top: 1px solid #000000;
  position: relative;
  padding: 10px 20px 10px 20px;
}

.testimonial_person::after {
  content: '*';
  position: absolute;
  top: -11px;
  right: -10px;
  color: black;
}

.testimonial_person::before {
  content: '*';
  position: absolute;
  top: -11px;
  left: -10px;
  color: black;
}

.card {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 7px;
  -webkit-box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);

  margin-top: 20px;
}
.latest-update-carousel .card >  .icon {
  width: 100%
}
.latest-update-carousel .card .media-body {
  display: flex;
  flex-direction: column;
}
.latest-update-carousel .card .media-body p {
  flex: 1 1 10px
}

.latest-update-carousel .card {
  margin-top: 0;
  display: flex !important;
  flex-direction: column;
}

.side_img-wrapper {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.side_img-wrapper img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-shadow: 0px 0px 5px 1px #00000029;
          box-shadow: 0px 0px 5px 1px #00000029;
}

@media screen and (max-width: 767px) {
  .site-nav {
    padding: 10px;
  }
  .primary_header.templateux-navbar .templateux-toggle.templateux-toggle-light .hamburger-inner, .primary_header.templateux-navbar .templateux-toggle.templateux-toggle-light .hamburger-inner:after, .primary_header.templateux-navbar .templateux-toggle.templateux-toggle-light .hamburger-inner:before {
    background-image: -webkit-gradient(linear, left top, right top, from(#30c9cd), to(#330d69));
    background-image: linear-gradient(to right, #30c9cd, #330d69);
    background-color: #000; 
  }
  .image_gallery_mob .owl-item {
    height: 270px;
  }
  .image_gallery_mob .owl-item .item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .image_gallery_mob .owl-item .item img {
    width: 100%;
  }
  .templateux-navbar {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .primary_header.templateux-navbar {
    position: fixed;
  }
  #mobile-menu {
    background-color: var(--primary);
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
  }

  #mobile-menu {
    display: none;
  }
  
  #mobile-menu.show {
    display: block !important;
  }

  #mobile-menu.primary_mobile_menu {
    border-top: none;
    border-bottom: none;
  }
  #mobile-menu ul li a {
    border-color: white;
  }
  #mobile-menu ul li:last-child a {
    border-bottom: none;
  }
}

#hero-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 600px;
  overflow: hidden;
  text-align: center;
}

#hero-banner #video-box {
  height: 600px;
  width: 100%;
  aspect-ratio: 3 / 2;
}

#hero-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

hr {
  border-top: 1px solid red;
  width: 600px;
  margin-bottom: 16px;
}

#hero-content {
  position: absolute;
  width: 600px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  color: azure;
}

#hero-banner #hero-button-container {
  padding: 40px;
  width: 600px;
  height: 200px;
  z-index: 10000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: azure;
  top: 120px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 400px;
}

#hero-button-container button {
  height: 40px;
  width: 113px;
  border-radius: 20px;
  margin: 10px;
  background-color: transparent;
  border: 1px ridge darkslategray;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  color: azure;
  font-weight: 600;
}

#hero-banner div button:nth-of-type(1) {
  background-color: #665dc3;
  -webkit-transition: opacity .1s;
  transition: opacity .1s;
}

#hero-banner div button:nth-of-type(1):hover {
  opacity: .85;
}

#hero-banner div button:nth-of-type(2) {
  width: 142px;
  border: 1px solid #f0f0f0;
}

#hero-banner div button:nth-of-type(2):hover {
  opacity: .8;
}

.show {
  z-index: 999;
  display: none;
}

.show .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
  position: absolute;
  top: 0;
  left: 0;
}

.show .img-show {
  width: 600px;
  height: 400px;
  background: #FFF;
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}

.img-show span {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
}

.img-show img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Customize the arrow marks */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-control-prev::before,
.carousel-control-next::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
}

.carousel-control-prev {
  left: -40px;
}

.carousel-control-prev::before {
  transform: rotate(0deg);
}

.carousel-control-next {
  right: -40px;
}

@media screen and (max-width: 610px) {
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
}

.carousel-control-next::before {
  transform: rotate(180deg);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.8;
}

.triangle {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 25px solid #47a6aa;
  transform: rotate(90deg);
  display: inline-block;
}

.gradienttext{
  /* font-size: 24px;  */
  font-weight: bold; 
  text-align: center; 
  margin-bottom: 20px; 
  background: linear-gradient(-45deg, #47a6aa, #054270); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}

.gridsectionhead{
  background-image: -webkit-gradient(linear, left top, right top, from(#30c9cd), to(#330d69));
  background-image: linear-gradient(to left, #30c9cd, #330d69);
  color: white !important;
  border: none;
  border-radius: 4px;
  width:100%;
  padding-left: 5px;
  text-transform: capitalize !important;
  font-weight: bold;
}
.servicebanner{
  background-image:url("/images/servicebanner.png");
  width: 100%;
}


.navbar .dropdown-toggle:hover .dropdown-menu {
  display: block;
}


.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-content li {
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.px-2 {
  padding: 0px 10px;
}
.latest-update-carousel .owl-stage {
  display: flex;
} 
.latest-update-carousel .owl-stage .owl-item .card {
  min-height: 100%;
}
.latest-update-carousel .owl-stage .owl-item {
  padding-top: 20px;
}
.latest-update-carousel .owl-nav>button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: rgba(225, 225, 225, 0.5) !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  font-size: 20px;
  color: #fff !important;
  -webkit-transition: .3s allease;
  -o-transition: .3s all ease;
  transition: .3s allease;
  opacity: 1;
  cursor: pointer !important;
  outline: none !important;
}
.latest-update-carousel .owl-nav>button.owl-next {
  right: -35px;
}
.latest-update-carousel .owl-nav>button.owl-prev {
  left: -40px;
}
/*End style*/
/*# sourceMappingURL=styles.css.map */