@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

:root {
  --navyBlue: #004178;
  --skyBlue: #1a98d5;
  --whiteColor: #ffffff;
  --greyColor: #d9d9d9;
  --darkBlue: #001222;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Mono", monospace;
}

table p {
  margin: 0px;
  padding: 0px;
 }

h1,
h2 {
  font-weight: 500;
}

a {
  color: var(--skyBlue);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  outline: none;
}

a:hover,
a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

p{
    font-size:0.9rem;
    
}

.whiteColor {
  color: var(--whiteColor);
}

.text-skyBlue {
  color: var(--skyBlue);
}

.custom-select {
  font-size: 0.875rem !important;
}

.text-darkGray {
  color: var(--darkGrayColor);
}

.text-red {
  color: var(--redColor);
}

.btn-success {
  background: var(--blueColor);
  padding: 0.375rem 1.75rem;
}

.btn-success:hover {
  background: var(--blueColor);
  opacity: 0.8;
}

.btn {
  padding: 10px 20px;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
}

.btn-chardonnay {
  background: var(--chardonnayColor);
  border: 1px solid var(--chardonnayColor);
}

.btn-outline-chardonnay {
  background: var(--chardonnayColor);
  border: 1px solid var(--chardonnayColor);
  border-radius: 50px;
}

.btn-secondary {
  background: var(--darkGrayColor);
  border: 1px solid var(--darkGrayColor);
  border-radius: 50px;
}

.btn-small {
  padding: 0.25rem 1.5rem;
}

.btn-primary {
  border-radius: 15px;
  background: var(--skyBlue);
  border: 1px solid var(--skyBlue);
  transition: all 0.45s;
}

.btn-primary:hover {
  background: var(--navyBlue);
  border: 1px solid var(--navyBlue);
}

.badge-primary {
  background: var(--blueColor);
  border: 1px solid var(--blueColor);
}

.btn-outline-primary {
  border-radius: 15px;
  border: 2px solid var(--skyBlue);
  color: var(--skyBlue) !important;
  transition: all 0.45s;
  padding: 8px 40px;
}

.btn-outline-primary:hover {
  border: 2px solid var(--skyBlue);
  color: var(--whiteColor) !important;
  background: var(--skyBlue) !important;
}

p,
ul li,
ol li {
  color: var(--darkGrayColor);
  line-height: 24px;
}

.custom-slider-section,
.welcome-section,
.blog-wrapp,
.footer-section
{
  padding-top: 150px !important;
}

.testimonials-section{
  padding-top: 130px !important;
    
}

/*p {*/
/*  text-align: justify;*/
/*}*/

ul.common-list-none {
  margin: 0px;
  padding: 0px;
}

ul.common-list-none li {
  list-style: none;
}

ul.common-list {
  margin: 0px;
  padding: 0px;
}

ul.common-list li {
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
}

ul.common-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--darkGrayColor);
}

ol.common-order-list {
  margin: 0px;
  padding: 0px;
  padding-left: 15px;
}

ol.common-order-list li {
  line-height: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
}

.bg-primary {
  background: var(--blueColor) !important;
}

.heading-2 {
  font-size: 2.8rem;

  margin-bottom: 20px;
  color: var(--whiteColor);
}

.heading-4 {
  font-size: 2rem;

  margin-bottom: 20px;
}

.container {
  max-width: 1250px;
}

/* Header */
header {
  width: 100%;
  z-index: 10000;
  position: fixed;
  top: 0;
  background: #001222;
  color: #fff;
  padding: 10px 0px;
}

header.sticky #top_line {
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  visibility: visible;
}

#top_line {
  font-size: 12px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  visibility: visible;
  opacity: 1;
  background: var(--chardonnayColor);
  padding: 6px 0px;
  font-size: 12px;
}

header.sticky {
  -webkit-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
  box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.41);
  background-color: #fff;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.sticky nav {
  margin-top: 10px;
}

#tag_line {
  font-size: 13px;
  color: #666;
}

ul.top_links {
  list-style: none;
  margin: 0;
  padding: 0;
  float: right;
  font-weight: 500;
}

ul.top_links li {
  display: inline-block;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 5px;
  padding-left: 8px;
}

ul.top_links li:first-child {
  border: 0px;
}

ul.top_links li i {
  font-weight: bold;
  font-size: 15px;
}

header .row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}

header .bigSubmenu .row {
  align-items: flex-start;
}
ul.about-menu {
  margin: 0px;
  padding: 0px;
}
ul.about-menu li {
  list-style: none;
  border-bottom: 1px solid var(--skyBlue);
  padding: 20px 0px;
  font-size: 1.1rem;
}
ul.about-menu li a {
  /*font-size: 1.2rem;*/
  position: relative;
  display: block;
  color: var(--navyBlue);
}

ul.about-menu li:hover a {
  color: var(--skyBlue);
  font-size: 1.2rem;
  position: relative;
  display: block;
}

.bigSubmenuContent .row {
  padding: 0px;
}

header .logo img {
  width: 92px;
  height: auto;
}

.menu-icon {
  display: none;
}

header nav > ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 16px;
  justify-content: end;
  align-items: center;
  height: 100%;
}

header nav ul li .submenu-icon1,
header nav ul li .submenu-icon2 {
  display: none;
}

header nav > ul > li {
  list-style: none;
  position: relative;
}

header nav > ul > li > a {
  color: #fff;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  border: 2px solid transparent;
}

/*header nav > ul > li > a:hover {*/
header nav > ul > li:hover > a {
  color: #fff;
  background: rgba(1, 58, 116, 0.5);
  border: 2px solid #013a6a;
  box-shadow: rgba(1, 58, 116, 1) 0px 13px 27px -5px,
    rgba(1, 58, 116, 1) 0px 8px 16px -8px;
}
/*header nav > ul > li > a.nav-contact {*/
header nav > ul > li.nav-contact > a {
  background: url(../images/contact-btn.png) no-repeat;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 50px;
  padding-right: 25px;
  background-size: contain;
}

header nav > ul > li > a:hover::after {
  width: 100%;
}
header nav > ul > li:last-child > a:hover::after {
  width: 0px;
}

/* header nav>ul>li>a:hover {
    color: var(--skyBlue);
} */

header nav > ul > li > ul {
  position: absolute;
  top: 125%;
  left: 0;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
  width: 140px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 2px 4px 10px gainsboro;
  background: #01264b;
  border: 2px solid #013a6a;
  box-shadow: rgba(1, 58, 116, 1) 0px 13px 27px -5px, rgba(1, 58, 116, 1) 0px 8px 16px -8px;
}


header nav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}

header nav > ul > li > ul > li {
  list-style-type: none;
  font-size: 0.85rem;
  position: relative;
}

header nav > ul > li > ul > li > a {
  padding: 6px 12px;
  display: block;
  color: #fff;
  border-bottom:1px solid #00315a;
}

header nav > ul > li > ul > li > a:hover {
  background: #001222;
  color: #fff;
}

/* submenu 2 begin here */
header nav > ul > li > ul > li > ul {
  position: absolute;
  top: 0%;
  left: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0px;
  padding: 0px;
  width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 2px 4px 10px gainsboro;
}

header nav > ul > li > ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}

header nav > ul > li > ul > li > ul > li {
  list-style-type: none;
  font-size: 0.85rem;
}

header nav > ul > li > ul > li > ul > li > a {
  padding: 10px 20px;
  display: block;
  color: #000;
  font-size: 90%;
}

header nav > ul > li > ul > li > ul > li > a:hover {
  background: var(--darkPinkColor);
  color: #fff;
}

/* submenu 2 ends here */

/* bigSubmenu start here */
header nav > ul > li > .bigSubmenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  margin: 0px;
  padding: 30px 30px 110px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

header nav > ul > li:hover > ul,
header nav > ul > li:hover > .bigSubmenu {
  visibility: visible;
  opacity: 1;
}

header nav > ul > li > .bigSubmenu > ul {
  margin: 0px;
  padding: 0px;
  width: 250px;
  position: relative;
}
header nav > ul > li > .bigSubmenu > ul > li {
  list-style: none;
  border-bottom: 1px solid var(--skyBlue);
  padding: 20px 0px;
  /*old size font-size: 1.1rem;*/
  font-size: 0.9rem;
}
header nav > ul > li > .bigSubmenu > ul > li:last-child {
  border: 0px;
}
header nav > ul > li > .bigSubmenu > ul > li > a {
  color: var(--navyBlue);
}
header nav > ul > li > .bigSubmenu > ul > li:hover > a {
  color: var(--skyBlue);
  font-size: 1.2rem;
  position: relative;
  display: block;
}
header nav > ul > li > .bigSubmenu > ul > li:hover > a::after {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 14px solid var(--skyBlue);
  border-bottom: 7px solid transparent;
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
}

header nav > ul > li > .bigSubmenu > ul > li > ul {
  margin: 0px;
  padding: 0px;
  width: 245px;
  position: absolute;
  top: 0px;
  left: 220px;
  opacity: 0;
  visibility: hidden;
  min-height: 320px;
}
header nav > ul > li > .bigSubmenu > ul > li:hover > ul {
  padding-left: 50px;
  visibility: visible;
  opacity: 1;
}
header nav > ul > li > .bigSubmenu > ul > li > ul > li {
  list-style: none;
  padding: 2px 0px;
  font-size: 0.9rem;
  /*text-transform: uppercase;*/
}
header nav > ul > li > .bigSubmenu > ul > li > ul > li a {
  color: var(--navyBlue);
}
/*header nav>ul>li> .bigSubmenu > ul > li > ul > li > a::after{*/
/*  width: 0;*/
/*	height: 0;*/
/*	border-top: 8px solid transparent;*/
/*	border-left: 12px solid  var(--skyBlue);;*/
/*	border-bottom: 6px solid transparent;*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 5px;*/
/*  right: 0;*/
/*}*/
header nav > ul > li > .bigSubmenu > ul > li > ul > li > a:hover {
  color: var(--skyBlue);
}

/* bigSubmenuContent begin here */
header nav > ul > li > .bigSubmenu > ul > li > ul > li > .bigSubmenuContent {
  margin: 0px;
  padding: 0px;
  width: 700px;
  position: absolute;
  top: 0px;
  left: 260px;
  /*opacity: 0;*/
  /*visibility: hidden;*/
}
/*header nav>ul>li> .bigSubmenu > ul > li > ul > li:hover > .bigSubmenuContent{*/
/*  visibility: visible;*/
/*  opacity: 1;*/
/*  padding-left: 85px;*/
/*}*/
header nav > ul > li > .bigSubmenu > ul > li > ul > li > .bigSubmenuContent {
  list-style: none;
  padding: 2px 0px;
  font-size: 0.9rem;
  min-height: 312px;
  /*text-transform: uppercase;*/
}
header
  nav
  > ul
  > li
  > .bigSubmenu
  > ul
  > li
  > ul
  > li
  > .bigSubmenuContent
  .row {
  align-items: flex-start;
}
header nav > ul > li > .bigSubmenu > ul > li > ul > li > .bigSubmenuContent ul {
  margin: 0px;
  padding: 0px;
}
header
  nav
  > ul
  > li
  > .bigSubmenu
  > ul
  > li
  > ul
  > li
  > .bigSubmenuContent
  ul
  li {
  list-style: none;
  line-height: 20px;
}
header
  nav
  > ul
  > li
  > .bigSubmenu
  > ul
  > li
  > ul
  > li
  > .bigSubmenuContent
  ul
  li
  a {
  color: var(--navyBlue);
  font-size: 70%;
}
header
  nav
  > ul
  > li
  > .bigSubmenu
  > ul
  > li
  > ul
  > li
  > .bigSubmenuContent
  ul
  li
  a:hover {
  color: var(--skyBlue);
}

/*about list style */
header nav > ul > li > .bigSubmenu .about-list {
  margin: 0;
  padding: 0;
  list-style: disc;
  margin-left: 15px;
  width: 300px;
}
header nav > ul > li > .bigSubmenu .about-list li {
  line-height: 26px !important;
  font-size: 14px;
  color: var(--navyBlue);
}

/*top contact btn style*/
header .contact-flex {
  border: 3px solid #1a98d5;
  border-radius: 20px;
}
header .contact-flex .contact-style {
  padding: 15px;
}
header .contact-flex .contact-style span {
  color: #1a98d5;
}

.btn-outline-primary.top-btn {
  border-radius: 15px 0 0 15px;
}

/* bigSubmenu ends here */

.slider-section {
  width: 100%;
  position: relative;
}

.slider-section .welcome-down {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 100;
}

.slider-section .welcome-down img {
  width: 100px;
}

.slider-section .carousel-indicators {
  top: 32px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 5%;
  margin-right: 5%;
}

.slider-section .carousel-indicators li {
  width: 5px !important;
  height: 20px !important;
}

.slider-section .carousel-indicators li.active {
  background-color: var(--skyBlue);
}

.slider-section .carousel-caption {
  text-align: left;
  bottom: 20%;
  left: 10%;
}

.slider-section .carousel-caption .ten-years {
  width: 125px;
}

.slider-section .carousel-caption h1 {
  font-size: 3.8rem;

  color: #2e2e6e;
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 58px;
}

.slider-section .carousel-caption h4 {
  font-size: 1.4rem;
  border-top: 1px solid var(--skyBlue);
  display: inline;
  padding-top: 15px;
}

.slider-section .btn {
  margin-top: 20px;
}

.slider-section img {
  width: 100%;
}

.slider-section .slider-item {
  padding-top: 150px;
  position: absolute;
  top: 0px;
  left: 200px;
}

