@font-face {
  font-family: "EKOGrotesk";
  src: url("fonts/EKOGroteskBETA20240417-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EKOGrotesk";
  src: url("fonts/EKOGroteskBETA20240417-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EKOGrotesk";
  src: url("fonts/EKOGroteskBETA20240417-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family:
    "EKOGrotesk",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  color: #162769;
}

.center-container {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}
.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.header-template {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  z-index: 200;
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 120px;
  }
  .button {
    color: #162769;
    font-size: 13px;
    font-weight: 700;
    background-color: #8bd0e5;
    border-radius: 90px;
    text-align: center;
    padding: 10px 30px;
    text-decoration: none;
  }
  .logo {
    max-width: 180px;
  }
}

.banner-container {
  position: relative;
  .image-container {
    width: 100%;
    height: 100%;
    picture {
      height: 100%;
    }
  }
  img {
    max-width: 100%;
  }
  .content-wrapper {
    position: absolute;
    bottom: 70px;
    left: 120px;
    max-width: 600px;
    margin: 0 auto;
    .title {
      font-size: 80px;
      color: #162769;
      font-weight: 600;
      line-height: 90px;
    }
    .subtitle {
      padding-top: 15px;
      font-size: 32px;
      font-weight: 600;
      line-height: 40px;
    }
  }
}
.left-banner-container {
  position: relative;
  .image-container {
    width: 100%;
    height: 100%;
    picture {
      height: 100%;
    }
  }
  img {
    max-width: 100%;
  }
  .content-wrapper {
    text-align: right;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 120px;
    max-width: 700px;
    margin: 0 auto;
    .title {
      font-size: 45px;
      color: #fff;
      font-weight: 600;
      line-height: 55px;
    }
    .subtitle {
      padding-top: 25px;
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      color: #fff;
    }
    &.dark {
      .title,
      .subtitle {
        color: #000e5f;
      }
    }
  }
}
.right-banner-container {
  position: relative;
  .image-container {
    width: 100%;
    height: 100%;
    picture {
      height: 100%;
    }
  }
  img {
    max-width: 100%;
  }
  .content-wrapper {
    text-align: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 120px;
    max-width: 700px;
    margin: 0 auto;
    .title {
      font-size: 45px;
      color: #fff;
      font-weight: 600;
      line-height: 55px;
    }
    .subtitle {
      padding-top: 25px;
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      color: #fff;
    }
  }
}
.two-columns {
  display: flex;
  align-items: stretch;
  gap: 50px;
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  .column {
    width: 50%;
    p {
      font-size: 18px;
      font-weight: 400;
      line-height: 22px;
      color: #000;
      margin-bottom: 20px;
    }
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  grid-auto-rows: 316px;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
  align-content: start;
  padding: 100px 0;

  .feature-card {
    border-radius: 54px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    .icon {
      width: 100px;
      height: 100px;
    }
  }

  .card-blue {
    background-color: #000e5f;
  }

  .card-red {
    background-color: #ef382f;
  }

  .card-icon {
    display: grid;
    place-items: center;
    margin-top: 2px;
  }

  .card-title {
    margin: 10px 0 10px;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.15;
  }

  .card-text {
    margin: 0;

    font-size: 14px;
    line-height: 1.35;
  }

  .card-1 {
    grid-column: 1;
    grid-row: 1;
    .icon {
      width: 80px;
      height: 80px;
    }
  }

  .card-2 {
    grid-column: 2;
    grid-row: 1;
    .icon {
      width: 80px;
      height: 80px;
    }
  }

  .card-3 {
    grid-column: 2;
    grid-row: 2;
    .icon {
      width: 80px;
      height: 80px;
    }
  }

  .card-4 {
    grid-column: 3;
    grid-row: 2;
  }
}

.text-grid {
  padding: 100px 0;
  display: flex;
  align-items: flex-start;
  column-gap: 80px;
  row-gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  .text-card {
    width: calc(100% / 3 - 54px);
    background-color: #fff;
    .card-title {
      font-size: 27px;
      font-weight: 600;
      line-height: 35px;
      margin-bottom: 10px;
    }
    .card-text {
      font-size: 18px;
      line-height: 25px;
    }
    &.card-7 {
      width: 66%;
      display: flex;
      align-items: flex-start;
      gap: 40px;
      .card-text {
        max-width: 260px;
      }
      .card-title {
        max-width: 170px;
      }
    }
  }
}

.card-container {
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  .inner-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }
  .text-container {
    .title {
      font-size: 45px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .description {
      p {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
      }
    }
  }
  .box {
    width: 50%;
  }
  .bottom-container {
    padding-left: 80px;
    padding-top: 20px;
    width: 60%;
    .list-title {
      font-size: 25px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    ul {
      li {
        font-size: 18px;
        line-height: 25px;
        margin: 10px 0;
        position: relative;
        padding-left: 20px;
        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          transform: translateY(10px);
          background-color: #000e5f;
          width: 5px;
          height: 5px;
          border-radius: 50%;
        }
      }
    }
  }
}
.left-card-container.small {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.left-card-container.small .inner-container.no-wrap {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  .text-container {
    .title {
      font-size: 45px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .description {
      p {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
      }
    }
  }
}

.left-card-container.small .image-container.box {
  flex: 0 0 420px;
  max-width: 45%;
  margin: 0;
}

.left-card-container.small .image-container.box img {
  display: block;
  width: 100%;
  height: auto;
}

.left-card-container.small .text-container.box {
  flex: 1;
  text-align: left;
}

.left-card-container.small .description p {
  margin: 0 0 18px;
}
.zig-zag-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 50px 0;
  .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 150px;
    padding: 40px 0;
    .mobile-title {
      display: none;
    }
    .text-container {
      .title {
        font-size: 45px;
        font-weight: 700;
        line-height: 55px;
        margin-bottom: 15px;
      }
      .description {
        p {
          font-size: 18px;
          line-height: 25px;
          margin-bottom: 15px;
        }
      }
    }
    &.row-two {
      .text-container {
        text-align: right;
      }
    }
    .box {
      width: 50%;
    }
  }
}

.footer-template {
  background: linear-gradient(180deg, #fefefe 21.63%, #ebebeb 75.48%);
  padding-top: 40px;
  padding-bottom: 80px;
  .footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .left-container {
    display: flex;
    gap: 20px;
  }
  .right-container {
    text-align: right;
  }
  .info-container {
    .store-info {
      font-size: 17px;
      line-height: 23px;
      padding: 2px 0;
      &.store-title {
        font-weight: 700;
      }
    }
  }
  .copyrights {
    font-size: 17px;
    line-height: 23px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 1536px) {
  .center-container {
    max-width: 100%;
    width: calc(100% - 100px);
  }
  .header-template {
    .header-container {
      padding: 20px 50px;
    }
  }
  .banner-container {
    height: 600px;
    .content-wrapper {
      left: 50px;
      .title {
        font-size: 50px;
        line-height: 60px;
      }
      .subtitle {
        font-size: 25px;
        line-height: 35px;
      }
    }
  }
  .left-banner-container {
    height: 500px;
    .content-wrapper {
      right: 50px;
      max-width: 600px;
      .title {
        font-size: 30px;
        line-height: 40px;
      }
      .subtitle {
        font-size: 22px;
        line-height: 30px;
      }
    }
  }
  .right-banner-container {
    height: 500px;
    .content-wrapper {
      left: 50px;
      max-width: 600px;
      .title {
        font-size: 30px;
        line-height: 40px;
      }
      .subtitle {
        font-size: 22px;
        line-height: 30px;
      }
    }
  }
  .two-columns {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
  }
}
@media only screen and (max-width: 959px) {
  .features-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 50px 0;

    .card-1 {
      grid-column: 1;
      grid-row: 1;
    }
    .card-2 {
      grid-column: 2;
      grid-row: 1;
    }
    .card-3 {
      grid-column: 1;
      grid-row: 2;
    }
    .card-4 {
      grid-column: 2;
      grid-row: 2;
    }
    .feature-card {
      width: 100%;
      max-width: 100%;
     padding: 40px;
     .card-title{ font-size: 15px; line-height: 22px;}
     .card-text{ font-size: 12px; line-height: 18px;}
     .icon{ width: 80px;  height: 70px;}
   
    }
  }

  .text-grid {
    row-gap: 20px;
    padding: 50px 0;
    margin: 30px auto;
    column-gap: 40px;
    .text-card {
      width: calc(50% - 30px);
      .card-title {
        font-size: 15px;
        line-height: 20px;
      }
      .card-text {
        font-size: 12px;
        line-height: 18px;
        padding: 0;
      }
      &.card-7 {
        width: 100%;
        flex-direction: column;
        gap: 0;
        .card-title {
          max-width: 100%;
        }
        .card-text {
          max-width: 100%;
        }
      }
    }
  }
  .card-container {
    padding: 50px 0;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    .inner-container {
      width: 50%;
      flex-direction: column;
      gap: 0px;
    }
    .box {
      width: 100%;
    }
    .bottom-container {
      width: 50%;
      padding-left: 0;
      padding-top: 30px;
      .list-title {
        font-size: 22px;
        line-height: 28px;
      }
      ul {
        li {
          font-size: 12px;
          line-height: 18px;
        }
      }
    }
    .text-container {
      .title {
        font-size: 22px;
      }
      .description {
        p {
          font-size: 12px;
          line-height: 18px;
        }
      }
    }
  }
  .left-card-container.small .inner-container.no-wrap {
    display: block;
    .text-container {
      .title {
        font-size: 17px;
        line-height: 22px;
      }
      .description {
        p {
          font-size: 12px;
          line-height: 18px;
        }
      }
    }
  }

  .left-card-container.small .image-container.box {
    float: left;
    width: min(420px, 46%);
    margin: 0 40px 20px 0;
  }

  .left-card-container.small .text-container.box {
    text-align: center;
  }

  .left-card-container.small .description p:nth-of-type(2) {
    clear: left;
    margin-top: 28px;
  }

  .left-card-container.small .inner-container.no-wrap::after {
    content: "";
    display: block;
    clear: both;
  }
  .zig-zag-container {
    .row {
      gap: 30px;
      padding: 15px 0;
      align-items: stretch;
      .mobile-title {
        display: block;
        font-size: 22px;
        font-weight: 700;
        line-height: 28px;
        margin-bottom: 10px;
      }
      .text-container {
        .title {
          display: none;
          font-size: 22px;
          line-height: 28px;
        }
        .description {
          p {
            font-size: 12px;
            line-height: 18px;
          }
        }
      }

      &.row-one {
        .text-container {
          order: 2;
        }
        .mobile-container {
          order: 1;
        }
      }
      &.row-two {
        align-items: center;
        .text-container {
          order: 1;
        }
        .mobile-container {
          order: 2;
        }
        .mobile-title {
          text-align: right;
        }
        .text-container {
          text-align: left;
          padding-top: 38px;
        }
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .center-container {
    max-width: 100%;
    width: calc(100% - 70px);
  }
  .header-template {
    .header-container {
      padding: 20px 20px 20px 50px;
      .logo {
        max-width: 120px;
      }
    }
  }
  .banner-container {
    height: 400px;
    .content-wrapper {
      left: 50px;
      max-width: 460px;
      top: 50%;
      bottom: auto;
      transform: translateY(-50%);
      .title {
        font-size: 30px;
        line-height: 40px;
      }
      .subtitle {
        font-size: 13px;
        line-height: 25px;
        padding-top: 5px;
      }
    }
  }
  .left-banner-container {
    height: 200px;
    &.margin{   margin-top: -34px;}
  
    .content-wrapper {
      right: 50px;
      max-width: 400px;
      padding-left: 50px;
      .title {
        font-size: 22px;
        line-height: 20px;
      }
      .subtitle {
        font-size: 12px;
        line-height: 20px;
        padding-top: 10px;
      }
    }
  }
  .right-banner-container {
    height: 200px;
    margin-top: -34px;
    .content-wrapper {
      left: 50px;
      max-width: 400px;
      padding-right: 50px;
      .title {
        font-size: 22px;
        line-height: 25px;
      }
      .subtitle {
        font-size: 12px;
        line-height: 20px;
        padding-top: 10px;
      }
    }
  }
  .two-columns {
    gap: 40px;
    padding: 50px 0;
    .column {
      p {
        font-size: 15px;
        line-height: 18px;
      }
    }
    .right-column {
      text-align: right;
    }
  }
  .footer-template {
    padding: 40px 0;
    .info-container .store-info {
      font-size: 12px;
      line-height: 18px;
    }
    .footer-content {
      gap: 30px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .copyrights {
      font-size: 12px;
      line-height: 18px;
    }
    .right-container {
      text-align: center;
    }
    .footer-logo {
      max-width: 90px;
    }
  }
}

@media only screen and (max-width: 479px) {
  .banner-container {
    margin-top: 30px;
    .content-wrapper {
      max-width: 260px;
    }
  }
  .two-columns {
    gap: 30px;
    .column {
      p {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 10px;
      }
    }
  }
 
}
