@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");
:root {
  --brand: #02DEFE;
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --dark: #010A2B;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #5E5E5E;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-bg: #ffffff;
  --body-font: "Poppins", sans-serif;
  --heading-font: "Quicksand", sans-serif;
}

* {
  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: var(--body-bg);
  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;
}

.ff-quick {
  font-family: var(--heading-font);
}

.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;
}

.bg-light {
  background-color: #F8F8F8 !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 {
  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(--dark);
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.btn-primary svg {
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-primary:hover svg, .btn-primary:focus svg, .btn-primary:active svg {
  transform: rotate(45deg) translateX(0.5rem);
}
.btn-primary:hover svg path, .btn-primary:focus svg path, .btn-primary:active svg path {
  stroke: var(--white);
}

.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;
}

/*------ 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;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.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;
}

@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);
  }
}
.top__nav .logo {
  max-height: 2.5rem;
}
.top__nav .link {
  color: #5E5E5E;
}
.top__nav .link .icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #EBEBEB;
}
.top__nav .navbar-toggler {
  width: 3rem;
  height: 3rem;
  margin-left: 1rem;
}
.top__nav .navbar-toggler svg {
  position: relative;
  left: 1px;
}
.top__nav .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.25rem;
  border: 1px solid var(--white);
  height: 2.25rem;
  border-radius: 50%;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

.navbar {
  z-index: 999;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 600;
  padding: 1.25rem 0;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
  position: relative;
}
.navbar .nav-item.active .nav-link::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--brand);
  position: absolute;
  bottom: 0%;
  left: 0%;
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .social__box {
  width: 8rem;
}
.navbar .social__box a {
  width: 3rem;
  height: 3rem;
}
.navbar .social__box a:hover {
  background: rgba(255, 255, 255, 0.7058823529);
}
.navbar.fixed-top {
  position: fixed;
  padding: 0% !important;
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}
.navbar.fixed-top .navbar-brand img {
  max-height: 4rem;
  width: auto;
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    background-color: #fff;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.625rem 0;
  }
  .navbar .navbar-brand img {
    max-height: 4rem;
    width: auto;
  }
}
.offcanvas ul li a {
  font-size: 1.45rem;
}
.offcanvas .offcanvas-footer .link {
  color: var(--white);
}
.offcanvas .offcanvas-footer .link .icon {
  border: 1px solid var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

footer {
  background-color: #01114B;
}
footer .footer__social__box a {
  width: 3.5rem;
  height: 3.5rem;
}
footer .footer__social__box a:hover, footer .footer__social__box a:focus, footer .footer__social__box a:active {
  background-color: rgba(255, 255, 255, 0.3647058824);
}
footer .logo {
  height: 3rem;
  filter: contrast(0) brightness(10);
}
footer .copyright {
  background-color: #000B33;
  color: #7E94E2;
}

/*---------------------- 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;
  }
}
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: var(--dark);
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: var(--dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #000;
  color: var(--white);
}

.button:hover .button__icon-wrapper {
  color: var(--brand);
  background-color: var(--white);
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.iti {
  width: 100%;
}

:root {
  --plusIcon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19 11h-6V5a1 1 0 0 0-2 0v6H5a1 1 0 0 0 0 2h6v6a1 1 0 0 0 2 0v-6h6a1 1 0 0 0 0-2'/%3E%3C/svg%3E");
  --minusIcon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M13.25 7.75H2.75'/%3E%3C/svg%3E");
}

.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  margin: 0.25rem;
  background: var(--chevron-right) no-repeat center center/1.5rem !important;
  background-color: var(--white) !important;
  box-shadow: 0 2px 3px rgba(0, 110, 22, 0.2);
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.owl-nav .owl-prev {
  background: var(--chevron-left) no-repeat center center/1.5rem !important;
  background-color: #fff !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #e0e0e0 !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.header__wrapper {
  background: linear-gradient(79.68deg, #01114B 21.56%, #0228B1 76.66%);
  border-top-left-radius: 5rem;
}

@media (min-width: 992px) {
  .header__wrapper {
    margin-top: -2rem;
  }
  .header__wrapper .thumbnail {
    transform: scale(1.3);
  }
}
.title__after__bg::after {
  background-color: var(--brand);
  width: 50vw;
  height: 5rem;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 7rem;
}

@media (max-width: 991px) {
  .title__after__bg::after {
    content: none;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .about__wrapper__map {
    max-height: 10rem;
  }
}
.portfolio__card {
  border: 1px solid #e5e5e5;
  border-radius: 0.625rem;
  transition: all 0.3s ease-in-out;
}
.portfolio__card .icon {
  width: 8rem;
  height: 8rem;
}
.portfolio__card .icon img {
  height: 4rem;
  width: auto;
}
.portfolio__card .link {
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: -1.5rem;
  background-color: #fff;
}
.portfolio__card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.why__choose__thumbnail::after {
  content: "";
  width: 40vw;
  height: calc(100% + 14rem);
  background-color: var(--dark);
  position: absolute;
  top: -7rem;
  right: 30%;
  z-index: -1;
  border-bottom-right-radius: 5rem;
}
.why__choose__thumbnail.right_align::after {
  right: inherit;
  left: 50%;
  background-color: var(--brand);
}

@media (max-width: 991px) {
  .why__choose__thumbnail::after {
    content: none;
  }
}
.vission__card .num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  top: 0.5rem;
  left: 0rem;
}
.vission__card .dark__frame {
  height: calc(100% - 3rem);
  top: 0.5rem;
  right: -1rem;
}
.vission__card:hover .dark__frame {
  right: 0;
}

@media (max-width: 575px) {
  .vission__card .lead-sm {
    font-size: 1rem !important;
    padding-top: 2rem;
  }
  .vission__card .num {
    width: 3rem;
    height: 3rem;
    left: 0.5rem;
    font-size: 1.25rem !important;
  }
}
.blog__card .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.contact__form .form-control {
  height: 4rem;
  padding: 0.625rem 1.25rem;
}

@media (max-width: 575px) {
  .fs-5 {
    font-size: 1.125rem !important;
  }
}
@media (min-width: 991px) {
  .about__content {
    position: absolute !important;
  }
  .investor__thumbnail__box img {
    width: 50vw;
  }
}
.logo__card img {
  width: auto;
  height: 5rem;
}

.title__after__bg__sm {
  position: relative;
}
.title__after__bg__sm::after {
  content: "";
  position: absolute;
  top: 0;
  right: 13rem;
  width: 40vw;
  height: 100%;
  background-color: var(--brand);
  z-index: -1;
}
.title__after__bg__sm.career::after {
  right: 11rem;
}

@media (min-width: 992px) {
  .align__fixed__banner {
    width: 100%;
    border-radius: 0 2rem 2rem 0;
    background: #000;
  }
  .align__fixed__banner .inner {
    width: calc(46vw - 3rem);
    position: absolute;
    top: 0%;
    right: 0%;
    left: inherit;
    bottom: 0%;
    border-radius: 0 2rem 2rem 0;
  }
  .align__fixed__banner .inner img {
    border-radius: 0 2rem 2rem 0;
  }
  .align__fixed__banner.right {
    left: 0;
    right: inherit;
    border-radius: 0%;
  }
  .align__fixed__banner.right .inner {
    border-radius: 0%;
  }
  .align__fixed__banner.right .inner img {
    border-radius: 0%;
  }
  .align__fixed__banner.half__align .inner {
    width: calc(51vw - 3rem);
  }
  .align__fixed__banner.half__align .inner img {
    border-radius: 0%;
    width: 100%;
  }
}
.marketing__card .icon__box {
  width: 7rem;
  height: 7rem;
}

.investor__page .thumbnail {
  max-width: 20rem;
}

.testimonial__card .quote__icon {
  top: 1rem;
  right: 1rem;
}
.testimonial__card .author_thumb {
  width: 4rem;
  height: 4rem;
}
.testimonial__card .designation {
  color: #3D565F;
}
.testimonial__card .desc {
  color: #424242;
}
.testimonial__card .border-top {
  border-color: #ECF1F2 !important;
}

.contact__form .form-control, .contact__form .form-select {
  height: 3.5rem;
  background-color: #f9f9f9;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
.contact__form textarea.form-control {
  height: auto;
}

.address__list li .icon {
  background-color: #ddd;
  width: 3rem;
  height: 3rem;
}

.contact__wrapper .social__box a {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--brand);
}
.contact__wrapper .social__box a:hover {
  background-color: var(--dark);
}
.contact__wrapper .social__box a:hover svg path {
  fill: var(--white);
  stroke: var(--white);
}

.check__list li {
  position: relative;
  padding-left: 2rem;
}
.check__list li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0.5rem;
  left: 0;
  background: var(--check-icon) no-repeat center center/contain;
}

.investor__canvas {
  --bs-offcanvas-width: 500px;
}
.investor__canvas .form-control, .investor__canvas .form-select {
  background-color: #F7F8F9;
  border-color: #EBEBEB;
  padding: 0.75rem 1.25rem;
}
.investor__canvas .form-control::placeholder, .investor__canvas .form-select::placeholder {
  color: #939393;
  font-weight: 300;
}
.investor__canvas .form-select {
  font-weight: 300;
  color: #939393;
}
.investor__canvas .label {
  color: #212121;
}
.investor__canvas .offcanvas-header, .investor__canvas .offcanvas-body {
  padding-left: 2rem;
  padding-right: 2rem;
}

.career__card__btns .btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
}

.career__tags {
  background-color: rgba(1, 10, 43, 0.0784313725);
}/*# sourceMappingURL=style.css.map */