:root {
  --brand-color: #0a2540;     /* Primary brand color */
  --secondary-color:#425466; /* Secondry color */
  --accent-color:#026DCF; 
}
@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&display=swap");

/* Placeholder Color */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #667085 !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #667085 !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #667085 !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #667085 !important;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

html {
  font-size: 16px;
}

body {
  font-weight: 500;
  color: #d1d3d6;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
img {
  max-width: 100%;
}
.btn {
  font-weight: 500;
  border-radius: 0;
  padding: 5px 45px;
  white-space: nowrap;
  outline: none !important;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-white {
  color: #026DCF;
  background: #fff;
  border: 2px solid #fff;
}
.btn-white:hover,
.btn-white:focus {
  color: #fff;
  background: #026DCF;
  border: 2px solid #fff;
}
.btn-blue {
  color: #fff;
  background: #026DCF;
  border: 2px solid #026DCF;
}
.btn-blue:hover,
.btn-blue:focus {
  color: #026DCF;
  background: #fff;
  border: 2px solid #026DCF;
}
.bg-light1 {
  background: #f6f9fc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 155;
  width: 100%;
  height: 74px;
  background: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1); */
}
header .navbar > .container-fluid {
  padding: 0;
}
header .navbar {
  padding: 17px calc(var(--bs-gutter-x) * 0.5);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .navbar-expand-lg .navbar-nav .nav-link {
  color: #343434;
  font-weight: 500;
  padding: 5px 10px;
}
header .dropdown-toggle::after {
  content: "";
  width: 11px;
  height: 12px;
  border: none;
  margin-left: 7px;
  vertical-align: inherit;
  background: url("../images/drop-down-arrow.png") no-repeat;
}
header .navbar-expand-lg .navbar-nav .nav-link:hover,
header .navbar-expand-lg .navbar-nav .nav-link:focus,
header .navbar-expand-lg .navbar-nav .nav-link.nav-link-active {
  color: #026DCF;
}
/* header .request-link a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  background: #026DCF;
  border: 1px solid #026DCF;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header .request-link a:hover,
header .request-link a:focus {
  color: #026DCF;
  background: #fff;
} */
header .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link.request-link-hyper {
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
  line-height: 1.5rem;
  color: #fff;
  background: #0a2540;
  border: 1px solid #0a2540;
}

header .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link.request-link-hyper:hover {
  color: #fff;
  background: #0a2540;
  border: 1px solid #0a2540;
  -webkit-box-shadow: 0px 0px 10px 2px #d3d3d3 !important;
  -moz-box-shadow: 0px 0px 10px 2px #d3d3d3 !important;
  box-shadow: 0px 0px 10px 2px #d3d3d3 !important;
}
header .dropdown-menu {
  display: none;
}
header .dropdown-menu.show {
  display: block;
  -webkit-animation: fadeIn 0.3s alternate;
  -moz-animation: fadeIn 0.3s alternate;
  animation: fadeIn 0.3s alternate;
}
header .nav-item.dropdown.dropdown-mega {
  position: static;
}
header .nav-item.dropdown.dropdown-mega .dropdown-menu {
  top: auto;
  left: auto;
  right: 230px;
  width: 813px;
  border: none;
  padding-top: 20px;
  background: transparent;
}
header .mega-content {
  padding: 20px 30px;
  background: #fff;
  border: 1px solid #e7e7e9;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
header .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-toggler .hamburger-toggle {
  z-index: 11;
  width: 50px;
  height: 50px;
  position: relative;
  display: inline-block;
}
header .navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
header .navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 3px;
  position: absolute;
  background: #026DCF;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
header .navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
header .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
header .navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
header .navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
header .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
header .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
header .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}
header.sticky {
  height: 74px;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
header.sticky .navbar {
  padding: 17px calc(var(--bs-gutter-x) * 0.5);
}
header .navbar-brand img {
  max-height: 38px;
  margin-top: -20px;
}

.nav-card-info {
  padding-top: 20px;
}
.nav-card-info h4 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #026DCF;
  margin-bottom: 10px;
}
.nav-card-info p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: #7e828b;
  line-height: 1.5rem;
  margin-bottom: 25px;
}
.nav-card-info a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 20px;
  background: #026DCF;
  border: 1px solid #026DCF;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.nav-card-info a:hover,
.nav-card-info a:focus {
  color: #026DCF;
  background: #fff;
}
.nav-card {
  width: 100%;
  padding: 20px;
  display: flex;
  border-radius: 5px;
  position: relative;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.01s ease-in-out;
  -moz-transition: all 0.01s ease-in-out;
  transition: all 0.01s ease-in-out;
}
.nav-card:hover {
  background: #e7f3ff;
  padding-right: 0;
}
.nav-card-item {
  display: flex;
}
.nav-card-item .nav-icon {
  width: 40px;
  min-width: 40px;
  margin-right: 25px;
}
.nav-info {
  padding-right: 16px;
}
.nav-info h5 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #026DCF;
}
.nav-card-item:hover .nav-info h5 {
  color: #026DCF;
}
.nav-info p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: #7e828b;
  line-height: 1.5rem;
}
.nav-action-link {
  display: none;
}
.nav-card:hover .nav-action-link {
  display: flex;
}
.nav-action-link a {
  padding: 4px 20px;
  padding-left: 4px;
}
.nav-action-link a img {
  width: 10px;
  height: 12px;
  min-width: 10px;
}
.scroll-top-arrow {
  width: 38px;
  right: 20px;
  bottom: 20px;
  height: 38px;
  border: none;
  display: none;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  position: fixed;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  background-color: #026DCF;
}
.scroll-top-arrow:hover {
  background-color: #1575cd;
}

