
    :root {
        --black: #333
    }
    
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: hidden;
      background-color: #faf9f9;

    }

    button {
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    }

    a {
        text-decoration: none;
        color: var(--black);
    }

    header {
      width: 100%;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
    }

    header .logo {
      font-size: 22px;
      font-weight: bold;
      color: rgb(4, 80, 156);
    }

    header .icons {
      display: flex;
      gap: 30px;
    }

    main {
      display: flex;
      justify-content: space-between;
      padding: 100px 80px;
      padding-top: 120px;
      padding-right: 0;
    }

    .mockups {
      width: 45%;
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: center;
      margin-left: 40px;
      position: relative;
      overflow: hidden;
      height: 70vh;
      max-width: 1000px;
      box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
      border-radius: 16px 0 0 16px;

    }

    .mockups img {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      
    }

    .content {
      width: 50%;
      min-width: 350px;
    }

    .content h1 {
      font-size: 70px;
      font-weight: 700;
      line-height: 72px;
      letter-spacing: -1px;
      color: var(--black);
      text-transform: capitalize;
    }

    .content .subtitle {
        font-size: 20px;
        color: #555;
        font-weight: 400;
    }

    .spacer-XS {
        height: 12px;
    }

    .spacer-small {
        height: 20px;
    }

    .spacer-medium {
        height: 30px;
    }

    .spacer-large {
        height: 50px;
    }

    .spacer-XL {
        height: 100px;
    }

    .small-header {
        text-transform: uppercase;
        color: #313131;
        font-size: 14px;
    }



    .CTA-btn a {
      width: 100%;
      padding: 13px 28px;
      border-radius: 0px;
      background: #383838;
      font-size: 18px;
      font-weight: 400;
      color: #f8f9f9;
    }

    .CTA-btn a:hover {
      background: #242424;
      padding: 16px 31px;
    }


    .button-group {
      display: flex;
      gap: 10px;
    }

    .button-group button {
      padding: 10px 18px;
      border: none;
      border-radius: 6px;
      background: #f0f0f0;
      cursor: pointer;
    }

    .section-boxes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      width: 90%;
    }

    .section-item {
      padding: 18px;
      padding-right: 25px;
      border: 1px solid #ffffff;
      box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 0px;
      border-radius: 10px;
      background: #fff;
      display: flex;
      align-items: center;
      gap: 18px;
      cursor: pointer;
        position: relative;
    }

    .section-item:hover {
        border: 1px solid #9b9b9b;
    }

    .section-item .arrow {
        position: absolute;
        right: 10px;
        color: #777;
        opacity: .4;
    }

    .section-item .text {
        font-size: 16px;
        color: var(--black);
    }

    .section-item .icon {
        height: 100%;
        min-height: 60px;
        min-width: 60px;
        display: flex;
        border-radius: 8px;
        justify-content: center;
        align-items: center;
    }

    .section-item .icon i{
        font-size: 20px;
    }

    .icon.blue {
    background: #3480f120;
    }
    .icon i.blue {
    color: #0367fda2;
    }
    .icon.green {
    background: #16a34a36;;
    }
    .icon i.green {
    color: #0a8537;
    }

        .icon.green {
    background: #060606c0;;
    }
    .icon i.green {
    color: #f8f9f9;
    }

    .span2 {
    grid-column: span 2;
    }

    .features-container {
        display: flex;
        width: 80%;
        gap: 8px;
        padding-top: 12px;
        flex-wrap: wrap;
    }

    .features-container .item {
        border: 1px solid #579ff7;
        padding: 6px 12px;
        background-color: #ebf4ff;
        font-size: 14px;
        border-radius: 12px;
        color: #0c3363;
    }

    /* footer {
      margin-top: auto;
      padding: 80px;
      background: #000;
      color: #fff;
      text-align: center;
    } */

    .container-cookies {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
    }

    .text-policy {
    padding: 6rem;
    padding-top: 100px;
    color: #161616;
    width: 100%;
    max-width: 1200px;
}

  .text-policy.about {
    width: 60%;
  }

.text-policy li{
    margin-left: 3rem;
}

.mobile-menu-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #faf9f9;
    display: none;
    z-index: 1000;
    padding: 6rem 2rem;
    flex-direction: column;
}

.mobile-menu-wrapper a{
    color: #222;
    text-decoration: none;
    padding: 1rem 0;
    font-size: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.close-menu {
    position: absolute;
    color: #222;
    top: 20px;
    right: 17px;
    padding: 0;
    font-size: 22px;
}

.mobile-menu-logo {
    position: absolute;
    color: rgb(4, 80, 156);
    top: 20px;
    left: 20px;
    font-weight: 600;
    font-size: 22px;
}

.mobile-menu-wrapper .btn-mobile-nav{
    color: #242627;
    text-decoration: none;
    padding: 16px 0;
    font-size: 20px;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
    text-align: center;
    background-color: #ECE9E6;
}

.mobile-menu-wrapper.show {
    display: flex;
}

.logo-mobile {
    display: none;
}


      header .icons i {
        display: none;
      }

  .area{
    background: #4e54c800;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    height:100vh;
    position: absolute;
    z-index: -1;  
}

.area.about {
  opacity: .2;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(17, 66, 135, 0.516);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

.mobile-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #faf9f9 0%, #4e54c800 20%);
  z-index: 1;
  position: absolute;

}

.about-text {
  font-size: 18px;
  line-height: 26px;
}




@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1300px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}


    @media (max-width: 1300px) {
      .mockups {
        margin-top: 100px;
      }
    }



    @media (max-width: 900px) {
      main {
        flex-direction: column;
        padding: 100px 24px;
        padding-top: 80px;
        row-gap: 60px;
      }

      .content {
        padding-left: 0;
        margin: 0;
      }

      .content h1 {
        font-size: 50px;
        font-weight: 600;
        line-height: 55px}

      .section-boxes {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 1fr 1fr;
      width: 100%;
      }

      .span2 {
        grid-column: span 1;
      }

      .section-item .text {
      font-size: 15px;
    }

      .features-container .item {
        font-size: 12px;
      }

      .features-container {
        width: 100%;
        column-gap: 5px;
    }

      .order1 {
        order: 1;
        display: flex;
        
      }

      .mockups {
        width: 100%;
        margin-top: 0px;
        margin-left: 24px;
      }

      .text-policy {
      padding: 1.5rem;
      padding-top: 80px;}
      
      .text-policy.about {
        width: 100%;
      }

      header .icons a {
        display: none;
      }

      header {
        padding: 20px 15px;
      }

      header .icons i {
        display: block;
        font-size: 22px;
        color: #333333;
        cursor: pointer;
      }

      @keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

  
  }


