* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; }
  
  header {
    background-color: #eef0f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    margin-bottom: 1.3em; }
    header img {
      width: 10em;
      height: auto;
      padding: 0.6em 0.8em 0.4em 0.5em; }
    header .dropdown {
      display: inline-block;
      position: relative;
      margin-right: 0.5em;}
      header .dropdown button {
        cursor: pointer;
        font-size: 0.7em;
        background-color: #eef0f7;
        padding: 0.2em 0.8em;
        font-weight: 600;
        border-radius: 0.5em;
        border: 3px solid #1cd283; }
        header .dropdown button span {
          padding: 0 0 0 0.3em; }
      header .dropdown button:hover {
        background-color: #1cd283;
        color: white; }
      header .dropdown .dropdown-content {
        display: none;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
        border: 1px solid black;
        border-radius: 0.2em;
        position: absolute;
       /* width: 140%;*/
        right: 0.4em;
        background-color: white;
        font-weight: 500;
        text-align: center;
        height: 60vh;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        z-index: 11;
      }
        header .dropdown .dropdown-content a {
          text-decoration: none;
          display: block;
          color: black;
          font-size: 1em;
          padding-bottom: 0.2em;
          border-bottom: 2px solid black; }
        header .dropdown .dropdown-content a:hover {
          background-color: #eef0f7;
        }
    header .dropdown:hover .dropdown-content {
      display: block; }
  
  @media (min-width: 400px) {
    header img {
      width: 13em; }
    header .dropdown button {
      font-size: 1em; }
    header .dropdown .dropdown-content a {
      font-size: 1.1em; } }
  main {
    padding-top: 0.7em; }
    main nav ul {
      list-style: none;
      display: flex;
      justify-content: center; }
      main nav ul li a {
        text-decoration: none;
        border: 2px solid black;
        border-radius: 0.5em;
        padding: 0 0.6rem;
        font-size: 1rem;
        color: black;
        font-weight: 700;
        background-color: #dce3ff; }
      main nav ul a:hover {
        background-color: white;
        color: #6378d9; }
    main h1 {
      margin-top: 0.6em;
      text-align: center;
      margin-bottom: 0.2em; }
    main p {
      text-align: center;
      font-size: 1rem;
      margin-bottom: 0.2em; }
    main img {
      width: 6em;
      height: auto;
      display: block;
      margin: auto;
      margin-top: 1.3em;
      margin-bottom: 1.3em; }
    main .img-preview {
      margin: auto;
      max-width: 830px;
      padding: 1.5em 0 1.5em 0;
      gap: 0.5rem;
      grid-auto-columns: 62%;
      grid-auto-flow: column;
      overflow-x: auto;
      overscroll-behavior-inline: contain; }
  
  form {
    display: flex;
    justify-content: center;
    margin: 0.5em 0;
    
    flex-direction: column; 
    align-items: center;
  
    }
    form label {
      cursor: pointer;
      border: 4px solid #6378d9;
      border-radius: 0.8em;
      font-size: 1.3rem;
      padding: 0.2em 1em;
      font-weight: 500;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
    form label:hover {
      background-color: #6378d9;
      color: white; }
  
  .app {
    border: 3px dashed black;
    border-radius: 1em;
    width: 90%;
    max-width: 950px;
    margin: auto;
    margin-bottom: 1em;
    padding: 0.4em;
    background-color: #dce3ff; }
  
  .img-preview-child {
    border-radius: 0.5em;
    border: 1px solid black;
    background: #1d2b35;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; }
    .img-preview-child .close-btn {
      cursor: pointer;
      align-self: flex-end;
      color: white;
      font-size: 0.7em;
      margin: 0.2em;
      border-radius: 50%; }
    .img-preview-child .icon-img {
      position: relative;
      bottom: 0.5em;
      left: 0;
      margin: auto;
      width: 6em; }
    .img-preview-child .progress-bar {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid white;
      height: 1.6em;
      width: 95%;
      border-radius: 0.2em;
      position: relative;
      bottom: 0.2em;
      margin-top: auto; }
      .img-preview-child .progress-bar .progress-bar-fill {
        position: absolute;
        background: #1cd283;
        width: 0%;
        height: 100%; }
      .img-preview-child .progress-bar .progress-bar-text {
        color: white;
        position: absolute;
        text-align: center;
        top: 0.3em;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto; }
  
  .download-btn {
    text-decoration: none;
    list-style: none;
    color: white;
    cursor: pointer; }
  
  .progress-bar-text {
    margin-top: 1em; }
  
  #img-text {
    color: white;
    margin-top: auto; }
  
  .active {
    background-color: white;
    color: #6378d9; }
  
  @media (min-width: 350px) {
    main div nav ul li a {
      font-size: 1.2rem; } }  
  
  @media (min-width: 452px) {
    main div nav ul li a {
      padding: 0 1.7rem; } }
  @media (min-width: 550px) {
    main .img-preview {
      grid-auto-columns: 28%; }
      main .img-preview div {
        height: 150px; }
  
    .app {
      width: 80%; } }
  article section {
    max-width: 900px;
    margin: auto; }
    article section img {
      width: 14em;
      height: auto;
      border: 4px solid grey;
      border-radius: 0.3em; }
    article section h2 {
      text-align: center;
      margin: 0.5em 0.5em 0 0.5em;
      padding-top: 0.5em;
      font-size: 1.8rem; }
    article section h3 {
      text-align: center;
      font-size: 1.45rem;
      margin: 0.5em;
      margin-bottom: 0; }
  
    article section ol, article section ul{
      padding: 0.8em 1em 0.8em 3em;
      font-size: 1.2rem;
      line-height: 1;
    }
    article section li{
      line-height: 1.7;
    }
    
    article section p {
      text-align: start;
      padding: 1em;
      padding-bottom: 0.55em;
      font-size: 1.3rem;
      line-height: 1.7;
      margin: auto; }
      article section p a {
        text-decoration: none;
        color: #bb4a03; }
  
  section:nth-child(even) {
    background: #f8f8f8; }
  
  @media (min-width: 375px) {
    article section img {
      width: 16em; } }
  
  .homepage-div {
    /*margin-top: -5em;*/
    background: #eef0f7;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px; 
    margin-top: -3.3em;
  }
  
    .homepage-div h1 {
      padding-top: 1.5em;
      padding-left: 0.5em;
      padding-right: 0.5em;
      font-size: 2.1rem; }
    .homepage-div span {
      color: #1cd283; }
    .homepage-div img {
      width: 12em;
      height: auto;
      margin-bottom: -0.1em; }
  
  .products {
    width: 90%;
    margin: auto; }
    .products h2 {
      text-align: center;
      padding-top: 0.8em;
      padding-bottom: 0.8em;
      font-size: 1.9rem; }
    .products .products-showcase {
      display: grid;
      gap: 0.2em;
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 1.5em; }
      .products .container {
        border-radius: 0.3em;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        border: 1px solid black;
        background: #eef0f7;
        padding: 0.2em 0.3em 1em 0.3em; }
        .products div div img {
          align-items: flex-start;
          margin: 0.3em 0.3em 0.9em 0.3em; }
        .products div div h3 {
          margin: 0.3em 0.3em 0.5em 0.3em;
          font-size: 1.2em; }
        .products div div p {
          margin: 0.3em;
          text-align: start;
          font-size: 1em;
          line-height: 1.3; }
        .products div a {
          font-weight: 500;
          padding-top: 0.7em;
          font-size: 0.8em;
          text-decoration: none;
          text-align: center;
          background: #1cd283;
          color: white;
          width: 98%;
          height: 2.7em;
          margin: 0.5em auto 0 auto;
          border-radius: 0.3em; }
        .products div a:hover {
          background: #30e697; }
  
          .products-scroll{
            display: grid;
            gap: 0.5rem;
            grid-auto-flow: column;
            overflow-x: auto;
            overscroll-behavior-inline: contain;
            grid-auto-columns: 60%;
        }
  
        .input-code {
          display: flex;
          flex-direction: column;
          margin: 1rem 0 2rem 0; }
          .input-code label {
            margin-left: 1.1rem;
            font-size: 1.1rem; }
        
        .input-textarea {
          margin: 0.5rem 1rem;
          border: 0.5px solid gray;
          border-radius: 0.3rem;
          font-size: 1rem;
          padding: 0.3rem; }
        
        .input-textarea:hover {
          border: 1px solid black; }
        
        .btn-div {
          display: flex; }
        
        .code-btn {
          width: 100%;
          padding: 0.5rem;
          font-size: 1rem;
          margin: 0.3rem 1rem;
          color: white;
          background-color: #6378d9;
          border: 1px solid transparent;
          border-radius: 0.3rem;
          cursor: pointer; }
        
        .code-btn:hover {
          border: 1px solid black; }
  
  @media (min-width: 552px) {
    .products .products-showcase {
      grid-template-columns: repeat(3, 1fr); 
    } 
    .products-scroll{
     grid-auto-columns: 28%;   
    }
  }
  .all-tools{
    border: 1px solid black;
    border-radius: 0.7em;
    width: 90%;
    max-width: 860px;
    margin: auto;
    margin-bottom: 1em;
    padding: 0.4em;
    margin-top: 1.5em;
  }
  .all-tools-header{
    text-align: center;
    margin: 0.2em 0 0.5em 0;
  }
  .all-tools-ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 1rem;
  }
  .all-tools-li{
    margin: 0.7em 0.4em;
  }
  .all-tools-a{
    text-decoration: none;
    border: 1px solid black;
    border-radius: 0.3em;
    font-size: 0.9em;
    margin-bottom: 5rem;
    padding: 0.3em;
    color: black;
    cursor: pointer;
  }
  .all-tools-a:hover{
  background: #eef0f7;
  }
  @media (min-width: 552px) {
    .all-tools-a{
      font-size: 1rem;
    }
  }
  
  @media (min-width: 652px) {
    .all-tools{
      width: 70%;
    }
  }  
  
  footer {
    text-align: center;
    margin-top: 0.3em;
    background: #1d2b35; }
    footer img {
      width: 13em;
      height: auto;
      padding: 1em 0.8em 0.3em 0.8em;
    }
    footer p {
      color: white;
      padding: 0.5em 0.8em 0.3em 0.8em;
      font-size: 1.1em; 
    }
  
  .footer-nav{
    padding-bottom: 0.5em; 
  }
    
  .footer-links{
    padding: 0 1em;
    color: white;
    text-decoration: none;
  }
  .footer-links:hover{
    color: rgb(220, 213, 213);
  }
  
  /* New Styles (For Videos & Audio)*/
  .img-display{
  
    all: revert;
    width: 100%;
    margin: auto;
    background-color: #1d2b35;
    border-radius: 0.7em;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
    margin-top: 1em;
    position: relative;
  
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    
  
  
  
  }
  
  .img-display > img{
    all: revert;
    width: 90%;
   /* height: 25vh;*/
   height: 20vh;
    object-fit: contain;
    border-radius: 0.5em;
    margin: 0.5em;
    /* New styling */
    border: 1px solid white;
    box-sizing: border-box;
    
  }
  
  .img-display > video{
    all: revert;
    width: 100%;
    height: auto; /* Maintain the aspect ratio */
   /* max-width: 640px;  Limit the maximum width if needed */
    object-fit: contain;
    border: 1px solid white;
    border-radius: 0.5em;
    z-index: 3;
  }
  
  .img-display > img:hover{
    border: 1px solid rgb(214, 211, 211);
    /*border: 0.1px solid white;
    box-sizing: border-box;*/
  }
  /*@media (min-width: 900px) {
    .img-display > img{
      height: 40vh; } }*/
  
  /*.img-img{
    all: revert;
    margin: 0.5rem;
    border: 1px solid red;
    width: 80%;
    height: 25vh;
  }
  
  .img-img > img{
    border: 1px solid green;
  }*/
  
  iframe{
    border: 1px solid white;
    box-sizing: border-box;
  }
  
  iframe:hover{
    border: 1px solid rgb(214, 211, 211);
  }
  
  
  .img-name{
    color: white;
    align-self: flex-start;
    align-items: start;
    margin-left: 10%;
    font-size: 0.96rem; 
    text-overflow: ellipsis; 
    overflow: hidden; 
    width: 85%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .img-display p{
    color: white;
    align-self: flex-start;
    margin-left: 10%;
  
    
  }
  
  .img-size{
    font-size: 1.2rem;
    
    text-overflow: ellipsis; 
    overflow: hidden; 
    width: 85%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
         
  }
  
  .img-size span{
    background-color: #17b06e; 
    border-radius: 0.2em; 
    padding: 0 0.3em;
  }
  
  
  .img-display > a{
    border: 1px solid white;
    color: white;
    width: 82%;
    margin: auto;
    text-align: center;
    text-decoration: none;
    margin: 0.5em 1em;
    border-radius: 0.2em;
    background-color: white;
    color: #1d2b35;
    font-size: 1.2rem;
  }
  
  .img-display > a:hover{
    background-color: #dddee1;
  }
  
  .strike-through{
    text-decoration: line-through;
    margin-right: 0.2em;
    color: gray;
  }
  
  .close{
    color: white;
    font-size: 0.9rem;
    background-color: rgb(255,0,0);
    padding: 0.2em 0.5em;
    border-radius: 0.5em;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    z-index: 10;
  }
  
  .close:hover{
    background-color: rgb(180, 44, 44);
  }
  
  .img-preview2{
    width: 100%;
    margin: auto;
    display: grid;
    grid-auto-flow: column;
   /* grid-auto-columns: 40, 75%;*/
    grid-auto-columns: 85%;
    overflow-x: auto;
    gap: 0.5rem;
  }
  
  @media (min-width: 500px) {
    .img-preview2{
      grid-auto-columns: 40%;
     }}
  
  @media (min-width: 700px) {
    .img-preview2{
      grid-auto-columns: 40%; }}
  
  @media (min-width: 850px) {
    .img-preview2{
      grid-auto-columns: 40%; }}
  
      @media (min-width: 900px) {
        .img-preview2{
          grid-auto-columns: 40%; }}
  
  @media (min-width: 1000px) {
    .img-preview2{
      grid-auto-columns: 40%;
     }}
  
  @media (min-width: 1200px) {
    .img-preview2{
      grid-auto-columns: 40%; }}
  
  .app2 {
    border: 3px dashed black;
   /*border: 3px dashed #6378d9;*/
    border-radius: 1em;
    width: 96%;
    max-width: 950px;
    margin: auto;
    margin-bottom: 1em;
    padding: 0.4em;
    background-color: #dce3ff;}
  
    @media (min-width: 600px) {
      .app2 {
        width: 80%; } }
  
    @media (min-width: 900px) {
      .app2 {
        width: 65%; } }
  
        @media (min-width: 900px) {
          .app2-article {
            width: 65%;
        margin: auto; } }
  
  /*cursor: pointer;
      align-self: flex-end;
      color: white;
      font-size: 0.7em;
      margin: 0.2em;
      border-radius: 50%;
      
       margin: auto;
      max-width: 830px;
      padding: 1.5em 0 1.5em 0;
      gap: 0.5rem;
      grid-auto-columns: 62%;
      grid-auto-flow: column;
      overflow-x: auto;
      overscroll-behavior-inline: contain; }
      */
  
  
      progress {
        width: 100%;  /*previously was 82%*/
        height: 26px;
        border: 1px solid white;
        border-radius: 0.2em;
        overflow: hidden;
        margin: auto;
    }
  
    /* Style the progress value (fill) with a green color */
    progress::-webkit-progress-value {
        background-color: #17b06e;
    }
  
    /* Style the progress text inside the progress bar */
    progress::-webkit-progress-bar {
        background-color: #f1f1f1;
    }
  
    #output-video{
      width: 90%;
      height: 25vh;
      margin: 0.5rem 0;
  }
  
  #output-audio{
    width: 95%;
    height: 10vh;
    margin: 0.5rem 0;
  }
  
  .progress-div{
    width: 82%; 
    margin: auto; 
    position: relative;
    margin: 0.5em 1em;
  
  }
  .progress-div-text{
    position: absolute; 
    top: 15%; 
    left: 0%; 
    color: white;
    z-index: 2;
  }
  
  .hidden-element{
    font-size: 0rem; 
    opacity: 0; 
    margin: 0; 
    padding: 0; 
    overflow: hidden; 
    height: 0; 
    line-height: 0;
    
  }
  
  .solid-border{
    border: 3px solid rgb(30, 29, 29);
  }
  
  @media (min-width: 900px) {
    .app2-all-tools{
      width: 65%;
    }
  }
  
  /* New Styling (Also add z-index=2 to <p>Compressing...</p>) */
  
  .progress-bar-new-indeterminate {
    height: 4px;
    background-color: rgba(5, 114, 206, 0.2);
    width: 100%;
    overflow: hidden;
    width: 100%;
    height: 26px;
    border: 1px solid white;
    border-radius: 0.2em;
    margin: auto;
  }
  
  .progress-bar-value-new-indeterminate {
    width: 100%;
    height: 100%;
   /* background-color: rgb(5, 114, 206);*/
    background-color: #17b06e;
    animation: indeterminateAnimation 1s infinite linear;
    transform-origin: 0% 50%;
  }
  
  .progress-bar-value-determinate{
      width: 45%;
      height: 100%;
      background-color: #17b06e;
      transition: width 0.5s ease;
  }
  
  @keyframes indeterminateAnimation {
    0% {
      transform:  translateX(0) scaleX(0);
    }
    40% {
      transform:  translateX(0) scaleX(0.4);
    }
    100% {
      transform:  translateX(100%) scaleX(0.5);
    }
  }
  
  
  /* Styling for input type range */
  
  input[type="range"] {
    -webkit-appearance: none; /* Remove default styles on WebKit browsers */
    -moz-appearance: none; /* Remove default styles on Mozilla browsers */
    appearance: none; /* Remove default styles on other browsers */
  
    width: 55%; /* Full-width */
    height: 10px; /* Set a fixed height */
    background: #d3d3d3; /* Gray background */
    border-radius: 5px; /* Rounded corners */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (optional) */
    transition: opacity 0.2s;
    align-items: center;
    border: 1px solid #ffffff;
  
  
  }
  
  input[type="range"]:hover {
    opacity: 1; /* Fully visible on hover */
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Remove default styles on WebKit browsers */
    appearance: none; /* Remove default styles on other browsers */
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    background: #4CAF50; /* Green handle color */
    border: 2px solid #ffffff; /* White border around the handle */
    border-radius: 50%; /* Round the slider handle */
    cursor: pointer; /* Cursor on hover */
  }
  
  input[type="range"]::-webkit-slider-thumb:hover {
    background: #45a049; /* Darker green on hover */
  }
  
    .advanced-setting{
      border: 2px solid #b6b0b0;
      border-radius: 0.3em;
      background: #f8f8f8;
      width: 93%;
      margin: auto;
      max-width: 950px;
      font-size: 1.2rem;
      text-align: center;
      padding: 0.5em 0;
    }
  
    @media (min-width: 600px) {
      .advanced-setting {
        width: 80%; 
      } }
    
    @media (min-width: 900px) {
      .advanced-setting {
        width: 65%; 
      } 
    }
  
    .advanced-setting-option label{
      font-size: 1rem;
    }
    
    .advanced-setting-input{
      display: flex;
      justify-content: space-between;
      width: 80%;
      margin: auto;
      margin-top: 0.5rem;
    
      
    }
    
    @media (min-width: 500px) {
      .advanced-setting-option {
        display: flex;
        justify-content: space-around;
        align-items: center;
      }
    
      .advanced-setting-input{
        display: flex;
        justify-content: space-around;
      }
    
    }
    
    .advanced-setting-input p{
      border: 1px solid black;
      padding: 0.2rem 1.2rem;
      border-radius: 0.2rem;
    }
    
    .advanced-setting-input input{
      margin-top: 0.4rem;
    }
    
    .advanced-setting-input-size{
      width: 90%;
      margin: auto;
      margin-top: 0.4rem;
      display: flex;
      justify-content: center;
      margin-left: 0rem;
    }
  
  /* Styling for Header Navigation*/
  
  .display-logo{
    color: black;
    text-decoration: none;
    font-size: 1.1em;
  }
  
  .header-top-nav ul li .drop-menu{
    position: absolute;
    background: #242526;
    top: calc(130%);
    right: 0;
    width: 150px;
    width: 25vw;
    display: flex;
    flex-direction: column;
    border-radius: 0.3em;
    justify-content: flex-start;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    max-height: 70vh;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    background-color: #f9f9f9;
    z-index: 11;
  }
  
  .header-top-nav ul li .lang-btn + .drop-menu{
    width: 150px;
  }
  .header-top-nav ul li .lang-btn + .drop-menu li a{
    padding: 0.1em 0 0.1em 1em;
  }
  
  .header-top-nav ul li:hover ul{
    transition: all 0.3s ease;
    top: calc(100%);
    opacity: 1;
    visibility: visible;
  }
  
  .header-top-nav ul li .drop-menu li {
    width: 100%;
    border-radius: 0.5em;
    padding: 0;
  }
  .header-top-nav ul li .drop-menu li:hover a{
    background: #ddd;
  
  }
  .header-top-nav ul li .drop-menu li a{
    color: black;
    padding: 0 0 0 15px;
    display: block;
    padding: 0.3em 0 0.3em 1em;
  }
  
  .header-top-nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 0.3em;
  }
  .header-top-nav ul li{
    position: relative;
    padding: 0.5em 0em;
  
  }
  .header-top-nav ul li > a, button {
    border: 3px solid transparent;
    padding: 1em;
    font-size: 1.1em;
    text-decoration: none;
    color: black;
    background: none;
    cursor: pointer;
    padding: 0.3em 0.6em;
    border-radius: 0.3em;
    margin: 0 0.1em;
  }
  .header-top-nav ul li > a:hover, button:hover {
    background: #3A3B3C;
    color: white;  
  }
  .lang-btn{
    border: 3px solid #1cd283;
    border-radius: 0.5em;
  }
  .lang-btn:hover{
    background-color: #1cd283;
  }
  
  #mobile-menu{
    display: none;
  }
  
  @media screen and (min-width: 1024px){
    .header-top-nav ul li .drop-menu{
        width: 20vw;
    }
  }
  
  @media screen and (max-width: 760px){
    #mobile-menu{
        display: block;
    }
    #mobile-menu:hover + .header-top-nav, .header-top-nav:hover{
        width: 250px;
    }
  
    .header-top-nav{
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 0;
        background-color: #111;
        z-index: 12;
        overflow-x: hidden;
        padding-top: 60px;
        transition: 0.5s;
    }
  
    .header-top-nav ul{
        flex-direction: column;
        align-items: flex-start;
    }
  
    .header-top-nav ul li > a, button {
        color: #818181;
        margin: 0;
        font-size: 1.3em;
        border: none;
        margin: 0;
        padding: 18px 8px 18px 22px;
        padding: 0 8px 0 22px;
    }
    .header-top-nav ul li > button {
        padding: 0px 8px 0 22px;
    }
    .header-top-nav ul li > a:hover, button:hover {
        background: none;
        color: white;
    }
  
    .lang-btn{
        border: none;
    }
    .lang-btn:hover{
        background: none;
    }
  
    .header-top-nav ul li .drop-menu{
        z-index: 12;
        top: calc(70%);
        left: calc(10%);
        width: 190px;
        font-size: 0.8rem;
        border-radius: 0.4em;
        background: #242526;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        max-height: 70vh;
    }
    .header-top-nav ul li:hover .drop-menu{
        top: calc(100%);
    }
    .header-top-nav ul li .drop-menu li {
        border-radius: 0;
        padding: 0;
    }
  
    .header-top-nav ul li .drop-menu li a{
        color: #818181;
        display: block;
        padding: 0.5em 0 0.5em 1em;
    }
  
    .header-top-nav ul li .lang-btn + .drop-menu li a{
        padding: 0.4em 0 0.4em 1em;
    }
    .header-top-nav ul li .drop-menu li:hover a{
        background: #3A3B3C;
        color: white;
    }
  }
  
  #mobile-menu{
    margin-right: 1.5rem;
    width: 1.3rem;
  
  }
  #mobile-menu path {
    fill: black;
  }
  
  #caret{
    width: 0.5rem;
    height: auto;
    fill: currentColor;
    margin-left: 0.05em;
  }
  
  /* Styles For Ads */
  main{
    position: relative;
    
  }
  
  .side-rail-container{
    position: absolute;
    height: 99%;
    width: 17%;
    top: 0.8rem;
    left: 0.1rem;
  
    display: none;
    justify-content: center;
  }
  .side-rail-container-right{
    left: auto;
    right: 0.1rem;
  }
  
  .sticky-ad{
    /*width: 160px;
    height: 600px;
    background-color: #3A3B3C;*/
  
    position: sticky;
    top: 1rem;
   
  }
  
  .sticky-sidebar-ad{
    position: sticky;
    top: 1rem;
    max-height: 620px;
  }
  
  .display-ad-container{
    /*border: 1px solid black;*/
    
    width: 90%;
    height: 281px;
    margin: auto;
    margin-bottom: 0.4rem;
    /*margin-top: 3rem;*/
    margin-top: 2rem;
  
    
    display: flex;
    justify-content: center;
    background-color: #eef0f7;
    overflow: auto;
  
    /*overflow: auto; - This will not allow the leaderboard ad 728x90 to stick */
  }
  
  @media (min-width: 900px) {
    .side-rail-container {
        display: flex;
    }
  
    .display-ad-container {
        width: 65%; 
    }
  }