* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --font-poppins: "Poppins", sans-serif;
  --primary-color: #152d45;
  --secondary-color: #33a1e0;
  --black-color: #212121;
  --white-color: #ffffff;
  --light-bg: rgba(210, 217, 223,0.4);
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 14px;
  font-weight: 400;
  margin: 0px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.85;
  opacity: 0.85;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 90vw;
  padding: 0 15px;
  margin: auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-bottom {
  padding-bottom: 80px;
}

.section-padding-top {
  padding-top: 80px;
}

.text-center {
  text-align: center;
}

header {
  padding: 15px 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: var(--white-color);
}

header.active {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .logo img {
  max-height: 60px;
}

header .inner-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
          column-gap: 15px;
}

header .dropdown {
  display: none;
}

header a,
header span {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 15px;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}

header a::before,
header span::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #152d45;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

header a:hover,
header span:hover {
  color: var(--white-color);
}

header a:hover::before,
header span:hover::before {
  left: 0;
}

header a.active,
header span.active {
  color: var(--white-color);
}

header a.active::before,
header span.active::before {
  left: 0;
}

header .toggle-icon {
  display: none;
}

header .toggle-icon img {
  max-height: 16px;
}

header .closeicon {
  display: none;
}

header .closeicon img {
  max-height: 12px;
}

.border-box {
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.two-column {
  -webkit-column-gap: 4%;
          column-gap: 4%;
}

.two-column .item {
  width: 48%;
}

.title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: 0.25px;
  color: var(--primary-color);
}

.heading-wrapper {
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.heading-wrapper .title {
  margin-bottom: 10px;
}

.banner .mobile {
  display: none;
}

.about-section .inner-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services-section .inner-wrapper {
  background: var(--light-bg);
  padding: 80px 24px;
  border-radius: 8px;
}

.services-section .items {
  -webkit-column-gap: 2%;
          column-gap: 2%;
}

.services-section .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 24%;
          flex: 1 1 24%;
}

.services-section .border-box {
  margin-bottom: 20px;
}

.services-section .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.services-section p {
  font-size: 14px;
  margin-bottom: 0;
}

.values-section .items {
  -webkit-column-gap: 6%;
          column-gap: 6%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.values-section .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 18%;
          flex: 1 1 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.values-section .icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.values-section .icon-wrapper img {
  max-height: 34px;
}

.values-section .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
  text-transform: capitalize;
}

.values-section p {
  margin-bottom: 0;
  font-size: 14px;
}

.value-section .inner-wrapper {
  -webkit-column-gap: 4%;
          column-gap: 4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.value-section .heading-wrapper {
  width: 43%;
}

.value-section .items {
  width: 53%;
  -webkit-column-gap: 4%;
          column-gap: 4%;
  row-gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.value-section .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 48%;
          flex: 1 1 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--primary-color);
  min-height: 240px;
}

.value-section .item:nth-child(2), .value-section .item:nth-child(3) {
  background: var(--secondary-color);
}

.value-section .item p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--white-color);
}

.value-section .icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--white-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.value-section .icon-wrapper img {
  max-height: 34px;
}

.value-section .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white-color);
  text-transform: capitalize;
}

.faq-section .items {
  -webkit-column-gap: 2%;
          column-gap: 2%;
  row-gap: 16px;
}

.faq-section .item {
  padding: 34px 24px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-bg);
}

.faq-section .stars {
  -webkit-column-gap: 4px;
          column-gap: 4px;
  margin-bottom: 16px;
}

.faq-section .stars img {
  max-height: 14px;
}

.faq-section p {
  font-size: 14px;
  margin-bottom: 16px;
}

.faq-section .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.faq-section .date {
  opacity: 0.65;
  font-size: 12px;
}

.contact-us .form-wrapper {
  background: var(--primary-color);
  padding: 24px;
  width: 100%;
}