/* welcome section start here */
.welcome-section {
  position: relative;
  background: linear-gradient(180deg, black, #004178);
  padding-top: 70px;
  overflow: hidden;
}
.welcome-section .container {
  background: url(../images/stars.png) center center no-repeat;
  background-size: contain;
}

.welcome-section .about-art-bg {
    width: 100%;
    position: fixed;
    top: -100px;
    left: 0px;
}

.welcome-section .welcome-left {
  text-align: center;
  position: relative;
}
.welcome-section .welcome-left .galaxy-star1 {
  width: 190px;
  position: absolute;
  top: -75px;
  left: 0;
}
.welcome-section .welcome-left .plus-star {
  width: 60px;
  position: absolute;
  bottom: 360px;
  left: 60px;
}

.welcome-section .welcome-right {
  position: relative;
}

.welcome-section .welcome-right .galaxy-star2 {
  width: 125px;
  position: absolute;
  top: -30px;
  left: -90px;
}

.welcome-section .welcome-right .galaxy2 {
  width: 200px;
  position: absolute;
  bottom: -125px;
  right: -78px;
}
.welcome-section .welcome-right .learm-more {
  background: url(../images/learn-more.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 16px 30px;
}
.welcome-section .welcome-right .learm-more:hover {
    color:#004178;
}

.welcome-section .welcome-left .heading-2 {
  margin-bottom: -20px;
}
.welcome-section .welcome-left .astro {
  width: 38%;
  position: relative;
  top: 105px;
  animation-duration: 3s;
}
.rotate-minus-45 {
  transform: rotate(-45deg);
}
.welcome-section .welcome-right {
  padding-top: 60px;
}

.welcome-section .welcome-right .learn-more-span, 
.welcome-section .welcome-right .about-para, 
#services .astro-mech
{
animation-duration: 3s;
}

.welcome-section .welcome-left .globe {
  width: 80%;
}
.welcome-section .welcome-right {
  max-width: 420px;
}

.welcome-section .welcome-right p {
  color: #ffffff;
  font-size: 15px;
  /*text-align: justify;*/
  line-height: 28px;
}

.machine-section {
  padding: 80px 0px;
}

.machine-section .machine-box {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.machine-section .machine-box h5 {
  font-weight: 600;
}

/*.services-section {*/
/*  padding: 80px 0px;*/
/*  background: var(--moreLightPinkColor);*/
/*}*/

/*.services-section .service-box {*/
/*  display: flex;*/
/*  gap: 10px;*/
/*  margin-top: 30px;*/
/*  align-items: center;*/
/*}*/

/*.services-section .service-box img {*/
/*  width: 90px;*/
/*}*/

.owl-theme .owl-dots .owl-dot span {
  background: rgb(181 181 181);
}

.welcome-sections .count-box {
  color: var(--darkGrayColor);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.welcome-sections .count-box span {
  font-size: 3rem;
  font-weight: bold;
}

.welcome-sections .count-box .icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-sections .count-box .icon-circle i {
  font-size: 30px;
}

.welcome-sections .count-box h2 {
  font-weight: bold;
  margin-bottom: 0px;
}

.welcome-sections .count-box p {
  margin-bottom: 0px;
  color: var(--darkGrayColor);
}

.testimonials-section {
  padding: 32px 0px;
  background: url(../images/art-bg.png) top center,
    linear-gradient(180deg, black, #004178);
}
.testimonials-section.other-services {
   background:url(../images/art-bg.png) top center, linear-gradient(355deg, black, #004178)!important;
   padding-bottom:100px;
   padding-top:30px !important;
}

.testimonials-section .owl-theme .owl-dots .owl-dot span,
.testimonials-section .owl-theme .owl-dots .owl-dot span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transition: all 0.45s;
  background-color: #fff;
  margin: 2px 2px;
  margin-top: 50px;
}
.testimonials-section .owl-theme .owl-dots .owl-dot.active span {
  /*.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {*/
  border-radius: 5px;
  width: 36px;
  height: 5px;
  background: var(--skyBlue);
}

.testimonials-section h2 {
  margin-bottom: 20px;
  color: var(--skyBlue);
}

.testimonials-section .testimonials-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  display: block;
  color: #000;
  display: flex;
  position: relative;
}

.testimonials-section .client-testimonials-box .testimonial-footer .learn-more {
  color: var(--whiteColor);
  background: var(--darkBlue);
  border: 1px solid var(--skyBlue);
  box-shadow: #1a98d5 0px 5px 14px;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 8px 20px;
  text-decoration:none;
}

.testimonials-section .testimonials-box img {
  width: 100%;
  margin-bottom: 20px;
  height: 260px;
  width: 260px;
}

.testimonials-section .testimonials-box h6 {
  font-weight: bold;
}

.month-offer-section {
  padding: 80px 0px;
}

.month-offer-section .row {
  align-items: center;
  justify-content: center;
}

.month-offer-section span {
  display: block;
  color: #f16d81;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.team-section .owl-theme .owl-dots .owl-dot.active span,
.team-section .owl-theme .owl-dots .owl-dot:hover span {
  background: #fff;
  width: 20px;
  transition: all 0.45s;
}

.team-section h2 {
  margin-bottom: 50px;
}

.team-section .team-box {
  background: #fff;
  padding: 18px 24px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: block;
  color: #000;
  /* height: 600px; */
}

.team-section .team-box img {
  width: 100%;
  margin-bottom: 20px;
}

.team-section .team-box h6 {
  font-weight: bold;
}

.team-section .team-box p {
  margin-bottom: 0px;
}

.our-clinic-section {
  padding: 50px 0px;
  background: #fff;
}

.our-clinic-section .clinic-box {
  text-align: center;
  margin-top: 20px;
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 310px;
}

.our-clinic-section .clinic-box img {
  width: 100%;
}

.our-clinic-section .clinic-box h5 {
  /* font-weight: 600; */
  margin-top: 20px;
}

.our-clinic-section .clinic-box h5 i {
  margin-right: 5px;
}

.our-clinic-section .clinic-box p {
  padding: 0px 30px;
}

.goal-section {
  padding: 50px 0px;
  background: #fff;
}

.goal-section .goal-box {
  background: var(--chardonnayColor);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.goal-section .goal-box h4 {
  font-weight: bold;
}

.goal-section .goal-box p {
  padding-bottom: 0px;
}

.insta-feed-section {
  padding: 80px 0px;
}

.partner-section {
  padding: 80px 0px;
}

.partner-section .client-box {
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-section img {
  width: 165px !important;
}

.partner-section .owl-nav,
.partner-section .owl-dots {
  display: none;
}

footer {
  background: var(--darkBlue);
  padding: 30px 0 10px 0;
}

footer h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
}

footer ul li {
  color: var(--darkGrayColor);
}

footer .btn-primary {
  background-color: var(--darkBlueColor);
  border-color: #0062cc;
}

footer p {
  color: var(--darkGrayColor);
}

footer ul {
  margin: 0px;
  padding: 0px;
  /* margin-left: 20px; */
}

footer ul li {
  /* list-style: square; */
  list-style: none;
  font-size: 0.75rem;
  margin-bottom: 2px;
}

footer ul li a {
  color: var(--darkGrayColor);
  transition: all 0.45s;
}

.social-icon-box ul.social-icons li a i {
  font-size: 35px;
}

.social-icon-box ul.social-icons li a:hover {
  background: #000;
  color: #fff !important;
}

.copy-section {
  background-color: #fcf7ee;
  padding: 20px 0;
  text-align: center;
  color: var(--darkGrayColor);
  font-size: 0.9rem;
}

.copy-section p {
  text-align: left;
  margin-bottom: 0px;
}

.copy-section ul {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  margin-bottom: 0px;
}

.copy-section ul li {
  list-style: none;
}

.copy-section ul li a {
  color: var(--darkGrayColor);
  transition: all 0.45s;
}

.copy-section ul li a:hover {
  color: var(--darkPinkColor);
}

.listing-page {
  background: #f1f1f1;
  padding: 15px 0px;
}

.listing-wrapper {
  display: flex;
}

.listing-wrapper .listing-left-box {
  flex: 0 0 300px;
  max-width: 300px;
  padding: 0px 10px 0px 0px;
}

.listing-wrapper .listing-left-box .filter-box {
  background: #fff;
}

.listing-wrapper .listing-left-box .filter-box .filter-main-title {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 18px;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.listing-wrapper
  .listing-left-box
  .filter-box
  .filter-inner-box
  .filter-inner-title {
  font-size: 14px;
  text-transform: uppercase;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul {
  margin: 0px;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul li {
  list-style: none;
  font-size: 14px;
  color: #777;
}

.listing-wrapper .listing-left-box .filter-box .filter-inner-box ul li label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0px;
}

.listing-wrapper
  .listing-left-box
  .filter-box
  .filter-inner-box
  ul
  .filter-sublist {
  margin-left: 20px;
  display: none;
}

.listing-wrapper
  .listing-left-box
  .filter-box
  .filter-inner-box
  ul
  .filter-sublist.active {
  display: block;
}

.listing-wrapper .listing-right-box {
  flex-grow: 1;
  overflow: auto;
}

.listing-wrapper .listing-right-box .listing-box {
  background: #fff;
  overflow: hidden;
}

.listing-wrapper .listing-right-box .listing-main-title {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}

.listing-wrapper .listing-right-box .listing-inner-box {
  padding: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.listing-wrapper .listing-right-box .listing-inner-box img {
  border: 1px solid #ccc;
  padding: 5px;
}

.listing-page-details {
  padding: 30px 0px;
}

.listing-page-details img {
  width: 100%;
}

.listing-page-details h1 {
  font-size: 30px;
  /* font-weight: 500; */
}

.top-doctors-section {
  text-align: center;
}

.top-doctors-section .owl-carousel {
  margin-top: 30px;
}

.top-doctors-section .owl-carousel h6 {
  text-transform: uppercase;
  color: #000;
  margin-top: 10px;
  margin-bottom: 5px;
}

.top-doctors-section .owl-carousel span {
  color: #555;
  font-size: 13px;
}

.top-doctors-section.top-doctors-section-package .owl-carousel span {
  color: #555;
  font-size: 10px;
}

.top-doctors-section.top-doctors-section-package .owl-carousel h6 {
  font-size: 80%;
  margin-bottom: 0px;
}

.top-doctors-section .owl-carousel span + span {
  font-style: italic;
  display: block;
  font-size: 11px;
  font-weight: bold;
}

.top-doctors-section.top-doctors-section-package .owl-carousel span + span {
  font-size: 10px;
}

.widget1 input[type="text"],
.widget input[type="email"] {
}

.widget .form-control,
.widget input[type="text"],
.widget input[type="email"],
.widget input[type="password"],
.widget input[type="url"],
.widget input[type="date"],
.widget textarea,
.widget select {
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  border: 1px solid #e1e1e1;
  color: #545454;
  background-color: #f8f9fa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.widget .btn-default,
.widget input[type="submit"],
.widget input[type="reset"] {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
  color: #fff;
}

.widget .btn,
.widget input[type="submit"],
.widget input[type="reset"] {
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 300;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
}

.widget .newsletter-frm button,
.widget .newsletter-frm input[type="submit"] {
  padding: 8px 20px;
}

.widget .newsletter-frm button:hover,
.widget .newsletter-frm input[type="submit"]:hover {
  background: #008c99;
}

.widget h3 {
  clear: both;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 19px;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
}

.widget h3 span {
  display: inline-block;
  max-width: 100%;
  position: relative;
  padding: 0 26px;
  color: var(--blueColor);
}

.widget h3 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 20px;
  height: 4px;
  border-top: 1px solid var(--blueColor);
  border-bottom: 1px solid var(--blueColor);
}

.widget h3 span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
  width: 20px;
  height: 4px;
  border-top: 1px solid var(--blueColor);
  border-bottom: 1px solid var(--blueColor);
}

.widget .search-box input[type="text"] {
  padding-top1: 7px;
  font-size: 14px;
  float: left;
  width: calc(100% - 40px);
  background: #fff;
  margin: 0 !important;
}

.widget .search-box button,
.widget .search-box input[type="submit"] {
  float: left;
  width: 40px;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  border-left: none;
  cursor: pointer;
}

.widget .search-box button:hover,
.widget .search-box input[type="submit"]:hover {
  background: #008c99;
}

.widget .search-box form.search::after {
  content: "";
  clear: both;
  display: table;
}

.widget-box {
  background: #fff;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid #ccc;
}

.widget ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.widget li {
  line-height: 25px;
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
}

.blog-detail-sec .calander-row .rpwe-block h3 {
  text-align: left;
}

.widget li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--blueColor);
}

.widget li a {
  line-height: 25px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
}

.widget li a:hover {
  padding-left: 10px;
  color: var(--darkBlueColor);
}

.doctor {
  text-transform: capitalize;
}

.doctor-left-box {
  border: 1px solid #ccc;
}

.doctor .profile-img {
  text-align: center;
}

.doctor .profile-img img {
  width: 200px !important;
  height: 200px;
  border-radius: 50%;
}

.doctor .name {
  font-weight: 600;
  font-size: 1.1875rem;
}

.doctor .details {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #545b62;
}

.doctor .doctor-abt div {
  padding-bottom: 1.5625rem;
  text-transform: none;
}

.doctor h2 {
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  line-height: 1.5625rem;
  width: 100%;
  text-decoration: underline;
  margin-top: 0;
  margin-bottom: 7px;
}

.doctor .review {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 550;
}

.doctor .review h5 {
  color: #333;
  font-size: 0.875rem;
  margin-bottom: 1px;
  letter-spacing: 1px;
}

.doctor .review i {
  font-size: 0.9375rem;
}

.doctor small i {
  font-size: 0.8125rem;
  padding-bottom: 1px;
  vertical-align: middle;
  color: #00813e;
}

.doctor .list-unstyled li,
.doctor-list .list-unstyled li {
  list-style-type: none !important;
}

.doctor .list-unstyled li a.submenu {
  text-decoration: none;
  color: #000;
  font-size: 0.875rem;
  text-transform: capitalize;
}

.doctor .list-unstyled li a.submenu:after {
  position: absolute;
  content: "\002b";
  right: 0;
  margin-top: -5px;
  padding-right: 0.875rem;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #ccc;
}

.doctor .list-unstyled li a.expand:after {
  position: absolute;
  content: "\2013";
  right: 0;
  margin-top: -5px;
  padding-right: 1rem;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #ccc;
}

.doctor .children ul li a {
  color: #00813e;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 3px;
  text-transform: capitalize;
}

.doctor .children ul li a:hover {
  text-decoration: underline;
}

.doctor .nav-link {
  color: #00813e !important;
}

.doctor .nav-link:hover {
  color: #000 !important;
}

.doctor .show-more {
  color: #00813e;
  font-size: 0.875rem;
}

.doctor .hide {
  display: none;
}

.doctor .search-bar-left input[type="text"] {
  padding-top: 5px;
  padding-bottom: 6px;
  padding-left: 0.9375rem;
  border: none;
  margin-top: 0.9375rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  border: #ccc solid 1px;
  border-radius: 50px;
  width: 100%;
  text-indent: 1.25rem;
}

.doctor .search-bar-left i {
  position: absolute;
  top: 22px;
  left: 1.6875rem;
  color: #ccc;
}

.doctor .list-unstyled li ul {
  margin-left: 0;
  padding-left: 0.75rem;
}

.treatment {
  background: linear-gradient(90deg, #fdfdfd 20%, #fdfdfd 10%);
}

.treatment .nav-pills .nav-link {
  border: solid 1px #dee2e6 !important;
  border-left: solid 1px #fff !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 0.625rem;
  columns: #b2b2b2;
  letter-spacing: 1px;
  color: #222;
  text-shadow: 0 1px #627199;
}

.treatment .nav-pills .nav-link:not(:last-of-type) {
  border-bottom: none !important;
}

.treatment .nav-pills .active {
  background: linear-gradient(to right, #f9f9f9, #fff) !important;
  color: var(--blueColor) !important;
  position: relative;
  border-left: solid 4px var(--blueColor) !important;
}

.treatment .nav-pills a:hover {
  color: var(--blueColor);
}

.treatment .nav-pills a.active:after1 {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  width: 0;
  height: 0;
  border: 26px solid transparent;
  border-left-color: #eee;
  border-right: 0;
  margin-top: -4px;
  margin-right: -1.6875rem;
}

.treatment .nav-pills .active i {
  border: solid #ccc;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  text-align: right;
  position: absolute;
  right: 0.9375rem;
  top: 1.0625rem;
}

.treatment .nav-pills .active .right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  text-align: right;
}

.treatment .h1 {
  font-size: 2.3125rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.3px;
  margin-bottom: 2.1875rem;
  text-transform: uppercase;
  text-shadow: 0 1px #627199;
  text-decoration-color: #222;
  line-height: 2.9rem;
  width: 100%;
}

.treatment .h2 {
  font-size: 1.3125rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 1px;
  margin-bottom: 1.1875rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-shadow: 0 1px #627199;
  text-decoration-color: #222;
  line-height: 1.25rem;
  width: 100%;
}

.treatment hr {
  background-image: linear-gradient(
    to right,
    #f5f5f5 52%,
    #f5f5f5 52%
  ) !important;
  height: 1px;
  width: 20%;
  margin-bottom: 1.0625rem;
}

.treatment .intro ol li {
  padding: 0;
}

.treatment .intro ol li p {
  margin-bottom: 7px !important;
}

.treatment .intro h6 {
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0;
}

.treatment .intro p {
  padding: 0 0 0 10px;
  margin: 0;
  color: #a1a1a1;
}

.treatment .intro p1 {
  display: table;
  padding: 0;
  margin: 0;
  width: 100% !important;
  border: solid 1px #dee2e6 !important;
  font-size: 0.875rem;
}

.treatment ul {
  padding-left: 1.25rem !important;
  margin-left: 0 !important;
}

.treatment .intro p:not(:last-of-type) {
  border-bottom: none !important;
}

.treatment .intro p .cell {
  display: table-cell;
  padding: 0.75rem;
}

.treatment .intro p .cell:first-child {
  border-right: 1px solid #dee2e6 !important;
  width: 30%;
  font-weight: 600;
}

.pages ul.parent > li > a {
  color: var(--blueColor);
  font-size: 0.9375rem;
  font-weight: 510;
}

.pages ul.parent > li::before {
  width: 0px;
  height: 0px;
}

.pages ul.parent > li > a:hover {
  text-decoration: none;
}

.pages .list-unstyled .list-unstyled {
  padding: 0.9375rem 0;
  list-style-image: url(../img/ul-nav.png);
  list-style-position: inside;
  border-top: solid 1px #00813e;
}

.pages .list-unstyled .list-unstyled li {
  margin: 2px 0.9375rem;
  border-bottom: dotted 1px #ccc;
}

.pages .list-unstyled .list-unstyled li a {
  color: #636363;
  font-size: 0.875rem;
  padding-left: 3px;
  text-transform: capitalize;
}

.page-footer .rate-box h4 {
  color: #333;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.3px;
  word-spacing: 0;
}

.page-footer .rate-box h5 {
  color: #b2b2b2;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.3px;
  word-spacing: 0;
}

.page-footer .rate-box .rating-stars {
  color: #b2b2b2;
  font-size: 1.7rem;
  text-decoration: none;
}

.page-footer .rate-box .rating-stars span {
  cursor: pointer;
}

.page-footer .rate-box .rating-stars .fa:hover {
  color: #ff533d;
}

.page-footer .rate-box .rating-result {
  color: #b2b2b2;
  font-size: 0.79rem;
}

.page-footer .rate-box .checked {
  color: #ff533d;
}

.page-footer {
  color: #b2b2b2;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  background: #343a40;
  line-height: 1.375rem;
}

.page-footer a {
  color: #b2b2b2;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 23px;
  text-transform: capitalize;
}

.page-footer a:hover {
  color: #b2b2b2;
}

.page-footer .social-box {
  background: #00813e;
  color: #e1e1e1;
  padding: 1.25rem 0;
}

.page-footer .social-box .social-links a i {
  vertical-align: middle;
  margin: 3px;
  font-size: 1.25rem;
}

.page-footer .social-box .border-x {
  border-left: dotted 2px #cbcbcc;
  border-right: dotted 2px #cbcbcc;
}

.page-footer h6 {
  font-size: 0.875rem;
}

.page-footer hr {
  border: solid 1px #6c757d;
  width: 4.375rem;
  margin: auto;
  margin-top: 0;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.page-footer small {
  font-size: 0.75rem;
}

.testimonial-box {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
}

.testimonial-box .quote span i {
  font-size: 1.5625rem;
  margin-right: 0.625rem;
  color: var(--blueColor);
}

.testimonial-box img {
  width: 100%;
  border: 5px #ccc solid;
}

.testimonial-box i {
  font-size: 90%;
}

.testimonial-box blockquote {
  font-size: 90%;
}

.owl-item .client-testimonials-box {
  padding-top: 10px;
  text-align: center;
  opacity: 0.5;
}

.owl-item.active.center .client-testimonials-box {
  opacity: 1;
}

.client-testimonials-box .client-testimonials-box-content {
  position: relative;
  background: var(--darkBlue);
  padding: 20px;
  width: 90%;
  margin: auto;
  box-shadow: #1a98d5 0px 5px 14px;
  border: 1px solid var(--skyBlue);
  height:300px;
}
.client-testimonials-box .client-testimonials-box-content::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: url(../images/service-box-top.png) no-repeat;
  top: -3px;
  left: -2px;
}
.client-testimonials-box .client-testimonials-box-content::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 24px;
  background: url(../images/service-box-bottom.png) no-repeat;
  bottom: -3px;
  right: -2px;
}

.client-testimonials-box .client-testimonials-box-content img {
  width: 100px;
  margin: auto;
}

.client-testimonials-box .client-testimonials-box-content p {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  margin: 20px 0;
}

.client-testimonials-box .client-testi-star {
  width: 225px !important;
  margin: auto;
  margin-top: -65px;
  margin-bottom: 20px;
  padding: 10px;
}
.client-testimonials-box h6 {
  color: #000;
}

.contact-section i {
  font-size: 18px;
  margin-right: 10px;
}

.map iframe {
  width: 100%;
  height: 400px;
}

.whatsapp-panel-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60;
}

.about-section {
  padding: 50px;
}

.about-section span {
  font-size: 6rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.5;
  margin-bottom: -20px;
  display: block;
}

.about-section .team-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 25px;
  border-radius: 10px;
  display: block;
  color: #000;
  margin-top: 30px;
}

.about-section .team-box img {
  width: 100%;
  border: 1px solid #ccc;
}

.about-section .team-box h6 {
  font-weight: bold;
}

.about-section .team-box p {
  margin-bottom: 0px;
}

.about-section-2 {
  padding: 50px;
  background: antiquewhite;
}

.about-section-2 span {
  font-size: 10rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.5;
  margin-top: -100px;
  display: block;
}

.about-section-2 h2 {
  text-align: right;
  margin-top: 20px;
}

.inner-banner-section {
  width: 100%;
}

.inner-banner-section img {
  width: 100%;
}

.inner-header-section {
  background: linear-gradient(45deg, #8b7948, transparent);
  color: #fff;
  position: relative;
  padding: 50px 0px;
}

.inner-header-section img {
  width: 100%;
}

.franchise-form-section {
  padding: 50px 0px;
}

.franchise-form-section .franchise-table thead th {
  background: #3d3d3d;
  color: #fff;
  font-weight: bold;
}

.franchise-partner-section {
  padding: 80px 0px;
  background: var(--moreLightPinkColor);
}

.franchise-partner-section .reason-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  height: 120px;
}

.franchise-partner-section .reason-box p {
  margin-left: 20px;
}

.franchise-partner-section .reason-box span {
  font-size: 5rem;
  position: absolute;
  top: 1px;
  left: -25px;
  font-style: italic;
  font-weight: bold;
  color: var(--darkPinkColor);
}

.form-control {
  border-radius: 0px;
  padding: 24px 12px;
}

.form-control-select {
  border-radius: 0px;
  padding: 6px 12px;
  height: 50px;
}

.franchise-section-2 {
  padding: 50px 0px;
  background: antiquewhite;
}

.franchise-section-2 span {
  font-size: 8rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.2;
  display: block;
}

.franchise-section-2 h2 {
  margin-top: -50px;
}

.meet-us-section {
  padding: 50px 0px;
}

.meet-us-section .meet-box {
  background: #ecdec1;
  padding: 40px;
  margin-top: 30px;
  padding-top: 30px;
}

.map-section iframe {
  width: 100%;
  height: 500px;
}

.appointment-form {
  background: var(--moreLightPinkColor);
  box-shadow: 0 10px 50px rgba(178, 89, 89, 0.25);
  padding: 40px;
  border-radius: 20px;
}

.appointment-form .form-control {
  margin-bottom: 25px;
  border-radius: 10px;
}

.appointment-form select.form-control {
  padding: 0px 5px;
  height: 50px;
}

.select-form-control {
  padding: 0px 5px;
  height: 50px;
}

.service-section {
  padding: 50px;
}

.service-section-2 {
  padding: 50px;
  background: antiquewhite;
}

.service-section-2 span {
  font-size: 12rem;
  color: #747669;
  font-family: "quentin";
  opacity: 0.5;
  margin-top: -100px;
  display: block;
}

.service-section-2 .service-detail-box {
  padding-right: 30px;
}

.media-box {
  margin-bottom: 30px;
}

.media-box img {
  height: 100%;
  /*-webkit-filter: grayscale(100%);*/
  /*filter: grayscale(100%);*/
}

.highlight {
  font-weight: bold;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 24px;
  color: #000 !important;
  margin-bottom: 0px !important;
  opacity: 1 !important;
}

.founder-section {
  padding-top: 50px;
  background: url(../images/graphic-blue-founder.png) no-repeat bottom -41px left -115px;
}

.founder-section p {
  color: #999;
}

.founder-section .founder-box {
  position: relative;
}

.founder-section .founder-box .heading-2 {
  line-height: 60px;
  font-size: 4rem;
  margin-top: 60px;
}

.founder-section .founder-box p {
  line-height: 17px;
  /*text-align: justify;*/
  font-size: 90%;
}

.founder-section .founder-box::before {
  position: absolute;
  top: -25px;
  left: -60px;
  content: "";
  background: url(../images/quote-left.png) no-repeat;
  width: 60px;
  height: 53px;
}

.founder-section .founder-box::after {
  position: absolute;
  bottom: -25px;
  right: -60px;
  content: "";
  background: url(../images/quote-right.png) no-repeat;
  width: 60px;
  height: 53px;
}

.founder-section .sign {
  float: right;
  margin-right: -120px;
  margin-top: 0px;
  width: 230px;
}

.new-team-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.home-new-team-section {
  padding-top: 80px;
  padding-bottom: 65px;
  background: url(../images/home-team-graphic.png) no-repeat bottom -204px left -345px;
}

.new-team-section .row {
  min-height: 520px;
}

.new-team-section .team-box {
  transition: all 0.5s;
  margin-bottom: 160px;
  position: relative;
  cursor: pointer;
}

/* .new-team-section .team-box p {
  z-index: 100;
  display: none;
  color: #fff;
  transition: all 0.5s;
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 200px;
  background: #bebebe;
  padding: 25px;
  padding-top:0px;
} */

.new-team-section .team-box p {
  color: #fff;
  transition: all 0.5s;
  height: 0px;
  transform: translateY(35px);
  /*text-align: justify;*/
}

/* .new-team-section .team-box:hover .team-info {
  background: #000;
} */

/* .new-team-section .team-box:hover p {
  background: #000;
  display: block;
} */

/* .new-team-section .team-box:hover p {
  height: 550px;
} */

.new-team-section .team-box img {
  width: 100%;
}

/* .new-team-section .team-box .team-info.top-team-box{
  z-index: 100000;
} */
/*.new-team-section .team-box .team-info {*/
/*  padding: 10px 20px;*/
/*  padding-top: 15px;*/
/*  background-color: #bebebe;*/
/*  transition: ease-in-out 0.5s;*/
/*  min-height: 100px;*/
/*  margin-bottom: 20px;*/
/*  position: absolute;*/
  /* z-index: 1000; */
/*  overflow: hidden;*/
/*  width: 100%;*/
/*}*/
/*.new-team-section .team-box .team-info h4 {*/
/*  text-transform: uppercase;*/
/*  margin-bottom: 0;*/
/*}*/
/*.new-team-section .team-box .team-info h4.team-name {*/
/*  color: #fff;*/
/*}*/
/*.new-team-section .team-box .team-info h4.designation {*/
/*  font-size: 18px;*/
/*}*/
/* .new-team-section .view-btn {
  margin-top: 50px;
} */
.new-team-section .view-btn .btn-custom {
  background: var(--skyBlue);
  color: #ffffff;
  border-radius: 25px;
  padding: 7px 32px;
  position: relative;
}

.new-team-section .main-team .team-collumn {
  margin-bottom: 40px;
  cursor: pointer;
}

.new-team-section .main-team .team-collumn img {
  width: 100%;
}
.new-team-section .main-team .team-collumn .team-text {
  padding: 30px;
  background: #d9d9d9;
  min-height: 144px;
  position: relative;
}
.new-team-section .right-arrow {
  position: absolute;
  right: 28px;
  bottom: 10px;
  cursor: pointer;
}

.new-team-section .main-team .team-collumn .team-text h3 {
  line-height: 27px;
}

.new-team-section.top-space,
.main-blog.top-space {
  padding-top: 120px;
}

.trophy-section {
  background: url(../images/trophy-bg.jpg) no-repeat top center #000;
  padding: 85px 0px;
  background-size: contain;
  position: relative;
}

.trophy-section p {
  /*text-align: justify;*/
}

.trophy-section .trophy-info {
  padding: 40px;
  background: var(--greyColor);
  min-height: 580px;
}

.trophy-section .trophy-info h3 {
  font-size: 3.5rem;
  line-height: 58px;
}
.trophy-section .trophy-info h4 {
  font-size: 2rem;
}

.video-fluid-section,
.video-fluid-section img {
  width: 100%;
  position: relative;
}
.video-fluid-section .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-fluid-section .video .video-play {
  width: 70px;
  height: 70px;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: ease-in-out 0.5s;
  cursor: pointer;
}
.video-fluid-section .video .video-play:hover {
  box-shadow: 1px 1px 22px 3px #cac0ff;
}

.video-fluid-section .video .video-play i {
  font-size: 20px;
}

.footer-slide {
  background: #fcfcfc;
  padding-top: 10px;
  padding-bottom: 0px;
  margin: 50px 0px;
}

.footer-slide #runSlide .item h4 {
  font-size: 21px;
}

.footer-slide .marquee-span {
  font-size: 2rem;
  padding: 0px 20px;
}

.inner-banner img {
  width: 100%;
}

.testimonials-section img.astro-mech {
  width: 135px;
}
.testimonials-section .heading-2 {
  color: var(--whiteColor);
}
.testimonials-section .container {
  max-width: 1035px;
}

.testimonials-section .owl-carousel .owl-nav.disabled {
  display: block;
}

.testimonials-section .owl-carousel {
  position: relative;
}
.testimonials-section .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 37%;
  right: 28%;
  height: 50px;
  width: 30px;
  border-radius: 20px;
  background: var(--whiteColor);
  border: 0px solid !important;
  color: #555;
}

.testimonials-section .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 37%;
  left: 28%;
  height: 50px;
  width: 30px;
  border-radius: 20px;
  background: var(--whiteColor);
  border: 0px solid !important;
  color: #555;
}

.inner-banner h1 {
  margin-top: -150px;
  transform: translateY(36px);
  color: #ffffff;
  text-shadow: 1px 1px #000;
}

.inner-banner-center h2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 45%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.started-section {
  background: #000000;
}
.started-section .excellence-logo img {
  width: 370px;
}
.started-section .excellence-para {
  color: var(--whiteColor);
  /*text-align: justify;*/
  font-weight: 200;
}

.started-section .how-start {
  position: relative;
  background: url(../images/how-start.jpg);
  background-size: cover;
  padding: 270px 0;
  background-position: center;
}

.started-section .how-start h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 
.started-section .icon-flex{
  display: flex;
  gap: 10px;
}
.started-section .icon-flex li a {
  font-size: 18px; 
}
*/




.brands-section .brand-box {
  background: #d8d8d8;
  padding: 45px;
  min-height: 550px;
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.brands-section .brand-box h2 {
  font-size: 2.4rem;
  font-weight: bold;
  height: 135px;
}

.brands-section .brand-box p {
  font-size: 1rem;
  /*text-align: justify;*/
}

.brands-section .brand-box .read-more {
  color: var(--bgBlue);
  position: absolute;
  bottom: 45px;
  left: 45px;
}

.csr-section {
  padding: 80px 0px;
  background: url(../images/csr-graphic.png) no-repeat bottom -90px left -197px;
}

.journey-section {
  background: url(../images/csr-graphic.png) no-repeat bottom -110px left -197px;
}

.csr-section .row {
  margin-bottom: 60px;
}

.csr-box-right {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 30px;
}
.csr-box-right h3 {
  color: var(--skyBlue);
  margin-bottom: 30px;
  font-size: 3rem;
}
.csr-box-right p {
  padding-right: 30px;
  /*text-align: justify;*/
}

.media-section {
  padding: 80px 0px;
  background: url(../images/media-graphic.png) no-repeat bottom -75px left -197px;
}

.media-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.media-box {
  margin-bottom: 65px;
}

.media-box img {
  width: 100%;
}

.media-box h4 {
  margin-top: 30px;
  margin-bottom: 0px;
}

.media-box p {
  margin-top: 15px;
  /*text-align: justify;*/
}

.career-section {
  padding: 80px 0px;
}

/*.career-section .career-top-box {*/
/*  text-align: center;*/
/*}*/

.career-section .career-top-box h2 {
  font-size: 3rem;
  margin-top: 50px;
  margin-bottom: 50px;
}

.career-section .career-box {
  background: #d8d8d8;
  padding: 36px;
  min-height: 300px;
  width: 80%;
  margin: auto;
  display: block;
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.career-section .career-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.career-section .career-box p {
  font-size: 1rem;
  text-align: center;
  margin-top: 50px;
}

.career-section .career-box .read-more {
  color: var(--bgBlue);
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 65%;
}

.custom-modal .modal-header {
  border-bottom: 0px;
  padding-bottom: 0px;
}

.custom-modal .modal-content {
  background: none;
  background: rgb(0, 0, 0, 0.7);
  color: #ccc;
  /*text-align: justify;*/
  padding: 20px;
}

.custom-modal .close {
  color: #fff;
  opacity: 0.8;
}

.modal-backdrop.show {
  opacity: 0.3;
}

.careers-list {
  margin: 0px;
  padding: 0px;
  margin-left: 20px;
}

.careers-list li {
  margin-bottom: 10px;
}

.collapse-box-hide-content {
  display: none;
}

/*.core-value-section.core-value-section .item h3 {*/
/*  font-size: 3rem;*/
/*}*/

.core-value-section.core-value-section .item p {
  padding: 25px 0px;
}

.company-practice-section.core-value-section.core-value-section .item {
  min-height: 550px;
  text-align: center;
}

.company-practice-section.core-value-section.core-value-section .item h3 {
  font-size: 2rem;
  height: 80px;
}

.company-practice-section.core-value-section.core-value-section .item .btn {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}

.about-new-section.welcome-section .container {
  color: #fff;
  width: 38%;
  right: 8%;
  left: auto;
  top: 80px;
}

.about-new-section.welcome-section .container .heading {
  font-size: 18px;
  font-weight: bold;
  color: var(--skyBlue);
}

.about-new-section.welcome-section .container p {
  color: #000;
}

.about-new-section.welcome-section .about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-new-section.welcome-section .about-list li {
  color: #000;
  line-height: 24px;
  list-style: none;
  padding-left: 25px;
  position: relative;
  left: 0;
}
.about-new-section.welcome-section .about-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #4e4e4e;
}

.success-stories-section {
  padding: 80px 0px;
  background: url(../images/brand-graphic.png) no-repeat bottom -550px left -197px;
}

.success-stories-section .success-stories-box {
  background: #bebebe;
  padding: 0px;
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
  margin-bottom: 30px;
}

.success-stories-section .success-stories-box .success-stories-box-body {
  padding: 18px;
  height: 210px;
}

.success-stories-section .success-stories-box .success-stories-box-body h4 {
  color: #fff;
}
.success-stories-section
  .success-stories-box
  .success-stories-box-body
  h4.text-skyBlue {
  color: var(--skyBlue);
}

.success-stories-section
  .success-stories-box
  .success-stories-box-body
  .team-name-2 {
  font-size: 1.3rem;
}

.success-stories-section .success-stories-box img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.success-stories-section .success-stories-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-stories-section .success-stories-box p {
  font-size: 1rem;
}

.success-stories-section .success-stories-box .read-more {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 65%;
}

.journey-section .csr-box-right {
  position: static;
}

.journey-section .csr-box-right h3 {
  margin-bottom: 0px;
}

.journey-section .csr-box-right h4 {
  font-size: 2rem;
}

::-webkit-scrollbar {
  width: 0.5em;
  /*height: 2em;*/
  height: 0.5em;
}
::-webkit-scrollbar-button {
  background: #ccc;
}
::-webkit-scrollbar-track-piece {
  background: #888;
}
::-webkit-scrollbar-thumb {
  background: #eee;
}

/*.our-services-section {*/
/*  background: url(../images/our-services-1.jpg) top center;*/
/*  color: #fff;*/
/*  position: relative;*/
/*  background-size: cover;*/
/*  padding: 30px 0px 1px;*/
/*}*/

/*.our-services-section .service-wrapper {*/
/*  border-bottom: 1px solid var(--skyBlue);*/
/*  margin-bottom: 22px;*/
/*  padding-bottom: 15px;*/
/*}*/

/*.our-services-section .service-wrapper .service-row {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  justify-content: space-between;*/
/*  gap: 230px;*/
/*}*/

/*.our-services-section h2.heading-2 {*/
/*  padding-top: 20px;*/
/*  color: #ffffff;*/
/*}*/

.our-services-section .service-wrapper .absolute-box {
  /*position: absolute;*/
  top: 0;
  right: 0px;
  /*background: url(../images/service-section-bg.jpg);*/
  /*background: rgba(255, 255, 255, 0.5);*/
  width: 100%;
  padding: 70px 0px 40px 0;
  z-index: 1;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  transition: ease-in-out 0.5s;
  /*height: 100%;*/
  background-size: contain;
  background-size: cover;
  background-position-x: right;
  display: none;
}

.our-services-section .service-wrapper .main-services-para {
  margin-bottom: 0;
}

.our-services-section .service-wrapper.active > .absolute-box {
  /*opacity:1;*/
  /*visibility:visible;*/
  display: block;
}

/*.our-services-section .service-wrapper :hover .absolute-box{*/
/*     opacity:1;*/
/*     visibility:visible;*/

/*}*/

/*.our-services-section .service-wrapper .main-services:hover + .absolute-box{*/
/*     opacity:0 !important;*/
/*     visibility:hidden !important;*/

/*}*/

/*main services visible on services-sub-head:hover*/
/*.our-services-section .service-wrapper .services-sub-head:hover + .absolute-box{*/
/*    opacity:1;*/
/*    visibility:visible;*/
/*}*/

/*.services-sub-head .service-arrow {*/
/*  display: none;*/
/*}*/

/*.our-services-section .service-wrapper h3 {*/
/*  cursor: pointer;*/
/*  min-width: 300px;*/
  /*margin-top: 45px;*/
/*}*/

/*.our-services-section .service-wrapper a h3 {*/
/*  color: #fff;*/
/*}*/
/*.our-services-section .service-wrapper a:hover h3 {*/
/*  color: var(--skyBlue);*/
/*}*/

/*.our-services-section .service-wrapper .absolute-box .audit-head {*/
/*  padding: 5px 30px;*/
/*  background: #fff;*/
/*  color: var(--skyBlue);*/
/*  margin-bottom: 40px;*/
/*}*/

/*.our-services-section .service-wrapper .absolute-box .main-btns .btn-list {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  justify-content: center;*/
/*}*/

/*.our-services-section .service-wrapper .absolute-box .main-btns .btn-list li {*/
/*  width: 32.3%;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  margin-bottom: 28px;*/
/*  list-style: none;*/
/*}*/
/*.our-services-section .service-wrapper .absolute-box .main-btns .btn-list li {*/
/*  background-image: url(../images/services-btn-bg.png);*/
/*}*/

/*.our-services-section .service-wrapper .absolute-box .main-btns .btn-list li a {*/
/*  width: 85%;*/
/*  background-image: url(../images/services-btn-bg.png);*/
/*  color: #fff !important;*/
/*  border-radius: 5px;*/
/*  min-height: 40px;*/
/*  line-height: 20px;*/
/*  font-weight: 500;*/
/*  font-size: 15px;*/
/*  text-align: center;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  background-position: center;*/
/*  background-size: contain;*/
/*}*/

/*.our-services-section .service-wrapper:last-child {*/
/*  border: 0px;*/
/*}*/



/* our services section start herer */

/*.our-services {*/
/*  background: url(../images/our-services-2.jpg) top center;*/
/*  padding: 60px 0;*/
/*  background-size: cover;*/
/*}*/

/*.our-services .heading-2 {*/
/*  color: var(--skyBlue);*/
/*}*/

/*.our-services .tab-content .tab-list {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  list-style: none;*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 3%;*/
/*}*/

/*.our-services .tab-content .tab-list li {*/
/*  width: 31.3%;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  margin-bottom: 30px;*/
/*}*/
/*.our-services .tab-content .tab-list li a {*/
/*  width: 100%;*/
/*  background: #ffffff;*/
/*  color: #47a9da !important;*/
/*  border: 1px solid #ffffff !important;*/
/*  border-radius: 50px;*/
/*  min-height: 65px;*/
/*  line-height: 20px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: flex-start;*/
/*  font-weight: 600;*/
/*  font-size: 17px;*/
/*  box-shadow: -5px 12px 2px -4px #47a9da;*/
/*  margin-bottom: 20px;*/
/*  padding-left: 90px;*/
/*  text-align: left;*/
/*}*/
/*.our-services .tab-content .tab-list li a::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -1px;*/
/*  right: 26px;*/
/*  height: 65px;*/
/*  width: 65px;*/
/*  background: #47a9da;*/
/*  z-index: -2;*/
/*  border-radius: 0px 50% 50% 0%;*/
/*}*/

/*.our-services .tab-content .tab-list li a img {*/
/*  position: absolute;*/
/*  top: -17px;*/
/*  left: -15px;*/
/*  width: 95px;*/
/*}*/

/*.our-services .tab-content .tab-list li a:hover {*/
/*  background: #ffffff !important;*/
/*}*/

/*.our-services .nav-strip {*/
/*  background: #ffffffe0;*/
/*  padding: 6px 0;*/
/*  margin-bottom: 28px;*/
/*}*/
/*.our-services .nav-tabs {*/
/*  border-bottom: 0px solid #dee2e6;*/
/*  gap: 36px;*/
/*}*/

/*.our-services .nav-strip .nav-tabs .nav-item.show .nav-link,*/
/*.nav-tabs .nav-link.active {*/
/*  background-color: #ffffff00;*/
/*  border-color: #dee2e6 #dee2e6 #1c99d3;*/
/*  border: 0px solid;*/
  /* border-bottom: 1px solid #1c99d3; */
/*  position: relative;*/
/*}*/
/*.our-services .nav-strip .nav-tabs .nav-item.show .nav-link,*/
/*.nav-tabs .nav-link.active::after {*/
/*  width: 50%;*/
/*  height: 2px;*/
/*  background: skyblue;*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 5px;*/
/*  left: 0;*/
/*  right: 0;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*}*/

/*.our-services .nav-strip .nav-link {*/
/*  color: #1c99d3;*/
/*  font-weight: 600;*/
/*  text-transform: uppercase;*/
/*  font-size: 15px;*/
/*}*/

.about-section-1 {
  /*background: url(../images/pattern-bg.jpg);*/
  padding-top: 80px;
  /*padding-bottom: 50px;*/
}

.about-section-1 .heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--skyBlue);
  margin-top: 20;
}

