@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
  --primary-color: #012f91;
  --light-blue-color: #24c7ff;
  --secondary-color: #753521;
  --off-white-color: #f5f5f5;
  --body-text-color: #1a1818;
  --primary-font: "Nunito Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1440px;
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}

.container.fluid {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

p {
  color: var(--body-text-color);
}

li {
  color: var(--body-text-color);
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.pt-0 {
  padding-top: 0;
}

.p-0 {
  padding: 0;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

section {
  padding: 70px 0;
}

header {
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  z-index: 999;
}

header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: headerAnim 0.3s ease-in-out;
}

header.fixed-header .custom-logo-link img {
  max-width: 160px;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style: none;
}

.main-menu ul li .sub-menu {
  opacity: 0;
  visibility: hidden;
  display: block;
  z-index: -9;
  transition: all 0.3s;
  position: absolute;
  width: 100%;
  min-width: 400px;
  background: var(--primary-color);
  left: 0;
  transform: translateY(50px);
  border-bottom: 4px solid;
  /* padding: 18px 0; */
}

.menu-primary-container > ul > li {
  display: inline-block;
  position: relative;
}

.menu-primary-container > ul > li a {
  padding: 0 1rem;
}

.menu-primary-container ul li a {
  font-size: 18px;
  line-height: 130%;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--primary-color);
  transition: all 0.3s;
}

.main-menu ul li .sub-menu li {
  padding: 0.8rem;
}

.main-menu ul li .sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.main-menu ul li .sub-menu li a {
  padding: 0;
}

.menu-primary-container ul li a:hover {
  color: var(--secondary-color);
}

.main-menu-col {
  position: relative;
  z-index: 9;
}

.main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  transform: translateY(0px);
}

.main-menu ul li .sub-menu li a {
  color: #fff;
}

.main-menu ul li .sub-menu li a:hover {
  color: var(--light-blue-color);
}

.menu-primary-container > ul > li.menu-item-has-children {
  padding-right: 5px;
}

.menu-primary-container > ul > li.menu-item-has-children:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  color: var(--primary-color);
}

.toggle-item,
.collapse-menu {
  display: none;
}

.hero-sec {
  padding: 0;
}

.single-hero-slide {
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  height: 700px;
  position: relative;
  z-index: 1;
}

.single-hero-slide.slick-current {
  animation: bgZoomIn 10s ease-in-out forwards;
}

.site-content > .ast-container {
  display: block;
  max-width: 100%;
  padding: 0;
}

.home-hero-slider {
  min-height: 100px;
  display: block !important;
  visibility: visible !important;
}

.single-hero-slide .single-hero-slide-content {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 20px;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}

.single-hero-slide:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.single-hero-slide .single-hero-slide-content .slide-heading {
  font-size: 72px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 30px;
}

.single-hero-slide .single-hero-slide-content p {
  margin-bottom: 30px;
  color: #fff;
  max-width: 60%;
  font-size: 20px;
  line-height: 120%;
}

.single-hero-slide .single-hero-slide-content p span {
  display: block;
  margin-top: 5px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 30px;
  border: 1px solid var(--primary-color);
}

a.btn:hover {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}

.btn-primary.hover-border:hover {
  border-color: var(--primary-color);
}

.single-hero-slide.slick-current .single-hero-slide-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slick-arrow {
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
}

.slick-arrow.next {
  left: unset;
  right: 20px;
}

.hero-slider .slick-dots {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-slider .slick-dots li {
  display: inline-block;
}

.hero-slider .slick-dots li button {
  font-size: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 1px solid #fff;
  transition: all 0.3s;
}

.hero-slider .slick-dots li.slick-active button {
  background: #fff;
}

.section-title {
  font-size: 3rem;
  line-height: 130%;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.section-title.light {
  color: #fff;
}

.section-title span {
  color: var(--secondary-color);
}

.section-title.sm {
  font-size: 1.75rem;
}

.section-title.lg {
  font-size: 2rem;
}

.col-half {
  width: calc(50% - 40px);
}

.mission-boxes {
  display: grid;
  grid: repeat(2, 1fr) / repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  max-width: 900px;
  margin-inline: auto;
}

.mission-boxes .single-mission-box {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgb(1, 48, 145), rgb(135, 79, 62));
}

.mission-boxes .single-mission-box .mission-box-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
  padding: 30px;
}

.mission-boxes .single-mission-box .mission-box-content {
  margin-top: 20px;
}

.mission-boxes .single-mission-box .mission-box-content h3 {
  font-size: 1.5rem;
  line-height: 130%;
  color: #fff;
  margin-bottom: 20px;
}

.mission-boxes .single-mission-box .mission-box-content p {
  color: #fff;
}

.grey-bg {
  background-color: var(--off-white-color);
}

footer {
  padding: 70px 0;
  border-top: 2px solid var(--primary-color);
}

