html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

p {
  margin: 0;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding-inline: 20px;
}

.bg-light {
  background: #e3e3ef;
}

.btn {
  outline: none;
  box-shadow: none;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 4px 35px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.btn-primary {
  background: #1a71f5;
  border-color: #1a71f5;
  color: #ffffff;
}
.btn-outlined {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .btn {
    height: 50px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .btn {
    height: 46px;
    font-size: 14px;
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .section-heading {
    gap: 16px;
  }
}
.section-heading h2 {
  font-size: 46px;
  line-height: normal;
  font-weight: 800;
  font-family: "Fustat", sans-serif;
  color: #080a2d;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .section-heading h2 {
    font-size: 38px;
    line-height: normal;
  }
}
@media (max-width: 1024px) {
  .section-heading h2 {
    font-size: 32px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .section-heading h2 {
    font-size: 24px;
  }
}
.section-heading p {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.1px;
  color: #000000;
  max-width: 635px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .section-heading p {
    font-size: 14px;
    line-height: normal;
    max-width: 100%;
  }
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.sidebar-overlay.show {
  display: block;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: 100;
}
.navbar.scroll-navbar {
  background: #080a2d;
}
.navbar.scroll-navbar .navbar-inner {
  padding: 16px 20px;
  box-shadow: 0 4px 12px 8px rgba(0, 0, 0, 0.2);
}
.navbar-inner {
  padding: 39px 0;
  transition: all 0.3s ease;
  max-width: 1810px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 10px 20px;
  }
}
.navbar-inner-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.navbar-inner .toggler {
  display: none;
  width: 30px;
  height: 30px;
}
.navbar-inner .toggler img {
  width: 100%;
  height: 100%;
  filter: brightness(100);
}
@media (max-width: 1024px) {
  .navbar-inner .toggler {
    display: block;
  }
}
.navbar_logo {
  max-width: 159px;
  width: 100%;
}
@media (max-width: 640px) {
  .navbar_logo {
    max-width: 120px;
  }
  .navbar_logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.navbar_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 46px;
}
.navbar_menu li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}
.navbar_menu li a.active {
  color: #1a71f5;
}
@media (max-width: 1024px) {
  .navbar_menu li a {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 640px) {
  .navbar_menu li a {
    font-size: 14px;
  }
}
.navbar_menu .navbar_logo {
  display: none;
  padding: 10px 16px;
}
@media (max-width: 1024px) {
  .navbar_menu .navbar_logo {
    display: block;
  }
  .navbar_menu .navbar_logo img {
    filter: invert(1) sepia(1%) saturate(7472%) hue-rotate(326deg) brightness(102%) contrast(100%);
  }
}
.navbar_menu .navbar_button {
  display: none;
  padding: 10px 16px;
}
@media (max-width: 1024px) {
  .navbar_menu .navbar_button {
    display: block;
  }
  .navbar_menu .navbar_button .btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .navbar_menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    align-items: start;
    box-shadow: 6px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
  }
  .navbar_menu li {
    width: 100%;
  }
  .navbar_menu li:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .navbar_menu li:last-child {
    margin-top: auto;
  }
  .navbar_menu li a {
    color: #000000;
    padding: 10px 16px;
    display: block;
  }
  .navbar_menu li a:hover {
    background: #101347;
    color: #ffffff;
  }
  .navbar_menu.toggle-sidebar {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .navbar_button {
    display: none;
  }
}

.hero_wrapper {
  background-image: url(../images/ins-image.png);
  background-position: center;
  background-size: cover;
}
.hero_wrapper-inner {
  padding: 377px 20px 200px;
  color: #ffffff;
}
@media (max-width: 1280px) {
  .hero_wrapper-inner {
    padding: 300px 20px 200px;
  }
}
@media (max-width: 1024px) {
  .hero_wrapper-inner {
    padding: 200px 20px 150px;
  }
}
@media (max-width: 640px) {
  .hero_wrapper-inner {
    padding: 150px 20px 100px;
  }
}
.hero_wrapper-inner .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (max-width: 1280px) {
  .hero_wrapper-inner .container {
    gap: 20px;
  }
}
.hero_wrapper-inner h1 {
  margin: 0;
  font-size: 75px;
  line-height: 82px;
  font-weight: 700;
  font-family: "Fustat", sans-serif;
}
@media (max-width: 1280px) {
  .hero_wrapper-inner h1 {
    font-size: 54px;
    line-height: normal;
  }
}
@media (max-width: 1024px) {
  .hero_wrapper-inner h1 {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .hero_wrapper-inner h1 {
    font-size: 26px;
  }
}
.hero_wrapper-inner p {
  margin: 0;
  font-size: 21px;
  line-height: 30px;
  letter-spacing: 0.3px;
  word-spacing: 0.4px;
}
@media (max-width: 1280px) {
  .hero_wrapper-inner p {
    font-size: 18px;
    line-height: 28px;
  }
  .hero_wrapper-inner p br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero_wrapper-inner p {
    font-size: 14px;
    line-height: normal;
  }
}
.hero_wrapper-inner .btn {
  margin-top: 43px;
  height: 58px;
  padding: 4px 55px;
}
@media (max-width: 1280px) {
  .hero_wrapper-inner .btn {
    margin-top: 24px;
    height: 50px;
  }
}
@media (max-width: 1024px) {
  .hero_wrapper-inner .btn {
    margin-top: 16px;
  }
}

.values, .foundation_success {
  padding: 74px 0;
}
@media (max-width: 640px) {
  .values, .foundation_success {
    padding: 50px 0;
  }
}
.values_heading, .foundation_success_heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1024px) {
  .values_heading, .foundation_success_heading {
    flex-direction: column;
    gap: 30px;
  }
}
.values_heading h2, .foundation_success_heading h2 {
  color: #080d65;
  text-align: start;
  line-height: 56px;
}
@media (max-width: 1024px) {
  .values_heading h2, .foundation_success_heading h2 {
    line-height: normal;
  }
  .values_heading h2 br, .foundation_success_heading h2 br {
    display: none;
  }
}
.values_image, .foundation_success_image {
  min-width: 475px;
  max-width: 527px;
  height: 100%;
}
.values_image img, .foundation_success_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .values_image, .foundation_success_image {
    min-width: unset;
    max-width: unset;
  }
}
.values_grid, .foundation_success_grid {
  margin-top: 50px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .values_grid, .foundation_success_grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .values_grid, .foundation_success_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.values_grid-item, .foundation_success_grid-item {
  padding: 36px 42px 54px 32px;
  border: 1px solid #000000;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .values_grid-item, .foundation_success_grid-item {
    padding: 24px;
  }
}
.values_grid-item h4, .foundation_success_grid-item h4 {
  margin: 0;
  font-size: 20px;
  line-height: 59px;
  letter-spacing: 0.1px;
  font-weight: 800;
  font-family: "Fustat", sans-serif;
}
@media (max-width: 1024px) {
  .values_grid-item h4, .foundation_success_grid-item h4 {
    font-size: 18px;
    line-height: 56px;
  }
}
.values_grid-item p, .foundation_success_grid-item p {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.1px;
  font-weight: 500;
  font-family: "Fustat", sans-serif;
}
@media (max-width: 1024px) {
  .values_grid-item p, .foundation_success_grid-item p {
    font-size: 14px;
  }
}

.foundation_success_heading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.foundation_success_heading h2 {
  color: #080a2d;
}
.foundation_success_grid-item {
  border: none;
  background: #ffffff;
}

.trusted {
  padding: 74px 0;
}
@media (max-width: 640px) {
  .trusted {
    padding: 50px 0;
  }
}
.trusted_heading p {
  max-width: 710px;
  letter-spacing: 0.2px;
  line-height: 21px;
}
.trusted_grid {
  margin-top: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .trusted_grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .trusted_grid-image {
    height: 120px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 640px) {
  .trusted_grid-image {
    height: 70px;
  }
}
.trusted_grid-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media (max-width: 1024px) {
  .trusted_grid-image img {
    -o-object-position: center;
       object-position: center;
  }
}
.trusted_grid-line {
  width: 1px;
  height: 100px;
  background: #000000;
}
@media (max-width: 1024px) {
  .trusted_grid-line {
    display: none;
  }
}

.services {
  padding: 74px 0;
  background: #080a2d;
}
@media (max-width: 640px) {
  .services {
    padding: 50px 0;
  }
}
.services_grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 336px auto;
  gap: 60px;
}
@media (max-width: 1024px) {
  .services_grid {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.services_heading h2 {
  line-height: 56px;
}
@media (max-width: 1024px) {
  .services_heading h2 {
    line-height: normal;
  }
}
.services_heading h2, .services_heading p {
  color: #ffffff;
  max-width: 800px;
}
@media (max-width: 1280px) {
  .services_heading br {
    display: none;
  }
}
.services_tab-tabs {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .services_tab-tabs {
    flex-direction: row;
    white-space: nowrap;
    overflow-x: auto;
    gap: 30px;
  }
  .services_tab-tabs::-webkit-scrollbar {
    height: 2px;
  }
  .services_tab-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }
  .services_tab-tabs::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 50px;
  }
}
.services_tab-tabs li label {
  cursor: pointer;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #101347;
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 20px;
  letter-spacing: 0.1px;
  line-height: normal;
  font-weight: 700;
  font-family: "Fustat", sans-serif;
}
.services_tab-tabs li label:hover, .services_tab-tabs li label.active {
  border-color: #1a71f5;
}
@media (max-width: 1024px) {
  .services_tab-tabs li label {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .services_tab-tabs li label {
    font-size: 14px;
  }
}
.services_tab-tabs li input {
  display: none;
}
.services_tab-content {
  background: #101347;
  padding: 25px 30px 65px;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .services_tab-content {
    padding: 24px;
  }
}
.services_tab-content .tab-item {
  display: none;
  flex-direction: column;
  gap: 45px;
}
@media (max-width: 640px) {
  .services_tab-content .tab-item {
    gap: 30px;
  }
}
.services_tab-content .tab-item.active {
  display: flex;
}
.services_tab-content .tab-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services_tab-content .tab-item .text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .services_tab-content .tab-item .text-content {
    padding: 0;
  }
}
.services_tab-content .tab-item .text-content p {
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.contact {
  max-width: 1833px;
  margin: 0 auto;
  padding-inline: 20px;
}
.contact .container {
  display: grid;
  grid-template-columns: 465px auto;
  gap: 120px;
}
@media (max-width: 1280px) {
  .contact .container {
    grid-template-columns: 400px auto;
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  .contact .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact_inner {
  background: #080a2d;
  padding: 74px 0;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .contact_inner {
    padding: 50px 0;
  }
}
.contact_heading {
  text-align: start;
  align-items: start;
  gap: 14px;
}
.contact_heading h2 {
  line-height: 60px;
}
@media (max-width: 1280px) {
  .contact_heading h2 {
    line-height: normal;
  }
}
.contact_heading p {
  line-height: 22px;
}
.contact_heading h2, .contact_heading p {
  color: #ffffff;
  margin: 0;
  max-width: 100%;
}
.contact_intouch {
  margin-top: 100px;
  padding: 34px 54px 44px;
  background: #101347;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .contact_intouch {
    margin-top: 30px;
    padding: 30px;
    align-items: center;
  }
}
.contact_intouch .icons {
  display: flex;
  align-items: center;
}
.contact_intouch .icons-item {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #171d81;
  position: relative;
}
.contact_intouch .icons-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.contact_intouch .icons-item:last-child {
  margin-left: -10px;
}
@media (max-width: 640px) {
  .contact_intouch .icons-item:last-child {
    margin-left: -7px;
  }
}
.contact_intouch .icons-item:last-child img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
}
@media (max-width: 640px) {
  .contact_intouch .icons-item {
    width: 50px;
    height: 50px;
  }
}
.contact_intouch .btn {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  height: 54px;
  width: 100%;
}
@media (max-width: 1024px) {
  .contact_intouch .btn {
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
  }
}
@media (max-width: 640px) {
  .contact_intouch .btn {
    width: 100%;
  }
}
.contact_intouch h3 {
  font-size: 27px;
  line-height: 65px;
  font-weight: 700;
  font-family: "Fustat", sans-serif;
  margin: 0;
}
@media (max-width: 1024px) {
  .contact_intouch h3 {
    font-size: 22px;
    line-height: 58px;
  }
}
.contact_intouch p {
  font-size: 16px;
  line-height: normal;
  margin: 0;
}
@media (max-width: 1024px) {
  .contact_intouch p {
    font-size: 14px;
  }
}
.contact_right .form-wrapper {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .contact_right .form-wrapper {
    gap: 16px;
  }
}
.contact_right .form-wrapper .btn {
  width: 100%;
  height: 54px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .contact_right .form-wrapper .btn {
    height: 50px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto 0;
  }
}
@media (max-width: 640px) {
  .contact_right .form-wrapper .btn {
    width: 100%;
  }
}

.copyright {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.1px;
  color: #080a2d;
  padding: 45px 0;
  text-align: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .copyright {
    font-size: 14px;
    line-height: normal;
    padding: 24px 0;
  }
}

.input_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .input_group {
    gap: 6px;
  }
}
.input_group-label {
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .input_group-label {
    font-size: 14px;
  }
}
.input_group-input {
  font-size: 16px;
  line-height: normal;
  border-radius: 12px;
  background: #ffffff;
  padding: 17px 20px;
  border: 1px solid #ffffff;
  outline: none;
  transition: all 0.3s ease;
}
.input_group-input:focus {
  border-color: #1a71f5;
}
@media (max-width: 1024px) {
  .input_group-input {
    padding: 16px;
    font-size: 14px;
  }

}


.fnp-section {
  padding-top: 74px;
}
.fnp-section .container {
  border-bottom: 1px solid #ddd;
  padding-bottom: 56px;
}

.fnp-section .section-heading p {
  letter-spacing: 0.2px;
  line-height: 1.5;
  max-width: inherit;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .fnp-section {
    padding-top: 50px;
  }
  .fnp-section .container {
    padding-bottom: 32px;
  }  
}


/*# sourceMappingURL=style.css.map */