section {
  padding: 70px 0;
  position: relative;
}
.common-header {
  text-align: center;
}
.common-header h3 {
  margin: 0;
  padding: 0;
  color: var(--brand-color);
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 15px;
}
.common-header h3 span {
  font-weight: 600;
  color: #026DCF;
}
.common-header p {
  margin: 0;
  font-weight: 400;
  color: var(--secondary-color);
  line-height: 1.5rem;
}

.modal-content {
  width: 479px;
  border: none;
  margin: 0 auto;
  border-radius: 0;
  background: #fbfbfb;
  border-top: 6px solid #026DCF;
}
.modal-header {
  border: none;
  padding: 40px;
  position: relative;
  padding-bottom: 20px;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #393939;
  line-height: 2.25rem;
}
.modal-header .btn-close {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
  position: absolute;
  color: #000;
  right: 20px;
  opacity: 1;
  top: 20px;
}

/* Mega menu latest style */
header #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
  position: fixed;
  padding-top: 22px;
  background: transparent;
}
header.sticky #mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
  padding-top: 20px;
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
  padding: 0;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > .mega-sub-menu {
  margin: 0 auto;
  max-width: 1140px;
}
header #mega-menu-wrap-header-menu .solution-submenu .mega-submenu {
  background: transparent;;
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 40px 15px 40px 15px;
}
header .mega-menu-item h5 {
  color: #425466;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 20px;
}
header #mega-menu-wrap-header-menu .solution-submenu .mega-submenu {
  padding: 0;
}
header #mega-menu-wrap-header-menu .solution-submenu .mega-submenu + .mega-submenu {
  margin-top: 20px;
}
header #mega-menu-wrap-header-menu .submenu-list h5 {
  color: #0a2540;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header #mega-menu-wrap-header-menu .submenu-list p {
  font-size: 12px;
  color: #425466;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0px;
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu p {
  margin-bottom: 0;
}
header #mega-menu-wrap-header-menu .solution-submenu .mega-submenu:hover {
  background: transparent;
}
header #mega-menu-wrap-header-menu .solution-submenu .mega-submenu:hover h5 {
  color: #026dcf;
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item .menu-aligns {
  display: flex;
  row-gap: 20px;
  flex-wrap: wrap;
  column-gap: 30px;
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item .menu-aligns li {
  align-items: flex-start;
  width: calc(33.333% - 20px);
}
header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-item .menu-aligns .mega-submenu + .mega-submenu {
  margin-top: 0;
}

/* Media Query */
@media (min-width: 1400px) {
  header #mega-menu-wrap-header-menu #mega-menu-header-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > .mega-sub-menu {
      max-width: 1320px;
  }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
}

/* X-Large devices (large desktops, less than 1300px) */
@media (max-width: 1299.98px) {
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  html {
    font-size: 14px;
  }
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 15px;
  }
  header .nav-item.dropdown.dropdown-mega .dropdown-menu {
    right: 230px;
    width: calc(100% - 230px);
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  header .navbar-nav {
    padding-top: 15px;
  }
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 0;
  }
  header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-top: 15px;
    margin-left: 0;
  }
  header .nav-item.dropdown.dropdown-mega .dropdown-menu {
    right: 0;
    width: 100%;
    padding-top: 0;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  html {
    font-size: 12px;
  }
  .nav-card-info {
    margin-bottom: 20px;
  }
  header .mega-content {
    padding: 0;
    padding-bottom: 15px;
  }
  .modal-content {
    width: 100%;
  }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .modal-header {
    padding: 20px;
    padding-right: 40px;
  }
}