.footer-logo-col {
  width: 24%;
}

.footer-menu-col.one {
  width: 22%;
}

.footer-menu-col.two {
  width: 29%;
}

.footer-menu-col {
  width: 25%;
}

.footer-social {
  width: 25%;
}

.menu-heading {
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
  color: var(--primary-color);
}

footer ul {
  margin: 20px 0 0 0;
}

footer ul li {
  list-style: none;
  font-size: 16px;
  line-height: 20px;
}

footer ul li:not(:first-child) {
  margin-top: 10px;
}

footer .container > .row > div {
  padding: 0 16px;
}

footer ul li a {
  font-size: 16px;
  line-height: 100%;
  color: var(--primary-color);
}

footer ul li a:hover {
  color: var(--secondary-color);
}

footer ul.social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

footer ul.social li {
  margin: 0;
}

footer ul.social li a {
  display: flex;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: #fff;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

footer ul + .menu-heading {
  margin-top: 20px;
}

footer ul.social li a:hover {
  color: var(--primary-color);
  background: #fff;
}

.policy-footer {
  background: var(--primary-color);
  padding: 10px 0;
}

.policy-footer * {
  color: #fff;
}

.policy-footer a:hover {
  color: var(--secondary-color);
}

.footer-logo {
  max-width: 190px;
}

.footer-content p {
  font-size: 18px;
  line-height: 130%;
  margin: 16px 0 0 0;
  color: var(--primary-color);
}

.common-banner {
  height: 500px;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.common-banner:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.common-banner h1 {
  color: #fff;
  font-size: 58px;
  line-height: 120%;
  font-family: var(--primary-font);
}

.common-banner p {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  font-family: var(--primary-font);
}

.innovation-img {
  box-shadow: 0px 64px 200px 0px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.what-mean-sec {
  min-height: 720px;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.what-mean-points {
  margin: 30px 0 0 0;
}

.what-mean-points li {
  list-style: none;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  font-family: var(--primary-font);
  padding-left: 34px;
  position: relative;
}

.what-mean-points li:not(:first-child) {
  margin-top: 20px;
}

.what-mean-points li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  font-family: "Font Awesome 7 Free";
  top: 3px;
  font-size: 24px;
}

.cta-img-col {
  max-width: 480px;
}

.cta-content-col {
  width: calc(100% - 480px);
  padding: 20px;
}

.new-cta-cover {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 64px 200px 0 rgba(0, 0, 0, 0.2);
}

.cta-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-settle-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.why-settle-list .single-settle-box {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  width: calc(25% - 30px);
  padding: 20px;
  text-align: center;
}

.why-settle-list .single-settle-box .settle-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: var(--primary-color);
  border-radius: 50%;
  padding: 30px;
}

.why-settle-list .single-settle-box .settle-meta {
  margin-top: 20px;
}

.why-settle-list .single-settle-box .settle-meta strong {
  font-size: 18px;
  line-height: 120%;
  color: var(--primary-color);
}

.why-settle-list .single-settle-box .settle-meta p {
  margin-bottom: 0;
}

.services-full-bg {
  padding: 100px 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.services-full-bg:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.service-list-main {
  margin: 40px 0 0 0;
  padding: 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.service-list-main li {
  list-style: none;
  background: #fff;
  border-radius: 10px;
  width: calc(25% - 30px);
  padding: 20px;
  text-align: center;
  color: var(--body-text-color);
}

.service-list-main li strong {
  font-size: 20px;
  line-height: 130%;
  display: block;
  margin-bottom: 20px;
  color: var(--body-text-color);
}

.service-list-main li .service-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: var(--secondary-color);
  border-radius: 50%;
  padding: 30px;
  margin-bottom: 20px;
}

.single-contact-box .contact-box-inner {
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  background: var(--primary-color);
}

.single-contact-box .contact-box-inner .contact-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 30px;
}

.single-contact-box:not(:first-child) {
  margin-top: 30px;
}

.single-contact-box {
  max-width: 400px;
}

.single-contact-box .contact-box-inner .contact-meta a {
  color: #fff;
}

.col-one-four {
  width: 500px;
}

.col-four-four {
  width: calc(100% - 530px);
}

.contact-form-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 40px;
}

.contact-form-wrapper .contact-form .single-form-field p {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-form-wrapper .contact-form .single-form-field {
  font-family: var(--primary-font);
}

.contact-form-wrapper .contact-form .single-form-field p label {
  font-size: 16px;
}

.contact-form-wrapper .contact-form .single-form-field textarea {
  height: 150px;
}

.sales-col {
  width: 50%;
  z-index: 1;
}

.support-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 90px;
  width: 100%;
  height: 100%;
}

.support-wrap .support-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.support-wrap .support-img:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.support-wrap .support-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.support-wrap:hover .support-img img {
  transform: scale(1.1);
}

.sales-col .support-wrap h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.sales-col .support-meta h5 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

.sales-col .support-meta p {
  color: #fff;
  margin-bottom: 15px;
  width: 70%;
}

.sales-col .support-meta ul {
  margin: 0;
  padding: 0;
}

.sales-col .support-meta ul li {
  list-style: none;
  color: #fff;
}

.sales-col .support-meta ul li a {
  color: inherit;
}

.sales-col .support-meta ul li:not(:first-child) {
  margin-top: 10px;
}

.sales-col .support-meta ul li span {
  margin-right: 8px;
}

@keyframes bgZoomIn {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerAnim {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1300px) {
  .menu-primary-container > ul > li a {
    padding: 0 0.8rem;
  }

  header .custom-logo-link img {
    max-width: 170px;
  }

  .menu-primary-container ul li a {
    font-size: 16px;
  }
}

@media (max-width: 1140px) {
  .main-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    right: -100%;
    top: 0;
    background: #fff;
    border-bottom: 10px solid var(--primary-color);
    transition: all 0.3s;
  }

  .main-menu.collapsed {
    right: 0;
    overflow: auto;
  }

  .main-menu ul {
    display: flex;
    flex-direction: column;
  }

  .menu-primary-container ul li a {
    padding: 0;
  }

  .menu-primary-container > ul > li {
    padding: 10px;
    border-bottom: 1px solid var(--primary-color);
  }

  .menu-primary-container > ul > li.menu-item-has-children {
    padding-right: 10px;
    position: relative;
  }

  .menu-primary-container > ul > li.menu-item-has-children:after {
    display: none;
  }

  .toggle-item {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
  }

  .collapse-menu {
    display: flex;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 10px 10px 0 auto;
  }

  .toggle-item .toggle-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 5px;
    cursor: pointer;
  }

  .toggle-item .toggle-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
  }

  .main-menu ul li .sub-menu {
    position: relative;
    min-width: 100%;
    width: 100%;
    left: 0;
    opacity: 1;
    visibility: visible;
    top: 0;
    z-index: 1;
    transform: translateY(0);
    display: none;
  }

  header .custom-logo-link img {
    max-width: 140px;
  }

  .ast-menu-toggle {
    display: inline-flex;
    padding: 0;
    right: 10px;
    top: 0px;
    position: absolute;
    box-shadow: none;
    color: var(--primary-color) !important;
    width: 48px;
    height: 48px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
  }

  .ast-menu-toggle svg {
    margin: 0 !important;
  }

  .ast-menu-toggle:focus,
  .ast-menu-toggle:focus-visible {
    outline: none;
  }

  .menu-primary-container ul li a {
    font-size: 15px;
  }

  .main-menu ul li .sub-menu li {
    padding: 10px;
  }

  .main-menu ul li .sub-menu {
    background: transparent;
    border: none;
  }

  .main-menu ul li .sub-menu li a {
    color: var(--primary-color);
  }
  .menu-item-has-children .ast-menu-toggle .ast-icon {
    transition: all 0.8s;
  }
  .menu-item-has-children.open .ast-menu-toggle .ast-icon {
    transform: rotate(180deg);
  }
}

