:root {
  --brand: #0D2E42;
  --yellow: #F7A800;
  --brand-light-bg: rgba(220, 25, 45, 0.04);
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --dark: #000000;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #615F5F;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Satoshi";
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #F0F5FB !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.navbar {
  position: fixed;
  top: 2rem;
  left: 50%;
  max-width: 900px;
  transform: translate(-50%);
  z-index: 999;
}
.navbar .nav-item .nav-link {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--dark);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
  text-decoration: underline;
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: 19rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 0.937rem;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu .dropdown-item:last-child {
  padding-bottom: 0.55rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu .active .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--dark);
}
.navbar .dropdown:hover > .nav-link .caret {
  transform: rotate(-180deg);
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
}
.navbar .navbar-toggler svg {
  width: 2rem;
  height: 2rem;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .navbar .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navbar {
    max-width: 500px;
    top: 1rem;
  }
  .navbar .nav-link {
    font-size: 14px;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 576px) {
  .navbar {
    max-width: 320px;
  }
  .navbar .container {
    max-width: 100%;
    padding: 0%;
  }
  .navbar .navbar-brand img {
    max-height: 2.25rem;
    width: auto;
  }
  .navbar .whatsapp__btn img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .navbar .navbar-toggler {
    width: 2.5rem;
    height: 2.5rem;
  }
}
footer {
  background-color: var(--brand);
  padding: 6rem 0 3rem 0;
}
footer .action__link {
  color: #587B91;
  font-size: 1rem;
}
footer .action__link:hover, footer .action__link:focus {
  color: var(--white);
}
footer address, footer .label {
  color: #587B91;
}
footer a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 1.125rem;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
  color: var(--white);
}

@media (max-width: 1199px) {
  footer a {
    font-size: 0.937rem;
  }
  footer a.action__link {
    font-size: 0.875rem;
  }
  footer address {
    font-size: 0.875rem;
  }
}
.social__links {
  max-width: 8rem;
}
.social__links li a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #8CA9C4;
  color: var(--white);
}
.social__links li a svg {
  width: 1.5rem;
  height: 1.5rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--brand);
  color: var(--white);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.header__wrapper {
  min-height: 100vh;
}

@media (max-width: 991px) {
  .header__wrapper {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .header__wrapper {
    min-height: 450px;
  }
  .header__wrapper .banner {
    min-height: 400px;
    object-fit: cover;
  }
}
@media (min-width: 2000px) {
  .header__wrapper {
    min-height: 900px;
  }
  .header__wrapper .banner {
    margin-left: 20%;
  }
}
.service__wrapper, .approach__wrapper, .social__media__wrapper {
  margin: -2rem 0;
  position: relative;
  z-index: 11;
  border-radius: 2.5rem !important;
}

.service__card {
  border: 2px solid transparent;
}
.service__card .icon {
  height: 5rem;
}
.service__card .title {
  min-height: 4rem;
}
.service__card .arrow__link {
  width: 3rem;
  height: 3rem;
}
.service__card .description {
  min-height: 11rem;
}
.service__card .description.large {
  min-height: 14rem;
}
.service__card:hover {
  border-color: var(--brand);
  transform: translateY(-1rem);
}
.service__card:hover .arrow__link {
  background-color: var(--brand);
}
.service__card:hover .arrow__link svg path {
  fill: var(--white);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .service__card .description {
    min-height: 13rem;
  }
  .service__card .description.large {
    min-height: 15rem;
  }
}
.about__accordion .accordion-button {
  opacity: 0.85;
}
.about__accordion .accordion-button:focus {
  box-shadow: none;
}
.about__accordion .accordion-button:not(.collapsed) {
  opacity: 1;
}
.about__accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23A3B2CF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 9l6 6l6-6'/%3E%3C/svg%3E");
  background-size: 1.5rem;
}
.about__accordion .accordion-body {
  color: var(--white);
  opacity: 0.85;
}

.approach__card {
  background-color: #8CA9C4;
}
.approach__card .number {
  font-weight: 900;
}

@media (max-width: 1399px) {
  .approach__card .icon {
    max-height: 3rem;
  }
}
@media (max-width: 768px) {
  .approach__card .d-flex {
    flex-direction: column-reverse;
    justify-content: flex-start;
    text-align: left;
  }
  .approach__card .icon {
    max-height: 3rem;
  }
}
.subpage__header {
  min-height: 24rem;
  padding-top: 12rem;
}

