:root {
    --theme-color: #06f;
    --hover-color: #005ce6;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Poppins", sans-serif;
    list-style: none;
  }
  .logo {
    filter: drop-shadow(5px 5px 5px #4444dd);
  }
  .bg-default {
    background: #4444dd;
  }
  .main-heading {
    text-shadow: 2px 3px 4px white;
  }
  .sub-heading {
    color: white;
    font-weight: 500;
  }
  .navbar {
    background: #4444dd;
  }
  .btn {
    background: #4444dd;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    outline: none;
    height: 40px;
    cursor: pointer;
    outline: none;
    color: white !important;
    text-decoration: none;
    transition: 0.3s all ease;
  }
  .btn:hover,
  .btn:focus,
  .btn:active,
  .btn.active {
    box-shadow: none;
  }
  .btn:hover {
    background: #000 !important;
  }
  .input {
    background-color: transparent;
    border: 2px solid hsl(0, 0%, 90%);
    border-radius: 8px;
    height: 40px;
    font-size: 14px;
    padding: 10px 16px;
    transition: 0.3s all ease;
  }
  .input:focus {
    border-color: #212529;
  }
  .search {
    padding: 50px 0;
  }
  .search .txt h1 {
    font-weight: 600;
  }
  .search .form {
    display: flex;
  }
  .search .form input {
    flex: 5;
  }
  .bottom-ad {
    height: 100px;
    object-fit: cover;
  }