@media (max-width: 767px) {
  section {
    padding: 25px 0;
  }
  .col-half {
    width: 100%;
  }
  .col-half + .col-half {
    margin-top: 20px;
  }
  .mission-boxes {
    grid: repeat(1, 1fr) / repeat(1, 1fr);
  }
  .footer-menu-col {
    width: 100%;
  }

  .footer-menu-col:not(:first-child) {
    margin-top: 15px;
  }

  footer {
    padding: 25px 0;
  }

  .single-hero-slide .single-hero-slide-content .slide-heading {
    font-size: 36px;
  }

  .single-hero-slide .single-hero-slide-content p {
    max-width: 90%;
    font-size: 18px;
  }

  .hero-slider .slick-arrow {
    display: none !important;
  }

  .single-hero-slide.slick-current {
    animation: none;
  }

  .btn {
    padding: 10px 20px;
  }

  .section-title {
    font-size: 2.3rem;
}

.mission-boxes .single-mission-box .mission-box-icon {
  width: 120px;
  height: 120px;
}

.common-banner h1 {
    font-size: 2.2rem;
}

.cta-content-col {
    width: 100%;
}

.section-title.lg {
    font-size: 1.7rem;
}

.why-settle-list .single-settle-box {
    width: 100%;
}

.service-list-main li {
    width: 100%;
}

.services-full-bg {
    padding: 40px 0;
}

.col-four-four {
    width: 100%;
    margin-top: 20px;
}

.contact-form-wrapper .contact-form {
  padding: 20px;
}

.sales-col .support-meta p {
    width: 100%;
}

.sales-col {
    width: 100%;
}

.support-wrap {
    padding: 30px;
}
}
