@charset "UTF-8";
.navbar-color-white .navbar-toggler .icon-bar {
  background-color: #fff;
}
@media (max-width: 767.98px) {
  #header .navbar-collapse.show {
    background-color: var(--white-color);
    box-shadow: 0 8px 24px rgba(14, 49, 76, 0.12);
    margin-top: 15px;
    padding: 10px 15px;
  }
  #header.navbar-color-white .navbar-collapse.show {
    background-color: var(--black-color);
  }
}

:root {
  --light-green-color: #44ce6f;
  --white-color: #fff;
  --black-color: #0e314c;
  --navlink-color: #4a6f8a;
  --paragraph-color: #6084a4;
  --purple-color: #c679e3;
  --bg-color: #f7fafd;
  --bg-color2: #f9f6f6;
  --hosting-main-color: #032b8d;
  --gradient-color: linear-gradient(135deg, #23bdb8, #43e794);
  --gradient-color2: linear-gradient(
    to right bottom,
    #1fa2ff,
    #00c0ff,
    #00d9f2,
    #53eedd,
    #a6ffcb
  );
  --transition: 0.5s;
  --font-size: 16px;
}
body {
  color: var(--paragraph-color);
  font-family: system-ui, sans-serif;
  font-optical-sizing: auto;
  font-size: var(--font-size);
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
.home-hero-background {
  background-image: url(/assets/images/main-banner-6c21e0a3d89adcb9aaa8b120785bc479.jpg);
  z-index: 0;
}
.landing-illustration {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  right: 0;
  left: auto;
  width: calc(100% - 595px) !important;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .landing-illustration {
    display: none !important;
  }
}
.landing-illustration-profile {
  background-image: url(/assets/images/Profiling-amico.svg);
}
.landing-illustration-language {
  background-image: url(/assets/images/Thinkdifferent-amico.svg);
}
.landing-illustration-nocode {
  background-image: url(/assets/images/NoCodeAudit-amico.svg);
}
.link-like,
a {
  color: var(--black-color);
  cursor: pointer;
  display: inline-block;
  outline: 0 !important;
  text-decoration: none;
  transition: var(--transition);
  &:focus,
  &:hover {
    color: var(--light-green-color);
    text-decoration: none;
  }
}
.d-table {
  height: 100%;
  width: 100%;
  .d-table-cell {
    vertical-align: middle;
  }
}
p {
  line-height: 1.8;
  &:last-child {
    margin-bottom: 0;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-weight: 500;
}
.ptb-80 {
  padding-block: 80px;
}
.mtb-80 {
  margin-block: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-50 {
  padding-bottom: 50px;
}
.bg-f7fafd {
  background-color: var(--bg-color);
}
.bg-f9f6f6 {
  background-color: var(--bg-color2);
}
textarea.form-control {
  height: auto !important;
}
.btn-primary {
  background-color: var(--light-green-color);
  box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
  color: var(--white-color);
  &:active,
  &:focus,
  &:hover {
    background: var(--black-color);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    color: var(--white-color);
    transform: translateY(-5px);
  }
  &.focus,
  &:focus {
    box-shadow: unset;
  }
  &:not(:disabled):not(.disabled).active:focus,
  &:not(:disabled):not(.disabled):active:focus,
  .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: unset;
  }
  &:not(:disabled):not(.disabled).active,
  &:not(:disabled):not(.disabled):active,
  .show > .btn-primary.dropdown-toggle {
    background: var(--black-color);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    color: var(--white-color);
    transform: translateY(-5px);
  }
  &.disabled,
  &:disabled {
    background-color: var(--light-green-color);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    color: var(--white-color);
    opacity: 1;
    &:focus,
    &:hover {
      background: var(--black-color);
      box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    }
  }
}
.btn {
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 40px;
  position: relative;
  text-transform: uppercase;
  transition: var(--transition);
  z-index: 1;
  &:after,
  &:before {
    background: var(--purple-color);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 0;
    z-index: -1;
  }
  &:after {
    border-radius: 4px 0 0 4px;
    left: 0;
  }
  &:before {
    border-radius: 0 4px 4px 0;
    right: 0;
  }
  &:hover {
    &:after,
    &:before {
      width: 50%;
    }
  }
}
.form-group {
  margin-bottom: 18px;
}
label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.form-control,
label {
  color: var(--black-color);
}
.form-control {
  background: #f5f5f5;
  border: 1px solid #eceaea;
  border-radius: 0;
  font-size: 14px;
  height: 50px;
  padding: 10px 15px;
  transition: var(--transition);
  &:focus {
    background: var(--white-color);
    border-color: var(--light-green-color);
    box-shadow: unset;
    outline: 0;
  }
}
.section-title {
  margin-bottom: 50px;
  margin-inline: 16px;
  text-align: center;
  h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
  }
  p {
    margin: 0 auto;
    max-width: 520px;
    text-align: center;
  }
  .bar {
    background: #cdf1d8;
    border-radius: 30px;
    height: 5px;
    margin: 20px auto;
    position: relative;
    width: 90px;
  }
}
#header {
  &.headroom {
    background-color: transparent;
    left: 0;
    padding-top: 15px;
    position: fixed;
    top: 0;
    transition: 0.3s;
    width: 100%;
    z-index: 9999;
    &.is-sticky {
      background-color: var(--white-color) !important;
      box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
      padding-block: 15px;
    }
    &.navbar-style-two {
      background-color: var(--white-color);
      padding-block: 15px;
    }
  }
  &.headroom--pinned {
    transform: translateY(0);
  }
  &.headroom--unpinned {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
  }
}
.startp-nav {
  background: transparent;
  nav {
    padding: 0;
    .navbar-brand,
    ul {
      padding: 0;
    }
    ul {
      list-style-type: none;
      margin: 0;
    }
    .navbar-nav {
      .nav-item {
        padding: 15px 0;
        position: relative;
        a {
          color: var(--navlink-color);
          font-size: 15px;
          font-weight: 500;
          margin-inline: 14px;
          padding: 0;
          &.active,
          &:focus,
          &:hover {
            color: var(--light-green-color);
          }
          svg {
            width: 14px;
          }
        }
        .dropdown-menu {
          background: var(--white-color);
          border: none;
          border-radius: 5px;
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
          display: block;
          left: 0;
          opacity: 0;
          padding: 15px 5px;
          position: absolute;
          top: 80px;
          transition: all 0.3s ease-in-out;
          visibility: hidden;
          width: 250px;
          z-index: 99;
          li {
            padding: 0;
            position: relative;
            a {
              color: var(--navlink-color);
              display: block;
              font-size: 14px;
              font-weight: 500;
              margin: 0;
              padding: 8px 15px;
              &.active,
              &:focus,
              &:hover {
                color: var(--light-green-color);
              }
              i,
              svg {
                float: right;
              }
            }
            .dropdown-menu {
              left: 100%;
              opacity: 0 !important;
              position: absolute;
              top: 0;
              visibility: hidden !important;
              li {
                a {
                  color: var(--navlink-color);
                  &.active,
                  &:focus,
                  &:hover {
                    color: var(--light-green-color);
                  }
                }
              }
            }
            &:hover {
              .dropdown-menu {
                opacity: 1 !important;
                top: -10px !important;
                visibility: visible !important;
              }
              a {
                color: var(--light-green-color);
              }
            }
          }
        }
        &:hover {
          ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
          }
        }
      }
    }
    .others-option {
      margin-left: 20px;
      .cart-wrapper-btn {
        margin-right: 30px;
        position: relative;
        svg {
          width: 15px;
        }
        i {
          font-size: 20px;
        }
        span {
          background-color: red;
          border-radius: 50%;
          color: #fff;
          font-size: 9px;
          height: 13px;
          line-height: 14px;
          position: absolute;
          right: -9px;
          text-align: center;
          top: -2px;
          width: 13px;
        }
      }
      .btn {
        &.btn-light {
          background: transparent;
          border: 2px dashed #cdf1d8;
          margin-right: 10px;
          padding: 12px 33px;
          &:focus {
            color: var(--black-color) !important;
          }
          &:focus,
          &:hover {
            border-color: var(--light-green-color);
            color: var(--white-color);
          }
          &:after,
          &:before {
            background: var(--light-green-color);
          }
        }
        &.btn-primary {
          background: var(--purple-color);
          box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
          &:after,
          &:before {
            background: var(--light-green-color);
            box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
          }
        }
      }
    }
  }
}
.navbar-color-white {
  .startp-nav {
    nav {
      .navbar-nav {
        .nav-item {
          a {
            color: var(--white-color);
            &.active,
            &:focus,
            &:hover {
              color: var(--light-green-color);
            }
          }
        }
      }
      .others-option {
        .cart-wrapper-btn {
          color: var(--white-color);
        }
        .btn {
          &.btn-primary {
            background: var(--purple-color);
            box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
            &:after,
            &:before {
              background: var(--light-green-color);
              box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
            }
          }
        }
      }
    }
  }
  &#header.headroom.is-sticky {
    background-color: var(--black-color) !important;
  }
}
.navbar-toggler {
  border: none;
  border-radius: 0;
  padding: 0;
  &:focus {
    box-shadow: none;
    outline: 0 !important;
  }
  .icon-bar {
    background: #221638;
    border-radius: 3px;
    display: block;
    height: 4px;
    transition: all 0.3s;
    width: 35px;
  }
  .top-bar {
    left: 4px;
    position: relative;
    transform: rotate(45deg);
    transform-origin: 10% 10%;
  }
  .middle-bar {
    margin: 5px 0;
    opacity: 0;
  }
  .bottom-bar {
    left: 4px;
    position: relative;
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
  }
  &.collapsed {
    .top-bar {
      left: 0;
      transform: rotate(0);
    }
    .middle-bar {
      opacity: 1;
    }
    .bottom-bar {
      left: 0;
      transform: rotate(0);
    }
  }
}
@media only screen and (max-width: 991px) {
  #header {
    padding-block: 15px;
    &.headroom {
      border-bottom: 1px solid #eee;
      &.is-sticky {
        border-bottom: none;
      }
    }
  }
}
.about-content {
  .section-title {
    margin-bottom: 18px;
    text-align: left;
    .bar {
      margin-inline: 0;
    }
    p {
      margin: 0;
    }
  }
}
.about-inner-area {
  margin-top: 60px;
  .about-text {
    h3 {
      font-size: 18px;
      margin-bottom: 15px;
    }
  }
}
.services-area {
  overflow: hidden;
}
.services-content {
  .section-title {
    margin-bottom: 20px;
    text-align: left;
    .bar {
      margin-inline: 0;
    }
    p {
      margin: 0;
    }
  }
  .row {
    margin-inline: -8px;
    .col-lg-6 {
      padding-inline: 8px;
    }
  }
  .box {
    background-color: var(--white-color);
    border-radius: 3px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    color: var(--paragraph-color);
    display: block;
    font-weight: 500;
    margin-top: 20px;
    padding: 15px 12px 15px 45px;
    position: relative;
    transition: var(--transition);
    z-index: 1;
    &:before {
      background: var(--gradient-color);
      border-radius: 3px;
      content: "";
      height: 100%;
      left: 0;
      opacity: 0;
      position: absolute;
      top: 0;
      transition: var(--transition);
      visibility: hidden;
      width: 100%;
      z-index: -1;
    }
    svg {
      color: var(--light-green-color);
      display: inline-block;
      left: 15px;
      margin-right: 5px;
      position: absolute;
      top: 12px;
      transition: var(--transition);
      width: 18px;
    }
    &:hover {
      color: var(--white-color);
      transform: translateY(-5px);
      &:before {
        opacity: 1;
        visibility: visible;
      }
      svg {
        color: var(--white-color);
      }
    }
  }
}
.services-right-image {
  position: relative;
  text-align: center;
  .bg-image {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: -65px;
  }
}
.services-left-image {
  position: relative;
  text-align: center;
  .bg-image {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: -65px;
  }
}
.single-services-box {
  background: var(--white-color);
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 30px 25px;
  position: relative;
  transition: var(--transition);
  .paragraph {
    color: var(--paragraph-color);
  }
  h3 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
  .icon {
    background: #cdf1d8;
    border-radius: 50%;
    color: var(--light-green-color);
    font-size: 25px;
    height: 55px;
    line-height: 60px;
    text-align: center;
    transition: var(--transition);
    width: 55px;
    &.bg-c679e3 {
      background: #edc3fc;
      color: var(--purple-color);
    }
    &.bg-eb6b3d {
      background: rgba(235, 107, 61, 0.3);
      color: #eb6b3d;
    }
  }
  &:after,
  &:before {
    background: var(--light-green-color);
    bottom: 0;
    content: "";
    height: 4px;
    opacity: 0;
    position: absolute;
    transition: var(--transition);
    visibility: hidden;
    width: 0;
  }
  &:before {
    left: 0;
  }
  &:after {
    right: 0;
  }
  &:hover {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
    h3 {
      color: var(--light-green-color);
      transition: var(--transition);
    }
    .icon {
      background: var(--light-green-color);
      color: var(--white-color);
      &.bg-c679e3 {
        background: var(--purple-color);
      }
      &.bg-eb6b3d {
        background: #eb6b3d;
      }
    }
    &:after,
    &:before {
      opacity: 1;
      visibility: visible;
      width: 50%;
    }
  }
}
.services-details-area {
  display: flex;
  flex-direction: column;
  justify-items: stretch;
  .services-details-block {
    padding-block: 80px;
    &:nth-of-type(2n) {
      background-color: #f8f8f8;
    }
  }
}
.services-details-desc {
  h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
.services-details-image,
.single-team {
  text-align: center;
}
.single-team {
  background: var(--white-color);
  margin-bottom: 30px;
  padding-block: 35px;
  transition: var(--transition);
  z-index: 1;
  .team-image {
    padding-inline: 35px;
    position: relative;
    z-index: 1;
    img {
      border: 3px solid #cdf1d8;
      border-radius: 50%;
      display: inline-block !important;
      transition: var(--transition);
      width: auto !important;
    }
    &:before {
      background: var(--bg-color2);
      content: "";
      height: 10px;
      left: 0;
      position: absolute;
      top: 50%;
      transition: var(--transition);
      width: 100%;
      z-index: -1;
    }
  }
  .team-content {
    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      li {
        display: inline-block;
        margin: 0 8px;
        a {
          color: var(--purple-color);
          i {
            font-size: 22px;
          }
          &:hover {
            color: var(--light-green-color);
            transform: translateY(-5px);
          }
          svg {
            width: 19px;
          }
        }
      }
    }
    p {
      margin-bottom: 0;
      margin-top: 15px;
    }
  }
  .team-info {
    background: var(--gradient-color);
    border-radius: 0;
    margin: 25px 20px;
    padding: 10px 15px;
    transition: var(--transition);
    h3 {
      align-items: center;
      color: var(--white-color);
      display: flex;
      font-size: 18px;
      justify-content: center;
      margin: 0;
      min-height: 42px;
    }
    span {
      color: var(--white-color);
      font-size: 13px;
    }
  }
  &:hover {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    .team-image {
      &:before {
        height: 0;
      }
      img {
        border-color: var(--light-green-color);
      }
    }
    .team-info {
      border-radius: 0;
      margin-inline: 0;
    }
  }
}
.works-area {
  position: relative;
  z-index: 1;
}
.single-works {
  margin-bottom: 30px;
  position: relative;
  &:before {
    background: var(--gradient-color);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    visibility: hidden;
    width: 100%;
  }
  .icon {
    background: var(--white-color);
    border-radius: 50%;
    height: 45px;
    line-height: 42px;
    opacity: 0;
    position: absolute;
    right: 25px;
    text-align: center;
    top: 0;
    transition: var(--transition);
    visibility: hidden;
    width: 45px;
    svg {
      width: 19px;
    }
    &:hover {
      background: var(--black-color);
      color: var(--white-color);
    }
  }
  .works-content {
    bottom: -60px;
    left: 0;
    opacity: 0;
    padding: 20px;
    position: absolute;
    transition: var(--transition);
    visibility: hidden;
    h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 15px;
      a {
        color: var(--white-color);
        &:hover {
          text-decoration: underline;
        }
      }
    }
    p {
      color: var(--white-color);
    }
  }
  &:hover {
    &:before {
      opacity: 0.9;
      visibility: visible;
      z-index: 1;
    }
    .icon {
      top: 25px;
    }
    .icon,
    .works-content {
      opacity: 1;
      visibility: visible;
      z-index: 5;
    }
    .works-content {
      bottom: 0;
    }
  }
}
.ready-to-talk {
  background: var(--gradient-color);
  padding-block: 80px;
  position: relative;
  text-align: center;
  h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: capitalize;
  }
  h3,
  p {
    color: var(--white-color);
  }
  p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .btn {
    &:after,
    &:before {
      background: var(--white-color);
    }
  }
  .btn-primary {
    background: var(--purple-color);
    box-shadow: 0 5px 20px 0 rgba(198, 121, 227, 0.25);
    &:focus,
    &:hover {
      box-shadow: 0 5px 20px 0 rgba(68, 206, 111, 0.25);
      color: var(--black-color);
    }
  }
  span {
    a {
      color: var(--white-color);
      margin-left: 15px;
      text-decoration: underline;
    }
  }
}
.big-main-banner {
  height: calc(100vh - 200px);
  max-height: 720px;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.bigdata-analytics-banner {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  > .container {
    @media (min-width: 768px) {
      min-height: 460px;
    }
  }
  .bigdata-analytics-content {
    max-width: 555px;
    position: relative;
    z-index: 1;
    h1 {
      color: var(--white-color);
      font-size: 50px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 25px;
    }
    p {
      color: #e9e9e9;
      max-width: 470px;
    }
    .btn {
      margin-top: 18px;
    }
  }
  &.onWhite {
    .bigdata-analytics-content {
      h1 {
        color: var(--black-color);
      }
      p {
        color: var(--paragraph-color);
      }
    }
  }
}
.single-banner-boxes {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px dashed #687b6f;
  border-radius: 5px;
  display: flex;
  flex: 1 1;
  gap: 24px;
  padding: 24px;
  position: relative;
  transition: var(--transition);
  z-index: 1;
  &.box-direction-row {
    flex-direction: row;
  }
  &.box-direction-column {
    flex-direction: column;
  }
  &:before {
    background: var(--gradient-color);
    border-radius: 5px;
    bottom: 0;
    content: "";
    left: 0;
    margin: -1px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition);
    visibility: hidden;
    z-index: -1;
  }
  h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  h3,
  p {
    transition: var(--transition);
  }
  p {
    color: #dadada;
  }
  &:hover {
    background-color: transparent;
    border-color: transparent;
    .single-banner-box-icon {
      background-color: var(--white-color);
      color: var(--light-green-color);
    }
    &:before {
      opacity: 1;
      visibility: visible;
    }
    p {
      color: var(--white-color);
    }
  }
  &.onWhite {
    background-color: #fff;
    border: 1px dashed #cdf1d8;
    box-shadow: 0 0 10px rgba(72, 69, 224, 0.1);
    h3 {
      color: var(--black-color);
    }
    p {
      color: var(--paragraph-color);
    }
    &:hover {
      h3,
      p {
        color: var(--white-color);
      }
    }
  }
  &:nth-child(2n):not(.keep-green-icon-color) {
    .single-banner-box-icon {
      background: #f9f4f7;
      color: #f78acb;
    }
    &:hover {
      .single-banner-box-icon {
        background-color: var(--white-color);
        color: #f78acb;
      }
    }
  }
  &:nth-child(3n):not(.keep-green-icon-color) {
    .single-banner-box-icon {
      background: #edc3fc;
      color: var(--purple-color);
    }
    &:hover {
      .single-banner-box-icon {
        background-color: var(--white-color);
        color: var(--purple-color);
      }
    }
  }
}
.single-banner-box-icon {
  align-items: center;
  background: #cdf1d8;
  border-radius: 50%;
  color: var(--light-green-color);
  display: flex;
  flex-shrink: 0;
  height: 55px;
  justify-content: center;
  transition: var(--transition);
  width: 55px;
}
.what-we-do-area {
  padding-bottom: 50px;
}
.single-what-we-do-box {
  margin-bottom: 30px;
  padding-left: 88px;
  position: relative;
  .icon {
    background: var(--gradient-color);
    border-radius: 5px;
    color: var(--white-color);
    height: 65px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 65px;
    i {
      left: 0;
      position: absolute;
      right: 0;
      top: 40%;
      transform: translateY(-40%);
      &:before {
        font-size: 40px;
      }
    }
  }
  h3 {
    font-size: 20px;
    font-weight: 600;
  }
  .link,
  h3 {
    margin-bottom: 10px;
  }
  .link {
    display: block;
    font-weight: 500;
    text-decoration: underline;
  }
  .read-more-btn {
    display: flex;
    font-weight: 600;
    gap: 5px;
    padding-top: 10px;
  }
}
.page-title-area {
  background: transparent
    url(/assets/images/banner-bg1-573a8cc58841d5b4cd173aed69aea83f.jpg) 100% 0
    no-repeat;
  padding-bottom: 100px;
  padding-top: 190px;
  position: relative;
  text-align: center;
  z-index: 1;
  h1,
  h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
  }
}
.project-details-image {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  z-index: 1;
  &:before {
    background: var(--black-color);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 0.4s;
    visibility: hidden;
    width: 100%;
  }
  a {
    color: var(--white-color);
    left: 0;
    margin: 25px auto 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    visibility: hidden;
    &:hover {
      color: var(--light-green-color);
    }
  }
}
.project-details-desc {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 23px;
  }
  h5 {
    font-size: 21px;
  }
  h6 {
    font-size: 19px;
  }
  ol,
  ul {
    margin-bottom: 20px;
    li {
      line-height: 1.8;
      margin-bottom: 5px;
    }
  }
  .project-details-information {
    overflow: hidden;
    .single-info-box {
      float: left;
      margin-top: 30px;
      width: 20%;
      h4 {
        font-size: 18px;
        margin-bottom: 15px;
      }
      p {
        margin-bottom: 0;
      }
      ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        li {
          display: inline-block;
          a {
            color: var(--paragraph-color);
            margin-right: 10px;
            svg {
              width: 18px;
            }
            &:hover {
              color: var(--light-green-color);
              transform: translateY(-5px);
            }
          }
        }
      }
    }
  }
}
.contact-info-box {
  background: var(--white-color);
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: 0.4s;
  .icon {
    background: var(--bg-color);
    border-radius: 50%;
    color: var(--light-green-color);
    display: inline-block;
    font-size: 30px;
    height: 65px;
    line-height: 68px;
    transition: 0.4s;
    width: 65px;
  }
  h3 {
    font-size: 18px;
    margin: 25px 0 15px;
  }
  p {
    margin-bottom: 0;
    a {
      color: var(--paragraph-color);
      &:hover {
        color: var(--light-green-color);
      }
    }
  }
  &:hover {
    transform: translateY(-10px);
    .icon {
      background: var(--light-green-color);
      color: var(--white-color);
    }
  }
}
#map {
  height: 500px;
  width: 100%;
}
#contactForm {
  .help-block {
    ul {
      margin: 0;
      li {
        color: red;
      }
    }
  }
  .btn {
    margin-top: 10px;
  }
  #msgSubmit {
    &.text-danger,
    &.text-success {
      margin: 20px 0 0;
    }
  }
}
.error-area {
  height: 100vh;
}
.error-content {
  margin-top: -70px;
  text-align: center;
  .notfound-404 {
    height: 280px;
    margin-bottom: 30px;
    position: relative;
    z-index: -1;
    h1 {
      background-size: cover;
      background: url(/assets/images/oops-bg-fed7c3a4c22e0a475219fc6692799865.jpg)
        no-repeat 50%;
      font-size: 230px;
      font-weight: 900;
      left: 50%;
      margin: 0;
      position: absolute;
      transform: translateX(-50%);
    }
  }
  h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  p {
    margin: 0 auto 25px;
    max-width: 550px;
  }
}
.repair-team-area {
  .container {
    max-width: 1175px;
  }
}
.about-area,
.footer-area {
  position: relative;
  z-index: 1;
}
.footer-area {
  padding-top: 80px;
  .map {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0.7;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    z-index: -1;
  }
}
.single-footer-widget {
  &.pl-5 {
    padding-left: 30px;
  }
  .logo {
    margin-bottom: 20px;
  }
  h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    &.list {
      li {
        margin-bottom: 10px;
        .link-like,
        a {
          color: var(--paragraph-color);
          &:hover {
            color: var(--light-green-color);
            padding-left: 7px;
          }
        }
        .link-like {
          background: none;
          border: none;
          padding: 0;
        }
        &:last-child {
          margin-bottom: 0;
        }
      }
    }
    &.footer-contact-info {
      margin-bottom: 20px;
      li {
        align-items: start;
        color: var(--paragraph-color);
        display: flex;
        gap: 8px;
        margin-bottom: 8px;
        i {
          display: flex;
          margin-top: 4px;
        }
        a {
          color: var(--paragraph-color);
          &:hover {
            color: var(--light-green-color);
          }
        }
      }
    }
    &.social-links {
      li {
        display: inline-block;
        margin-right: 8px;
        a {
          align-items: center;
          border: 1px solid var(--light-green-color);
          border-radius: 50%;
          color: var(--light-green-color);
          display: flex;
          height: 32px;
          justify-content: center;
          line-height: 28px;
          width: 32px;
          &.facebook {
            border-color: #4267b2;
            color: #4267b2;
            &:hover {
              background: #4267b2;
              color: var(--white-color);
            }
          }
          &.twitter {
            border-color: #38a1f3;
            color: #38a1f3;
            &:hover {
              background: #38a1f3;
              color: var(--white-color);
            }
          }
          &.linkedin {
            border-color: #0077b5;
            color: #0077b5;
            &:hover {
              background: #0077b5;
              color: var(--white-color);
            }
          }
          &.instagram {
            border-color: #231f20;
            color: #231f20;
            &:hover {
              background: #231f20;
              color: var(--white-color);
            }
          }
          &:hover {
            background: var(--light-green-color);
            color: var(--white-color);
          }
        }
      }
    }
  }
}
.copyright-area {
  border-top: 1px solid #d8ebfd;
  margin-top: 80px;
  padding-block: 25px;
  text-align: center;
  p {
    a {
      font-weight: 500;
    }
  }
}
.go-top {
  background-color: var(--purple-color);
  border: none;
  border-radius: 10px 0 0 10px;
  bottom: 30px;
  color: var(--white-color);
  cursor: pointer;
  display: none;
  font-size: 22px;
  height: 45px;
  line-height: 46px;
  position: fixed;
  right: 0;
  text-align: center;
  transition: var(--transition);
  width: 45px;
  z-index: 999;
  &:hover {
    background: var(--light-green-color);
    color: var(--white-color);
  }
  &.active {
    right: 0;
  }
}
.main-text-area {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }
}
form.mailchimp {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: min(700px, calc(100% - 24px));
  padding-inline: 2rem;
  padding: 24px;
  scroll-margin-block: 100px;
  h2 {
    text-align: center;
  }
  .form-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .indicates-required {
    align-self: end;
    font-size: 0.875rem;
  }
  .asterisk {
    color: #f77;
  }
  .dataprocessing {
    border: 1px solid #e9ecef;
    border-left-width: 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    margin-block: 24px;
    padding: 1.25rem;
    .subtle-header {
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      margin-bottom: 1rem;
    }
  }
  .form-control {
    height: unset;
  }
  .form-label {
    margin-bottom: 0.25rem;
  }
  .form-row {
    display: flex;
    gap: 1rem;
    & > * {
      flex: 1 1;
    }
  }
}
article.mailchimp-congrats {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin-block: 160px;
  margin-inline: auto;
  max-width: min(700px, calc(100% - 24px));
  padding-inline: 2rem;
  padding: 24px;
}
.features-area-two {
  overflow: hidden;
}
.single-features {
  background: var(--white-color);
  border-radius: 5px;
  display: flex;
  flex-basis: calc(50% - 1rem);
  flex-grow: 0;
  flex-shrink: 0;
  gap: 24px;
  padding: 30px 20px 30px 30px;
  position: relative;
  transition: var(--transition);
  @media (max-width: 992px) {
    flex-basis: 100%;
    flex-direction: column;
  }
  h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  &:hover {
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
    .single-banner-box-icon {
      background: var(--light-green-color);
      color: var(--white-color);
    }
  }
  &:nth-child(3),
  &:nth-child(4) {
    .single-banner-box-icon {
      background: #edc3fc;
      color: var(--purple-color);
    }
  }
  &:nth-child(5),
  &:nth-child(6) {
    .single-banner-box-icon {
      background: rgba(235, 107, 61, 0.3);
      color: #eb6b3d;
    }
  }
  &:hover {
    &:nth-child(3),
    &:nth-child(4) {
      .single-banner-box-icon {
        background: var(--purple-color);
        color: var(--white-color);
      }
    }
    &:nth-child(5),
    &:nth-child(6) {
      .single-banner-box-icon {
        background: #eb6b3d;
        color: var(--white-color);
      }
    }
  }
}
.iot-cta-area {
  overflow: hidden;
  padding-block: 10px;
  position: relative;
  z-index: 1;
  &.bg-0f054b {
    background-color: #0f054b;
  }
}
.cta-iot-content {
  padding-bottom: 30px;
  padding-top: 30px;
  h3 {
    font-size: 25px;
    margin-bottom: 17px;
  }
  h3,
  p {
    color: var(--white-color);
  }
  p {
    margin-bottom: 25px;
    opacity: 0.95;
  }
}
.cta-iot-img {
  text-align: center;
}
.why-choose-us {
  .section-title {
    text-align: left;
    .bar,
    p {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .why-choose-us-image {
    position: relative;
    text-align: center;
    .main-pic {
      display: none;
    }
    img {
      &:first-child {
        left: -20px;
        position: relative;
      }
      &:nth-child(3) {
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: -55px;
        z-index: -1;
      }
    }
    &.single-why-choose-us-image {
      img {
        bottom: 0;
        display: block;
        left: 0;
        position: relative;
        right: 0;
      }
    }
  }
  .col-lg-6 {
    .col-lg-6 {
      &:first-child {
        .single-why-choose-us {
          margin-top: 60px;
        }
      }
      &:nth-child(2) {
        .single-why-choose-us {
          margin-top: 0;
        }
      }
      &:nth-child(4) {
        .single-why-choose-us {
          margin-top: 0;
        }
      }
    }
  }
  .single-why-choose-us {
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(56, 46, 46, 0.1);
    margin-top: 30px;
    padding: 30px 25px;
    transition: var(--transition);
    .icon {
      color: var(--light-green-color);
      transition: var(--transition);
      i {
        line-height: 1;
        &:before {
          font-size: 45px;
        }
      }
    }
    h3 {
      font-size: 18px;
      margin-bottom: 15px;
      margin-top: 20px;
      transition: var(--transition);
    }
    &:before {
      background: var(--gradient-color);
      border-radius: 5px;
      content: "";
      height: 100%;
      left: 0;
      opacity: 0;
      position: absolute;
      top: 0;
      transition: var(--transition);
      visibility: hidden;
      width: 100%;
      z-index: -1;
    }
    p {
      transition: var(--transition);
    }
    &:hover {
      border-color: transparent;
      transform: translateY(-9px);
      &:before {
        opacity: 1;
        visibility: visible;
      }
      .icon,
      h3,
      p {
        color: var(--white-color);
      }
    }
  }
}
.consentCookieBanner {
  align-items: center;
  background: var(--bg-color);
  border: 1px solid #999;
  border-radius: 0.5rem;
  bottom: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  margin-inline: auto;
  padding: 1rem 1.5rem;
  position: fixed;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 9999;
  @media (width < 600px) {
    align-items: center;
    flex-direction: column;
  }
  .header {
    font-size: 1.5rem;
  }
  .header,
  .text {
    margin: 0;
  }
  .buttons {
    display: flex;
    flex-shrink: 0;
    gap: 1rem;
    button,
    button.button-revoke {
      border: none;
      border-radius: 0.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 0.5rem 0.75rem;
      position: relative;
      text-transform: uppercase;
      z-index: 0;
      &:after {
        background: transparent;
        content: "";
        inset: 0;
        pointer-events: none;
        position: absolute;
        transition: background 0.15s ease;
        z-index: -1;
      }
      &:hover:after {
        background: rgba(0, 0, 0, 0.1);
      }
      &:active:after {
        background: rgba(0, 0, 0, 0.2);
      }
    }
    button.button-revoke {
      background-color: #6c757d;
      color: var(--white-color);
    }
    button.button-grant {
      background-color: var(--light-green-color);
      color: var(--white-color);
    }
  }
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-stretch {
  justify-content: stretch;
}
.justify-normal {
  justify-content: normal;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
:root {
  --spacing: 4px;
}
.pt-20 {
  padding-top: calc(var(--spacing) * 20);
}
.pt-30 {
  padding-top: calc(var(--spacing) * 30);
}
.pb-20 {
  padding-block: calc(var(--spacing) * 20);
}
.pb-30 {
  padding-block: calc(var(--spacing) * 30);
}
.py-20 {
  padding-block: calc(var(--spacing) * 20);
}
.py-30 {
  padding-block: calc(var(--spacing) * 30);
}
.gap-20 {
  gap: calc(var(--spacing) * 20);
}
.gap-30 {
  gap: calc(var(--spacing) * 30);
}