@media (max-width: 991px) {
  .subpage__header {
    min-height: 17rem;
    padding-top: 9rem;
  }
}
@media (max-width: 991px) {
  .subpage__header {
    min-height: 15rem;
    padding-top: 8rem;
  }
}
.contact__form {
  max-width: 690px;
}
.contact__form .form-control, .contact__form .form-select {
  background-color: #163C53;
  height: 3.5rem;
  border: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: var(--white);
}
.contact__form .form-control::placeholder, .contact__form .form-select::placeholder {
  color: var(--white);
  opacity: 0.72;
  font-weight: 400;
}
.contact__form .btn-white {
  background-color: #5DADF8;
  border-color: #5DADF8;
  color: var(--white);
}
.contact__form .btn-white:hover, .contact__form .btn-white:focus, .contact__form .btn-white:active {
  background-color: transparent;
  color: var(--white);
}

#phone {
  padding-left: 4rem;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #1D5171 !important;
  border-radius: 0.25rem 0 0 0.25rem;
  color: var(--white);
}

.iti__arrow {
  border-top: 4px solid var(--white);
}

.iti {
  width: 100%;
}

.text-grey {
  color: #3E5462;
}

.text-light-grey {
  color: #AABBC5;
}

.text-white-light {
  color: #5C8197;
}
 
.subpage__header__wrapper {
  min-height: 100vh;
}

@media (max-width: 992px) {
  .subpage__header__wrapper {
    min-height: 340px;
    padding-bottom: 3rem;
  }
}
.component__box {
  background-color: #F6F5FA;
}
.component__box .number {
  color: #D8D7DD;
}
.component__box .desc {
  color: #616570;
}

.installation__card {
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.15);
}
.installation__card .number {
  font-weight: 900;
  opacity: 0.1;
}
.installation__card .desc {
  color: #615F5F;
}

.bg__icon {
  max-width: 12rem;
  top: -8%;
  right: -8%;
}
.bg__icon.reliability {
  top: 3%;
}

.bottom__icon {
  left: -5%;
  bottom: -10%;
  max-width: 5rem;
}
.bottom__icon.scalability {
  left: 4%;
  max-width: 6rem;
}

.servicesCarousel .component__box {
  transition: all 0.3s ease-in-out;
}
.servicesCarousel .swiper-slide.first:hover .component__box {
  background-color: #37A592;
}
.servicesCarousel .swiper-slide.first:hover .component__box .text-primary {
  color: var(--white) !important;
}
.servicesCarousel .swiper-slide.first:hover .component__box .desc {
  color: var(--white);
  opacity: 0.77;
}
.servicesCarousel .swiper-slide.second:hover .component__box {
  background-color: #F49A22;
}
.servicesCarousel .swiper-slide.second:hover .component__box .text-primary {
  color: #0D2E42 !important;
}
.servicesCarousel .swiper-slide.second:hover .component__box .desc {
  color: #444A58;
}
.servicesCarousel .swiper-slide.third:hover .component__box {
  background-color: #D63B49;
}
.servicesCarousel .swiper-slide.third:hover .component__box .text-primary {
  color: var(--white) !important;
}
.servicesCarousel .swiper-slide.third:hover .component__box .desc {
  color: var(--white);
  opacity: 0.77;
}
.servicesCarousel .swiper-slide.four:hover .component__box {
  background-color: #045FE9;
}
.servicesCarousel .swiper-slide.four:hover .component__box .text-primary {
  color: var(--white) !important;
}
.servicesCarousel .swiper-slide.four:hover .component__box .desc {
  color: var(--white);
  opacity: 0.77;
}

.marketing__pills .nav-link {
  color: #4C5C75;
}
.marketing__pills .nav-link svg path {
  fill: #587B91;
}
.marketing__pills .nav-link.active {
  background-color: transparent !important;
  color: var(--brand);
  font-weight: 700 !important;
}
.marketing__pills .nav-link.active svg path {
  fill: var(--brand);
}

@media (max-width: 991px) {
  .marketing__pills {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .marketing__pills .nav-link {
    width: 15rem;
    font-size: 13px;
    line-height: 1.2;
    text-align: left;
    margin-right: 1rem;
  }
  .marketing__pills .nav-link svg {
    width: 3rem;
    height: 3rem;
  }
}
.ui__card .icon {
  width: 4rem;
}
.ui__card:hover {
  border-color: var(--brand) !important;
  transform: translateY(-0.5rem);
}


.timeline__box {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1019607843);
  width: 100%;
}
.timeline__box:hover {
  transform: translateY(-1rem);
  color: var(--dark) !important;
}

@media (min-width: 992px) {
  .timeline__wrapper .timeline__box {
    width: auto;
  }
  .timeline__wrapper .item {
    text-align: center;
    min-height: 28rem;
    padding-top: 1rem;
  }
  .timeline__wrapper .item.pt {
    padding-top: 7rem;
  }
}
@media (min-width: 1700px) {
  .container.slider {
    max-width: 1600px;
  }
}


