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/rentals.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;
}

/* 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;
}


.flipping-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow cards to wrap to the next row */
    height: 100vh;
    padding: 20px; /* Add padding to the container */
    margin-bottom: 100px;
}

.card {
    width: 300px;
    height: 400px;
    margin: 10px; /* Add margin between cards */
    perspective: 1000px;
    position: relative;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card:hover .card-inner {
    transform: rotateY(180deg) scale(1);
}

.card-front, .card-rear {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.card-front {
    background-color: #ffffff;
}

.card-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff; /* Adjust text color */
    font-weight: lighter;
    font-size: 14px;
}

.card-rear {
    background-color: #0077A4;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-rear p {
    text-align: center;
    color: #ffffff; /* Adjust text color */
    padding: 40px;
    font-weight: lighter;
    line-height: 2;
    font-size: 14px;
}


/* 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) {
    .flipping-cards {
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Align items to the top */
        flex-wrap: wrap; /* Allow cards to wrap to the next row */
        height: 100vh;
        padding: 0px; /* Add padding to the container */
        margin-bottom: 1150px;
    }
    .card {
        width: 300px;
        height: 200px;
        margin: 10px; /* Add margin between cards */
        perspective: 300px;
        position: relative;
    }
    .card-text {
        font-size: 12px;
    }
    .card-rear p {
        font-size: 12px;
    }
    
    #health-care-life-science {
        content: url('../img/app1.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #transportation-logistics {
        content: url('../img/app2.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #manufacturing {
        content: url('../img/app3.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #distribution-centers {
        content: url('../img/app4.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #retail {
        content: url('../img/app5.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #e-commerce {
        content: url('../img/app6.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #infrastructures {
        content: url('../img/app7.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }
    #government {
        content: url('../img/app8.1.png');
        height: 200px;
        width: 300px;
        overflow: hidden;
    }

    .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;
    }
    .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 */
    }
    .container p {
        font-size: 12px; /* Adjust the font size as needed */
    }
    .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;
    }
    .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;
    }
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
}

 @media only screen and (min-width: 401px) and (max-width: 500px) {
    .container p {
        font-size: 13px;
    }
    .flipping-cards {
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Align items to the top */
        flex-wrap: wrap; /* Allow cards to wrap to the next row */
        height: 100vh;
        padding: 0px; /* Add padding to the container */
        margin-bottom: 1550px;
    }
    .card {
        width: 350px;
        height: 250px;
        margin: 10px; /* Add margin between cards */
        perspective: 300px;
        position: relative;
    }
    .card-text {
        font-size: 13px;
    }
    .card-rear p {
        font-size: 13px;
    }
    
    #health-care-life-science {
        content: url('../img/app1.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #transportation-logistics {
        content: url('../img/app2.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #manufacturing {
        content: url('../img/app3.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #distribution-centers {
        content: url('../img/app4.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #retail {
        content: url('../img/app5.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #e-commerce {
        content: url('../img/app6.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #infrastructures {
        content: url('../img/app7.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #government {
        content: url('../img/app8.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    .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;
    }
    .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 */
    }
    .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: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
 }

@media only screen and (min-width: 501px) and (max-width: 600px) {
    .container p {
        font-size: 14px;
    }
    .flipping-cards {
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Align items to the top */
        flex-wrap: wrap; /* Allow cards to wrap to the next row */
        height: 100vh;
        padding: 0px; /* Add padding to the container */
        margin-bottom: 1550px;
    }
    .card {
        width: 350px;
        height: 250px;
        margin: 10px; /* Add margin between cards */
        perspective: 300px;
        position: relative;
    }
    .card-text {
        font-size: 13px;
    }
    .card-rear p {
        font-size: 13px;
    }
    
    #health-care-life-science {
        content: url('../img/app1.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #transportation-logistics {
        content: url('../img/app2.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #manufacturing {
        content: url('../img/app3.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #distribution-centers {
        content: url('../img/app4.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #retail {
        content: url('../img/app5.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #e-commerce {
        content: url('../img/app6.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #infrastructures {
        content: url('../img/app7.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    #government {
        content: url('../img/app8.1.png');
        height: 250px;
        width: 350px;
        overflow: hidden;
    }
    .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;
    }
    .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 */
    }
    .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: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
 }

 @media only screen and (min-width: 601px) and  (max-width: 700px) {
    .container p {
        font-size: 14px;
    }
    .flipping-cards {
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Align items to the top */
        flex-wrap: wrap; /* Allow cards to wrap to the next row */
        height: 100vh;
        padding: 0px; /* Add padding to the container */
        margin-bottom: 1950px;
    }
    .card {
        width: 450px;
        height: 300px;
        margin: 10px; /* Add margin between cards */
        perspective: 300px;
        position: relative;
    }
    .card-text {
        font-size: 13px;
    }
    .card-rear p {
        font-size: 13px;
    }
    
    #health-care-life-science {
        content: url('../img/app1.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #transportation-logistics {
        content: url('../img/app2.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #manufacturing {
        content: url('../img/app3.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #distribution-centers {
        content: url('../img/app4.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #retail {
        content: url('../img/app5.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #e-commerce {
        content: url('../img/app6.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #infrastructures {
        content: url('../img/app7.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    #government {
        content: url('../img/app8.1.png');
        height: 300px;
        width: 450px;
        overflow: hidden;
    }
    .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;
    }
    .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 */
    }
    .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: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
 }

 @media only screen and (min-width: 701px) and  (max-width: 800px) {
    .container p {
        font-size: 14px;
    }
    .flipping-cards {
        margin-bottom: 1050px;
    }
    .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;
    }
    .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 */
    }
    .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: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
 }

 @media only screen and (min-width: 801px) and  (max-width: 900px) {
    .flipping-cards {
        margin-top: -20px;
        margin-bottom: 1050px;
    }
    .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;
    }
    .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;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }
    .custom-button1:hover {
        background-color: #ffffff;
        color: #0077A4;
    }
 }

@media only screen and (min-width: 901px) and  (max-width: 1020px) {
    .flipping-cards {
        margin-top: -20px;
        margin-bottom: 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;
    }
}

@media only screen and (max-width: 800px) {
    nav ul li a {
        color: white;
        margin-left: 40px;
        text-decoration: none;
    }
    .content {
        height: 300px;
    }
}