body {
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
      "Helvetica", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
  }
  .container {
    overflow: auto;
  }

  .section h2 {
    font-size: 2.7rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 800px;
    margin: auto;
    text-align: left;
    margin-bottom: 25px;
  }

  .section {
    background-color: #fff;
    padding: 100px 25px;
  }

  .section ul.benefits {
    list-style: none;
    padding: 0;
    color: #666;
    text-align: left;
    display: flex;
    margin: 25px auto;
    max-width: 800px;
    justify-content: center;
  }

  .section ul.benefits li {
    margin: 0px 20px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f7;
    width: 250px;
    height: 250px;
    padding: 0 25px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #868686;
  }

  .section ul.benefits2 {
    padding: 0;
    color: #666;
    text-align: left;
    display: flex;
    margin: 55px auto;
    max-width: 800px;
    justify-content: center;
    background-color: #e6f2ff;
    border-radius: 100px;
  }
  .section ul.benefits2 li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 250px;
    height: 50px;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #06c;
    border-right: 2px solid white;
  }

  .bg-gray.section ul.benefits2 li {
    border-right: 2px solid #f5f5f7;
  }

  .bg-gray.section ul.benefits2 {
    background-color: rgb(220 220 220);
  }

  .section ul.benefits2 li:last-child {
    border-right: none;
  }

  .section ul li img {
    margin-bottom: 10px;
    width: 150px;
    height: 150px;
    background-color: #fff;
  }

  .contact-btn {
    background-color: #05f;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 200px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
  }

  .contact-btn:hover {
    background-color: #005bb5;
    transition-duration: 0.3s;
  }
  .brands {
    color: #a5a5a5;
    margin-top: 45px;
    font-weight: 500;
    letter-spacing: 0.011em;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica,
      Arial, sans-serif;
    color: #86868b;
    line-height: 1.6rem;
    font-size: 1.3rem;
    max-width: 800px;
    margin: auto;
  }

  .brands ul {
    padding: 0;
    list-style: none;
    margin-top: 0px;
    color: #06c;
  }

  .brands ul li {
    display: inline-block;
    margin-right: 10px;
    position: relative;
  }

  .brands ul li::after {
    content: "/";
    margin-left: 15px;
    color: #cfcfcf;
  }

  .brands ul li:last-child::after {
    content: "";
  }

  .bg-gray {
    background-color: #f5f5f7;
  }
  .vip {
    color: #06c;
    font-size: 0.9rem;
    margin-top: 5px;
  }
  .text {
    text-align: left;
    line-height: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.011em;
    font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica,
      Arial, sans-serif;
    color: #86868b;
    font-size: 1.3rem;
    max-width: 800px;
    margin: auto;
  }

  .text strong {
    color: black;
  }

  .overheader {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.11em;
    display: block;
    max-width: 800px;
    margin: auto;
    text-align: left;
    margin-bottom: 5px;
  }

  @media (max-width: 768px) {
    .brands {
      color: #666;
      font-size: 1rem;
      margin-top: 45px;
    }

    .brands ul li {
      display: inline-block;
      margin-right: 5px;
      position: relative;
    }

    .brands ul li::after {
      content: "/";
      margin-left: 7px;
      color: #cfcfcf;
    }

    .brands ul li:last-child::after {
      content: "";
    }
    .text {
      padding: 5px 5px;
    }
  }



  .hamburger-icon {
position: fixed;
top: 20px;
right: 20px;
display: flex;
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 25px;
cursor: pointer;
z-index: 1001;
}

.hamburger-icon div {
width: 100%;
height: 3px;
background-color: #000;
transition: all 0.3s linear;
}

.fullscreen-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 1);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
}

.menu-content {
display: flex;
flex-direction: column;
align-items: center;
}

.menu-content a {
font-size: 2.7rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 500;
    margin-bottom: 25px;
text-decoration: none;
margin: 20px 0;
}


.menu-content a:hover {
  
      color: #05f;
     
  }

.menu-open {
display: flex;
}

.hamburger-icon.active div:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active div:nth-child(2) {
opacity: 0;
}

.hamburger-icon.active div:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}