<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
  }
  .nav-ul {
    margin: 0;
    display: flex;
    align-items: center;
    padding-top: 25px;
    position: absolute;
    left: 200px;
    cursor: pointer;
  }
  .nav-ul :nth-child(3){
    cursor: default;
  }
  .logoo{
    position: absolute;
    display: flex;
    align-items: center;
    left: 80px;
  }
  .lock {
    overflow: hidden;
  }
  .nav-btns{
    padding-top: 25px;
  }
  .nav-btns button:nth-child(1) {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
  }
  .nav-btns button:nth-child(2) {
    outline: none;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px solid black;
    background-color: transparent;
    cursor: pointer;
  }
  a {
    text-decoration: none;
    color: black;
    /* margin: 10px; */
    display: inline;
    margin: 10px;
  }
  .ham {
    display: none;
  }
  .overlay {
    display: none;
  }
  nav {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-around;
  }
  
  h1 {
    font-size: 70px;
    width: 500px;
  }
  
  .hero {
    display: grid;
    grid-template-columns: repeat(2, 450px);
    grid-gap: 80px;
    margin: 0 auto;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
  }
  
  .img-container img {
    width: 100%;
  }
  
  .logos {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .hero button {
    margin-top: 40px;
    border: none;
    outline: none;
    background-color: black;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 15px;
    transition: all 1s;
  }
  .hero button:hover {
    background-color: transparent;
    border: 1px solid black;
    color: grey;
    font-family: bold;
    cursor: pointer;
    transition: all 1s;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    border-radius: 10px;
    padding: 20px;
    display: none;
    position: absolute;
    background-color: #fff;
    width: 120px;
    z-index: 2;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }
  
  .dropdown-content a {
    color: black;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .dropdown-content img {
    margin-right: 10px;
  }
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  @media (max-width: 1200px) {
    .hero {
      max-width: 960px;
      grid-template-columns: repeat(2, 400px);
    }
  }
  @media (max-width: 900px) {
    .nav-btns {
      display: none;
    }
    .nav-ul {
      display: none;
    }
    nav {
      display: flex;
      justify-content: space-between;
    }
    .ham {
      display: block;
    }
    nav {
      padding: 20px;
    }
    .hero {
      margin: 50px;
      max-width: 960px;
      grid-template-columns: repeat(1, max(200px, 350px));
    }
    .img-container {
      grid-row: 1;
    }
    .img-container img {
      content: url(images/image-hero-mobile.png);
      max-width: 100%;
    }
    .hero-text {
      text-align: center;
    }
    .hero button {
      margin: 0;
    }
    h1 {
      font-size: 30px;
      margin: 0;
      width: 100%;
      text-align: center;
    }
    br {
      display: none;
    }
    .overlay {
      display: none;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%;
      top: 0;
      height: 100vh;
    }
    .mobile-nav {
      display: flex;
      align-items: flex-end;
      flex-direction: column;
      position: absolute;
      top: -10px;
      right: 0;
      background-color: #fff;
      padding: 20px;
      display: none;
      width: 180px;
      height: 100%;
      /* text-align: right; */
    }
    .mobile-nav img {
      text-align: right;
    }
    .overlay {
      /* display: ; */
      width: 100%;
      /* height: 100vh; */
      /* background-color: transparent; */
    }
    .show {
      display: flex;
    }
    a {
      margin: 0;
    }
    .mobile-nav-con {
      display: flex;
      flex-direction: column;
      width: 100%;
      /* text-align: left; */
      justify-content: end;
    }
    .mobile-nav-con &gt; * {
      padding: 20px;
    }
  }</pre></body></html>