 body {
        user-select: none;
        }
        .adContainer{
            /*margin-left: 0.6rem;*/
            width: 90%;
            height: auto;
            text-align: center;
            margin: 16px auto;
            
        }
         .adContainer2{
            /*margin-left: 0.6rem;*/
            width: 100%;
            max-width: 60%;
             height: auto;
            
        }
        
        *{
            font-family: "Open Sans", "sans-serif";
             font-optical-sizing: auto;
             font-style: normal;
        }
        .bg-teal-700 {
             background-color: #0f766e;
          }
        .top-border {
            border-top: none;
            margin-top: 1rem;
        }
        
        /* Custom Transitions */
        .nav-container {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
        }

        .top-bar {
            height: 4rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-content {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1rem 0;
        }

        .scrolled .top-bar {
            transform: translateY(-100%);
            height: 0;
        }

        .scrolled .nav-content {
            padding: 0.5rem 0;
        }

        #mobile-menu {
            transition: all 0.3s ease-in-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }

        #mobile-menu.open {
            max-height: 1000px;
            opacity: 1;
        }

        .mobile-dropdown-menu {
            max-height: 0;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            overflow: hidden;
        }

        .mobile-dropdown-menu.active {
            max-height: 700px;
            opacity: 1;
        }

        .rotate-180 {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
        }

        .group:hover .dropdown-menu {
            opacity: 1;
            pointer-events: all;
        }
        .icon-link:hover svg {
        fill: red;
        transition: fill 0.3s ease;
         }
         .borderN {
            border: 3px solid white;
            border-radius: 50%;
         }
         
                  .logo span {
        letter-spacing: -0.1em;
        }
        .n {
  color: #16a34a; /* Tailwind's green-600 */
  font-weight: 800;
  font-size: 1.5rem; /* Tailwind's text-2xl */
}

.u {
  color: #eab308; /* Tailwind's yellow-500 */
  font-weight: 800;
  font-size: 1.5rem;
}

.s {
  /* color: #ffffff;  */
  color:rgb(235, 15, 15); /* Tailwind's yellow-400 */
  font-weight: 800;
  font-size: 1.5rem;
}

.siteWrapper {
            max-width: 1530px;
            margin: 0 auto;
        }

    .contentWrapper {
    max-width: 1530px;
    margin: 0 4rem;
    padding: 1.5rem 3rem;
}

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {
    .contentWrapper {
        margin: 0 2rem;
        padding: 1.5rem 2rem;
    }
}

/* Mobile devices (landscape) */
@media (max-width: 768px) {
    .contentWrapper {
        margin: 0 0;
        padding: 1rem 1.5rem;
    }
}

/* Mobile devices (portrait) */
@media (max-width: 480px) {
    .contentWrapper {
        margin: 0 0;
        padding: 0 1rem;
    }
    .brief-text{
        display: none;
    }
   
}

/* Extra small devices */
@media (max-width: 360px) {
    .brief-text{
        display: none;
    }
    .contentWrapper {
        margin: 0 0;
    }
     h1, h3{
        font-size: 18px;
    }
    p{
        font-size: 17px;
    }
    *{
        font-size: 16px;
    }
    .top-bar {
       height: 43px;
    }
    .navbarDown{
       height: 44px;
    }
    .topPadding{
        padding-top: 70px;
    }
    .logo ,form{
        font-size: 12px;
    }
    #menu-btn{
        font-size: 20px;
    }
     .nav-content {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 5px;
    }
    .nav-container.scrolled .nav-content {
        padding: 0;
    }
    .nav-container.scrolled .top-bar {
        transform: translateY(-100%);
        height: 0;
    }
    
}

       footer{
           right: 0;
            max-width: 1530px;
            width: 100%;
            margin: 0 auto;
            font-size: 16px;

        }
        .nav-container {
            position: fixed;
            top: 0;
            max-width: 1530px;
            width: 100%;
            margin: 0 auto;
            left: 50%;
            transform: translateX(-50%);
            z-index: 50;
        }