@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-family: "Sora", sans-serif;
  position: relative;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

.no-padding {
  padding: 0px !important;
}

.container {
  max-width: 1350px;
}

@keyframes topToBottom {
  0% {
    top: -50px;
  }
  100% {
    top: 0;
  }
}
header {
  transition: all 0.3s ease-in-out;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1199px) {
  header {
    padding: 20px 0;
  }
}
header .inner-full-header-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  header .header-inner-wrapper {
    display: none1;
  }
}
header .header-inner-wrapper .header-desktop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .left-side-logo a {
  display: block;
}
header .header-inner-wrapper .header-desktop .left-side-logo a img {
  width: 100%;
  max-width: 293px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1599px) {
  header .header-inner-wrapper .header-desktop .left-side-logo a img {
    max-width: 200px;
  }
}
header .header-inner-wrapper .header-desktop .left-side-logo a video {
  width: 100%;
  max-width: 293px;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1599px) {
  header .header-inner-wrapper .header-desktop .left-side-logo a video {
    max-width: 200px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader {
  text-align: right;
  margin-bottom: 10px;
}
@media (max-width: 1499px) {
  header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader {
    margin-bottom: 5px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol {
  margin: 0;
  padding: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li:last-child {
  margin-right: 11px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li a {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li a .items {
  margin-right: -5px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li a img {
  width: 15px;
  margin-top: 1px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li .mobile-cart-icon {
  position: relative;
  z-index: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu .top-preheader ol li .mobile-cart-icon span {
  width: fit-content;
  position: absolute;
  right: -11px;
  top: -11px;
  padding: 2px;
  font-size: 9px;
  min-width: 18px;
  min-height: 18px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu {
  margin: 0;
  padding: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li {
  list-style: none;
  display: inline-block;
  margin: 0 22px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li:last-child {
  margin-right: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li a {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  padding: 0 0 10px 0;
  color: #ffffff;
}
@media (max-width: 1499px) {
  header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li a {
    padding-bottom: 5px;
  }
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li a::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  opacity: 0;
  background-color: #ffffff;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li a:hover {
  opacity: 0.7;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li a:hover::before {
  opacity: 0.7;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li .active {
  opacity: 0.8;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li .active::before {
  opacity: 0.8;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li .mobile-menu-btn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 26px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown {
  position: relative;
  z-index: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown .dropdown-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown .dropdown-link span {
  font-weight: 700 !important;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown .dropdown_menu {
  background-color: #ffffff;
  position: absolute;
  top: 35px;
  left: 0;
  padding: 15px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 15px;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  transform: translateY(10px);
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown .dropdown_menu li {
  margin: 0;
  list-style: none;
  display: block;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown .dropdown_menu li a {
  padding: 5px 0;
  display: block;
  font-size: 15px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown .dropdown_menu li a::before {
  display: none;
}
header .header-inner-wrapper .header-desktop .right-side-menu .main-menu .dropdown:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas {
  background: #00318D;
  background: linear-gradient(90deg, rgb(0, 49, 141) 0%, rgba(0, 49, 141, 0.95) 100%);
  min-height: 100vh;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-header {
  padding: 25px;
  margin-bottom: 50px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-header h5 a img {
  max-width: 200px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-header .btn-close {
  background-image: unset;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body {
  padding: 16px 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul {
  margin: 0;
  padding: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li {
  list-style: none;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li a {
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  padding: 8px 0;
  display: block;
  color: #ffffff;
  opacity: 0.8;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li a:hover {
  opacity: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li a:focus {
  opacity: 1;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion {
  background-color: transparent;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion .accordion-item {
  background-color: transparent;
  border: none !important;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header {
  background-color: transparent;
  padding: 10px 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header button {
  padding: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 17px;
  color: #000000;
  border: none;
  box-shadow: none;
  outline: none;
  opacity: 0.8;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body {
  padding: 0 15px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body ul li a {
  padding: 4px 0;
  font-size: 15px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion-button::after {
  background-image: unset;
  content: "\e145";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Icons";
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000000;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed)::after {
  content: "\e15b";
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body .footer-inner {
  text-align: left;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body .footer-inner h6 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper {
  margin-bottom: 25px;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a {
  color: #ffffff;
  padding: 0 5px;
  font-size: 17px;
  transition: 0.3s ease-in-out;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a:first-child {
  padding-left: 0;
}
header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas .offcanvas-body .footer-inner p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}
header .header-mobile-section {
  display: none;
}
@media (max-width: 1199px) {
  header .header-mobile-section {
    display: block;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
  max-width: 200px;
}
@media (max-width: 1199px) {
  header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-left a img {
    max-width: 170px;
  }
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li {
  list-style: none;
  display: inline-block;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon {
  position: relative;
  z-index: 1;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon img {
  width: 18px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .search-cart-icon ul li .mobile-cart-icon span {
  width: fit-content;
  position: absolute;
  right: -8px;
  top: -8px;
  padding: 2px;
  font-size: 9px;
  min-width: 18px;
  min-height: 18px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .mobile-menu-btn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 24px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 20px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas {
  background: rgb(250, 237, 202);
  min-height: 100vh;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header {
  padding: 25px;
  margin-bottom: 50px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header h5 a img {
  max-width: 200px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close {
  background-image: unset;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body {
  padding: 16px 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul {
  margin: 0;
  padding: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li {
  list-style: none;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li a {
  font-size: 17px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  padding: 8px 0;
  display: block;
  color: #000000;
  opacity: 0.8;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion {
  background-color: transparent;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item {
  background-color: transparent;
  border: none !important;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header {
  background-color: transparent;
  padding: 10px 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-header button {
  padding: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 17px;
  color: #000000;
  border: none;
  box-shadow: none;
  outline: none;
  opacity: 0.8;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body {
  padding: 0 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion .accordion-item .accordion-body ul li a {
  padding: 4px 0;
  font-size: 15px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button::after {
  background-image: unset;
  content: "\e145";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Icons";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000000;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body ul li .accordion-button:not(.collapsed)::after {
  content: "\e15b";
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner {
  text-align: left;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner h6 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper {
  margin-bottom: 25px;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a {
  color: #ffffff;
  padding: 0 5px;
  font-size: 17px;
  transition: 0.3s ease-in-out;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner .footer-social-wrapper a:first-child {
  padding-left: 0;
}
header .header-mobile-section .mobile-header-inner-wrapper .mobile-section-right .offcanvas .offcanvas-body .footer-inner p {
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

.sticky {
  background: #00318D;
  background: linear-gradient(90deg, rgb(0, 49, 141) 0%, rgba(25, 78, 159, 0.97) 65%);
  padding: 20px 0;
  box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.07);
}
.sticky::after {
  display: none !important;
}
@media (max-width: 1499px) {
  .sticky {
    padding: 10px 0;
  }
}
.sticky .left-side-logo a img {
  max-width: 250px !important;
}
@media (max-width: 1499px) {
  .sticky .left-side-logo a img {
    max-width: 180px !important;
  }
}
.sticky .left-side-logo a video {
  max-width: 220px !important;
}
@media (max-width: 1499px) {
  .sticky .left-side-logo a video {
    max-width: 180px !important;
  }
}
.hero-section {
  padding-top: 120px;
  padding: 180px 0 0px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.hero-section .hero-section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 0 0 14%;
}
@media (max-width: 1680px) {
  .hero-section .hero-section-inner {
    padding: 0 4%;
  }
}
.hero-section .hero-section-inner .left-content-section h2 {
  font-weight: 500;
  color: #ffffff;
  font-size: 58px;
  margin-bottom: 35px;
}
@media (max-width: 1680px) {
  .hero-section .hero-section-inner .left-content-section h2 {
    font-size: 50px;
  }
}
.hero-section .hero-section-inner .left-content-section .link-wrappers {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.hero-section .hero-section-inner .left-content-section .link-wrappers a {
  font-weight: 500;
  border-radius: 100px;
  padding: 12px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #ffffff;
  color: #125393;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-section .hero-section-inner .left-content-section .link-wrappers a::before {
  position: absolute;
  left: -2%;
  top: -2%;
  width: 0%;
  height: 105%;
  content: "";
  background-color: #092351;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.hero-section .hero-section-inner .left-content-section .link-wrappers a:hover {
  color: #ffffff;
  border-color: #092351;
  background-color: #092351;
}
.hero-section .hero-section-inner .left-content-section .link-wrappers a:hover::before {
  width: 105%;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper {
  text-align: right;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .main-img {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-top: 15px;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper {
  width: 582px;
  position: relative;
  z-index: 1;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper .inner-wrapper .main-bulb-image {
  text-align: center;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper .inner-wrapper .main-bulb-image .lamp-shadow {
  width: 100%;
  max-width: 345px;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper .inner-wrapper .circles-wrapper .big-circle {
  position: absolute;
  left: 0%;
  top: -6%;
  z-index: -1;
  animation: spin360 35s linear 5s infinite;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper .inner-wrapper .circles-wrapper .small-circle {
  position: absolute;
  left: 16%;
  top: 8%;
  z-index: -1;
  width: 100%;
  max-width: 394px;
  animation: spin360 30s linear 5s infinite;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider {
  width: 360px;
  margin-left: -25%;
  margin-top: -4%;
  position: relative;
  z-index: 5;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider .slider-wrapper {
  position: relative;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider .slider-wrapper .splide__track .splide__list .splide__slide {
  margin-bottom: 0 !important;
}

.adas-globus-section {
  background-color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}
.adas-globus-section .adas-globus-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.adas-globus-section .adas-globus-inner .left-img-wrapper .image-wrapper img {
  width: 100%;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper {
  position: relative;
  z-index: 1;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .logo-wrapper {
  margin-bottom: 30px;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .logo-wrapper img {
  width: 100%;
  max-width: 240px;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper p {
  font-size: 16px;
  max-width: 375px;
  margin-bottom: 30px;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  max-width: 65%;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper .box-wrapper {
  padding: 15px 30px;
  border-radius: 12px;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper .box-wrapper:nth-child(1) {
  background-color: #fff4e1;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper .box-wrapper:nth-child(2) {
  background-color: #e0fff7;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper .box-wrapper h3 {
  font-weight: 600;
  color: #123f7a;
  font-size: 34px;
  margin-bottom: 5px;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper .box-wrapper p {
  margin-bottom: 0;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .floating-img {
  position: absolute;
  right: 10%;
  top: 4%;
  width: 173px;
  animation: topbottom 3s linear infinite;
}

.mastery-section {
  background-color: #ffffff;
  padding-bottom: 100px;
  overflow: hidden;
}
.mastery-section .inner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.mastery-section .inner-container .left-graphics-section {
  position: relative;
  z-index: 1;
}
.mastery-section .inner-container .left-graphics-section .inner-wrapper .bg-wrapper img {
  width: 100%;
  max-width: 260px;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(1) {
  position: absolute;
  right: 5%;
  top: 3%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(1) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 4s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(2) {
  position: absolute;
  left: 2%;
  top: 27%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(2) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 4.4s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(3) {
  position: absolute;
  right: -56%;
  top: 36%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(3) img {
  width: 100%;
  max-width: 239px;
  animation: topbottom 4.7s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(4) {
  position: absolute;
  left: 2%;
  bottom: 15.8%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(4) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 4.9s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(5) {
  position: absolute;
  right: -20%;
  bottom: -2%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(5) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 4s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(1) {
  position: absolute;
  left: -23%;
  top: 3%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(1) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 4s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(2) {
  position: absolute;
  right: -21%;
  top: 22%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(2) img {
  width: 100%;
  max-width: 239px;
  animation: topbottom 5s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(3) {
  position: absolute;
  left: -33%;
  top: 40%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(3) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 5.7s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(4) {
  position: absolute;
  right: -5%;
  top: 59%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(4) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 5.9s linear infinite;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(5) {
  position: absolute;
  left: -17%;
  bottom: -2%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(5) img {
  width: 100%;
  max-width: 179px;
  animation: topbottom 5s linear infinite;
}
.mastery-section .inner-container .center-content-section {
  text-align: center;
}
.mastery-section .inner-container .center-content-section h2 {
  color: #18191d;
  font-size: 40px;
  font-weight: 500;
}
.mastery-section .inner-container .center-content-section p {
  font-size: 16px;
  color: #232323;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.mastery-section .inner-container .center-content-section .link-wrapper a {
  font-weight: 500;
  border-radius: 100px;
  padding: 12px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #ffffff;
  color: #125393;
  border: 1px solid #125393;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.mastery-section .inner-container .center-content-section .link-wrapper a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #092351;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.mastery-section .inner-container .center-content-section .link-wrapper a:hover {
  color: #ffffff;
  border-color: #092351;
  background-color: #092351;
}
.mastery-section .inner-container .center-content-section .link-wrapper a:hover::before {
  width: 100%;
}

.global-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  margin-bottom: 100px;
}
.global-section .global-inner {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 70px;
}
.global-section .global-inner .left-content-section h2 {
  color: #00318d;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}
.global-section .global-inner .left-content-section p {
  color: #2e2e2e;
  font-size: 16px;
  max-width: 300px;
  margin-bottom: 20px;
}
.global-section .global-inner .left-content-section h5 {
  color: #2e2e2e;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #00318d;
}
.global-section .global-inner .left-content-section h5 span {
  font-weight: 600;
}
.global-section .global-inner .left-content-section .statistics-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.global-section .global-inner .left-content-section .statistics-wrapper .box-wrapper h3 {
  color: #00318d;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 5px;
}
.global-section .global-inner .left-content-section .statistics-wrapper .box-wrapper p {
  margin-bottom: 0;
  font-size: 18px;
  color: #2e2e2e;
}
.global-section .global-inner .right-map-section .image-wrapper img {
  width: 100%;
}

.serving-section {
  margin-bottom: 0px;
}
.serving-section .serving-inner .top-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}
.serving-section .serving-inner .top-section .left-text-section h2 {
  font-size: 40px;
  color: #18191d;
  font-weight: 500;
  margin: 0;
}
.serving-section .serving-inner .top-section .link-wrapper a {
  font-weight: 500;
  border-radius: 100px;
  padding: 10px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #1e4d7b;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.serving-section .serving-inner .top-section .link-wrapper a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #ffffff;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.serving-section .serving-inner .top-section .link-wrapper a:hover {
  color: #1e4d7b;
  border-color: #1e4d7b;
  background-color: #ffffff;
}
.serving-section .serving-inner .top-section .link-wrapper a:hover::before {
  width: 100%;
}
.serving-section .serving-inner .serving-services-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.serving-section .serving-inner .serving-services-section .services-box {
  border: 1px solid #bebec3;
  border-radius: 15px;
  overflow: hidden;
}
.serving-section .serving-inner .serving-services-section .services-box:hover {
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
}
.serving-section .serving-inner .serving-services-section .services-box:hover .top-wrapper .icon-wrapper img {
  animation: shakeOnce 0.4s ease-in-out forwards;
}
.serving-section .serving-inner .serving-services-section .services-box .top-wrapper {
  padding: 30px 40px;
  padding-bottom: 0;
}
.serving-section .serving-inner .serving-services-section .services-box .top-wrapper .icon-wrapper {
  margin-bottom: 15px;
}
.serving-section .serving-inner .serving-services-section .services-box .top-wrapper .icon-wrapper img {
  width: 100%;
  max-width: 79px;
}
.serving-section .serving-inner .serving-services-section .services-box .top-wrapper h4 {
  font-size: 25px;
  font-weight: 600;
  color: #1e4d7b;
  min-height: 60px;
  margin-bottom: 20px;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper {
  background-color: #f5f5fa;
  padding: 30px 40px;
  border-radius: 15px;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul {
  margin: 0;
  padding: 0;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 7px;
  margin-bottom: 10px;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li:last-child {
  margin-bottom: 0;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li span {
  font-size: 17px;
  margin-top: 3px;
  color: #1eb5df;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li p {
  font-size: 14px;
  color: #232323;
  margin: 0;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper {
  margin-top: 20px;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a {
  font-weight: 500;
  border-radius: 100px;
  padding: 10px 50px;
  text-decoration: none;
  font-size: 18px;
  background-color: #ffffff;
  color: #125393;
  border: 1px solid transparent;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a span {
  font-size: 28px;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #092351;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a:hover {
  color: #ffffff;
  border-color: #092351;
  background-color: #092351;
  padding-right: 35px;
}
.serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a:hover::before {
  width: 100%;
}

.our-usps-section {
  padding-bottom: 100px;
  overflow: hidden;
  padding-top: 100px;
}
.our-usps-section .usps-section-inner .top-title {
  text-align: center;
  margin-bottom: 50px;
}
.our-usps-section .usps-section-inner .top-title h2 {
  font-size: 40px;
  color: #18191d;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 2;
}
.our-usps-section .usps-section-inner .usps-points-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 1;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper {
  width: 100%;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box {
  min-width: 500px;
  padding: 25px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #afd1f3;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box:last-child {
  border-bottom: 0px solid transparent;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box .icon-wrapper {
  min-width: 80px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box .icon-wrapper img {
  width: 100%;
  max-width: 80px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box p {
  margin: 0;
  color: #232323;
  font-size: 18px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper:last-child .left-box {
  padding-left: 43%;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 840px;
  z-index: 1;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img .image-wrapper img {
  width: 100%;
  max-width: 840px;
  animation: bigsmall 4s linear infinite;
}

.connect-section-top {
  margin-bottom: 100px;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 500px 0 70px 0;
}
.connect-section-top .inner-wrapper .connect-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 40px 50px;
}
.connect-section-top .inner-wrapper .connect-inner::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.549;
  border-radius: 20px;
  background-color: #050925;
  z-index: -1;
}
.connect-section-top .inner-wrapper .connect-inner .left-content h3 {
  color: #86ddff;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}
.connect-section-top .inner-wrapper .connect-inner .left-content h2 {
  font-size: 55px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.connect-section-top .inner-wrapper .connect-inner .right-link a {
  font-weight: 500;
  border-radius: 100px;
  padding: 12px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #ffffff;
  color: #125393;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.connect-section-top .inner-wrapper .connect-inner .right-link a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #092351;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.connect-section-top .inner-wrapper .connect-inner .right-link a:hover {
  color: #ffffff;
  border-color: #092351;
  background-color: #092351;
}
.connect-section-top .inner-wrapper .connect-inner .right-link a:hover::before {
  width: 105%;
}

.clients-section .clients-inner {
  position: relative;
  z-index: 5;
  max-width: 95%;
}
.clients-section .clients-inner .clients-slider {
  padding: 0 26%;
}
.clients-section .clients-inner .clients-slider .item .inner-wrapper h3 {
  color: #18191d;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}
.clients-section .clients-inner .clients-slider .item .inner-wrapper .para-content p {
  color: #232323;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 440px;
}
.clients-section .clients-inner .clients-slider .item .inner-wrapper .para-content p:first-child {
  margin-bottom: 70px;
  max-width: 100%;
}
.clients-section .clients-inner .clients-slider .item .inner-wrapper h6 {
  margin-top: 15px;
  color: #1e4d7b;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
.clients-section .clients-inner .clients-slider .item .inner-wrapper h6 span {
  font-weight: 600;
}
.clients-section .clients-inner .clients-slider .owl-nav button {
  box-shadow: none;
  outline: none;
}
.clients-section .clients-inner .clients-slider .owl-nav button:hover {
  box-shadow: none;
  outline: none;
  background-color: transparent;
}
.clients-section .clients-inner .clients-slider .owl-nav button:focus {
  box-shadow: none;
  outline: none;
  background-color: transparent;
}
.clients-section .clients-inner .clients-slider .owl-nav button img {
  width: 170px;
}
.clients-section .clients-inner .clients-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.clients-section .clients-inner .clients-slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
}

.bottom-continuous-section {
  margin-bottom: 100px;
}
.bottom-continuous-section .testimonials-slider:first-child {
  margin-top: 30px;
}
.bottom-continuous-section .testimonials-slider:nth-child(2) {
  margin-top: -35px;
}
.bottom-continuous-section .testimonials-slider:last-child {
  margin-top: -35px;
}
.bottom-continuous-section .testimonials-slider .item h2 {
  text-transform: uppercase;
  margin: 0;
  opacity: 0.8;
  color: #ffffff;
  font-size: 100px;
  color: #fff;
  font-weight: 900;
  filter: drop-shadow(-0.707px 0.707px 12px rgba(202, 219, 223, 0.75));
}

.connect-section {
  margin-bottom: 100px;
}
.connect-section .inner-content .top-title {
  text-align: center;
  margin-bottom: 50px;
}
.connect-section .inner-content .top-title h2 {
  font-size: 40px;
  color: #18191d;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.connect-section .inner-content .top-title p {
  color: #232323;
  font-size: 16px;
  margin-bottom: 0;
}
.connect-section .inner-content .form-inner-content {
  background-color: #f3f5fd;
  border-radius: 15px;
  padding: 40px 40px 40px 25px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
}
.connect-section .inner-content .form-inner-content .left-image .image-wrapper {
  position: relative;
  z-index: 1;
}
.connect-section .inner-content .form-inner-content .left-image .image-wrapper::before {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 400px;
  height: 400px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
}
.connect-section .inner-content .form-inner-content .left-image .image-wrapper::after {
  display: none;
  position: absolute;
  right: 14%;
  bottom: 4%;
  content: "";
  background-color: #fff;
  width: 60px;
  height: 60px;
  z-index: -1;
  border-radius: 50%;
}
.connect-section .inner-content .form-inner-content .left-image .image-wrapper img {
  width: 100%;
}
.connect-section .inner-content .form-inner-content .left-image .image-wrapper video {
  width: 100%;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group {
  margin-bottom: 5px;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group input {
  border: 1px solid #b7b7ba;
  border-radius: 9px;
  padding: 12px 15px;
  color: #000000;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group input:focus {
  box-shadow: none;
  outline: none;
  border-color: #000000;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group select {
  border: 1px solid #b7b7ba;
  border-radius: 9px;
  padding: 12px 15px;
  color: #000000;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group select:focus {
  box-shadow: none;
  outline: none;
  border-color: #000000;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group textarea {
  border: 1px solid #b7b7ba;
  border-radius: 9px;
  padding: 12px 15px;
  color: #000000;
  resize: none;
  min-height: 130px;
}
.connect-section .inner-content .form-inner-content .right-form form .form-group textarea:focus {
  box-shadow: none;
  outline: none;
  border-color: #000000;
}
.connect-section .inner-content .form-inner-content .right-form form .recaptcha-wrapper .g-recaptcha div {
  margin-left: auto;
  margin-right: auto;
}
.connect-section .inner-content .form-inner-content .right-form form .submit-wrapper {
  text-align: center;
  margin-top: 15px;
}
.connect-section .inner-content .form-inner-content .right-form form .submit-wrapper .submit_btn {
  font-weight: 500;
  border-radius: 100px;
  padding: 10px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #1e4d7b;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.connect-section .inner-content .form-inner-content .right-form form .submit-wrapper .submit_btn::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #ffffff;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.connect-section .inner-content .form-inner-content .right-form form .submit-wrapper .submit_btn:hover {
  color: #1e4d7b;
  border-color: #1e4d7b;
  background-color: #ffffff;
}
.connect-section .inner-content .form-inner-content .right-form form .submit-wrapper .submit_btn:hover::before {
  width: 100%;
}

.footer-section .footer-inner .footer-top {
  text-align: center;
}
.footer-section .footer-inner .footer-top .logo-wrapper {
  margin-bottom: 40px;
}
.footer-section .footer-inner .footer-top .logo-wrapper a {
  display: block;
}
.footer-section .footer-inner .footer-top .logo-wrapper a img {
  width: 100%;
  max-width: 270px;
}
.footer-section .footer-inner .footer-top .mail-phone-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.footer-section .footer-inner .footer-top .mail-phone-wrapper a {
  background-color: #f3f3fd;
  border-radius: 100px;
  padding: 12px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  border: 1px solid #f3f3fd;
}
.footer-section .footer-inner .footer-top .mail-phone-wrapper a:hover {
  border-color: #00318d;
  background-color: #fff;
  color: #00318d;
}
.footer-section .footer-inner .footer-country-time {
  border-top: 3px solid #ededf1;
  padding-top: 35px;
  margin-top: 35px;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 3px solid #ededf1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.footer-section .footer-inner .footer-country-time .box-wrapper {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.footer-section .footer-inner .footer-country-time .box-wrapper .left-icon img {
  width: 66px;
}
.footer-section .footer-inner .footer-country-time .box-wrapper .right-content h5 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #125293;
  margin-bottom: 15px;
}
.footer-section .footer-inner .footer-country-time .box-wrapper .right-content p {
  color: #4a4a4a;
  margin-bottom: 0;
}
.footer-section .footer-inner .footer-country-time .box-wrapper .right-content p a {
  color: #125293;
}
.footer-section .footer-inner .footer-country-time .box-wrapper .right-content p a:hover {
  opacity: 0.6;
}
.footer-section .footer-inner .links-wrapper {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 3px solid #ededf1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.footer-section .footer-inner .links-wrapper .box-wrapper:nth-child(2) ul {
  grid-template-columns: 1fr !important;
}
.footer-section .footer-inner .links-wrapper .box-wrapper h4 {
  font-size: 16px;
  color: #125293;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-section .footer-inner .links-wrapper .box-wrapper ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.footer-section .footer-inner .links-wrapper .box-wrapper ul li {
  list-style: none;
}
.footer-section .footer-inner .links-wrapper .box-wrapper ul li a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 15px;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .links-wrapper .box-wrapper ul li a:hover {
  color: #00318d;
}
.footer-section .footer-inner .copyright-policy-wrapper {
  padding-bottom: 35px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer-section .footer-inner .copyright-policy-wrapper .left-copyright-wrapper p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .social-icons {
  margin: 0;
  padding: 0;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .social-icons li {
  list-style: none;
  display: inline-block;
  margin: 0 1px;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .social-icons li a {
  color: #b4b4b4;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b4b4b4;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .social-icons li a i {
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .social-icons li a:hover {
  color: #fff;
  border-color: #00318d;
  background-color: #00318d;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .privacy-policy {
  margin: 0;
  padding: 0;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .privacy-policy li {
  list-style: none;
  display: inline-block;
  margin: 0 1px;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .privacy-policy li a {
  text-decoration: none;
  font-size: 14px;
  color: #4a4a4a;
  transition: 0.3s ease-in-out;
}
.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper .privacy-policy li a:hover {
  color: #00318d;
}

@keyframes topbottom {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10%) scale(1.01);
  }
  100% {
    transform: translateY(0%) scale(1);
  }
}
@keyframes newtopbottom {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1%) scale(1.02);
  }
  100% {
    transform: translateY(0%) scale(1);
  }
}
@keyframes bigsmall {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(0) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes shakeOnce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
[data-aos=zoom-out] {
  transform: scale(2);
}

@keyframes spin360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(108, 92, 231, 0.5), rgba(0, 212, 255, 0.4), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.center-box-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ðŸ”µ BLUE BACKGROUND CIRCLE */
.bg-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(175, 210, 243, 0.5), rgba(175, 210, 243, 0.5), transparent 100%);
}

/* ðŸ–¼ï¸ IMAGE ABOVE */
.image-wrapper1 {
  position: relative;
  z-index: 2;
}

.bg-video {
  width: 100%;
}

.map-video {
  width: 100%;
  scale: 1.2;
}

.footer-section {
  background-color: #f3f5fd;
  padding-top: 70px;
}

.top-banner .container {
  height: 100%;
}
.top-banner .top-hedar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.top-banner .top-hedar .image-wrapper img {
  width: 100%;
  min-width: 500px;
  max-width: 500px;
  position: absolute;
  right: 0;
  bottom: -20%;
  animation: newtopbottom 4s linear infinite;
}

.about-two {
  padding-top: 0 !important;
  margin-top: 200px;
}

.advantage-box img {
  width: 100%;
  max-width: 70px;
}

.different-box img {
  width: 100%;
  max-width: 163px;
}

.about-team-box:hover .main-img {
  transform: scale(1.02);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.about-team-box .main-img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.thankyou-section {
  margin: 150px 0 100px 0;
}
.thankyou-section .thankyou-inner {
  text-align: center;
}
.thankyou-section .thankyou-inner h2 {
  text-transform: uppercase;
  font-size: 60px;
  color: rgba(0, 0, 0, 0.8);
}
.thankyou-section .thankyou-inner p {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .thankyou-section .thankyou-inner p {
    max-width: 100%;
  }
}
.thankyou-section .thankyou-inner .link-wrapper {
  text-align: center;
  margin-top: 30px;
}
.thankyou-section .thankyou-inner .link-wrapper a {
  font-weight: 500;
  border-radius: 100px;
  padding: 12px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #ffffff;
  color: #125393;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #092351;
}
.thankyou-section .thankyou-inner .link-wrapper a::before {
  position: absolute;
  left: -2%;
  top: -2%;
  width: 0%;
  height: 105%;
  content: "";
  background-color: #092351;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.thankyou-section .thankyou-inner .link-wrapper a:hover {
  color: #ffffff;
  border-color: #092351;
  background-color: #092351;
}
.thankyou-section .thankyou-inner .link-wrapper a:hover::before {
  width: 105%;
}

.industries-serving-section {
  margin: 150px 0 100px 0;
}
.industries-serving-section .serving-inner .top-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  margin-bottom: 80px;
}
.industries-serving-section .serving-inner .top-section .left-text-section h2 {
  font-size: 40px;
  color: #18191d;
  font-weight: 500;
  margin-bottom: 20px;
}
.industries-serving-section .serving-inner .top-section .left-text-section p {
  color: #232323;
  font-size: 16px;
  max-width: 54%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.industries-serving-section .serving-inner .serving-services-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box {
  border: 1px solid #bebec3;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bg-image-wrapper img {
  transition: 0.2s ease-in-out;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.industries-serving-section .serving-inner .serving-services-section .services-box:hover {
  box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.15);
}
.industries-serving-section .serving-inner .serving-services-section .services-box:hover .bg-image-wrapper img {
  opacity: 1;
}
.industries-serving-section .serving-inner .serving-services-section .services-box:hover .top-wrapper .icon-wrapper img {
  animation: shakeOnce 0.4s ease-in-out forwards;
}
.industries-serving-section .serving-inner .serving-services-section .services-box:hover .top-wrapper h4 {
  color: #fff;
}
.industries-serving-section .serving-inner .serving-services-section .services-box:hover .bottom-wrapper {
  background-color: rgba(3, 21, 39, 0.3411764706);
}
.industries-serving-section .serving-inner .serving-services-section .services-box:hover .bottom-wrapper .para-content p {
  color: #fff;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .top-wrapper {
  padding: 30px 40px;
  padding-bottom: 0;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .top-wrapper .icon-wrapper {
  margin-bottom: 15px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .top-wrapper .icon-wrapper img {
  width: 100%;
  max-width: 79px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .top-wrapper h4 {
  transition: 0.2s ease-in-out;
  font-size: 25px;
  font-weight: 600;
  color: #1e4d7b;
  min-height: 100px;
  margin-bottom: 20px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper {
  background-color: #f5f5fa;
  padding: 50px 40px;
  border-radius: 15px;
  transition: 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul {
  margin: 0;
  padding: 0;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 7px;
  margin-bottom: 10px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li:last-child {
  margin-bottom: 0;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li span {
  font-size: 17px;
  margin-top: 3px;
  color: #1eb5df;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper ul li p {
  font-size: 14px;
  color: #232323;
  margin: 0;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .para-content p {
  color: #232323;
  font-size: 16px;
  margin-bottom: 20px;
  min-height: 100px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a {
  transition: 0.2s ease-in-out;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
  background-color: transparent;
  color: #125393;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a .left-text {
  background-color: #ffffff;
  width: 100%;
  border-radius: 100px;
  padding: 10px 50px;
  transition: 0.2s ease-in-out;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a .enquire-icon {
  background-color: #ffffff;
  border-radius: 50%;
  height: 100%;
  padding: 10px;
  min-width: 47px;
  transition: 0.2s ease-in-out;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a .enquire-icon img {
  width: 18px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a span {
  font-size: 28px;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a:hover {
  background-color: #092351;
}
.industries-serving-section .serving-inner .serving-services-section .services-box .bottom-wrapper .link-wrapper a:hover::before {
  width: 100%;
}

.technology-security-banner {
  min-height: 720px;
  background-position: bottom !important;
}
.technology-security-banner .top-hedar {
  text-align: left;
}

.technology-about-section {
  margin: 150px 0 100px 0;
}
.technology-about-section .technology-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 15px;
  border-radius: 20px;
  background-color: #f3f6fd;
}
.technology-about-section .technology-about-inner .left-section .image-wrapper {
  margin-top: -48px;
}
.technology-about-section .technology-about-inner .left-section .image-wrapper img {
  width: 100%;
}
.technology-about-section .technology-about-inner .left-right-content {
  max-width: 58%;
}
.technology-about-section .technology-about-inner .left-right-content p {
  color: #232323;
  font-size: 16px;
}
.technology-about-section .technology-about-inner .left-right-content p:first-child {
  font-weight: 600;
}
.technology-about-section .technology-about-inner .left-right-content .link-wrapper a {
  text-decoration: none;
  transition: 0.5s ease-in-out;
  position: relative;
  display: flex;
}
.technology-about-section .technology-about-inner .left-right-content .link-wrapper a span {
  background: #1e4d7b;
  color: #fff;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 16px;
  transition: 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #ffffff;
}
.technology-about-section .technology-about-inner .left-right-content .link-wrapper a span::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #fff;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.technology-about-section .technology-about-inner .left-right-content .link-wrapper a img {
  background: #1e4d7b;
  border-radius: 50%;
  padding: 15px 15px;
  margin-left: 5px;
  width: 45px;
}
.technology-about-section .technology-about-inner .left-right-content .link-wrapper a:hover span {
  color: #092351;
  border-color: #092351;
  background-color: #fff;
}
.technology-about-section .technology-about-inner .left-right-content .link-wrapper a:hover span::before {
  width: 100%;
}

.icon-text-section {
  margin-bottom: 100px;
}
.icon-text-section .icon-text-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.icon-text-section .icon-text-inner .box-wrapper {
  padding: 10px;
}
.icon-text-section .icon-text-inner .box-wrapper .inner-wrapper {
  padding: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 21px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  transition: 0.3s ease-in-out;
}
.icon-text-section .icon-text-inner .box-wrapper .inner-wrapper:hover {
  filter: drop-shadow(2.723px 4.193px 3.5px rgba(0, 0, 0, 0.15));
}
.icon-text-section .icon-text-inner .box-wrapper .inner-wrapper .left-icon img {
  width: 80px;
}
.icon-text-section .icon-text-inner .box-wrapper .inner-wrapper .right-text-wrapper p {
  margin: 0;
  color: #232323;
  font-weight: 600;
}

.software-sagacity-section {
  padding: 100px 0;
  background-color: #f3f5fd;
}
.software-sagacity-section .software-sagacity-inner .top-title-wrapper {
  text-align: center;
}
.software-sagacity-section .software-sagacity-inner .top-title-wrapper h2 {
  font-size: 40px;
  font-weight: 500;
  color: #18191d;
  margin-bottom: 50px;
}
.software-sagacity-section .software-sagacity-inner .software-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.software-sagacity-section .software-sagacity-inner .software-inner-wrapper .box-wrapper {
  padding: 50px;
  border-radius: 21px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  transition: 0.3s ease-in-out;
}
.software-sagacity-section .software-sagacity-inner .software-inner-wrapper .box-wrapper:hover {
  filter: drop-shadow(2.723px 4.193px 3.5px rgba(0, 0, 0, 0.15));
}
.software-sagacity-section .software-sagacity-inner .software-inner-wrapper .box-wrapper .image-wrapper {
  text-align: center;
}
.software-sagacity-section .software-sagacity-inner .software-inner-wrapper .box-wrapper .image-wrapper img {
  width: 100%;
}

.top-section-wrapper {
  margin: 150px 0 70px 0;
}
.top-section-wrapper .top-section-inner {
  text-align: center;
}
.top-section-wrapper .top-section-inner h2 {
  color: #18191d;
  font-size: 40px;
  font-weight: 500;
}
.top-section-wrapper .top-section-inner p {
  font-size: 16px;
  color: #232323;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.email-phone-location-section {
  margin-bottom: 100px;
}
.email-phone-location-section .email-phone-location-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper {
  border-radius: 20px;
  padding: 50px;
  background-color: #e4f6ff;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper:nth-child(1) {
  background-color: #fff9e4;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper:nth-child(3) {
  background-color: #ffece4;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper:nth-child(3) .link-wrapper {
  max-width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 575px) {
  .email-phone-location-section .email-phone-location-inner .box-wrapper:nth-child(3) .link-wrapper {
    max-width: 100%;
  }
}
.email-phone-location-section .email-phone-location-inner .box-wrapper .icon-wrapper {
  width: 72px;
  height: 70px;
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper .icon-wrapper img {
  width: 36px;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper h3 {
  color: #1e4d7b;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper .link-wrapper p {
  margin: 0;
  color: #2e2e2e;
  font-size: 16px;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper .link-wrapper p a {
  text-decoration: none;
  color: #2e2e2e;
  transition: 0.3s ease-in-out;
}
.email-phone-location-section .email-phone-location-inner .box-wrapper .link-wrapper p a:hover {
  color: #1e4d7b;
}

.global-presence-section {
  margin-bottom: 100px;
}
.global-presence-section .global-presence-inner .top-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
}
.global-presence-section .global-presence-inner .top-section .left-section h2 {
  color: #18191d;
  font-size: 40px;
  font-weight: 500;
}
.global-presence-section .global-presence-inner .top-section .left-section p {
  color: #232323;
  font-size: 16px;
  margin-bottom: 0;
}
.global-presence-section .global-presence-inner .top-section .right-section .link-wrapper a {
  text-decoration: none;
  transition: 0.5s ease-in-out;
  position: relative;
  display: flex;
}
.global-presence-section .global-presence-inner .top-section .right-section .link-wrapper a span {
  background: #1e4d7b;
  color: #fff;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 16px;
  transition: 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #ffffff;
}
.global-presence-section .global-presence-inner .top-section .right-section .link-wrapper a span::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #fff;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.global-presence-section .global-presence-inner .top-section .right-section .link-wrapper a img {
  background: #1e4d7b;
  border-radius: 50%;
  padding: 15px 15px;
  margin-left: 5px;
  width: 45px;
}
.global-presence-section .global-presence-inner .top-section .right-section .link-wrapper a:hover span {
  color: #092351;
  border-color: #092351;
  background-color: #fff;
}
.global-presence-section .global-presence-inner .top-section .right-section .link-wrapper a:hover span::before {
  width: 100%;
}
.global-presence-section .global-presence-inner .location-tab-section {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 15px;
}
.global-presence-section .global-presence-inner .location-tab-section .map-inner {
  border-radius: 16px;
  overflow: hidden;
}
.global-presence-section .global-presence-inner .location-tab-section .map-inner iframe {
  width: 100%;
}
.global-presence-section .global-presence-inner .location-tab-section .nav {
  margin-bottom: 6px;
  border-radius: 16px;
  overflow: hidden;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item {
  width: 100%;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .nav-link {
  background-color: #f3f6fd;
  width: 100%;
  height: 100%;
  border-radius: 0;
  text-align: left;
  color: #1e4d7b;
  font-weight: 600;
  font-size: 24px;
  padding: 12px 35px;
  position: relative;
  z-index: 1;
  transition: 0.2s ease-in-out;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .nav-link::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  content: "";
  background-color: #1e4d7b;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .nav-link span {
  font-size: 16px;
  color: #2e2e2e;
  line-height: 25px;
  font-weight: 400;
  display: block;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .nav-link:hover {
  background-color: #ffffff;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .nav-link:hover::before {
  visibility: visible;
  opacity: 1;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .active {
  background-color: #ffffff;
}
.global-presence-section .global-presence-inner .location-tab-section .nav .nav-item .active::before {
  visibility: visible;
  opacity: 1;
}

.form-section-wrapper {
  margin-bottom: 30px;
}
.form-section-wrapper .form-section-inner {
  border-radius: 20px;
  background-color: #f3f6fd;
  padding: 100px;
}
.form-section-wrapper .form-section-inner .top-section {
  text-align: center;
  margin-bottom: 40px;
}
.form-section-wrapper .form-section-inner .top-section h2 {
  color: #18191d;
  font-size: 40px;
  font-weight: 500;
}
.form-section-wrapper .form-section-inner .top-section p {
  font-size: 16px;
  color: #232323;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.form-section-wrapper .form-section-inner .form-inner {
  max-width: 55%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.13));
  background-color: #ffffff;
  padding: 45px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.form-section-wrapper .form-section-inner .form-inner::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 19px;
  background-color: #1e4d7b;
  content: "";
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}
@media (max-width: 1199px) {
  .form-section-wrapper .form-section-inner .form-inner {
    max-width: 80%;
  }
}
@media (max-width: 1024px) {
  .form-section-wrapper .form-section-inner .form-inner {
    max-width: 100%;
  }
}
.form-section-wrapper .form-section-inner .form-inner .form-group {
  margin-bottom: 15px;
}
.form-section-wrapper .form-section-inner .form-inner .form-group input,
.form-section-wrapper .form-section-inner .form-inner .form-group textarea {
  border-radius: 13px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #d6d6d6;
  resize: none;
  padding: 12px 15px;
  color: #18191d;
}
.form-section-wrapper .form-section-inner .form-inner .form-group textarea {
  min-height: 110px;
}
.form-section-wrapper .form-section-inner .form-inner .form-check {
  margin-bottom: 15px;
}
.form-section-wrapper .form-section-inner .form-inner .form-check label {
  color: #18191d;
  user-select: none;
}
.form-section-wrapper .form-section-inner .form-inner .captcha-wrapper {
  margin-bottom: 25px;
}
.form-section-wrapper .form-section-inner .form-inner .submit-wrapper button {
  text-decoration: none;
  transition: 0.5s ease-in-out;
  position: relative;
  display: flex;
  border: none;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
}
.form-section-wrapper .form-section-inner .form-inner .submit-wrapper button span {
  background: #1e4d7b;
  color: #fff;
  padding: 10px 40px;
  border-radius: 40px;
  font-size: 16px;
  transition: 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #ffffff;
}
.form-section-wrapper .form-section-inner .form-inner .submit-wrapper button span::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  content: "";
  background-color: #fff;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.form-section-wrapper .form-section-inner .form-inner .submit-wrapper button img {
  background: #1e4d7b;
  border-radius: 50%;
  padding: 15px 15px;
  margin-left: 5px;
  width: 45px;
}
.form-section-wrapper .form-section-inner .form-inner .submit-wrapper button:hover span {
  color: #092351;
  border-color: #092351;
  background-color: #fff;
}
.form-section-wrapper .form-section-inner .form-inner .submit-wrapper button:hover span::before {
  width: 100%;
}

.lets-build-section .lets-build-inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 150px 15px;
  text-align: center;
  overflow: hidden;
}
.lets-build-section .lets-build-inner .trusted-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 21px;
  background-color: #1a2536;
  border: 1px solid #d6d6d6;
  text-align: center;
  padding: 8.5px 33px;
  margin-bottom: 40px;
}
.lets-build-section .lets-build-inner .trusted-top .icon-wrapper img {
  width: 20px;
}
.lets-build-section .lets-build-inner .trusted-top h5 {
  margin: 0;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.lets-build-section .lets-build-inner h2 {
  font-size: 80px;
  color: #fff;
  font-weight: bold;
}
.lets-build-section .lets-build-inner p {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  margin-bottom: 30px;
}
.lets-build-section .lets-build-inner .links-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.lets-build-section .lets-build-inner .links-wrapper a {
  font-weight: 500;
  border-radius: 100px;
  padding: 12px 50px;
  text-decoration: none;
  font-size: 20px;
  background-color: #ffffff;
  color: #0e1a2b;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #fff;
}
.lets-build-section .lets-build-inner .links-wrapper a::before {
  position: absolute;
  left: -2%;
  top: -2%;
  width: 0%;
  height: 105%;
  content: "";
  background-color: #1a2536;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.lets-build-section .lets-build-inner .links-wrapper a:hover {
  color: #ffffff;
  border-color: #fff;
  background-color: #1a2536;
}
.lets-build-section .lets-build-inner .links-wrapper a:hover::before {
  width: 105%;
}

.faqs-section-outer {
  margin: 150px 0 100px 0;
}
.faqs-section-outer .faqs-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
}
.faqs-section-outer .faqs-section-inner .left-text-section h2 {
  position: sticky;
  top: 130px;
  color: #1e4d7b;
  font-size: 73px;
  font-weight: 500;
}
.faqs-section-outer .faqs-section-inner .right-content-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper h3 {
  color: #1e4d7b;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-item {
  border-radius: 22px;
  background-color: rgba(227, 227, 239, 0);
  border: 1px solid #acacac;
  overflow: hidden;
  margin-bottom: 10px;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-item .accordion-header .accordion-button {
  color: #1e4d7b;
  font-size: 20px;
  font-weight: 600;
  padding-right: 30px;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-item .accordion-header .accordion-button:not(.collapsing) {
  background-color: transparent !important;
  box-shadow: none !important;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-item .accordion-body {
  background-color: #f5f5fa;
  border-radius: 15px;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-button::after {
  background-image: unset;
  content: "\e145";
  position: absolute;
  right: 15px;
  top: 17px;
  transform: unset;
  font-family: "Material Icons";
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000000;
}
.faqs-section-outer .faqs-section-inner .right-content-section .box-wrapper .accordion-button:not(.collapsed)::after {
  content: "\e15b";
}

/*# sourceMappingURL=style.css.map */
.error {
	color: #e7505a !important;
	font-size: 14px;
}

@media only screen and (max-width: 767px){
    header .header-inner-wrapper .header-desktop .right-side-menu .mobile-menu-bars .offcanvas {
	   	width: 300px;
    }
    .hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper {
	width: 100%;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .main-img {
	width: 100%;
	max-width: 280px;
}


.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper .inner-wrapper .circles-wrapper .small-circle {
	max-width: 260px;
	left: 11%;
  top: 6%;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper .inner-wrapper .circles-wrapper .big-circle {
	width: 340px;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper {
	margin: auto;
	width: 340px;
}

.hero-section .hero-section-inner .left-content-section .link-wrappers a {
	padding: 12px 26px;
	font-size: 16px;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .floating-img {
	display: none;
}
.adas-globus-section .adas-globus-inner {
	grid-template-columns: 1fr;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper {
	grid-template-columns: 1fr;
	max-width: 100%;
	text-align: center;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper p {
	font-size: 16px;
	max-width: 100%;
	margin-bottom: 30px;
}
.hero-section .hero-section-inner .left-content-section h2,.connect-section .inner-content .top-title h2,.clients-section .clients-inner .clients-slider .item .inner-wrapper h3,.our-usps-section .usps-section-inner .top-title h2, .mastery-section .inner-container .center-content-section h2,.global-section .global-inner .left-content-section h2, .serving-section .serving-inner .top-section .left-text-section h2 {
	font-size: 26px;
}
.mastery-section .inner-container {
	flex-direction: column;
}

.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(2) {
	left: -70px;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(3) {
	right: -28%;
}
.global-section .global-inner {
	grid-template-columns: 1fr;
}
.serving-section .serving-inner .top-section {

	flex-direction: column;
}
.serving-section .serving-inner .serving-services-section {
	grid-template-columns: repeat(1, 1fr);
}
.serving-section .serving-inner .serving-services-section .services-box .top-wrapper h4 {
	font-size: 22px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper {
	flex-direction: column;
}
.bg-circle {
    display: none;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img {
	position: relative;
	left: 0;
	top: 0;
	transform: translate(0%, 0%);
	width: 100%;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper {
	order: 1;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box {
	min-width: 100%;
	padding: 15px 0;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box:last-child {
	border-bottom: 1px solid #afd1f3;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box .icon-wrapper img {
	width: 100%;
	max-width: 60px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box p {
	font-size: 15px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper:last-child .left-box {
	padding-left: 0;
}

.connect-section-top .inner-wrapper .connect-inner {
	flex-direction: column;
	padding: 30px 30px;
}
.connect-section-top .inner-wrapper .connect-inner .left-content h3 {
	font-size: 24px;
}
.connect-section-top .inner-wrapper .connect-inner .left-content h2 {
	font-size: 36px;
}
.connect-section-top {
	padding: 300px 0 70px 0;
}
.clients-section .clients-inner .clients-slider .owl-nav button {
	display: none !important;
}
.clients-section .clients-inner .clients-slider {
	padding: 0;
}
.clients-section .clients-inner .clients-slider .item .inner-wrapper .para-content p:first-child {
	margin-bottom: 30px;
}
.bottom-continuous-section .testimonials-slider .item h2 {
	font-size: 53px;
	line-height: 1.5;
}
.connect-section .inner-content .form-inner-content {
	grid-template-columns: 1fr;
}
.footer-section .footer-inner .footer-top .mail-phone-wrapper {
	flex-direction: column;
	gap: 20px;
}
.footer-section .footer-inner .footer-country-time {
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
}
.footer-section .footer-inner .links-wrapper {
	grid-template-columns: 1fr;
}
.footer-section .footer-inner .copyright-policy-wrapper,.footer-section .footer-inner .copyright-policy-wrapper .right-policy .social-wrapper {
	flex-direction: column;
	gap: 20px;
}

.mastery-section .inner-container .left-graphics-section:last-child {
	display: none;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img {
	margin-top: -70px;
	margin-bottom: -30px;
}
.hero-section .hero-section-inner .left-content-section {
	padding-top: 40px;
	padding-bottom: 20px;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper {
	margin-top: 150px !important;
}

}
@media (min-width: 500px) and (max-width: 767px){
    
}
@media (min-width: 768px) and (max-width: 991px) {
    .footer-section .footer-inner .footer-country-time .box-wrapper .left-icon img {
	width: 50px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img .image-wrapper img, .our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img {
	max-width: 400px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box .icon-wrapper img {
	max-width: 60px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper .left-box p {
	font-size: 16px;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper:last-child .left-box {
	padding-left: 0;
}

}
@media only screen and (max-width: 990px){
  .hero-section .hero-section-inner .right-image-section .image-wrapper {
	flex-direction: column;
    }
    .hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider {
    	width: 100%;
    	margin-left: 0;
    	margin-top: 0;
    	position: relative;
    	z-index: 5;
    	order: 1;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider {
	overflow: hidden;
	max-width: 100vw;
	width: 100%;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper {
	margin: auto;
	order: 2;
	margin-top: 100px !important;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider .slider-wrapper .splide__track .splide__list .splide__slide {
	width: 150px !important;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider .slider-wrapper .splide__track .splide__list .splide__slide img {
	width: 150px;
}
.hero-section .hero-section-inner {
	padding: 0;
}
.hero-section .container-fluid {
	padding: 0;
}
}
@media (min-width: 992px) and (max-width: 1200px){
    .our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img {
    	width: 500px;
    }
    .our-usps-section .usps-section-inner .usps-points-wrapper .box-wrapper:last-child .left-box {
    	padding-left: 25%;
    }
    .adas-globus-section .adas-globus-inner .right-content-wrapper .floating-img {
	display: none;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper .statistics-wrapper {
	max-width: 100%;
}
.adas-globus-section .adas-globus-inner .right-content-wrapper .content-wrapper p {
	max-width: 100%;
}
.hero-section .hero-section-inner .right-image-section .image-wrapper .hero-top-slider {
	width: 320px;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(2) {
	left: -21%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(1) .logos-wrapper .logo-box:nth-child(3) {
	top: 19%;
}
.mastery-section .inner-container .left-graphics-section:nth-child(3) .logos-wrapper .logo-box:nth-child(5) {
	bottom: -11%;
}
}
@media only screen and (max-width: 1100px){
    header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li {
	    display: none;
    }
    header .header-inner-wrapper .header-desktop .right-side-menu .main-menu li:last-child {
	    display: block;
    }
}
@media only screen and (max-width: 1200px){
    .hero-section .hero-section-inner {
    	grid-template-columns: 1fr;
    	text-align: center;
    	gap: 100px;
    }   
    .hero-section .hero-section-inner .left-content-section .link-wrappers {
    	justify-content: center;
    }
    .hero-section .hero-section-inner .right-image-section .image-wrapper .bulb-image-wrapper {
    	margin: auto;
    }
    .map-video {
	scale: 1;
}

}
@media (min-width: 1200px) and (max-width: 1300px){
    .map-video {
	scale: 1;
}
.our-usps-section .usps-section-inner .usps-points-wrapper .center-box-img {
	width: 730px;
}
}
@media (min-width: 1400px) and (max-width: 1600px){
    
}