.about-section-1 .services-head {
  color: var(--skyBlue);
  margin-top: 20;
}



/* audit-section section style begin here */
.audit-section {
  background: url(../images/our-services-1.jpg) top center;
  padding: 100px 0 40px 0;
}
.audit-section .audit-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--skyBlue);
  padding-bottom: 20px;
}

.audit-section .audit-flex .audit-head,
.audit-section .audit-flex .audit-para {
  width: 50%;
}

.audit-section .audit-flex .audit-head h4 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.audit-section .audit-flex .audit-para p {
  color: #fff;
}

.audit-section .audit-flex.business-border-style {
  border-bottom: 0px solid;
}
/* audit-section section style end here */

/* external-audit-section style begin here */
.external-audit-section {
  background: #ffffff;
  padding: 60px 0;
}
.external-audit-section .audit-head h4 {
  color: var(--skyBlue);
  text-transform: uppercase;
  font-size: 22px;
}
.external-audit-section .audit-para p {
  font-weight: 300;
  font-weight: normal;
}
.external-audit-section .quick-link-column {
  border-left: 2px solid var(--skyBlue);
  padding-left: 35px;
  margin-left: 15px;
}
.external-audit-section .quick-link-column h4 {
  color: var(--skyBlue);
  font-size: 22px;
}
.external-audit-section .quick-link-column .quick-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.external-audit-section .quick-link-column .quick-list li {
  line-height: 32px;
}
.external-audit-section .quick-link-column .quick-list li a {
  color: var(--skyBlue);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--skyBlue);
  padding-bottom: 7px;
}

