/* General Card Styling */
.bg-im {
    background-image: url("../images/background-image.png");
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    background-repeat: no-repeat;
}
.card-horizontal {
    display: flex; /* Arrange content horizontally */
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
    border-radius: 10px; /* Optional: Rounded corners for the card */
    overflow: hidden; /* Ensure content stays within card bounds */
}

.card-horizontal__image {
    flex: 1;
    min-width: 200px; /* Ensure image maintains a minimum width */
}

.card-horizontal__content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.objectFit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.btn-gr {
    display: flex; /* Arrange buttons horizontally */
    justify-content: center; /* Center the buttons */
    gap: 10px; /* Add spacing between buttons */
}

.btn-gr a {
    flex: 1; /* Equal width for each button */
    max-width: 150px; /* Fixed width for buttons */
    padding: 15px; /* Padding inside buttons */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    background-color: #2d5437; /* Background color */
    color: white; /* Text color */
    border-radius: 5px; /* Rounded corners */
}

.btn-gr a:hover {
    background-color: #FFD200; /* Background color */
    color: #2d5437; /* Text color */
}
.desk-logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
/* Hide the logo by default */
.logo {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}
.bg-light-green {
    background-color: #c7ccc6b8 !important;
}
.shadow-lga {
    box-shadow: rgba(8, 73, 21, 0.392) 0px 7px 29px 0px;
}
.desk-logo img {
    height: 130px !important;
    width: auto !important;
    margin-top: -10% !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-horizontal {
        flex-direction: column; /* Stack image and content vertically */
    }
    .card-horizontal__image {
        display: none; /* Hide the image on mobile */
    }
    .logo {
        display: block; /* Show the logo on mobile */
    }
    .btn-gr {
        flex-direction: column; /* Stack buttons vertically */
    }
    .btn-gr a {
        max-width: 100%; /* Full-width buttons on mobile */
    }
    .desk-logo {
        display: none !important;
    }
}
@media (min-width: 820px) and (max-width: 820px) {
    /*
      Device = Low Resolution Tablets, Mobiles (Landscape)
      Screen = i481px to 767px
    */
  }