.contact-us form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.contact-us input,
.contact-us textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 4px;
  border: 1px solid var(--light-bg);
  outline: none;
  font-size: 14px;
  padding: 8px 15px;
  font-family: var(--font-poppins) !important;
}

.contact-us button {
  background: var(--secondary-color);
  border: 0;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
  border-radius: 4px;
  cursor: pointer;
}

.contact-us .title,
.contact-us p {
  color: var(--white-color);
}

.contact-us .img-wrapper {
  background: var(--light-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map-wrapper iframe {
  max-width: 100%;
}

footer {
  padding: 40px 0px;
  background: var(--primary-color);
}

footer .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}

footer .img-wrapper img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  max-height: 80px;
}

footer ul {
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-column-gap: 2%;
          column-gap: 2%;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

footer li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  -webkit-column-gap: 15px;
          column-gap: 15px;
}

footer li .icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--secondary-color);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

footer li .icon-wrapper img {
  max-height: 30px;
}

footer span,
footer a {
  color: var(--white-color);
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.3px;
}

footer .num {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}

footer .social-icons {
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .social-icons img {
  max-height: 20px;
}

footer .social-icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .copyright {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 300;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 1199.5px) {
  p {
    font-size: 14px;
  }
  .title {
    font-size: 32px;
  }
  header ul {
    -webkit-column-gap: 6px;
            column-gap: 6px;
  }
  header a,
  header span {
    padding: 8px 12px;
  }
  header .logo img {
    max-height: 46px;
  }
}

@media only screen and (max-width: 1024.5px) {
  .section-padding {
    padding: 60px 0;
  }
  .section-padding-bottom {
    padding-bottom: 60px;
  }
  .services-section .items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 24px;
  }
  .services-section .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 49%;
            flex: 1 1 49%;
  }
  .value-section .inner-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .value-section .heading-wrapper,
  .value-section .items {
    width: 100%;
  }
  .faq-section .items {
    overflow-x: auto;
  }
  .faq-section .item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 400px;
  }
  .two-column {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact-us .inner-wrapper {
    row-gap: 24px;
  }
  .contact-us .item {
    width: 100%;
  }
  .footer .inner-wrapper {
    row-gap: 30px;
  }
  .footer .copyright,
  .footer ul {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 992.5px) {
  .section-padding {
    padding: 40px 0;
  }
  .section-padding-bottom {
    padding-bottom: 40px;
  }
  .container {
    max-width: 100vw;
  }
  nav {
    position: fixed;
    padding: 15px;
    right: -100%;
    width: 90vw;
    max-width: 300px;
    background: var(--white-color);
    z-index: 11;
    top: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  nav.active {
    right: 0;
  }
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .two-column {
    row-gap: 24px;
  }
  .two-column .item {
    width: 100%;
  }
  header .toggle-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .closeicon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header a,
  header span {
    padding: 15px 0;
  }
  header a.active,
  header span.active {
    color: var(--primary-color);
  }
  header a::before,
  header span::before {
    display: none;
  }
  header li {
    border-bottom: 1px solid #dddddd;
  }
  .title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .services-section .inner-wrapper {
    padding: 40px 15px;
  }
  .services-section .border-box {
    margin-bottom: 16px;
  }
  .services-section .name {
    margin-bottom: 4px;
  }
  .contact-us button {
    padding: 15px 20px;
  }
  footer .inner-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 20px;
  }
  footer .social-icons {
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
  footer .social-icons img {
    max-height: 18px;
  }
  footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 20px;
  }
  footer li .icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 4px;
  }
  footer li .icon-wrapper img {
    max-height: 22px;
  }
  footer .copyright {
    padding-top: 20px;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (max-width: 767.5px) {
  .banner .desktop {
    display: none;
  }
  .banner .mobile {
    display: block;
  }
  .services-section .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .value-section .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 30px 15px;
  }
  .value-section .item:nth-child(3) {
    background: var(--primary-color);
  }
  .value-section .item:nth-child(4) {
    background: var(--secondary-color);
  }
  .faq-section .heading-wrapper {
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */