* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}


body,
html {
    overflow-x: hidden;
}
.header_navbar {
    height: 65%;
}
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2.3%;    
}
.navbar_logo_about {
    margin-top: 1.76%;      
    margin-left: 4%;
}

.nav {
    margin-top: 3.7%;
}

.navbar_list_about {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    text-decoration: none;
    gap: 50px;
}
.navbar_list_about > li {
    padding: 0px 0px 0px 0px;    
}
.navbar_list_about > li > a {
    text-decoration: none;
    color: black;
    font-size: 16px !important;   
}
.navbar_btn {
    margin-top: 3.9%;
    width: 10%;
}

.navbar_btn > a {
    text-decoration: none;
    background-color: #0040C1;
    border-radius: 17px;   
    color: white;
    padding: 5px 25px;
}
.navbar_btn > a:hover {
    background-color: black;
}
.menu{
    display: none;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}
#scrollToTop {
    display: none !important;
}
@media only screen and (min-width:320px) and (max-width:479px) {
    .navbar_logo_about > img {
        margin-top: 7%;
    }

    .navbar_list_about {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        width: auto;
        border-radius: 5px;
        padding: 5px;
        z-index: 10;
        gap: 30px;
    }

    .navbar_list_about.active {
        display: flex;
    }

    .navbar_btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
        display:block;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        cursor: pointer;
        margin-top: 8%;
        margin-right: 5%;
        z-index: 1100;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active .bar {
        background-color: white; 
    }
      .menu-toggle .bar {
        width: 100%;
        height: 4px;
        background-color: #333;
        border-radius: 2px;
        margin: 7px auto;
        transition: all 0.3s ease;
      }
      .menu-toggle .bar:nth-child(1) {
        width: 40px;
       }
       .menu-toggle .bar:nth-child(2) {
         width: 20px;
         margin: auto;
       }
       .menu-toggle .bar:nth-child(3) {
         width: 40px;
       }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}
#scrollToTop {
    display: block !important;
    position: fixed;
    height: 60px;
    width: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #366CCC;
    /* opacity: 0.6; */
    color: white; 
    border: none;
    border-radius: 80%; 
    padding: 4px 10px;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* transition: all 0.3s ease; */
}
#scrollToTop > ion-icon {
    height: 50px;
    width: 30px;
}
}
@media only screen and (min-width:480px) and (max-width:700px) {
    .navbar_logo_about > img {
        margin-top: 7%;
    }

    .navbar_list_about {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        width: auto;
        border-radius: 5px;
        padding: 5px;
        z-index: 10;
        gap: 30px;
    }

    .navbar_list_about.active {
        display: flex;
    }

    .navbar_btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
        display:block;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        cursor: pointer;
        margin-top: 5%;
        margin-right: 5%;
        z-index: 1100;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active .bar {
        background-color: white; 
    }
      .menu-toggle .bar {
        width: 100%;
        height: 4px;
        background-color: #333;
        border-radius: 2px;
        margin: 7px auto;
        transition: all 0.3s ease;
      }
      .menu-toggle .bar:nth-child(1) {
        width: 40px;
       }
       .menu-toggle .bar:nth-child(2) {
         width: 20px;
         margin: auto;
       }
       .menu-toggle .bar:nth-child(3) {
         width: 40px;
       }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}
    /* .menu-toggle {
        display: flex;
        margin-right: 5%;
        margin-top: 5%;
    }

    .menu-toggle .bar {
        width: 30px;
        background-color: black;
    } */
   
/* .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
} */

/* Close button styling */
/* .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
} */
    #scrollToTop {
        display: block !important;
        position: fixed;
        height: 60px;
        width: 60px;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: #366CCC;
        /* opacity: 0.6; */
        color: white; 
        border: none;
        border-radius: 80%; 
        padding: 4px 10px;
        font-size: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        /* transition: all 0.3s ease; */
    }
    #scrollToTop > ion-icon {
        height: 50px;
        width: 30px;
    }
    /* #scrollToTop {
        display: block !important;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background-color: transparent;
        color: black; 
        border: none;
        border-radius: 50%; 
        padding: 8px 15px;
        font-size: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    } */
}
@media only screen and (min-width:701px) and (max-width:1024px) {
    .navbar_logo_about > img {
        margin-top: 7%;
    }

    .navbar_list_about {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: blue;
        color: white;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        width: auto;
        border-radius: 5px;
        padding: 5px;
        z-index: 10;
        gap: 30px;
    }

    .navbar_list_about.active {
        display: flex;
    }

    .navbar_btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
        display:block;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        cursor: pointer;
        margin-top: 4.5%;
        margin-right: 5%;
        z-index: 1100;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active .bar {
        background-color: white; 
    }
      .menu-toggle .bar {
        width: 100%;
        height: 4px;
        background-color: #333;
        border-radius: 2px;
        margin: 7px auto;
        transition: all 0.3s ease;
      }
      .menu-toggle .bar:nth-child(1) {
       width: 40px;
      }
      .menu-toggle .bar:nth-child(2) {
        width: 20px;
        margin: auto;
      }
      .menu-toggle .bar:nth-child(3) {
        width: 40px;
      }
      .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }
      
      .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
}
    /* .menu-toggle {
        display: flex;
        margin-right: 5%;
        margin-top: 4%;
    }

    .menu-toggle .bar {
        width: 30px;
        background-color: black; */
    /* }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu.open {
    display: flex;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 10px 0;
} */

/* Close button styling */
/* .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
} */
}
/* @media only screen and (min-width:1025px) and (max-width:1200px) {
    .navbar_list_about > li > a {
       font-size: 20px !important;
       }
    } */
@media only screen and (min-width:1025px) and (max-width:1440px) {
    .menu {
     display: none;
    }
    .navbar_list{
        font-size: 16px;
    }
    .navbar_btn {
        font-size: 16px;
    }
    .subscribe-container > p {
        margin-top: 2%;
    }
}

@media only screen and (min-width: 1400px) {
    /* body {
        font-size: 22px;
    } */
    .navbar_logo_about {
        margin-top: 2%;      
    }
    .navbar_logo_about > a > img {
        height: 100%;
        width: 100%;
    }
    .nav {
        margin-top: 3%;
    }
    /* .navbar_list_about > li >a {
        font-size: 22px !important;
    } */
    .navbar_btn {
        margin-top: 3%;
    }
    .menu {
        display: none;
    }
    /* .footer {
        height: 500px;
    }
    .footer_GND>p {
        font-size: 18px;
    }
    .GND_Services > h4 {
       font-size: 19px;
    }
    .GND_Services_p > p{
        font-size: 18px !important;
    }

    .GND_Link > h4 {
        font-size: 17px;
    }
    .GND_Link_p > p {
        font-size: 18px !important;
    }
    .email-input {
        font-size: 18px;
    }
    .input-container {
        width: 600px;
    }
    .subscribe-btn {
        border-radius: 17px;
    }

    .subscribe-container>p {
        font-size: 18px !important;
    }
    .subscribe-container>h4 {
        font-size: 17px;
    }
    .text {
        font-size: 15px;
    } */
}