@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  position: relative;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgba(233, 243, 255, 0.54) 26.4%, #E9F3FF 100%), #FFF;
}
body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
  padding: 1rem 0.625rem;
  background-color: #fff;
  background-image: url("../images/arpw-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

.white-btn {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  padding: 0.63rem 1.38rem;
  border-radius: 1.875rem;
  background: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  white-space: nowrap;
}
.white-btn img {
  display: table;
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.white-btn:hover {
  color: var(--Dark-Blue, #05172E);
}

.white-border-btn {
  color: var(--White, #FFF);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  background-color: transparent;
  padding: 0.625rem 1.625rem;
  border-radius: 1.875rem;
  border: 1px solid var(--White, #FFF);
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: all 0.3s ease-in-out;
}
.white-border-btn span {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.white-border-btn span img {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease-in-out;
}
.white-border-btn:hover {
  color: var(--Dark-Blue, #05172E);
  background-color: #fff;
}
.white-border-btn:hover span img:first-child {
  transform: translateY(-100%);
}
.white-border-btn:hover span img:last-child {
  transform: translateY(-100%);
}

.blue-btn {
  color: var(--White, #FFF);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  padding: 0.63rem 1.38rem;
  border-radius: 1.875rem;
  background: #2A5387;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  white-space: nowrap;
}
.blue-btn img {
  display: table;
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blue-btn:hover {
  color: var(--White, #FFF);
}

.blue-border-btn {
  color: #2A5387;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  background-color: transparent;
  padding: 0.625rem 1.625rem;
  border-radius: 1.875rem;
  border: 1px solid var(--Blue, #2A5387);
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: all 0.3s ease-in-out;
}
.blue-border-btn span {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.blue-border-btn span img {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease-in-out;
}
.blue-border-btn:hover {
  color: #fff;
  background-color: #2A5387;
}
.blue-border-btn:hover span img:first-child {
  transform: translateY(-100%);
}
.blue-border-btn:hover span img:last-child {
  transform: translateY(-100%);
}

h2 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.625rem;
  /* 120.833% */
  margin: 0;
}

p {
  color: var(--Body-text, #4B5159);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  margin: 0;
}

header {
  padding: 1.88rem 0;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}
header button {
  display: none;
}
header .header-content-wraper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
header .header-content-wraper .logo-wraper {
  display: block;
}
header .header-content-wraper .logo-wraper a {
  display: table;
}
header .header-content-wraper .logo-wraper a img {
  max-width: 14.3125rem;
  max-height: 3.4375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  header .header-content-wraper .menu-wraper {
    padding: 0 1.66rem;
    border-radius: 6.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    display: block;
  }
  header .header-content-wraper .menu-wraper ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  header .header-content-wraper .menu-wraper ul li {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    /* 155.556% */
  }
  header .header-content-wraper .menu-wraper ul li.active a {
    color: #A3CCFF;
  }
  header .header-content-wraper .menu-wraper ul li a {
    color: #FFF;
    padding: 0.625rem;
    transition: all 0.3s ease-in-out;
  }
  header .header-content-wraper .menu-wraper ul li a:hover {
    color: #A3CCFF;
  }
}
header .header-content-wraper .btn-wraper {
  display: block;
}

footer {
  background-color: #000;
  padding-top: 5rem;
}
footer .logo-menu-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 1.88rem;
}
footer .logo-menu-wraper a.logo {
  display: table;
}
footer .logo-menu-wraper a.logo img {
  max-width: 14.3125rem;
  max-height: 3.4375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .logo-menu-wraper ul {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}
footer .logo-menu-wraper ul li {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
}
footer .logo-menu-wraper ul li a {
  padding: 0.625rem;
  color: #FFF;
}
footer .logo-menu-wraper ul li a:hover {
  color: #FFF;
}
footer p {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(217, 217, 217, 0.3);
}
footer h6 {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  margin: 1.25rem 0 1.19rem;
}

section.home-banner {
  position: relative;
  overflow: hidden;
}
section.home-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(265deg, rgba(0, 0, 0, 0) -74.6%, #061426 100.77%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
section.home-banner .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 1.5s ease-in-out !important;
}
section.home-banner .content-wraper {
  padding-top: 7.1875rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 99;
}
section.home-banner .content-wraper h1 {
  color: #FFF;
  font-family: Roboto;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.375rem;
  /* 116.667% */
  margin-bottom: 1rem;
}
section.home-banner .content-wraper h1 span {
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  width: auto;
  height: 4.275rem;
}
section.home-banner .content-wraper h1 span b {
  font-weight: 600;
  height: 4.375rem;
  display: block;
  animation: scrollWords 6s ease-in-out infinite;
}
section.home-banner .content-wraper h1 span b.blue-text {
  color: #72B0FF;
}
section.home-banner .content-wraper h1 span b.red-text {
  color: #AB3335;
}
section.home-banner .content-wraper h1 span b.orange-text {
  color: #FF9F39;
}
section.home-banner .content-wraper p {
  max-width: 40.125rem;
  color: #FFF;
  margin-bottom: 1.87rem;
}

@keyframes scrollWords {
  0% {
    transform: translateY(0%);
  }
  18% {
    transform: translateY(0%);
  }
  36% {
    transform: translateY(-100%);
  }
  54% {
    transform: translateY(-100%);
  }
  72% {
    transform: translateY(-200%);
  }
  90% {
    transform: translateY(-200%);
  }
  100% {
    transform: translateY(0%);
  }
}
section.home-sec2 {
  padding: 6.25rem 0;
}
section.home-sec2 .heading-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8.88rem;
  margin-bottom: 2.5rem;
}
section.home-sec2 .heading-wraper h2 {
  max-width: 34.875rem;
  width: 100%;
}
section.home-sec2 .heading-wraper p {
  max-width: 38.375rem;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.75rem;
  /* 140% */
}
section.home-sec2 ul#counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.88rem;
}
section.home-sec2 ul#counter li {
  padding-top: 1rem;
  border-top: 1px solid #D9D9D9;
}
section.home-sec2 ul#counter li h6 {
  color: var(--Black, #040404);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  margin: 0;
  position: relative;
  padding-left: 0.9rem;
}
section.home-sec2 ul#counter li h6::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #AB3335;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
section.home-sec2 ul#counter li h4 {
  color: var(--Red, #AB3335);
  font-family: Roboto;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 1.88rem 0 1rem;
}

section.home-sec3 img.slid-img {
  width: 100%;
  height: 24.0625rem;
  border-radius: 0.3125rem;
}
section.home-sec3 h2 {
  margin-bottom: 1rem;
}
section.home-sec3 p {
  max-width: 38.75rem;
  width: 100%;
  line-height: 1.6875rem;
  /* 150% */
}

section.home-sec4 {
  padding-top: 6.25rem;
}
section.home-sec4 .row {
  gap: 1.88rem 0;
}
section.home-sec4 .heading-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8.88rem;
  margin-bottom: 0.63rem;
}
section.home-sec4 .heading-wraper h2 {
  max-width: 40.125rem;
  width: 100%;
}
section.home-sec4 .heading-wraper p {
  max-width: 33.125rem;
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  /* 135% */
}
section.home-sec4 .technology-cart {
  padding: 1.81rem 1.25rem;
  border-radius: 0.3125rem;
  background: #FFF;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
section.home-sec4 .technology-cart:hover {
  background: var(--Red, #AB3335);
}
section.home-sec4 .technology-cart:hover img.icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(95%) saturate(0%) hue-rotate(181deg) brightness(114%) contrast(100%);
}
section.home-sec4 .technology-cart:hover h4,
section.home-sec4 .technology-cart:hover p {
  color: var(--White, #FFF);
}
section.home-sec4 .technology-cart img.icon {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
section.home-sec4 .technology-cart h4 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6875rem;
  /* 112.5% */
  text-transform: capitalize;
  margin: 3.75rem 0 1rem;
}
section.home-sec4 .technology-cart p {
  transition: all 0.3s ease-in-out;
}

section.home-sec5 {
  padding: 6.25rem 0;
}
section.home-sec5 h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
section.home-sec5 .slider-wraper {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
}
section.home-sec5 .splide__track .splide__list img {
  width: auto;
  height: 3.125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

section.home-sec6 {
  padding: 6.25rem 0;
  background: var(--White, #FFF);
}
section.home-sec6 .row {
  gap: 2.5rem 0;
}
section.home-sec6 .blue-btn {
  width: 12rem;
}
section.home-sec6 .product-cart {
  padding: 1.875rem;
  border-radius: 0.3125rem;
  background: #F8F8F8;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
section.home-sec6 .product-cart:hover {
  background: #2A5387;
}
section.home-sec6 .product-cart:hover img.icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(95%) saturate(0%) hue-rotate(181deg) brightness(114%) contrast(100%);
}
section.home-sec6 .product-cart:hover h5 {
  color: #fff;
  border-bottom: 1px solid #fff;
}
section.home-sec6 .product-cart:hover ul li {
  color: #fff;
}
section.home-sec6 .product-cart:hover ul li::before {
  background-color: #ffffff;
}
section.home-sec6 .product-cart:hover a.blue-border-btn {
  color: #fff;
  border: 1px solid #fff;
}
section.home-sec6 .product-cart:hover a.blue-border-btn img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(95%) saturate(0%) hue-rotate(181deg) brightness(114%) contrast(100%);
}
section.home-sec6 .product-cart img.icon {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
section.home-sec6 .product-cart h5 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  /* 116.667% */
  margin: 1.88rem 0 0;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
section.home-sec6 .product-cart ul {
  margin: 1.88rem 0;
}
section.home-sec6 .product-cart ul li {
  color: var(--Body-text, #4B5159);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.38rem;
  transition: all 0.3s ease-in-out;
}
section.home-sec6 .product-cart ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #AB3335;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
section.home-sec6 .product-cart ul li:last-child {
  margin: 0;
}
section.home-sec6 .product-cart a.blue-border-btn {
  width: 100%;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
section.home-sec6 .product-cart a.blue-border-btn:hover {
  border: 1px solid #05172E;
  background-color: #05172E;
}
section.home-sec6 .product-cart a.blue-border-btn img {
  transition: all 0.3s ease-in-out;
}

section.home-sec7 {
  padding: 12.5rem 0 6.25rem;
}
section.home-sec7 .splide {
  width: 100%;
  overflow: hidden;
  position: relative;
}
section.home-sec7 .splide h2 {
  margin-bottom: 2.5rem;
  padding-right: 15%;
}
section.home-sec7 .splide .splide__arrows {
  display: flex;
  align-items: center;
  gap: 5.13rem;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  position: absolute;
  top: 0.3rem;
  right: 0;
}
section.home-sec7 .splide .splide__arrows button {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  border-radius: 0;
  transform: unset;
  width: 3.125rem;
  height: 3.125rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
section.home-sec7 .splide .splide__arrows button.splide__arrow--prev {
  background-image: url(../images/arow-left.svg);
}
section.home-sec7 .splide .splide__arrows button.splide__arrow--next {
  background-image: url(../images/arow-right.svg);
}
section.home-sec7 .splide .splide__arrows button svg {
  display: none;
}
section.home-sec7 .splide .splide__track {
  overflow: hidden;
}
section.home-sec7 .splide .splide__track .splide__list {
  display: flex;
}
section.home-sec7 .item {
  padding-top: 1.75rem;
  padding-left: 5.62rem;
  background-image: url(../images/quotation.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 3.75rem 3.75rem;
}
section.home-sec7 .item p {
  min-height: 7rem;
  line-height: 1.75rem;
  /* 155.556% */
  margin-bottom: 1.88rem;
}
section.home-sec7 .item ul {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin-bottom: 1rem;
}
section.home-sec7 .item ul li {
  display: table;
}
section.home-sec7 .item ul li img {
  max-width: 1.5rem;
  max-height: 1.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec7 .item .profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section.home-sec7 .item .profile img.avatar {
  max-width: 5.125rem;
  max-height: 5.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5.125rem;
}
section.home-sec7 .item .profile h6 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  margin: 0;
}
section.home-sec7 .item .profile h6 span {
  display: block;
  color: #000;
  font-weight: 600;
}

section.home-sec8 {
  padding: 1.94rem 0;
  background: #2A5387;
  position: relative;
  overflow: hidden;
}
section.home-sec8 img.left-img {
  width: 11.25rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
section.home-sec8 img.right-img {
  width: 11.25rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
section.home-sec8 h3 {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 100% */
  text-align: center;
  margin: 0;
}

section.home-sec9 {
  padding: 3.75rem 0;
  background: var(--Red, #AB3335);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
section.home-sec9 img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
section.home-sec9 .white-box {
  border-radius: 0.3125rem;
  background: #FFF;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 1.88rem 1.78rem 1.44rem 1.75rem;
}
section.home-sec9 .white-box h3 {
  color: var(--Blue, #2A5387);
  font-family: Roboto;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}
section.home-sec9 .white-box p {
  color: var(--Body-text, #4B5159);
  line-height: 1.75rem;
  /* 155.556% */
  margin-bottom: 1.88rem;
}
section.home-sec9 .white-box .fild-wraper {
  margin-bottom: 1rem;
}
section.home-sec9 .white-box label {
  color: var(--Body-text, #4B5159);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  display: block;
}
section.home-sec9 .white-box input:not([type=submit]),
section.home-sec9 .white-box textarea {
  width: 100%;
  height: 1.88rem;
  border: none;
  outline: none;
  color: #000;
  border-bottom: 1px solid rgba(75, 81, 89, 0.4);
}
section.home-sec9 .white-box textarea {
  height: 6rem;
}
section.home-sec9 .white-box input[type=submit] {
  border: none;
  width: 9.6875rem;
  padding: 0.63rem 3.88rem 0.62rem 2.25rem;
  background-image: url(../images/btn-white-arow.svg);
  background-repeat: no-repeat;
  background-position: right 2.25rem center;
  background-size: 1.25rem 1.25rem;
}
section.home-sec9 h2 {
  color: #fff;
  margin-bottom: 1rem;
}
section.home-sec9 p {
  color: #fff;
  line-height: 1.75rem;
  /* 155.556% */
  margin-bottom: 7.44rem;
}
section.home-sec9 .grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem 1.88rem;
}
section.home-sec9 .grid-box .grid-item .heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
}
section.home-sec9 .grid-box .grid-item .heading img {
  max-width: 1.875rem;
  max-height: 1.875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec9 .grid-box .grid-item .heading h4 {
  color: #FFF;
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem;
  /* 116.667% */
  margin: 0;
}
section.home-sec9 .grid-box .grid-item p {
  color: #fff;
  line-height: 1.75rem;
  /* 155.556% */
  margin: 1rem 0 0;
}
section.home-sec9 .grid-box .grid-item p a {
  color: #fff;
}
section.home-sec9 .grid-box .grid-item p a:hover {
  color: #fff;
}
section.home-sec9 .grid-box .grid-item ul {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
section.home-sec9 .grid-box .grid-item ul li {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--White, #FFF);
  overflow: hidden;
}
section.home-sec9 .grid-box .grid-item ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
}
section.home-sec9 .grid-box .grid-item ul li a img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-sec9 .grid-box .grid-item a.view-map-link {
  color: var(--White, #FFF);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  /* 155.556% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  gap: 0.38rem;
}
section.home-sec9 .grid-box .grid-item a.view-map-link img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

ul.fixed-item {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  position: fixed;
  bottom: 10rem;
  right: 0;
  z-index: 99;
}
ul.fixed-item li {
  width: 4.625rem;
  height: 5rem;
  border-radius: 0.75rem 0 0 0.75rem;
}
ul.fixed-item li:first-child {
  background: #29A71A;
}
ul.fixed-item li:last-child {
  background: #2A5387;
}
ul.fixed-item li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.fixed-item li a img {
  max-width: 2.25rem;
  max-height: 2.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.inner-banner {
  position: relative;
  overflow: hidden;
}
section.inner-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(265deg, rgba(0, 0, 0, 0) -74.6%, #061426 100.77%);
  position: absolute;
  top: 0;
  left: 0;
}
section.inner-banner img.bg-img {
  width: 100%;
  height: 31.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.inner-banner .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  z-index: 9;
}
section.inner-banner .content-wraper h1 {
  color: #FFF;
  font-family: Roboto;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.375rem;
  /* 116.667% */
  margin-bottom: 1rem;
}
section.inner-banner .content-wraper p {
  color: #FFF;
}

section.product-sec1 {
  padding-top: 6.25rem;
}
section.product-sec1 .main-heading-wraper h2 {
  text-align: center;
}
section.product-sec1 .wraper .product-contemt-row {
  padding: 3.75rem 0;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(even) {
  background-color: #fff;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(even) .row {
  flex-direction: row-reverse;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(1) img.side-img {
  height: 30.375rem;
  border-radius: 2.6875rem;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(2) img.side-img {
  height: 36.0625rem;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(3) img.side-img {
  height: 30.375rem;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(4) img.side-img {
  height: 25.6875rem;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(5) img.side-img {
  height: 39.6875rem;
}
section.product-sec1 .wraper .product-contemt-row:nth-child(6) img.side-img {
  height: 34.625rem;
}
section.product-sec1 .wraper .product-contemt-row .heading {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 1rem;
}
section.product-sec1 .wraper .product-contemt-row .heading img.icon {
  max-width: 2.5rem;
  max-height: 2.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.product-sec1 .wraper .product-contemt-row .heading h5 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.625rem;
  /* 131.25% */
  margin: 0;
}
section.product-sec1 .wraper .product-contemt-row p {
  margin-bottom: 1rem;
}
section.product-sec1 .wraper .product-contemt-row img.side-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3125rem;
}
section.product-sec1 .wraper .product-contemt-row .grid-wraper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.88rem;
}
section.product-sec1 .wraper .product-contemt-row ul li {
  color: var(--Body-text, #4B5159);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  position: relative;
  margin-bottom: 0.38rem;
  padding-left: 0.9rem;
}
section.product-sec1 .wraper .product-contemt-row ul li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #AB3335;
  border-radius: 50%;
  position: absolute;
  top: 0.6rem;
  left: 0;
  margin: auto;
}
section.product-sec1 .wraper .product-contemt-row ul li:last-child {
  margin: 0;
}

section.product-sec2 {
  padding: 6.25rem 0;
}
section.product-sec2 .project-box {
  padding: 3.75rem 2.5rem;
  border-radius: 3.75rem 0.3125rem 3.75rem 0.3125rem;
  background: #2A5387;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
section.product-sec2 .project-box img.bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
section.product-sec2 .project-box .text-wraper {
  max-width: 42.25rem;
  width: 100%;
}
section.product-sec2 .project-box .text-wraper h2 {
  color: #fff;
  margin-bottom: 1rem;
}
section.product-sec2 .project-box .text-wraper p {
  color: #fff;
  margin-bottom: 1.88rem;
}
section.product-sec2 .project-box .text-wraper a.white-btn {
  max-width: 12.6875rem;
  width: 100%;
}

section.contact-sec1 {
  padding: 6.25rem 0;
}
section.contact-sec1 h2 {
  margin-bottom: 0.6rem;
}
section.contact-sec1 h6 {
  color: var(--Blue, #2A5387);
  font-family: Roboto;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem;
  margin-bottom: 0.1rem;
}
section.contact-sec1 p {
  margin-bottom: 2.5rem;
}
section.contact-sec1 .grid-box {
  display: grid;
  grid-template-columns: 26.1875rem auto;
  gap: 2.5rem 1.88rem;
}
section.contact-sec1 .grid-box .grid-item span {
  color: var(--Red, #AB3335);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.47rem;
}
section.contact-sec1 .grid-box .grid-item span img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.contact-sec1 .grid-box .grid-item p {
  margin: 0;
  color: var(--Blue, #2A5387);
  font-size: 1.25rem;
  line-height: 1.875rem;
  /* 150% */
}
section.contact-sec1 .grid-box .grid-item p span {
  margin-top: 0.9rem;
  display: inline-block;
  color: #AB3335;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 400;
}
section.contact-sec1 .grid-box .grid-item p a {
  display: block;
  color: var(--Blue, #2A5387);
}
section.contact-sec1 .grid-box .grid-item ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
section.contact-sec1 .grid-box .grid-item ul li {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.25rem;
}
section.contact-sec1 .grid-box .grid-item ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Blue, #2A5387);
  border-radius: 1.25rem;
}
section.contact-sec1 .grid-box .grid-item ul li a img {
  max-width: 0.9375rem;
  max-height: 0.9375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.contact-sec1 .flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.88rem;
}
section.contact-sec1 .fild-box {
  width: 100%;
  margin-bottom: 1rem;
}
section.contact-sec1 label {
  display: block;
  color: var(--Body-text, #4B5159);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
}
section.contact-sec1 input:not([type=submit]),
section.contact-sec1 textarea {
  width: 100%;
  height: 3rem;
  border: none;
  border-bottom: 1px solid rgba(75, 81, 89, 0.4);
  background: transparent;
  outline: none;
  padding: 0;
}
section.contact-sec1 input[type=submit] {
  border: none;
  width: 12.125rem;
  padding: 0.63rem 3.88rem 0.62rem 2.25rem;
  background-image: url(../images/btn-white-arow.svg);
  background-repeat: no-repeat;
  background-position: right 3.47rem center;
  background-size: 1.25rem 1.25rem;
  margin-top: 0.56rem;
}
section.contact-sec1 textarea {
  height: 6rem;
}

section.contact-sec2 {
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
section.contact-sec2 .map-box {
  width: 100%;
  height: 48.9375rem;
  overflow: hidden;
}
section.contact-sec2 .map-box iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}
section.contact-sec2 .content-wraper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-end;
  z-index: 9;
  padding: 3.75rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6784313725) 100%);
}

section.service-sec1 {
  padding-top: 6.56rem;
}
section.service-sec1 .row {
  gap: 1.87rem 0;
}
section.service-sec1 .service-cart {
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
  border: 1px solid #CDDAEB;
  background: #FFF;
  position: relative;
  overflow: hidden;
}
section.service-sec1 .service-cart:hover .text-wraper {
  background: rgba(27, 43, 62, 0.85);
}
section.service-sec1 .service-cart:hover .text-wraper figure {
  background: rgba(255, 255, 255, 0.08);
}
section.service-sec1 .service-cart:hover .text-wraper figure img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(95%) saturate(0%) hue-rotate(181deg) brightness(114%) contrast(100%);
}
section.service-sec1 .service-cart:hover .text-wraper .text span,
section.service-sec1 .service-cart:hover .text-wraper .text h5,
section.service-sec1 .service-cart:hover .text-wraper .text p {
  color: #fff;
}
section.service-sec1 .service-cart a.pabs {
  position: absolute;
  inset: 0;
  z-index: 9;
}
section.service-sec1 .service-cart img.bg-img {
  width: 100%;
  height: 32.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.service-sec1 .service-cart .text-wraper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.875rem;
  background: #FFF;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
section.service-sec1 .service-cart .text-wraper figure {
  width: 5rem;
  height: 5rem;
  margin: 0;
  border-radius: 3.0625rem;
  background: rgba(171, 51, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
section.service-sec1 .service-cart .text-wraper figure img {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
section.service-sec1 .service-cart .text-wraper .text span {
  color: #AAA;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.38rem;
  display: block;
  transition: all 0.3s ease-in-out;
}
section.service-sec1 .service-cart .text-wraper .text h5 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem;
  /* 125% */
  text-transform: capitalize;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
section.service-sec1 .service-cart .text-wraper .text p {
  min-height: 7rem;
  transition: all 0.3s ease-in-out;
}

section.career-sec1 {
  padding-top: 6.25rem;
}
section.career-sec1 img.slid-img {
  width: 100%;
  height: 24.0625rem;
  border-radius: 0.3125rem;
}
section.career-sec1 h2 {
  margin-bottom: 1rem;
}
section.career-sec1 p {
  line-height: 1.6875rem;
  /* 150% */
}

section.career-sec2 {
  padding-top: 6.25rem;
}
section.career-sec2 .row {
  gap: 1.88rem 0;
}
section.career-sec2 .work-with-us-cart {
  padding: 1rem;
  background: transparent;
  width: 100%;
  height: 100%;
}
section.career-sec2 .work-with-us-cart span.icon {
  width: 4.375rem;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.5625rem;
  background: #F8EFEF;
}
section.career-sec2 .work-with-us-cart span.icon img {
  max-width: 3.125rem;
  max-height: 3.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.career-sec2 .work-with-us-cart h5 {
  color: var(--Black, #040404);
  font-family: Roboto;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1rem 0 0;
  margin: 3.75rem 0 1rem;
  border-top: 1px solid #D9D9D9;
}
section.career-sec2 .work-with-us-cart p {
  line-height: 1.6875rem;
  /* 150% */
  min-height: 4.8125rem;
}

section.career-sec3 {
  padding-top: 6.25rem;
}
section.career-sec3 .row {
  gap: 1.88rem 0;
  padding-bottom: 1.88rem;
}
section.career-sec3 .row:last-child {
  padding-bottom: 0;
}
section.career-sec3 p {
  line-height: 1.6875rem;
  /* 150% */
}
section.career-sec3 .career-opportunities-cart {
  border-radius: 0.3125rem;
  background: #F4F9FF;
  padding: 1.7rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}
section.career-sec3 .career-opportunities-cart:hover {
  background: #FFF;
}
section.career-sec3 .career-opportunities-cart h4 {
  color: #000;
  font-family: Roboto;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
  /* 84.375% */
  margin-bottom: 5rem;
}
section.career-sec3 .career-opportunities-cart ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.59rem;
  margin-bottom: 1rem;
}
section.career-sec3 .career-opportunities-cart ul li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}
section.career-sec3 .career-opportunities-cart ul li img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.career-sec3 .career-opportunities-cart ul li span {
  color: #AAA;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6875rem;
  /* 150% */
  white-space: nowrap;
}
section.career-sec3 .career-opportunities-cart a.view-link {
  color: var(--Blue, #2A5387);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
  padding: 0.625rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  white-space: nowrap;
}
section.career-sec3 .career-opportunities-cart a.view-link:hover {
  color: var(--Red, #AB3335);
}
section.career-sec3 .career-opportunities-cart a.view-link:hover span img:first-child {
  transform: translateY(-100%);
}
section.career-sec3 .career-opportunities-cart a.view-link:hover span img:last-child {
  transform: translateY(-100%);
}
section.career-sec3 .career-opportunities-cart a.view-link span {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
section.career-sec3 .career-opportunities-cart a.view-link span img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}

section.career-details-sec1 {
  padding-top: 6.25rem;
}
section.career-details-sec1 h2 {
  margin-bottom: 1.88rem;
}
section.career-details-sec1 .post-wraper {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #C5DFFF;
  border-bottom: 1px solid #C5DFFF;
  margin-bottom: 1.88rem;
}
section.career-details-sec1 .post-wraper img {
  max-width: 12.125rem;
  max-height: 2.875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.career-details-sec1 .post-wraper h6 {
  color: #AAA;
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0.78rem 0 0.78rem 1rem;
  border-left: 1px solid #C5DFFF;
}
section.career-details-sec1 h3 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}
section.career-details-sec1 p {
  line-height: 1.6875rem;
  /* 150% */
  margin-bottom: 1.25rem;
}
section.career-details-sec1 .ul-wraper {
  width: 100%;
}
section.career-details-sec1 .ul-wraper h5 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1rem;
}
section.career-details-sec1 .ul-wraper ul {
  max-width: 40.125rem;
  margin-bottom: 1.88rem;
}
section.career-details-sec1 .ul-wraper ul + h5 + ul {
  margin: 0;
}
section.career-details-sec1 .ul-wraper ul li {
  color: var(--Body-text, #4B5159);
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6875rem;
  /* 150% */
  padding-left: 1.9rem;
  background-image: url(../images/checked.svg);
  background-repeat: no-repeat;
  background-position: left top 0.19rem;
  background-size: 1.25rem 1.25rem;
  margin-bottom: 0.62rem;
}
section.career-details-sec1 .white-box {
  padding: 1.875rem;
  border-radius: 0.3125rem;
  background: #FFF;
}
section.career-details-sec1 .white-box h4 {
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.88rem;
}
section.career-details-sec1 .white-box .form-wraper {
  padding: 1.25rem;
  border-radius: 0.3125rem;
  background: #EDF5FF;
}
section.career-details-sec1 .white-box .form-wraper .flid-wraper {
  margin-bottom: 1rem;
}
section.career-details-sec1 .white-box .form-wraper .flid-wraper .wpcf7-not-valid-tip {
  margin-top: 0.7rem;
}
section.career-details-sec1 .white-box .form-wraper .file-wraper {
  width: 100%;
  height: 6.625rem;
  border-radius: 0.3125rem;
  background: #FFF;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.94rem;
}
section.career-details-sec1 .white-box .form-wraper .file-wraper input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
section.career-details-sec1 .white-box .form-wraper .file-wraper img {
  max-width: 2.03838rem;
  max-height: 1.875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.career-details-sec1 .white-box .form-wraper .file-wraper h6 {
  color: #AAA;
  text-align: center;
  font-family: Roboto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 1.05rem */
  margin: 0;
}
section.career-details-sec1 .white-box .form-wraper label {
  display: block;
  color: var(--Dark-Blue, #05172E);
  font-family: Roboto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 1.2rem */
  margin-bottom: 0.63rem;
}
section.career-details-sec1 .white-box .form-wraper input:not([type=submit]) {
  border-radius: 0.3125rem;
  background: var(--White, #FFF);
  border: none;
  outline: none;
  width: 100%;
  height: 2.625rem;
  padding: 0.625rem;
  color: #000;
}
section.career-details-sec1 .white-box .form-wraper input[type=submit] {
  width: 100%;
  border: none;
  padding: 0.63rem 3.88rem 0.62rem 2.25rem;
  background-image: url(../images/btn-white-arow.svg);
  background-repeat: no-repeat;
  background-position: right 39% center;
  background-size: 1.25rem 1.25rem;
  margin-top: 0.56rem;
}

.home-sec5.terms h2 {
  text-align: left;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.home-sec5.terms h3 {
  font-size: 1.5rem;
  color: var(--Dark-Blue, #05172E);
  margin: 2rem 0 1.25rem;
}
.home-sec5.terms p {
  margin-bottom: 1.25rem;
}
.home-sec5.terms p a {
  text-decoration: underline;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #AB3335;
}
.home-sec5.terms ul,
.home-sec5.terms ol {
  margin-bottom: 1.25rem;
  margin-top: 1rem;
}
.home-sec5.terms ul li,
.home-sec5.terms ol li {
  color: var(--Body-text, #4B5159);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 17px;
}
.home-sec5.terms ul li::before,
.home-sec5.terms ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #AB3335;
}
.home-sec5.terms ol {
  counter-reset: my-counter;
}
.home-sec5.terms ol li {
  counter-increment: my-counter;
}
.home-sec5.terms ol li::before {
  content: counter(my-counter) ".";
  color: #AB3335;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  margin: 0;
  background-color: transparent;
  top: 0;
}

body:has(.error-page) header {
  display: none;
}
body:has(.error-page) footer {
  display: none;
}

section.error-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.error-page h1 {
  color: var(--Rich-Brown, #AB3335);
  font-size: 8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-align: center;
}

section.error-page h2 {
  text-align: center;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

section.error-page p {
  color: var(--Navy-Blue, #1A1A2E);
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  line-height: normal;
  margin-bottom: 1.88rem;
}

section.error-page a.blue-btn {
  margin: 0 auto;
  display: table;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
}/*# sourceMappingURL=style.css.map */