@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Regular.woff2") format("woff2"),
    url("../fonts/ClashDisplay-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("../fonts/ClashDisplay-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "ClashDisplay";
  src: url("../fonts/ClashDisplay-Semibold.woff2") format("woff2"),
    url("../fonts/ClashDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ClashDisplay" !important;
}

body {
  font-family: "Roboto" !important;
}

a {
  text-decoration: none !important;
}

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

.ptb80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section_title {
  .subtitle {
    margin: 0 0 10px;
    display: inline-block;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    background: #fd5f0c;
    padding: 2px 25px;
    border-radius: 10px 0;
  }

  .title {
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: capitalize;
    color: #042327;
  }
  .content {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #2c2c2c;
    margin: 0 auto;
  }
}

.section_title p {
  &:last-child {
    margin: 0;
  }
}

.banner-sec {
  width: 100%;
  height: auto;
  padding: 180px 0;
  background: #0f1b63;

  .bnr-left {
    h1 {
      font-size: 60px;
      line-height: 80px;
      font-weight: 700;
      color: #fff;
      margin: 0 0 20px;
    }
    p {
      font-size: 16px;
      line-height: 28px;
      font-weight: 400;
      color: #fff;
      margin: 0;
    }
    .btn-area {
      margin-top: 40px;
    }
  }
}

.solution-item {
  position: relative;
  padding: 20px 25px;
  background: #fff;
  border-radius: 50px 50px 50px 0px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);

  margin-bottom: 30px;
  height: calc(100% - 30px);
  transition: all 0.5s ease-in-out;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 30%;
    border-top: 1px solid #fd5f0c;
    border-left: 1px solid #fd5f0c;

    transition: all 0.5s ease-in-out;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 30%;
    border-bottom: 1px solid #fd5f0c;
    border-right: 1px solid #fd5f0c;

    transition: all 0.5s ease-in-out;
  }

  .solution-count {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 40px;
    font-weight: 700;
    -webkit-text-stroke: 1px #fd5f0c;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
  }

  .solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50px 50px 50px 0px;
    color: #fff;
    background: #0f1b63;
    margin-bottom: 25px;
    box-shadow: 0 0 5px 5px #f2f3f5;
    position: relative;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      width: 38px;
    }
  }

  .solution-content {
    h4 {
      color: #042327;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }
    p {
      font-size: 13px;
      line-height: 26px;
      font-weight: 400;
      color: #2c2c2c;
      margin: 0;
    }
  }

  &:hover {
    transform: translateY(-10px);

    &::before,
    &::after {
      width: 100%;
      height: 100%;
    }

    &::before {
      border-radius: 50px 50px 0 0;
    }
    &::after {
      border-radius: 0 50px 50px 0;
    }
  }
}

.standard-area {
  width: 100%;
  height: auto;
  background-color: #eaeeff;

  .item-bx {
    position: relative;
    padding: 20px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: all 0.5s ease-in-out;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      right: -20px;
      top: -20px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 10px solid #fd5f0c;
      transition: all 0.5s ease-in-out;
      opacity: 0.1;
      z-index: -1;
    }

    &:after {
      transition: all 0.3s ease-in-out;
      content: "";
      width: 200px;
      height: 200px;
      position: absolute;
      right: -70px;
      bottom: -100px;
      z-index: -1;
      background-color: #fd5f0c;
      border-radius: 50%;
      opacity: 0.2;
    }

    &:hover {
      &:after {
        opacity: 1;
      }
      &:before {
        opacity: 1;
      }
    }
    h4 {
      color: #042327;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
      z-index: 9;
      position: relative;
    }
    ul {
      position: relative;
      z-index: 1;
      li {
        font-size: 14px;
        line-height: 26px;
        font-weight: 400;
        color: #2c2c2c;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;

        i {
          color: #fd5f0c;
          font-size: 16px;
        }

        &:last-child {
          margin: 0;
        }
      }
    }
  }
}

.industry-sec {
  padding-bottom: 80px;
  [class*="col-"] {
    margin-bottom: 30px;
  }
}
.insdustry_main {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  &:hover {
    .industry-img {
      &::before {
        background-image: linear-gradient(
          rgba(0, 0, 0, 0.01),
          rgba(7, 73, 208, 0.7),
          #132c7d
        );
      }
    }
    .industry-wrap {
      bottom: 20px;
      height: auto;
    }
  }
}
.industry-img {
  &::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      rgba(0, 0, 0, 0.01),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    );
  }
  width: 100%;
  height: 410px;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
