@charset "UTF-8";
.custom-accordion .accordion-button {
  background-color: #f5f5f5;
  color: #007bff;
  border-left: 3px solid #007bff;
  font-weight: bold;
  border-radius: 5px !important;
  padding: 15px;
  position: relative;
}
.custom-accordion .accordion-button:hover {
  background-color: #fbfbfb;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #007bff;
  color: #fff;
  box-shadow: none;
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
}
.custom-accordion .accordion-body {
  background: #fff;
  border-radius: 6px;
  padding: 20px 0;
  font-size: 0.95rem;
  color: #333;
}
.custom-accordion .accordion-button::after {
  filter: invert(1);
}
.custom-accordion .accordion-button.collapsed::after {
  filter: invert(0);
}

.custom-btn {
  border-radius: 50px;
  padding: 6px 24px;
  width: 100%;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1400px) {
  .custom-btn {
    padding: 10px 36px !important;
  }
}
.custom-btn.btn-primary {
  background: linear-gradient(to right, #10699F, #119CEF);
  border: none;
}
.custom-btn.btn-outline-primary {
  border: 1px solid #10699F;
  background: transparent;
  color: #10699F;
}
.custom-btn.btn-outline-primary:hover {
  background: linear-gradient(to right, #10699F, #119CEF);
  color: #fff;
}

.link-hover-anim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 6px 0;
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1;
  color: #3366ff;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  text-decoration: none;
}
.link-hover-anim .link-strong {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 7px 0;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.2s cubic-bezier(0, 0, 0.58, 1);
}
.link-hover-anim .link-strong-unhovered,
.link-hover-anim .link-strong-hovered {
  display: block;
  pointer-events: none;
}
.link-hover-anim .link-strong-hovered {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(150%) translateZ(0.001px) skewY(10deg);
}
.link-hover-anim:hover {
  color: #3366ff;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.link-hover-anim:hover .link-strong-hovered {
  opacity: 1;
  transform: translateY(0) translateZ(0.001px) skewY(0);
}
.link-hover-anim:hover .link-strong {
  top: 0;
}
.link-hover-anim:hover .link-strong-unhovered {
  opacity: 0;
  transform: translateY(-150%) translateZ(0.001px) skewY(-10deg);
}
.link-hover-anim i, .link-hover-anim svg {
  font-size: 14px;
  line-height: 1;
  vertical-align: middle;
}

.follow-btn {
  font-size: 20px;
  line-height: 1;
  color: #10699F;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #10699F;
}

/* Card Styles */
.card-large {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 32px -7px rgba(0, 0, 0, 0.1);
  border: 0;
  min-height: 400px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.card-large .card-title {
  font-family: "poppins-SemiBold", sans-serif;
  font-weight: 600;
}
.card-large .read-more-link {
  color: #4046b3;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Poppins-Bold", sans-serif;
}
.card-large .read-more-link:hover {
  text-decoration: underline;
}

.card {
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 32px -7px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-2 {
  border: 2px solid rgba(255, 255, 255, 0.2745098039);
  background: rgba(255, 255, 255, 0.0705882353);
  color: #fff;
  border-radius: 4px;
  text-align: left;
  padding: 32px;
  height: 100%;
}
.card-2 .img-with-bg {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-2 .img-with-bg::before {
  content: "";
  position: absolute;
  top: -17px;
  left: -24px;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background-color: #0f9aee;
  z-index: 1;
}
.card-2 .img-with-bg img {
  width: 50px;
  position: relative;
  z-index: 1;
}

.card-3 {
  background: rgba(247, 247, 247, 0.2196078431);
  border-radius: 4px;
  text-align: left;
  padding: 32px;
  height: 100%;
  box-shadow: 0 12 0 rgba(0, 0, 0, 0.1215686275);
}
.card-3 p {
  color: #393939;
}

.team-card {
  background: rgba(247, 247, 247, 0.2196078431);
  border-radius: 4px;
  text-align: left;
  padding: 32px;
  height: 100%;
  box-shadow: 0 12 0 rgba(0, 0, 0, 0.1215686275);
  display: flex;
}
@media screen and (max-width: 767px) {
  .team-card {
    padding: 8px;
    flex-direction: column;
    align-items: center;
  }
  .team-card .team-image {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .team-card .team-content {
    width: 100% !important;
    text-align: center;
  }
}
.team-card .team-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 10px;
}
.team-card .team-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-card .team-content {
  width: calc(100% - 150px);
}
.card-4 {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  max-width: 580px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.card-4 .card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.card-4 .card-overlay {
  background: linear-gradient(180.69deg, rgba(126, 66, 72, 0) 24.14%, #02466f 51.05%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 55%;
  padding: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-4 .card-overlay .card-link {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}
.card-4 .card-overlay .card-link:hover {
  transform: translateX(5px);
}

.card-5 {
  border: 2px solid #97d8ff;
  background: rgba(2, 70, 111, 0.2196078431);
  color: #fff;
  border-radius: 4px;
  text-align: left;
  padding: 32px;
  height: 100%;
}
.card-5 .title-with-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 30px;
  max-width: 200px;
}
.card-5 .title-with-bg::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0f9aee;
  z-index: 1;
}
.card-5 .title-with-bg img {
  width: 50px;
  position: relative;
  z-index: 1;
}
.card-5 .title-with-bg .card-title {
  position: relative;
  z-index: 1;
}

.swiper-container {
  margin: auto;
  padding: 2rem 0;
  overflow: hidden;
}
.swiper-container .swiper-slide {
  padding: 0px 20px;
  height: 100%;
}

.navbar {
  background-color: transparent !important;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background-color: #fff !important;
  padding: 10px 0;
  background: hsla(0, 0%, 100%, 0.98);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.025), 0 1px 1px 0 rgba(0, 0, 0, 0.01), 0 0 50px 0 rgba(0, 0, 0, 0.07);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  margin: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(13,71,118,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #393939;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  padding: 8px 16px;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #02466f;
}
.navbar .navbar-nav .nav-item .nav-link:hover img {
  filter: invert(26%) sepia(74%) saturate(563%) hue-rotate(180deg) brightness(90%) contrast(85%);
}
.navbar .navbar-nav .nav-item .sub-menu {
  list-style: none;
  padding: 5px 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-item .sub-menu .list-item .list-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  border-bottom: 1px solid #f3f3f3;
  display: block;
  color: #444;
  padding: 8px 16px;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-item .sub-menu .list-item .list-link:hover {
  color: #0f9aee;
  background-color: #f4f4f4;
}
.navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 992px) {
  .navbar {
    background-color: #fff !important;
    padding: 10px 0;
  }
  .navbar .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s;
  }
  .navbar .navbar-nav .nav-item.open .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }
}
.navbar .custom-btn {
  font-size: 14px;
  padding: 6px 16px !important;
}

.footer-main {
  color: #fff;
}
.footer-main .footer-label {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
}
.footer-main .footer-description {
  color: hsla(0, 0%, 100%, 0.7);
}
.footer-main p {
  line-height: 24px;
  font-family: "inter";
  font-weight: 400;
  color: #fff;
}
.footer-main .footer-link {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.footer-main .footer-link:hover {
  color: #fff;
}
.footer-main .our-offices-link {
  text-decoration: none;
  color: #0f9aee;
  font-weight: bold;
}
.footer-main ul li {
  color: #fff;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.footer-main .social-link {
  display: block;
  text-decoration: none;
  color: hsla(0, 0%, 100%, 0.7);
  transition: all 0.3s ease-in-out;
}
.footer-main .social-link:hover {
  color: #fff;
}

.footer-bottom > div {
  border-top: 1px solid #B3B3B3;
  padding-top: 20px;
}
.footer-bottom span {
  color: #9FA2AA;
}

#tutorialTable tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 0 !important;
}
#tutorialTable tbody tr {
  width: 50%;
}
@media (max-width: 768px) {
  #tutorialTable tbody tr {
    width: 100%;
  }
}
#tutorialTable tbody tr td {
  box-shadow: none !important;
  border: 0 !important;
}