/* external-audit-section style end here */

.understand-section {
  /*background: url(../images/understand-bg.jpg);*/
  /*padding-top: 80px;*/
  padding-bottom: 50px;
}

.understand-section .heading {
  font-size: 20px;
  font-weight: bold;
  color: var(--skyBlue);
}

.understand-section.about-excellence {
  padding-top: 40px;
}

/*contact section*/
.contact_form {
  background: #eaf5fb;
  padding: 40px 0px;
  overflow: hidden;
  margin-top: 50px;
}

.contact_form .contact_icons {
  padding: 32px 0px;
}
.contact_form .contact_icons .social-icon-box .social-icons li a {
  width: 54px;
  height: 54px;
}
.contact_form .contact_icons .social-icon-box .social-icons li a i {
  font-size: 28px;
}

.contact_form .main_form #selectList {
  height: calc(1.5em + 0.75rem + 18px);
}

.contact_form .main_form .submit-btn {
  border-radius: 0px;
}

.contact_form .contact_head {
  color: var(--skyBlue);
  font-size: 36px;
  margin-bottom: 0;
}

.contact_footer {
  background: #eaf5fb;
  padding: 25px 0px 130px 0px;
}
.contact_footer iframe {
  margin-top: 20px;
}

.contact_footer .location_icons {
  display: flex;
  gap: 10px;
  margin-top: 135px;
}

