body {
    font-family: 'Lexend Deca', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #0077A4;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.banner {
    display: flex;
    align-items: center;
    background-color: #0077A4;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 44px;
    width: 184px;
}

nav ul {
    list-style-type: none;
    margin-right: 0px;
    padding: 0;
    display: flex;
    left: -10px;
}

nav ul li {
    margin-right: 0px;
    margin-left: 90px;
    font-size: 12px;
    text-align: center;
    align-items: center;
    left: -10px;
    display: flex;
}

nav ul li:first-child {
    margin-left: -10;
    align-items: center;
    display: flex;
}

nav ul li a {
    margin-right: 0px;
    color: white;
    text-decoration: none;
    display: flex;
}

.hamburger-menu {
    display: none;
    color: white;
    cursor: pointer;
}

/* HOMEBANNER */

.container1 {
    position: relative;
    width: 100%;
}

.background-image {
    background-image: url('../img/products.png');
    background-size: cover;
    background-position: center;
    height: 350px; /* Adjust the height as needed */
    color: white; /* Text color */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.background-image p {
    font-size: 40px; /* Adjust the font size as needed */
    font-weight: bold;
    letter-spacing: 2px;
}

.container {
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center-align the text */
}

.container h1 {
    margin-top: 40px;
    font-size: 11px; /* Adjust the font size as needed */
    color: #0077A4;
}

.container p {
    margin-top: 0px;
    font-size: 15px; /* Adjust the font size as needed */
    line-height: 2.0; /* Adjust the line height as needed */
    color: #575757;
    padding: 20px;
}

.products {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
}

.product {
    width: calc(20% - 20px); /* Adjust width as needed */
    height: 300px;
    margin-bottom: 20px;
    text-align: center;
    border: solid 1px #c7c7c7;
    border-radius: 10px;
}

.product img {
    width: 120px;
    height: 120px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
}

.product p {
    margin-top: 10px;
    color: #444444;
    font-size: 16px ;
}

.product button {
    font-family: 'Lexend Deca', sans-serif;
    margin-top: 20px;
    padding: 10px 50px;
    background-color: transparent;
    border: solid 2px #0077A4;
    color: #0077A4;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product button:hover {
    background-color: #0077A4; /* Change button hover color as needed */
    color: #ffffff;
}

/* Add this CSS to your existing styles.css file or link a new one */
.descriptions {
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 100px;
    text-align: center;
}

.description-box {
    flex-grow: 1; /* Equal sizes for all flex items */
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-left: 40px;
    margin-right: 40px;
}

.description-box h2 {
    margin-top: 0;
    color: #0077A4;
}

.description-box p {
    color: #575757;
    line-height: 2.0;
    font-size: 15px;
}


/* FLOATING BUTTONS */

.floating-fb-btn1 {
    position: fixed;
    bottom: 160px;
    right: 16px;
    background-color: #0077a4;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-fb-btn1 img {
    width: 70%;
    height: auto;
}

.floating-fb-btn {
    position: fixed;
    bottom: 100px;
    right: 16px;
    background-color: #0077a4;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-fb-btn img {
    width: 70%;
    height: auto;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #01D20C;
    color: #ffffff;
    width: 42px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  
  .custom-button1 {
    font-family: 'Lexend Deca', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button1:hover {
    background-color: #ffffff;
    color: #0077A4;
}

/* FOOTER */

.footer-content {
    padding: 20px;
    text-align: center;
    color: white;
}

.footer-content img{
    height: 44px;
    width: 184px;
}

.footer-buttons {
    margin-top: 20px;
}


 /*=================== MEDIA QUERIES =================== */

 @media only screen and (min-width: 0px) and (max-width: 400px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #0077a4;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 5px;
        margin-left: -20px;
        margin-top: 0;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 12px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .descriptions {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 100px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .description-box h2 {
        margin-top: 0;
        font-size: 18px;
    }  
    .description-box p {
        font-size: 12px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-left: 40px;
        margin-right: 40px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 400px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 14px;
        margin-bottom: 10px; /* Add margin between text and button */
    }

    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 12px;
        margin-top: 20px;
        padding: 10px 10px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .container p {
        font-size: 12px; /* Adjust the font size as needed */
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 8px 12px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 0px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}

 @media only screen and (min-width: 401px) and (max-width: 500px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #0077a4;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0px;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        opacity: 1;
        max-height: 80px;
        transition: max-height 0.3s ease;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 12px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .descriptions {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 100px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .description-box h2 {
        margin-top: 0;
        font-size: 18px;
    }  
    .description-box p {
        font-size: 14px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-left: 40px;
        margin-right: 40px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 400px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 16px;
        margin-bottom: 10px; /* Add margin between text and button */
    }

    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 14px;
        margin-top: 20px;
        padding: 10px 10px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .container p {
        font-size: 13px; /* Adjust the font size as needed */
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 10px 25px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
 }

@media only screen and (min-width: 501px) and (max-width: 600px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #0077a4;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 14px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .descriptions {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 100px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .description-box h2 {
        margin-top: 0;
        font-size: 18px;
    }  
    .description-box p {
        font-size: 14px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-left: 40px;
        margin-right: 40px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 400px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        margin-right: 0px;
        margin-left: 0px;
        justify-content: center ;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 16px;
        margin-bottom: 10px; /* Add margin between text and button */
    }
    .container p {
        font-size: 14px; /* Adjust the font size as needed */
    }
    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 14px;
        margin-top: 20px;
        padding: 10px 10px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 25px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
 }

 @media only screen and (min-width: 601px) and  (max-width: 700px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #0077a4;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 14px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .descriptions {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 100px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .description-box h2 {
        margin-top: 0;
        font-size: 20px;
    }  
    .description-box p {
        font-size: 16px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-left: 40px;
        margin-right: 40px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 400px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 16px;
        margin-bottom: 10px; /* Add margin between text and button */
    }

    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 14px;
        margin-top: 20px;
        padding: 10px 10px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 40px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
 }

 @media only screen and (min-width: 701px) and  (max-width: 800px) {

    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #0077a4;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 16px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .descriptions {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 100px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .description-box h2 {
        margin-top: 0;
        font-size: 20px;
    }  
    .description-box p {
        font-size: 16px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-left: 40px;
        margin-right: 40px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 130px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        display: flex;
        justify-content: space-between;
        margin-left: 30px;
        margin-right: 30px;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 13px;
        margin-bottom: 10px; /* Add margin between text and button */
    }

    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
        margin-top: 20px;
        padding: 7px 10px;
        margin-left: 14px;
        margin-right: 14px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 40px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
 }

 @media only screen and (min-width: 801px) and  (max-width: 900px) {

    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    } 
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        list-style-type: none;
        margin-right: 0px;
        padding: 0;
        display: flex;
        left: -10px;
    }
    
    nav ul li {
        margin-right: 0px;
        margin-left: 90px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }
    
    nav ul li:first-child {
        margin-left: -10;
        align-items: center;
        display: flex;
    }
    
    nav ul li a {
        margin-right: 0px;
        color: white;
        text-decoration: none;
        display: flex;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .descriptions {
        flex-direction: column;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 100px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .description-box h2 {
        margin-top: 0;
        font-size: 20px;
    }  
    .description-box p {
        font-size: 16px;
    }
    .description-box {
        flex-grow: 1; /* Equal sizes for all flex items */
        padding: 20px;
        border-radius: 5px;
        box-sizing: border-box;
        margin-left: 40px;
        margin-right: 40px;
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 40px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 130px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        display: flex;
        justify-content: space-between;
        margin-left: 30px;
        margin-right: 30px;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 13px;
        margin-bottom: 10px; /* Add margin between text and button */
    }

    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
        margin-top: 20px;
        padding: 7px 10px;
        margin-left: 14px;
        margin-right: 14px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
 }

@media only screen and (min-width: 901px) and  (max-width: 1100px) {
    nav ul li a {
        color: white;
        margin-left: 30px;
        text-decoration: none;
    }
    .custom-button1 {
        display: inline-block;
    }
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 170px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        display: flex;
        justify-content: space-between;
        margin-left: 30px;
        margin-right: 30px;
    }
    .product img {
        width: 100%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 0px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 13px;
        margin-bottom: 10px; /* Add margin between text and button */
    }

    .product button {
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
        margin-top: 20px;
        padding: 7px 10px;
        margin-left: 14px;
        margin-right: 14px;
        margin-top: 10px;
        margin-bottom: 30px;
        background-color: transparent;
        border: solid 2px #0077A4;
        color: #0077A4;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}

@media only screen and (max-width: 800px) {
    nav ul li a {
        color: white;
        margin-left: 40px;
        text-decoration: none;
    }
    .content {
        height: 300px;
    }
}