.industry-wrap {
  position: absolute;
  bottom: -110px;
  transition: all 0.7s ease-in-out;
  left: 20px;
  right: 20px;
  height: 230px;
  .industry-inr {
    width: 3.375rem;
    height: 3.375rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .industry-title {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    padding-bottom: 12px;
    margin: 0;
    font-weight: 600;
  }
  p {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-top: 12px;
  }
}

.how-it-work {
  width: 100%;
  height: auto;
  background-color: #fff4ee;

  .iconbox-area {
    margin-bottom: 20px;
    min-height: 230px;

    .icon-area {
      border-radius: 5px;

      span {
        padding: 8px;
        border-style: solid;
        border-width: 1px;
        border-color: #eceafe;
        border-radius: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        font-size: 18px;
        font-weight: 600;
        color: #2c2c2c;
      }

      &.box-1 {
        span {
          background-color: #e9f6ff !important;
          border: 1px solid #5bbeff;
        }
      }
      &.box-2 {
        span {
          background-color: #fdf3ff !important;
          border: 1px solid #f195ff;
        }
      }
      &.box-3 {
        span {
          background-color: #eefff2 !important;
          border: 1px solid #00b82a;
        }
      }
      &.box-4 {
        span {
          background-color: #faeaff !important;
          border: 1px solid #b500e9;
        }
      }
    }
    .title {
      font-size: 21px;
      line-height: 31px;
      font-weight: 600;
      color: #042327;
      margin: 15px 0;
    }
    .txt {
      font-size: 14px;
      line-height: 26px;
      font-weight: 400;
      color: #2c2c2c;
      margin: 0;
    }
  }
}

.info-img {
  position: relative;
  .color-layer {
    position: absolute;
    left: -15px;
    top: -15px;
    width: 480px;
    height: 436px;
    border-radius: 12px;
    background-color: #ffdac5;
    z-index: -1;

    &::before {
      position: absolute;
      content: "";
      left: -20px;
      top: -20px;
      right: -20px;
      bottom: -20px;
      border-radius: 12px;
      border: 3px solid #ffdac5;
    }
  }
  img {
    border-radius: 12px;
  }
}

.cta_area {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #0f1b63;

  .cta-img {
    text-align: end;

    img {
      width: 60%;
    }
  }
}

.faq_area {
  position: relative;

  .accordion {
    .accordion-item {
      border: none;
      border-radius: 14px;
      background: none;
      margin-top: 30px;
      transition: all 0.4s;
      background-color: #f5f5fd;

      button {
        border: none;
        background: none;
        padding: 25px;
        color: #000;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 18px;
        text-transform: capitalize;
        position: relative;

        &:focus {
          outline: none;
          box-shadow: none;
        }

        &::before {
          content: "\f078";
          position: absolute;
          right: 15px;
          top: 10px;
          height: 48px;
          width: 48px;
          border-radius: 50%;
          z-index: 1;
          background: #0f1b63;
          font-family: "Font Awesome 6 Free";
          font-weight: 900;
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.4s;
        }

        &::after {
          display: none;
        }
      }

      .accordion-body {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        padding-left: 42px;
        margin-top: -20px;
        padding-bottom: 44px;
        padding-right: 80px;
        text-align: start;
      }

      &.active {
        transition: all 0.4s;
        border-radius: 14px;
        background: #0f1b63;

        button {
          color: #fff;

          &::before {
            content: "\f078";
            background: #fff;
            color: #042327;
          }

          &::after {
            filter: brightness(0);
          }
        }
      }
    }

    .accordion-button:not(.collapsed) {
      color: #fff;
      background-color: transparent;
      box-shadow: none;

      &::before {
        content: "\f077" !important;
      }
    }
  }
}

@media (max-width: 991px) {
  .banner-sec {
    padding: 60px 0;
    & .bnr-left {
      h1 {
        font-size: 40px;
        line-height: 60px;
      }
    }
  }

  .section_title {
    .title {
      font-size: 28px;
      line-height: 38px;
    }
  }
  .color-layer {
    display: none;
  }

  .faq_area {
    & .accordion {
      & .accordion-item {
        & button {
          font-size: 16px;
          line-height: 20px;
          padding: 15px;
          padding-right: 70px;
        }
        .accordion-body {
          font-size: 14px;
          padding: 15px;
      }
      }
    }
  }
}