.contact_footer .location_icons li a i {
  font-size: 25px;
  color: #8e8e8e;
}

/*.blog-detail-sec {*/
/*  padding: 75px 0px 50px;*/
/*}*/
/*.blog-detail-sec .calander-row {*/
/*  margin-bottom: 20px;*/
/*}*/
/*.blog-detail-sec .calander-row img.calender-pic {*/
/*  width: 80%;*/
/*}*/

/*.blog-detail-sec .calander-row .calender-relative {*/
/*  position: relative;*/
/*}*/
/*.blog-detail-sec .calander-row .calender-relative .date-absolute {*/
/*  position: absolute;*/
/*  top: 46px;*/
/*  left: 15px;*/
/*  font-size: 13px;*/
/*  color: #666;*/
/*}*/

/*.blog-detail-sec .calander-row .blog-icons {*/
/*  display: flex;*/
/*  gap: 15px;*/
/*  list-style: none;*/
/*  justify-content: flex-end;*/
/*  margin-top: 32px;*/
/*}*/

/*.blog-detail-sec .calander-row .blog-icons li a img {*/
/*  width: 40px;*/
/*}*/

/*.main-content {*/
/*  padding: 5px 0px 45px;*/
/*}*/

/*.main-content h2,*/
/*.main-content h5,*/
/*.understand-section h2 {*/
/*  color: var(--skyBlue);*/
/*  margin-top: 20px;*/
/*  margin-bottom: 5px;*/
/*}*/

/*.main-content h2,*/
/*.understand-section h2 {*/
/*  font-size: 28px;*/
/*}*/

/*.main-content h3 {*/
/*  font-size: 24px;*/
/*  color: var(--skyBlue);*/
/*}*/

/*.main-content h4,*/
/*.understand-section h4 {*/
/*  color: var(--skyBlue);*/
/*  margin-bottom: 4px;*/
/*  margin-top: 20px;*/
/*}*/

/*.main-content .main-list,*/
/*.main-content .nesting-list,*/
/*.main-content .num-list,*/
/*.understand-section .main-list,*/
/*.understand-section .num-list {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.main-content .num-list,*/
/*.understand-section .num-list {*/
/*  list-style: auto;*/
/*  padding-left: 15px;*/
/*}*/

/*.main-content .num-list li,*/
/*.understand-section .num-list li {*/
/*  line-height: 30px;*/
/*}*/

/*.main-content .main-list li,*/
/*.main-content .nesting-list li,*/
/*.understand-section .main-list li {*/
/*  line-height: 30px;*/
/*  list-style: none;*/
/*  padding-left: 25px;*/
/*  position: relative;*/
/*  left: 0;*/
/*  text-align: justify;*/
/*}*/

/*.main-content .main-list li::before,*/
/*.understand-section .main-list li::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 8px;*/
/*  left: 4px;*/
/*  width: 7px;*/
/*  height: 7px;*/
/*  border-radius: 50px;*/
/*  background: #4e4e4e;*/
/*}*/

/*.main-content .nesting-list {*/
/*  margin-top: 7px;*/
/*}*/
/*.main-content .nesting-list li::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 11px;*/
/*  left: 4px;*/
/*  width: 10px;*/
/*  height: 1.5px;*/
/*  border-radius: 50px;*/
/*  background: #4e4e4e;*/
/*}*/

/*.main-content.vat-refund {*/
/*  padding-top: 75px;*/
/*}*/

/*.main-content.content-top {*/
/*  padding-top: 75px;*/
/*}*/
/*.main-content .top-head {*/
/*  font-size: 20px;*/
/*  font-weight: bold;*/
/*  color: var(--skyBlue);*/
/*  margin-top: 20px;*/
/*}*/

.custom-modal .main-list li {
  line-height: 30px;
  list-style: none;
  padding-left: 0px;
  position: relative;
  left: 0;
}

.custom-modal .main-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -21px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #ffffff;
}

.custom-modal h4.modal-title,
.custom-modal h4.modal-sub-title {
  color: #ffffff;
}

.custom-modal h4.modal-sub-title {
  font-size: 22px;
}

.custom-modal .num-list {
  list-style: auto;
  padding-left: 25px;
}

.custom-modal .num-list li {
  line-height: 30px;
  color: #fff;
}

.about-section-1.main-about {
  padding-bottom: 40px;
}

/*about us section begin here*/
.why_excellence {
  position: relative;
  transition: all 0.45s;
  overflow: hidden;
}

.why_excellence .about_right_animate {
  transform: translateX(-645px);
  transition: transform 0.5s, opacity 0.5s;
}
.why_excellence .excellence_head {
  transform: translateX(600px);
  transition: transform 0.5s, opacity 0.5s;
}

.why_excellence:hover .about_right_animate,
.why_excellence:hover .excellence_head {
  transform: translateX(0px);
}

.why_excellence .col-md-6.about_bg {
  padding-right: 0px;
}
.why_excellence .about_right {
  padding: 120px 120px 0 65px;
  background-color: #c4c4c4;
  height: 100%;
}

.why_excellence .about_left {
  position: relative;
  z-index: 1;
}
.why_excellence .about_left .excellence_head {
  position: absolute;
  top: 40%;
  left: 32%;
  color: #fff;
  text-transform: uppercase;
  line-height: 58px;
}

.why_excellence .about_right .about_heading {
  font-size: 18px;
  font-weight: bold;
  color: var(--skyBlue);
  margin-top: -80px;
}
.why_excellence .about_right .about_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.why_excellence .about_right .about_list li {
  color: #000;
  line-height: 19px;
  list-style: none;
  padding-left: 25px;
  position: relative;
  left: 0;
  margin-bottom: 7px;
  /*text-align: justify;*/
}
.why_excellence .about_right .about_list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #4e4e4e;
}

/*about us section end here*/

/*team slider style begin here*/
.core-value-section #coreValueSlider .item {
  position: relative;
}
.core-value-section #coreValueSlider .item img,
.core-value-section #coreValueSlider .item .overlay {
  border-radius: 15px;
}

.core-value-section #coreValueSlider .item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.45s;
}

.core-value-section #coreValueSlider .item .overlay.active {
  background: #0066ba85;
}