#blogTable tbody td {
  box-shadow: none !important;
  border: 0 !important;
}

/* 🔹 Pagination Container */
.dt-container .dt-paging {
  text-align: center !important;
  margin-top: 10px;
}

/* 🔹 Pagination Buttons */
.dt-container .dt-paging .dt-paging-button {
  background: #0f9aee; /* Change to your brand color */
  color: white !important;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 2px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* 🔹 Pagination Button Hover Effect */
.dt-container .dt-paging .dt-paging-button:hover {
  background: #0f9aee !important; /* Darker blue on hover */
  border: 1px solid #0f9aee !important;
}

/* 🔹 Active Pagination Button */
.dt-container .dt-paging .dt-paging-button.current {
  background: rgba(15, 152, 238, 0.1764705882) !important; /* Green for active page */
  border: 1px solid rgba(15, 152, 238, 0.1764705882) !important;
  color: #fff !important;
}

.profile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.profile-modal {
  position: fixed;
  top: 0;
  right: -40%;
  width: 40%;
  height: 100vh;
  background: rgb(247, 248, 252);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  transition: right 0.3s ease-in-out;
}
.profile-modal.show {
  right: 0;
}
.profile-modal .profile-info-wrapper {
  display: flex;
  gap: 10px;
  padding: 20px;
  background-color: #fff;
}
.profile-modal .profile-info-wrapper .profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
}
.profile-modal .profile-info-wrapper .profile-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-modal .profile-info-wrapper .profile-info h5 {
  font-size: 18px;
  margin-bottom: 0px;
}
.profile-modal .profile-info-wrapper .profile-info p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}
.profile-modal .profile-modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.profile-modal .profile-options-wrapper {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(221, 221, 221, 0.5333333333);
}
.profile-modal .close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}
.profile-modal .modal-title {
  font-size: 22px;
  margin-bottom: 20px;
}
.profile-modal .profile-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}
.profile-modal .profile-option:hover {
  color: #0f9aee;
}
.profile-modal .profile-option:hover .profile-option-icon {
  color: #5A6A85;
}
.profile-modal .profile-option .profile-option-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.profile-modal .profile-option .profile-option-icon.green {
  background-color: rgba(19, 222, 185, 0.2117647059);
}
.profile-modal .profile-option .profile-option-icon.red {
  background-color: rgba(255, 77, 77, 0.2117647059);
}
.profile-modal .profile-option .profile-option-icon.blue {
  background-color: rgba(0, 123, 255, 0.2117647059);
}
.profile-modal .profile-option .profile-option-icon.yellow {
  background-color: rgba(255, 193, 7, 0.2117647059);
}
.profile-modal .logout-btn {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: #ff4d4d;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
}
.profile-modal .logout-btn:hover {
  background: #e63939;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
/* Roboto Variable Font */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal;
  line-height: 1.6;
  color: #393939;
  background-color: #fff;
}