.core-value-section #coreValueSlider .item .team-details {
  position: absolute;
  bottom: 1px;
  left: 0%;
  text-align: center;
  transform: translateY(86px);
  transition: transform 0.5s, opacity 0.5s;
  width: 100%;
  background: linear-gradient(359deg, #1a98d5c4, #1a98d54d);
  padding: 10px;
}
.core-value-section #coreValueSlider .item .team-details h3 {
  margin-bottom: 0;
  /*color: var(--skyBlue);*/
  text-shadow: 1px 1px #000;
}
.core-value-section #coreValueSlider .item .team-details h4 {
  color: #ffffff;
}

.core-value-section #coreValueSlider .item:hover .team-details {
  transform: translateY(0px);
}

.main-table .table-para {
  margin-bottom: 0;
  background: #1a98d540;
  padding: 10px 0;
}

/*team slider style end here*/

.p-relative {
  position: relative;
  height: 50px;
  overflow: hidden;
  background: red;
}
.slider {
  top: 1em;
  position: relative;
  box-sizing: border-box;
  animation: slider 10s linear infinite;
  list-style-type: none;
  text-align: center;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.slider:hover {
  animation-play-state: paused;
}

@keyframes slider {
  0% {
    top: 5em;
  }
  100% {
    top: -5em;
  }
}

.affiliations-wrapper {
  padding: 0px 0px 60px;
}
.affiliations-wrapper .affiliation-main {
  margin: 0 auto;
  width: 85%;
}

.affiliations-wrapper .affiliation-main .box-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.affiliations-wrapper .affiliation-main .box-list li {
  width: 24%;
  margin: 2em 3em 0 3em;
}

.affiliations-wrapper .box-list li a {
  border-radius: 15px;
  padding: 20px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 250px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.affiliations-wrapper .box-list li a img {
  width: 100%;
}

.modal.custom-affiliation-modals h3,
.modal.custom-affiliation-modals p {
  color: #fff;
}

.page-404 {
  align-items: center;
  text-align: left;
}
.page-404 p {
  text-align: left;
}
.page-404 .error-page-btns {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-404 .error-page-btns .btn-custom {
  padding: 6px 30px;
  border-radius: 9px;
  font-weight: 500;
  transition: all 0.45s;
  margin-bottom: 20px;
  border: 2px solid var(--skyBlue);
}
.page-404 .error-page-btns .btn-custom:hover {
  color: var(--skyBlue);
  background: #fff;
  border: 2px solid var(--skyBlue);
}

.page-404 img {
  width: 100%;
}

.social-icon ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  margin-top: 20px;
}

.social-icon ul li {
  margin: 0 17px 0 0;
  padding: 0;
  float: left;
  width: 42px;
  display: block;
}

.social-icon ul li:nth-child(3n + 3) {
  margin-right: 0;
}

.social-icon ul li a {
  border-radius: 50%;
  background: #1a9ad3 !important;
  height: 40px;
  width: 40px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.social-icon ul li a i {
  color: #ffffff;
  font-size: 16px;
}

.social-icon ul li a:hover {
  text-decoration: none;
}

.whatsapp-btn {
  position: fixed;
  bottom: 3.4%;
  right: 4%;
  width: 50px;
  height: 60;
  display: block;
  z-index: 10000;
}

.single-img-wrapper img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

.sidebar .rpwe-thumb {
  width: 80px;
  height: 80px;
}

header .bigSubmenu .plus-symbol {
  display: none;
}

/* cybernaut new style */

/*new blog section style begin here*/
.blog-wrapp {
  padding: 40px 0;
  background: url(../images/art-bg.png) top center,
    linear-gradient(180deg, #004178, #000000);
}
.blog-wrapp h2 {
  text-align: center;
}
.blog-wrapp .blog-unlocks {
  position: relative;
  text-align: center;
}
.blog-wrapp .blog-unlocks .unlock-column {
  padding: 50px;
  background: url(../images/unlock-bg.png) no-repeat;
  position: absolute;
  top: 50px;
  left: 38px;
  text-align: left;
  background-size: cover;
  width: 320px;
}
.blog-wrapp .blog-unlocks .unlock-column .learn-more-btn {
    background: url(../images/dark-learn-more.png) no-repeat;
    background-size: contain;
    outline: none;
    border: 0;
    padding: 33px;
    position: absolute;
    bottom: -23px;
    right: -14px;
    color: #000;
    padding-left: 19px;
    font-size: 14px;
    padding-top: 26px;
}

.blog-wrapp .blog-unlocks .unlock-column .blog-content{
    height:205px;
    margin-bottom:20px;
}

.blog-wrapp .blog-unlocks .unlock-column h3{
    font-size:1.3rem;
}
.blog-wrapp .blog-unlocks .unlock-column h3,
.blog-wrapp .blog-unlocks .unlock-column p {
  text-transform: uppercase;
  text-align: left;
}
.blog-wrapp .blog-unlocks .unlock-column p {
    font-size:0.9rem;
}
.blog-wrapp .blog-unlocks .union-img {
  width: 70%;
}
.blog-wrapp .new-blog-list {
    position: absolute;
    top: 35px;
    right: 251px;
    text-align: left;
    max-height: 320px;
    overflow-y: auto;
}
.blog-wrapp .new-blog-list ul li {
    line-height: 32px;
    margin: 0;
    padding: 12px;
    background: linear-gradient(45deg, #000000bd, #002f5791);
    margin-bottom: 10px;
    box-shadow: #088bd078 8px 2px 9px;
    border:1px solid #088bdc;
}

.blog-wrapp .new-blog-list ul li a{
    color:#fff;
    display:block;
}

/*new blog section style end here*/

/* testimnoials-new section begin here */
.testimnoial-new-sec {
  padding: 40px 0;
  background: linear-gradient(180deg, #004178, #000000);
  padding-top:120px;
}
.testimnoial-new-sec .heading-2 {
  text-align: center;
}

.testimnoial-new-sec .testi-new-box {
  background: #0b2943;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.testimnoial-new-sec .testi-new-box .testi-new-para {
color: var(--whiteColor);
font-size: 12px;
/*text-align: justify;*/
margin-bottom: 0;
min-height: 140px;
}

.testimnoial-new-sec .testi-new-box .designation-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px 0;
}

.testimnoial-new-sec .testi-new-box .designation-flex .user-image img {
  width: 55px;
  height: 55px;
  border-radius: 50px;
}

.testimnoial-new-sec .testi-new-box .designation-flex .user-info h5 {
  color: var(--whiteColor);
  font-size: 18px;
  margin: 0;
  margin-bottom: 2px;
}
.testimnoial-new-sec .testi-new-box .designation-flex .user-info p {
  color: var(--whiteColor);
  margin: 0;
}

.testimnoial-new-sec
  .testi-new-box
  .designation-flex
  .user-info
  .rating-flex
  ul {
  display: flex;
  gap: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.testimnoial-new-sec
  .testi-new-box
  .designation-flex
  .user-info
  .rating-flex
  ul
  li {
  color: var(--skyBlue);
  width: 35px;
}

/* testimnoials-new section end here */

/* footer section style begin here */
.footer-section {
  background: #000000;
  padding: 40px 0px;
  position: relative;
  z-index: 1000;
}

.footer-section  .footer-widget {
    border-right: 1px solid #7f7f7f;
    min-height: 204px;
}

.footer-section .footer-info {
    text-align: center;
    border-right: 1px solid #7f7f7f;
    min-height: 200px;
}
.footer-section .footer-info img {
  width: 130px;
  object-fit: cover;
}
.footer-section .footer-info .footer-social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.footer-section .footer-info .footer-social-icons ul li a {
  width: 35px;
  height: 35px;
  border: 1px solid var(--whiteColor);
  display: flex;
  border-radius: 5px;
  margin-top: 20px;
  color: var(--whiteColor);
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.footer-section .footer-widget h3 {
  color: var(--whiteColor);
  font-size: 20px;
}
.footer-section .footer-widget .quick-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-section .footer-widget .quick-links li a {
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 14px;
}

.footer-section .footer-widget .contact-info .cotnact-flex {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-section .footer-widget .contact-info .cotnact-flex a {
  color: var(--whiteColor);
}

.footer-section .footer-widget .contact-info .cotnact-flex p {
  color: var(--whiteColor);
  margin-bottom: 0;
}

.footer-section .subscribe-widget h5 {
  font-size: 14px;
  color: #c9c9c9;
  margin-bottom: 1px;
}
.footer-section .subscribe-widget .subsribe-bg {
  background: url(../images/email-bg.png) no-repeat;
  background-size: contain;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
}
.footer-section .subscribe-widget .subsribe-bg input {
  border: 0;
  outline: none;
}
.footer-section .subscribe-widget .subscripb-btn {
  background: url(../images/subscribe.png) no-repeat;
  position: absolute;
  bottom: 24px;
  right: 18px;
  color: #fff;
  padding: 6px 15px;
  background-size: cover;
  font-size: 15px;
  height: 34px;
}

/* footer section style end here */

/*about us page begin style*/
.about-wrapper {
  background: linear-gradient(#000000, #013a6a);
  padding-top: 200px;
}
.about-wrapper .about-content h3,
.about-wrapper .about-content h2{
    color:#ffffff;
}
.about-wrapper .about-content ul.about-list {
    margin:0;
    padding:0;
    padding-left:20px;
    margin-bottom:20px;
}
.about-wrapper .about-content ul.about-list li{
    color:#ffffff;
    line-height:28px;
    
}
.about-wrapper .director-message {
  padding-top: 100px;
}
.about-wrapper .about-flex {
  display: flex;
  justify-content: space-between;
}
.about-wrapper .about-flex .astro-fly img {
  width: 200px;
}

.about-wrapper .about-flex h2 {
  color: #fff;
}

.about-wrapper .about-content {
  max-width: 90%;
}
.about-wrapper .about-content p {
  color: #fff;
  /*text-align: justify;*/
}
.about-wrapper .container .director-message {
  background: url(../images/stars.png) top center no-repeat;
  background-size: contain;
}
.about-wrapper .director-message .director-info h3 {
  color: #fff;
}
.about-wrapper .director-message .director-info p {
  color: #fff;
  font-size: 15px;
  text-align:justify;
}
.about-wrapper .director-message .director-info .globe-img {
  text-align: center;
  transform: translateY(115px);
}

.about-wrapper .director-message .director-info .globe-img img {
  height: 520px;
  overflow: hidden;
}
/*.about-wrapper .director-message .commitment-column {*/
/*  background: url(../images/about-shape.png) top center no-repeat;*/
/*  background-size: cover;*/
/*  padding: 25px;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  width: 350px;*/
/*}*/
/*.about-wrapper .director-message .commitment-column {*/
/*  margin: 110px auto;*/
/*}*/
.about-wrapper .director-message .commitment-column  {
    display:flex;
    margin-top:50px;
}
.about-wrapper .director-message .commitment-column p {
  color: #fff;
  font-size: 14px;
  padding: 1px;
  text-align:justify;
  word-spacing: -2px;
  
}
.about-wrapper .director-message .commitment-column .commitment-para {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 10px;
    background: #2798d5;
    padding: 40px 12px;
}


.about-wrapper .director-message .commitment-column .commitment-btn {
  background: url(../images/white-btn.png) top center no-repeat;
  outline: none;
  border: 0;
  background-size: contain;
  padding: 6px 14px 16px;
  font-size: 15px;
}
.about-wrapper .director-message .main-commitment {
    position: relative;
    max-width: 45%;
    margin: 135px auto;
}

.about-wrapper .director-message .main-commitment .about-galaxy2 {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 200px;
}
.about-wrapper .director-message .director-info {
  position: relative;
}
.about-wrapper .director-message .director-info .about-plus {
  position: absolute;
  top: -102px;
  left: -20px;
  width: 75px;
}
.about-wrapper .director-message .director-info .galaxy-star1 {
  position: absolute;
  left: -34px;
  top: 308px;
  width: 160px;
}

/*about us page end style*/

/*services page style begin here*/
.service-content {
  padding: 50px 0;
  background: linear-gradient(#000, #013a6a);
}
.service-content h3
 {
  color: #fff;
  margin-top:20px;
}
.service-content h4
 {
  color: #fff;
  margin-top:20px;
  font-size:20px;
}

.service-content p {
  color: #fff;
  text-align:justify;
}
.service-content .service-list {
  margin: 0;
  padding: 0;
  /*list-style:none;*/
  color: #fff;
  padding-left:20px;
  
}
.service-content .service-list li {
    line-height:28px;
}

/*services page style end here*/

/******************* custom-slider-section begin here *******************/
.custom-slider-section {
  padding: 20px 0px;
  background: linear-gradient(#013a6a, #000);
  position: relative;
  height: 100vh;
}

.custom-slider-section .home-overflow{
    /*background:rgba(0,0,0,0.5);*/
    width:100%;
    margin:auto;
    height:700px;
    position:relative; 
    z-index:1000;
    overflow-y:scroll;
}
.custom-slider-section .home-overflow .scrollDiv{
    /*overflow-y:scroll;*/
    height:1500px;
}

.custom-slider-section .home-overflow::-webkit-scrollbar {
    width: 0px;
}

.custom-slider-section .welcome-down {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 100;
  width: 100px;
  z-index:1000;
}

.custom-slider-section .welcome-down img {
  width: 100px;
}

.custom-slider-section h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 100;
  position:absolute;
  top:200px;
  left:100px;
  font-size:2.4em;
}
.custom-slider-section h2 b {
  font-weight: bold;
}
.custom-slider-section ul.customs-slider-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  right: 50px;
  z-index:1000;
}
.custom-slider-section ul.customs-slider-indicators li {
  list-style: none;
  width: 4px;
  height: 20px;
  background: #013a6a;
  cursor: pointer;
}
.custom-slider-section ul.customs-slider-indicators li.active {
  background: #fff;
}
.custom-slider-section .art-bg,
.custom-slider-section .astro1,
.custom-slider-section .astro2,
.custom-slider-section .astro3,
.custom-slider-section .astro4,
.custom-slider-section .astro5,
.custom-slider-section .globe,
.custom-slider-section .art1,
.custom-slider-section .art2,
.custom-slider-section .art3,
.custom-slider-section .art4,
.custom-slider-section .globe img,
.custom-slider-section h2 {
  transition: all 1s;
}

/* .custom-slide1 */
.custom-slider-section .custom-slide1 .art-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.custom-slider-section .custom-slide1 .astro1 {
  text-align: center;
  position: absolute;
  bottom: 192px;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide1 .astro2,
.custom-slider-section .custom-slide1 .astro3,
.custom-slider-section .custom-slide1 .astro4,
.custom-slider-section .custom-slide1 .astro5 {
  text-align: center;
  position: absolute;
  bottom: -300px;
  right: -800px;
  right: 0;
}
.custom-slider-section .custom-slide1 .globe {
  text-align: center;
  height: 300px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide1 .art1 {
  position: absolute;
  bottom: -40px;
  left: 20px;
  transform: rotate(-30deg);
  width: 250px;
}
.custom-slider-section .custom-slide1 .art2 {
  position: absolute;
  bottom: 200px;
  left: 150px;
  transform: rotate(30deg);
  width: 160px;
}
.custom-slider-section .custom-slide1 .art3 {
  position: absolute;
  top: 150px;
  right: 350px;
  transform: rotate(40deg);
  width: 100px;
}
.custom-slider-section .custom-slide1 .art4 {
  position: absolute;
  bottom: 200px;
  right: 150px;
  width: 150px;
}

/* .custom-slide2 */
.custom-slider-section .custom-slide2 .art-bg {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
}
.custom-slider-section .custom-slide2 .astro1,
.custom-slider-section .custom-slide2 .astro3,
.custom-slider-section .custom-slide2 .astro4,
.custom-slider-section .custom-slide2 .astro5 {
  text-align: center;
  position: absolute;
  bottom: -300px;
  right: -800px;
  right: 0;
}
.custom-slider-section .custom-slide2 .astro2 {
  text-align: center;
  position: absolute;
  bottom: 192px;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide2 .globe {
  text-align: center;
  height: 300px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide2 .globe img {
  transform: rotate(-30deg);
}
.custom-slider-section .custom-slide2 .art1 {
  position: absolute;
  bottom: 120px;
  left: 20px;
  /* transform: rotate(-30deg); */
  width: 250px;
}
.custom-slider-section .custom-slide2 .art2 {
  position: absolute;
  bottom: 270px;
  left: 420px;
  transform: rotate(-10deg);
  width: 160px;
}
.custom-slider-section .custom-slide2 .art3 {
  position: absolute;
  bottom: 100px;
  right: 250px;
  transform: rotate(40deg);
  width: 150px;
}
.custom-slider-section .custom-slide2 .art4 {
  position: absolute;
  top: 50px;
  right: 150px;
  width: 200px;
}

/* .custom-slide3 */
.custom-slider-section .custom-slide3 .art-bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
}
.custom-slider-section .custom-slide3 .astro1,
.custom-slider-section .custom-slide3 .astro2,
.custom-slider-section .custom-slide3 .astro4,
.custom-slider-section .custom-slide3 .astro5 {
  text-align: center;
  position: absolute;
  bottom: -300px;
  right: -800px;
  right: 0;
}
.custom-slider-section .custom-slide3 .astro3 {
  text-align: center;
  position: absolute;
  bottom: 192px;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide3 .globe {
  text-align: center;
  height: 300px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide3 .globe img {
  transform: rotate(-90deg);
}
.custom-slider-section .custom-slide3 .art1 {
  position: absolute;
  bottom: -40px;
  left: 20px;
  transform: rotate(-30deg);
  width: 400px;
}
.custom-slider-section .custom-slide3 .art2 {
  position: absolute;
  top: 35px;
  right: 220px;
  transform: rotate(-32deg);
  width: 160px;
}
.custom-slider-section .custom-slide3 .art3 {
  position: absolute;
  bottom: 50px;
  right: 200px;
  transform: rotate(16deg);
  width: 240px;
}
.custom-slider-section .custom-slide3 .art4 {
  position: absolute;
  top: 0px;
  left: 450px;
  width: 100px;
}

/* .custom-slide4 */
.custom-slider-section .custom-slide4 .art-bg {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
}
.custom-slider-section .custom-slide4 .astro1,
.custom-slider-section .custom-slide4 .astro2,
.custom-slider-section .custom-slide4 .astro3,
.custom-slider-section .custom-slide4 .astro5 {
  text-align: center;
  position: absolute;
  bottom: -300px;
  right: -800px;
  right: 0;
}
.custom-slider-section .custom-slide4 .astro4 {
  text-align: center;
  position: absolute;
  bottom: 192px;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide4 .globe {
  text-align: center;
  height: 300px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide4 .globe img {
  transform: rotate(-140deg);
}
.custom-slider-section .custom-slide4 .art1 {
  position: absolute;
  bottom: -300px;
  left: 20px;
  transform: rotate(-30deg);
  width: 400px;
}
.custom-slider-section .custom-slide4 .art2 {
  position: absolute;
  top: 145px;
  right: 322px;
  transform: rotate(-10deg);
  width: 120px;
}
.custom-slider-section .custom-slide4 .art3 {
  position: absolute;
  bottom: 50px;
  left: 200px;
  transform: rotate(90deg);
  width: 180px;
}
.custom-slider-section .custom-slide4 .art4 {
  position: absolute;
  bottom: 20px;
  right: 150px;
  width: 200px;
  transform: rotate(150deg);
}

/* .custom-slide5 */
.custom-slider-section .custom-slide5 .art-bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
}
.custom-slider-section .custom-slide5 .astro1,
.custom-slider-section .custom-slide5 .astro2,
.custom-slider-section .custom-slide5 .astro3,
.custom-slider-section .custom-slide5 .astro4 {
  text-align: center;
  position: absolute;
  bottom: -300px;
  right: -800px;
  right: 0;
}
.custom-slider-section .custom-slide5 .astro5 {
  text-align: center;
  position: absolute;
  bottom: 192px;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide5 .globe {
  text-align: center;
  height: 300px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.custom-slider-section .custom-slide5 .globe img {
  transform: rotate(-267deg);
}
.custom-slider-section .custom-slide5 .art1 {
  position: absolute;
  bottom: 85px;
  right: 20px;
  transform: rotate(11deg);
  width: 400px;
}
.custom-slider-section .custom-slide5 .art2 {
  position: absolute;
  top: 82px;
  left: 432px;
  transform: rotate(-10deg);
  width: 120px;
}
.custom-slider-section .custom-slide5 .art3 {
  position: absolute;
  bottom: 112px;
  left: 200px;
  transform: rotate(136deg);
  width: 250px;
}
.custom-slider-section .custom-slide5 .art4 {
  position: absolute;
  bottom: 20px;
  right: 232px;
  width: 80px;
  transform: rotate(150deg);
}
/******************* custom-slider-section ends here *******************/
#home-body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

/******************* blog page begin here *******************/
.blog-wrapper {
  background: linear-gradient(#000000, #013a6a);
  padding-top: 200px;
}
.blog-wrapper .row {
  padding-top: 100px;
}
.blog-wrapper .unlock-column {
  padding: 50px;
  background: url(../images/unlock-bg.png) no-repeat;
  background-size: cover;
  text-align: left;
  width: 90%;
  position: relative;
  height: 400px;
  margin-bottom: 50px;
}
.blog-wrapper .row .col-md-6:nth-child(even) .unlock-column {
  margin-top: -250px;
}
.blog-wrapper .unlock-column .learn-more-btn {
  background: url(../images/dark-learn-more.png) no-repeat;
  background-size: cover;
  outline: none;
  border: 0;
  padding: 35px;
  position: absolute;
  bottom: -8px;
  right: 20px;
  color: #000;
}
.blog-wrapper .unlock-column h3,
.blog-wrapper .unlock-column p {
  text-transform: uppercase;
  text-align: left;
  color: #000;
}
.blog-wrapper .union-img {
  width: 70%;
}
.blog-wrapper p,
.blog-wrapper li {
  color: #fff;
}

.recent-blog-wrapper .unlock-column {
  height: 325px;
}

.blog-details-header {
  background: linear-gradient(#000000, #3079b8);
  /* height: 400px; */
  padding-top: 150px;
  text-align: center;
}
.blog-details-header .heading-wrapper h1 {
  color: #fff;
  text-transform: uppercase;
}
.blog-details-header .heading-wrapper p {
  color: #fff;
  font-size: 1.2rem;
}
.blog-details-header img {
  width: 100%;
}
/******************* blog page ends here *******************/

/******************* blog  details page ends here *******************/
.blog-detail-wrapper {
  background-image: linear-gradient(#004178, #000000, #013f75);
  padding-top: 200px;
}
.blog-detail-wrapper .heading-wrappe {
  text-align: center;
}
.blog-detail-wrapper .heading-wrappe h1 {
  text-transform: uppercase;
}
.blog-detail-wrapper .heading-wrappe p {
  color: var(--whiteColor);
  font-size: 20px;
}

.blog-detail-wrapper .blog-wrapper {
  background: transparent;
  padding-top: 120px;
  padding-bottom:50px;
}
.blog-detail-wrapper .blog-banner {
  background: url(../images/blog-details-artboard-bg.png);
  background-size: contain;
}
.blog-detail-wrapper .top-images {
  position: relative;
  text-align: center;
}
.blog-detail-wrapper .top-images .astro4-img {
  width: 480px;
  margin: auto;
}
.blog-detail-wrapper .top-images .earth {
     position: absolute;
    top: 133px;
    left: 160px;
    width: 110px;
}

.blog-detail-wrapper .top-images .art4 {
    position: absolute;
    top: 145px;
    right: 270px;
    width: 80px;
}
.blog-detail-wrapper .top-images .art3 {
    position: absolute;
    bottom: 51px;
    right: 72px;
    width: 110px;
}


.blog-detail-wrapper .top-images .jupiter {
  position: absolute;
  bottom: 25px;
  left: 375px;
  width: 125px;
}
.blog-detail-wrapper .blog-wrapper h3 {
  color: var(--whiteColor);
}
.blog-detail-wrapper .blog-wrapper .main-list {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.blog-detail-wrapper .blog-wrapper .main-list li {
  color: var(--whiteColor);
  line-height: 27px;
  margin-bottom: 15px;
}
.blog-detail-wrapper .blog-wrapper .unlock-column h3 {
  color: #000000;
  font-size: 1.5rem;
}
/******************* blog details page ends here *******************/


/******************* core-values section begin here *******************/
.core-values{
    padding: 32px 0px;
    background: url(../images/stars.png) top center, linear-gradient(180deg, #004178, #000000);
    height:100vh;
    padding-top:120px;

}

.core-values .core-value-top{
max-width:700px;
margin:auto;
text-align:center;
}
.core-values .core-value-top h2,
.core-values .core-value-top p{
    color:#ffffff;
}

.core-values .main-values ul{
    display:flex;
    margin:0;
    padding:0;
    list-style:none;
    gap:35px;
    justify-content: center;
    align-items: center;
    margin-top:45px;
}
.core-values .main-values ul li{
    width: 265px;
    border-radius: 10px;
    background: linear-gradient(267deg, #005786, #006ba5, #004e78);
    padding: 10px;
    text-align: center;
    transition:all 0.45s;
    transform:scale(1);
}

.core-values .main-values ul li:hover{
    background:#011a30;
    transform:scale(1.1);
    border:2px solid #2798d5;
}

.core-values .main-values ul li p{
    color:#ffffff;
    font-size:16px;
}
.core-values .main-values ul li img{
    margin-top: -42px;
    margin-bottom: 16px;
    width: 70px;
}

.core-values .main-values .value-main{
    text-align:center;
    margin:auto;
    position:relative;
}

.core-values .main-values .value-main .left-core-main-bg,
.core-values .main-values .value-main .left-core-bg,
.core-values .main-values .value-main .right-core-bg,
.core-values .main-values ul li{
    animation-duration: 3s;
}
.core-values .main-values .value-main .left-core-main-bg{
    width: 115px;
    margin: auto;
    text-align: center;
    margin-top: 15px;
    
}
.core-values .main-values .value-main .left-core-bg{
    position: absolute;
    bottom: 84px;
    left: 364px;
    width: 189px;
}
.core-values .main-values .value-main .right-core-bg{
    width: 200px;
    position: absolute;
    bottom: 76px;
    right: 356px;
}

/******************* core-values section end here *******************/


/******************* our team section begin here *******************/
.our-team{
    padding-bottom: 0px;
    background: url(../images/art-bg.png) top center, linear-gradient(180deg, #004178, #000000);
    height:100%;
    padding-top:120px;
    
}
.our-team .team-pic{
    position:relative;
    text-align:center;
    margin-top: 0px;
    overflow:hidden;
}

.our-team .team-pic .team-earth{
    position: relative;
    bottom: 40px;
    right: 10px;
}

.our-team .team-pic .team-earth img{
    width:610px;
}
    
.our-team .team-pic h2{
    color:#fff;
}
.our-team .team-pic .team1 img{
    position: relative;
    width: 450px;
    z-index:100;    
    top:40px;
}

.our-team .team-slider {
    padding:20px 0;
    overflow:hidden;
    text-align:center;
}

.our-team .team-slider .slide-bg {
    background:url(../images/team-frame.png) no-repeat;
    background-size: cover;
    margin: auto;
    width: 75%;
    text-align: left;
    background-position: top;
    background-repeat: round;
    height: 400px;
}
.our-team .team-slider .slide-bg .team-info {
    padding: 22px;
    padding-top: 0;
    padding-bottom: 80px;
    position:relative;
}
.our-team .team-slider .slide-bg .team-info .team-hide-para {
    position: absolute;
    transform: translateY(840px);
    visibility:hidden;
    opacity:0;
    
}
.our-team .team-slider .slide-bg .team-info .team-hide-para ul {
    margin: 0;
    padding-left: 18px;
}
.our-team .team-slider .slide-bg .team-info .team-hide-para ul li{
    font-size:13px;
    color:#fff;
    margin-bottom:10px;
}



.our-team .team-slider .slide-bg .team-info .caret-bg{
    clip-path: polygon(47% 100%, 0 0, 100% 0);
    background: #2798d5;
    position: absolute;
    right: 20px;
    bottom: 48px;
    z-index: 1000;
    height: 10px;
    width: 20px;
    transform: rotate(0deg) translateY(0px);
    cursor:pointer;
    
}

.our-team .team-slider .top-arrow.prev{
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 36px;
    height: 16px;
    display: block;
    position: relative;
    top: -10px;

}
.our-team .team-slider .bottom-arrow.next{
    clip-path: polygon(51% 100%, 0 0, 100% 0);
    width: 36px;
    height: 16px;
    display: block;
    position: relative;
    bottom: -10px;

}

.our-team .team-slider .slide-bg .team-info img {
    width:100%;
    padding-top: 10px;
}
.our-team .team-slider .slide-bg h4{
    font-size: 17px;
    color: #001222;
    margin-bottom: 5px;
}
.our-team .team-slider .slide-bg h5{
    font-size:13px;
    margin-bottom:0;
    color: #001222;
}
.our-team .team-slider .slider-inner img{
    width: 190px;
    padding: 45px;
    padding-bottom:30px;
    margin:auto;
    padding-top:60px;

}

.our-team .team-slider .slide-item .team-slide,
.our-team .team-slider .slide-item .team-astro,
.our-team .team-slider .slide-item .team-hide-para{
    transition: all 0.5s ease;
}

.our-team .team-slider .slide-item .team-hide-para{
    height:200px;
    overflow-y:auto;
}

.our-team .team-slider .slide-item.activeSlide .slide-bg{
    background:url(../images/team-frame-active.png) no-repeat;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: top;
    background-repeat: round;
    
}


.our-team .team-slider .slide-item.activeSlide .caret-bg{
    transform:translateY(58px);
}

.our-team .team-slider .slide-item.activeSlide .team-slide{
    transform: translate(0px, -115px);
    
}

.our-team .team-slider .slide-item.activeSlide .team-slide h4{
    color:#fff;
}
.our-team .team-slider .slide-item.activeSlide .team-slide h5{
    color:#fff;
}

.our-team .team-slider .slide-item.activeSlide .team-astro{
    transform: translate(125px, -43px);
    width: 143px;
}

.our-team .team-slider .slide-item.activeSlide .team-hide-para{
    transform: translateY(-100px);
    visibility: visible;
    opacity: 1;
    background: url(../images/team-gallaxy-bg.png) top center no-repeat;
    transition: all 0.5s ease;
    background-size: contain;
    
}

.our-team .team-slider .slide-item.activeSlide .team-hide-para p{
    color:#ffffff;
}
/******************* our-team section end here *******************/



/******************* new services section begin here *******************/
.new-service-section{
    background:#003054;
    padding-top:160px;
    padding-bottom:50px;
}
    
.new-service-section .services-inner{
    border:3px solid #1a98d5;
    /*border-right:none;*/
    background-size:cover;
    position:relative;
    width:95%;
    position:relative;
    padding-bottom: 25px;
    padding-top: 25px;
    padding-right: 25px;
    margin:auto;
}

.new-service-section .services-inner .services-top-right-bg{
    position:absolute;
    top:-3px;
    right:-3px;
    width:auto;
}
.new-service-section .services-inner .services-bottom-right-bg{
    position:absolute;
    bottom: -2px;
    right: -3px;
    width:auto;
}

.new-service-section .indicators{
    width:100%;
    display:flex;
    justify-content:space-between;
    transform:translateY(300px)
    
}
.new-service-section .indicators .prev{
    height: 50px;
    width: 30px;
    background: var(--skyBlue);
    border: 0px solid !important;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateX(-30px);
}
.new-service-section .indicators .next{
    height: 50px;
    width: 30px;
    background: var(--skyBlue);
    border: 0px solid !important;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateX(55px);
}

/*.new-service-section .services-inner:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -16px;*/
/*    right: -115px;*/
    /*height: 80vh;*/
/*    width: 115px;*/
/*    background: url(../images/services-right-bg.png) no-repeat;*/
/*    background-size: contain;*/

/*}*/

.new-service-section .services-inner .services-pic {
    padding: 37px;
    background: url(../images/services-bg.png) no-repeat;
    position: absolute;
    /*top: 45px;*/
    /*left: -50px;*/
    text-align: left;
    background-size: cover;
    width: 320px;
    height: 286px;
}
   
.new-service-section .services-inner .services-content{
    padding-top: 42px;
    padding-right: 60px;

}

.new-service-section .services-inner .full-content {
    padding-right: 10px;
    padding-left: 35px;
    max-height: 500px;
    overflow-y: auto;
    padding-bottom: 10px;
    width:95%;
}

.new-service-section .services-inner .services-content p,
.new-service-section .services-inner .full-content p{
    color:#fff;
    text-align:justify;
}

.new-service-section .services-inner .services-content ul,
.new-service-section .services-inner .full-content ul {
margin:0;
padding:0;
padding-left:20px;
padding-bottom:15px;
    
}    
.new-service-section .services-inner .services-content ul li,
.new-service-section .services-inner .full-content ul li,
.new-service-section .services-inner .services-content ol li,
.new-service-section .services-inner .full-content ol li {
    color:#fff;
    font-size:0.9rem;
    line-height:27px;
    
}
.new-service-section .services-inner .full-content ul li {
    margin-bottom:10px;
}
.new-service-section .services-inner .full-content.it-annual{
    margin-top:4px;
}
.new-service-section .services-inner .full-content.network-infrastructure{
    margin-top:-18px;
}

.new-service-section .services-inner .full-content.cctv-support{
    margin-top:-10px;

}
.new-service-section .services-inner .full-content.wifi-solutions{
    margin-top:2px;
}
.new-service-section .services-inner .full-content.email-support{
    margin-top:10px;
}

.new-service-section .services-inner .full-content.software-setup{
    margin-top:39px;
}

.new-service-section .services-inner .full-content.server-support{
    margin-top:26px;
}
.new-service-section .services-inner .full-content.website-hosting{
    margin-top:27px;
    
}
.new-service-section .services-inner .full-content.malware-solutions{
    margin-top:50px;
    
}

.new-service-section .desktop-support.services-content{
    margin-top:4px;
}
    
.new-service-section .services-inner .full-content h1,
.new-service-section .services-inner .services-content h1,
.new-service-section .services-inner .full-content h2,
.new-service-section .services-inner .services-content h2,
.new-service-section .services-inner .full-content h3,
.new-service-section .services-inner .services-content h3,
.new-service-section .services-inner .full-content h4 {
    color:#fff;
}
.new-service-section .services-inner .services-content h3,
.new-service-section .services-inner .full-content h3{
    font-size:1.50rem;
}
.new-service-section .services-inner .full-content h4{
    font-size:1.1rem;
}

.new-service-section .top-services .services-pic h1,
.new-service-section .top-services .services-pic h3{
    font-size:1.5rem;
}
.new-service-section .top-services .services-pic .services-bg{
    width: auto;
    margin-bottom: 10px;
    height: 100px;
    object-fit: cover;
}


/******************* new services section end here *******************/










/******************* contact page begin here *******************/
.contact-wrapper {
  background-image: linear-gradient(180deg, #001222, #005caa);
  padding-top: 200px;
}
.contact-wrapper .contact-social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.contact-wrapper .contact-social-media ul li {
  list-style: none;
  font-size: 0.75rem;
  margin-bottom: 2px;
}
.contact-wrapper .contact-social-media ul li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--whiteColor);
  display: flex;
  border-radius: 5px;
  margin-top: 20px;
  color: var(--whiteColor);
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.contact-wrapper .contact-main-info {
  padding-top: 70px;
  padding-bottom: 30px;
}
.contact-wrapper .contact-main-info .contact-address {
  background: url(../images/contact-union.png);
  background-size: cover;
  padding: 50px 10px 16px 20px;
  background-repeat: round;
}
.contact-wrapper .contact-main-info .contact-info {
  padding: 35px;
}
.contact-wrapper .contact-main-info .contact-info .cotnact-flex {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.contact-wrapper .contact-main-info .contact-info .cotnact-flex a,
.contact-wrapper .contact-main-info .contact-info .cotnact-flex p {
  color: var(--whiteColor);
}
.contact-wrapper .contact-bg {
  position: relative;
  z-index:100;
}
.contact-wrapper .contact-bg::before {
  content: "";
  position: absolute;
  top: -106px;
  left: 0;
  background-size:cover;
  background: url(../images/contact-artboard.png) top left no-repeat;
  width: 100%;
  height: 400px;
  background-size: contain;
  z-index:-1;
}

.contact-wrapper .contact-footer-bg {
    width:100%;
}

.custom-slider-section.service-details .service-slide .service-art4{
    bottom: 0;
    width: 200px;
}
.custom-slider-section.service-details .service-slide .zupiter{
    top: 160px;
    width: 104px;
    /* background: green; */
    transform: rotate(317deg);
    position: absolute;
    right:250px;
}
.custom-slider-section.service-details .service-slide .moon{
    left: 350px;
    top: 200px;
    width: 80px;
    transform: rotate(334deg);
}
.custom-slider-section.service-details .service-slide .service-galaxy{
    position: absolute;
    bottom: -160px;
    left: -50px;
    transform: rotate(-30deg);
    width: 450px;
}
.custom-slider-section.service-details .service-slide .services-earth{
    position: absolute;
    bottom: 50px;
    left: 200px;
    transform: rotate(-30deg);
    width: 140px;
    
}

/******************* contact page ends here *******************/





.vertical-carousel-box .slide-img{ width:100%;}


.vertical-carousel-box .item1 .globe {
    text-align: center;
    height: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item1 .astro1 {
    text-align: center;
    position: absolute;
    bottom: 192px;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item2 .globe {
    text-align: center;
    height: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item2 .globe img{
   transform:rotate(-30deg);
}

.vertical-carousel-box .item2 .astro2 {
    text-align: center;
    position: absolute;
    bottom: 192px;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item3 .globe {
    text-align: center;
    height: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item3 .globe img{
    transform:rotate(-90deg);
}

.vertical-carousel-box .item3 .astro3 {
    text-align: center;
    position: absolute;
    bottom: 192px;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item4 .globe {
    text-align: center;
    height: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item4 .globe img{
    transform:rotate(-140deg);
}

.vertical-carousel-box .item4 .astro4 {
    text-align: center;
    position: absolute;
    bottom: 192px;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item5 .globe {
    text-align: center;
    height: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.vertical-carousel-box .item5 .globe img{
    transform:rotate(-267deg);
}

.vertical-carousel-box .item5 .astro5 {
    text-align: center;
    position: absolute;
    bottom: 192px;
    left: 0;
    right: 0;
}






.services-page-owl-carousel .owl-nav.disabled {
  display: block;
}

.services-page-owl-carousel {
  position: relative;
}
.services-page-owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 55%;
  right: -60px;
  height: 50px;
  width: 30px;
  background: var(--skyBlue);
  border: 0px solid !important;
  color: #555;
}

.services-page-owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 55%;
  left: -35px;
  height: 50px;
  width: 30px;
  background: var(--skyBlue);
  border: 0px solid !important;
  color: #555;
}

.services-page-owl-carousel .owl-nav button i{
    color:#fff;
}

/*.services-page-owl-carousel .owl-stage-outer{*/
/*    overflow:visible;*/
/*}*/

/* faq-section begin here */
.faq-section{
    margin-top:50px;
}

.faq-section h2{
    text-align:center;
}

.faq-section .card {
    margin-bottom: 12px;
    background: transparent;
    border: 0px solid;
}

.faq-section .card .card-header {
    border-bottom: 1px solid var(--skyBlue);
    background: transparent;
    padding: 15px;
}
.faq-section .card .card-header h3{
    font-size:1rem;
}

.faq-section .card .card-header .card-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.faq-section .card .card-body {
    color:#fff;
}

/* faq-section ends here */

.page-404{
    padding:50px 0px;
    padding-bottom:100px;
    text-align:center;
}

.page-404 .highlight-404{
    color:#fff;
    font-size:8rem;
    font-weight:bold;
}

.page-404 h2,
.page-404 p {
     color:#fff;
     text-align:center;
}

@keyframes fadeInTopRightRotated {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0) rotate(-45deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.animate__fadeInTopRightRotated {
  animation-name: fadeInTopRightRotated;
  animation-duration: 1s; /* match Animate.css duration */
  animation-fill-mode: both;
}