/* Headings */
h1,
h2 {
  font-family: "Poppins-Bold", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

/* Paragraphs & spans */
p,
span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  letter-spacing: 0.4px;
  margin-bottom: 1rem;
  color: #656565;
}

button,
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
}

.min-height-100vh {
  min-height: 100vh;
}

.min-height-70vh {
  min-height: 70vh;
}

.banner-section-1 {
  background-image: url("../images/hero-background-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-section-2 {
  background-image: url("../images/hero-background-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-section-3 {
  background-image: url("../images/hero-background-3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.border-right-bold {
  border-right: 3px solid #000;
}

.section-subtitle {
  color: #8a8484;
  font-size: 24px;
}

.light-bg-blue {
  background-color: rgba(15, 154, 238, 0.0901960784);
  border-radius: 4px;
}

.light-blue-background-img {
  background-image: url("../images/blue-bg-img.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 100px;
}

.dark-blue-background-img {
  background-image: url("../images/dark-blue-bg-img.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 0px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.dark-blue-background-img .section-subtitle,
.dark-blue-background-img p {
  color: #fff;
}

.light-blue-background {
  background-color: #f4fafe;
}

.dark-blue-background {
  background-color: #00456f;
  color: #fff;
}
.dark-blue-background p {
  color: #fff;
}

.blue-bg-img {
  width: 210px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .blue-bg-img {
    margin: 0 auto;
    width: 140px;
  }
}
.blue-bg-img img {
  width: 100%;
}
.blue-bg-img::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: #0b6aa3;
  z-index: -1;
}

.section-with-icon {
  display: flex;
}
.section-with-icon .section-icon {
  width: 50px;
  margin-right: 20px;
}
.section-with-icon .section-icon .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #10699f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-with-icon .section-content {
  width: calc(100% - 70px);
}

.why-us-section {
  background-image: url("../images/How We Work Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 100px;
  position: relative;
}

.company-overview {
  position: relative;
}

.backgound-pattern-left {
  position: relative;
}
.backgound-pattern-left::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 300px;
  height: 300px;
  background: url("../images/background-pattern-left.png") no-repeat bottom left/100% 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .backgound-pattern-left::before {
    display: none;
  }
}

.backgound-pattern-right {
  position: relative;
}
.backgound-pattern-right::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  width: 300px;
  height: 300px;
  background: url("../images/background-pattern-right.png") no-repeat bottom left/100% 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .backgound-pattern-right::before {
    display: none;
  }
}

.more-info-section {
  background-image: url("../images/need-more-info-img-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
  color: #fff;
}
.more-info-section p {
  color: #fff;
}

.did-you-know-section .dark-blue-background {
  padding: 100px 0 100px !important;
}
.did-you-know-section .swiper {
  height: 100% !important;
}
.did-you-know-section .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
.did-you-know-section .swiper .swiper-wrapper .swiper-slide p {
  max-width: 700px;
  margin-bottom: 0;
}
.did-you-know-section .swiper .swiper-wrapper .swiper-slide p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 3px;
  height: 30%;
  background-color: #10699f;
}

.mission-vission-section {
  background-image: url("../images/mission-vision-background.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
}
@media screen and (max-width: 992px) {
  .mission-vission-section {
    background-size: cover;
    padding: 50px 0 50px;
  }
}

.results-section .stat-number {
  color: #97d8ff;
  font-size: 48px;
}
@media (min-width: 768px) {
  .results-section .border-md-start {
    border-left: 2px solid #97d8ff;
  }
  .results-section .border-md-end {
    border-right: 2px solid #97d8ff;
  }
}

.global-presence-section {
  background-image: url("../images/global-presence-bg-img.png");
  background-size: 180px auto;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
}
@media screen and (max-width: 992px) {
  .global-presence-section {
    padding: 50px 0 50px;
    background-image: none;
  }
}

.title-with-before {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  padding-left: 120px;
  margin-bottom: 20px;
}
.title-with-before.black {
  color: #393939;
}
.title-with-before::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #4da6ff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.title-with-before::after {
  content: "";
  width: 87px;
  height: 2px;
  background: #4da6ff;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.control-confidence-section {
  background-image: url("../images/control-confidence-bg-img.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
}

.settle-for-less-section {
  background-image: url("../images/settle-for-less-bg-img.png");
  background-size: 150px auto;
  background-position: 14% 19%;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
}

.complex-calculations-section img {
  width: 280px;
}
@media screen and (max-width: 992px) {
  .complex-calculations-section img {
    display: block;
    margin: 0 auto;
  }
}
.complex-calculations-section .content-wrapper {
  max-width: 450px;
}
@media screen and (max-width: 992px) {
  .complex-calculations-section .content-wrapper {
    max-width: 100%;
    text-align: center;
  }
}

.built-for-depth-section {
  background-image: url("../images/built-for-depth-bg-img.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0 100px;
  margin-top: -100px;
}

.contact-us-section {
  padding: 100px 0 100px;
}
@media screen and (max-width: 992px) {
  .contact-us-section {
    padding: 50px 0 50px;
  }
}

.team-section {
  background-image: url("../images/our-team-shape.png");
  background-size: 50px auto;
  background-position: left 20%;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
}
@media screen and (max-width: 992px) {
  .team-section {
    padding: 50px 0 50px;
  }
}

.hamburger {
  display: none;
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.5rem;
  margin-right: 10px;
}
@media screen and (max-width: 992px) {
  .hamburger {
    display: block;
  }
}
.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: currentColor;
  transition: inherit;
}
.hamburger-line:nth-child(1) {
  top: 0.125em;
}
.hamburger.is-active .hamburger-line:nth-child(1), .w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}
.hamburger-line:nth-child(2) {
  top: 0.438em;
}
.hamburger.is-active .hamburger-line:nth-child(2), .w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 0;
}
.hamburger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}
.hamburger.is-active .hamburger-line:nth-child(3), .w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}/*# sourceMappingURL=styles.css.map */