﻿/* --- NAVIGATION BAR --- */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: #003b95;
    padding: 18px 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.logos {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-icon {
    width: 22px;
    height: auto;
}
    .logos img {
        height: 65px;
        max-width: 100%;
        object-fit: contain;
    }
.color-white {
    color: black !important;
    font-weight: bold
}
.closeBtn{
    display:none
}
.color_red a {
    color: #00a85a;
    font-size: 35px;
    font-family: Calibri, sans-serif;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 30px;
    transition: background 0.3s, transform 0.2s;
    opacity: 0.9;
}

    .nav-item i {
        font-size: 18px;
    }

    .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.15);
        opacity: 1;
        transform: translateY(-2px);
    }

    .nav-item.active {
        background-color: #1a4eb0;
        opacity: 1;
    }
.btn-primary {
    background-color: #003b95;
    color: #ffffff;
    border: none; /* optional */
}

    .btn-primary:hover {
        background-color: #002d73; /* slightly darker shade */
        color: #ffffff; /* keep text white */
    }
/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 60px 15px;
    background: #ffffff;
}
.daterangepicker {
    z-index: 99999 !important;
}
.hero-text h1 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: black;
    margin-bottom: 35px;
}

/* --- SEARCH BOX --- */
.search-box {
    background-color: #febb02;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    flex-wrap: wrap;
    padding: 15px;
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.input-group {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    background: #fff;
    border: 2px solid #febb02; /* yellow outline (like Booking.com) */
    border-radius: 8px;
    padding: 12px 14px;
    width: 350px;
    box-sizing: border-box;
}

    .input-group i {
        font-size: 18px;
        color: #333;
        margin-right: 10px;
        flex-shrink: 0; /* Prevent icon from shrinking */
    }

    .input-group input {
        flex: 1; /* Fill remaining space */
        border: none;
        outline: none;
        font-size: 15px;
        color: #333;
    }

        .input-group input::placeholder {
            color: #999;
        }


.dropdown-icon {
    margin-left: auto;
    color: #666;
}

.search-btn {
    background-color: #0071c2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    min-width: 120px;
    font-weight: bold;
}

    .search-btn:hover {
        background-color: #005fa3;
    }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .nav {
        gap: 15px;
        padding: 10px;
    }

    .nav-item {
        font-size: 14px;
        padding: 6px 10px;
    }

        .nav-item i {
            font-size: 16px;
        }

    .hero-text h1 {
        font-size: 28px;
    }

    .search-box {
        flex-direction: column;
    }

    .input-group {
        width: 100%;
    }

    .search-btn {
        width: 100%;
    }
}

.header {
  background: #003580;
}

.header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.header .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header .nav-item i,
.header .nav-item img {
  width: 24px;
  height: 24px;
  font-size: 18px;
  object-fit: contain;
  display: inline-block;
  filter: brightness(0) invert(1); /* make image white like icon */
}

.header .nav-item span {
  color: #fff;
}

.header .nav-item:hover,
.header .nav-item.active {
  color: #ffd700;
}

.header .nav-item:hover img,
.header .nav-item.active img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(600%) hue-rotate(10deg);
}
.minister_wrapper {
    position: relative;
    background-color: #003b95;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
}

/* Keep consistent height so text doesn’t resize the box */
#ministerCarousel .carousel-inner {
    width: 100%;
    text-align: center;
    min-height: 280px; /* prevents jump */
    display: flex;
    align-items: center;
    position: relative;
}

/* Smooth fade transition */
.carousel.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
}

    .carousel.carousel-fade .carousel-item.active {
        opacity: 1;
    }

/* Keep item content centered */
#ministerCarousel .carousel-item {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    /* Image styling */
    #ministerCarousel .carousel-item img {
        width: 250px; /* increased from 130px */
        height: 250px; /* increased from 130px */
        border-radius: 5px;
        border: 3px solid #fff;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
        object-fit: cover;
    }

    /* Text styling (fixed height so layout doesn’t shift) */
    #ministerCarousel .carousel-item h6 {
        color: #ffd700;
        margin-top: 20px;
        font-size: 20px;
        font-weight: 600;
        min-height: 40px;
    }

    #ministerCarousel .carousel-item p {
        margin: 5px 0;
        font-size: 18px;
        color: #fff;
        min-height: 36px;
    }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    background: #fff;
    border-radius: 50%;
    color: #003580;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 5;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        background: #ffd700;
        color: #003580;
    }

.custom-prev {
    left: -33px !important;
}

.custom-next {
    right: -29px !important;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .custom-prev {
        left: -18px !important;
    }

    .custom-next {
        right: -15px !important;
    }
}

@media (max-width: 576px) {
    .minister_wrapper {
        max-width: 100%;
        padding: 40px 20px;
        display:none;
    }
    .mobile-view {
        display: block;
    }
    .custom-prev {
        left: 5px !important;
    }

    .custom-next {
        right: 5px !important;
    }
}
/* Mobile Layout */
@media (max-width: 576px) {
    .nav-item span {
        font-size: 12px;
    }
    .logos{
        display:none;
    }
    .desktop-view {
        display: none !important;
    }
    .closeBtn{
        display:block;
    }
    .mobile-view {
        display: block !important;
    }

    .mobile-members-box {
        background: white;
        padding: 10px;
        border-radius: 6px;
        margin-top: 10px;
        position: relative; /* parent container */
        z-index: 5;
    }

    .mm-row {
        display: flex;
        justify-content: space-between;
        text-align: center;
    }

    .mm-col {
        flex: 1;
        border-right: 2px solid #ddd;
    }

        .mm-col:last-child {
            border-right: none;
        }

    .mm-value {
        font-size: 20px;
        font-weight: bold;
    }

    .mobile-search-btn {
        width: 100%;
        background: #007bff;
        color: white;
        padding: 12px;
        border-radius: 6px;
        margin-top: 10px;
    }

    #membersDropdown {
        position: absolute !important;
        top: 100%; /* show BELOW */
        margin-top: 123px; /* small gap */
        left: 0;
        width: 100% !important;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.1);
        z-index: 9999;
    }

        /* Fix rows */
        #membersDropdown .md-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid #e7e7e7;
        }

            #membersDropdown .md-row:last-child {
                border-bottom: 0;
            }

        /* Buttons and text */
        #membersDropdown .md-label {
            font-size: 16px;
        }

        #membersDropdown .md-counter {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        #membersDropdown button {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f4f4f4;
            border: 1px solid #ccc;
        }

        #membersDropdown span {
            font-size: 18px;
            font-weight: 600;
        }
}


.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .destination-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .destination-card:hover img {
        transform: scale(1.05);
    }

.destination-overlay {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

    .destination-overlay img {
        width: 24px;
        height: 16px;
        margin-left: 5px;
    }

.header_middle {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 4px 5px 7px;
}
.govt-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .govt-logo img {
        height: 68px; /* adjust as needed */
        width: auto;
    }
.header_middle_text h1 {
    color: #4d6008;
}

.login_main .btn {
    font-size: 14px;
    padding: 6px 12px;
}

.social_icons {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

    .social_icons:hover {
        color: #e74c3c;
    }

.dropdown-menu a {
    color: #333;
}

    .dropdown-menu a:hover {
        background-color: #f1f1f1;
    }
.deals-section {
    padding: 30px;
    font-family: Arial, sans-serif;
}

    .deals-section h2 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .deals-section p {
        color: #555;
        margin-bottom: 20px;
    }

.deals-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.deal-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1 1 calc(25% - 20px);
    min-width: 250px;
    transition: transform 0.2s;
}

    .deal-card:hover {
        transform: translateY(-5px);
    }

    .deal-card img {
        width: 100%;
        height: 160px; /* fixed container height */
        /*object-fit: cover;*/ /* scales & crops image to fill container */
        object-position: center; /* center crop */
    }

.deal-info {
    padding: 15px;
}

    .deal-info h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 8px 0;
    }

.location {
    color: #777;
    font-size: 14px;
    margin-bottom: 6px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

    .rating .score {
        background-color: #003b95;
        color: #fff;
        padding: 3px 6px;
        border-radius: 4px;
        font-weight: 600;
    }

.tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

    .tag.blue {
        background-color: #0057d9;
    }

    .tag.green {
        background-color: #0f9d58;
    }

.price {
    margin-top: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.new-price {
    color: #d32f2f;
    font-weight: 600;
}

.nights {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .deal-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .deal-card {
        flex: 1 1 100%;
    }
}

/* Main container */
.district-sec {
    position: relative;
    overflow: visible; /* ensure dropdown can extend outside */
    width: 400px;
    z-index: 9999; /* ensures it’s above everything nearby */
}

    /* Bed icon inside input */
    .district-sec i.fa-bed {
        position: absolute;
        left: 14px;
        top: 13px;
        color: #777;
        font-size: 18px;
    }

    /* Input field styling */
    .district-sec input {
        width: 100%;
        padding: 12px 14px 12px 45px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 16px;
        background: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    }

        .district-sec input:focus {
            border-color: #ffb700;
            box-shadow: 0 0 10px rgba(255,183,0,0.4);
            outline: none;
        }

/* Dropdown styling */
.locationdrop {
    display: none;
    position: absolute; /* relative to .district-sec */
    top: 100%; /* just below the input */
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999; /* lower than fixed to avoid unnecessary overlap */
}

/* Animation for dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown section with slight padding */
.dropdown-section {
    max-height: 260px;
    overflow-y: auto;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

    /* Scrollbar styling */
    .dropdown-section::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-section::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 6px;
    }

/* Dropdown item */
.dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f1f1f1;
}

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background-color: #f9f9f9;
    }

    .dropdown-item i.fa-map-marker-alt {
        color: #ffb700;
        margin-right: 12px;
        margin-top: 3px;
        font-size: 18px;
    }

    .dropdown-item span {
        font-size: 15px;
        color: #333;
        font-weight: 500;
        display: block;
    }

    .dropdown-item small {
        color: #888;
        font-size: 13px;
        margin-top: 2px;
        display: block;
    }
.slider_wrapper, .banner_minister_block, .main_banner {
    position: relative;
}
.mobile-view{
    display:none;
}
.members-div {
    position: relative; /* Ensure the dropdown positions relative to this container */
}

.input-group.members-div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width:300px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 11px 10px;
    background: #fff;
    cursor: pointer;
}

    .input-group.members-div input {
        border: none;
        outline: none;
        flex: 1;
        cursor: pointer;
    }

/* Dropdown */
.members-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: none;
    z-index: 99999 !important; /* Highest priority */
}
.marque_block {
    overflow: visible !important;
    z-index: 0 !important;
}
/* Each row */
.md-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 6px;
    border-bottom: 1px solid #f1f1f1;
}

    .md-row:last-child {
        border-bottom: none;
    }

.md-label {
    font-size: 14px;
    color: #333;
    flex: 1 1 auto;
}

.md-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

    .md-counter button {
        width: 30px;
        height: 30px;
        border: 1px solid #d0d0d0;
        border-radius: 6px;
        background: #fff;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .md-counter span {
        min-width: 28px;
        text-align: center;
        font-weight: 600;
    }

#doneBtn {
    margin-top: 10px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    background: #0078ff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

@media (max-width: 420px) {
    .members-dropdown {
        width: 100vw;
        left: -10px;
        right: -10px;
        border-radius: 0.5rem;
    }

    .input-group.members-div {
        width: 100%;
    }
}
.account-dropdown-menu {
    z-index: 2000 !important; /* higher than header/navbars */
}
/* Style for nested dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .account-dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        z-index: 2050 !important;
    }

    /* Optional: hover to open submenu */
    .dropdown-submenu:hover > .account-dropdown-menu {
        display: block;
    }

    /* Arrow for submenu link */
    .dropdown-submenu > a::after {
        content: "";
        font-size: 1.30rem;
        position: relative;
        top: 8px;
        left: 5px;
        transition: transform 0.2s ease;
    }

    /* Optional: rotate arrow when submenu is hovered */
    .dropdown-submenu:hover > a::after {
        transform: rotate(180deg); /* points up */
    }

/* --- GLOBAL FONT SCALING --- */
html {
    font-size: 100%;
}

@media (max-width: 1200px) {
    html {
        font-size: 96%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 93%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 90%;
    }
    #mainNav {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        background: #fff;
    }
        #mainNav a {
            color: #000 !important; /* show text */
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 19px;
        }

        #mainNav img {
            width: 24px;
            height: 24px;
        }
        /* When toggled, show it */
        #mainNav.show {
            display: flex !important;
            background: #003580;
        }
    .header .nav-item:hover, .header .nav-item.active {
        color: #ffd700;
    }
    .fa-bars {
        color: white;
        font-size: 24px;
        cursor:pointer;
    }
    .locationdrop {
        position: absolute; /* relative to .district-sec */
        top: 100% !important;
        left: 0 !important;
        width: 100%;
        z-index: 10; /* lower than desktop fixed */
    }
}

@media (max-width: 576px) {
    html {
        font-size: 87%;
    }
}

@media (max-width: 420px) {
    html {
        font-size: 84%;
    }
}

/* --- NAVBAR --- */
.nav {
    justify-content: center;
    gap: 25px;
}

@media (max-width: 992px) {
    .nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    .nav-item {
        font-size: 14px;
        padding: 6px 10px;
    }

    .color_red a {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .nav-item {
        font-size: 16px;
        padding: 12px 18px;
    }
}

/* --- HERO SECTION --- */
.hero {
    padding: 70px 15px;
}

.hero-text h1 {
    font-size: 42px;
}

.hero-text p {
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

/* --- SEARCH BOX --- */
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 15px;
    border-radius: 8px;
    max-width: 100%;
}

.input-group {
    width: 350px;
}

@media (max-width: 992px) {
    .search-box {
        flex-direction: column;
    }

    .input-group {
        width: 100%;
    }

    .search-btn {
        width: 100%;
    }
}

/* --- DEALS SECTION --- */
.deals-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.deal-card {
    flex: 1 1 calc(25% - 20px);
    max-width: 25%;
}

@media (max-width: 992px) {
    .deal-card {
        flex: 1 1 calc(50% - 20px);
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .deal-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- MINISTER SECTION --- */
.minister_wrapper {
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .minister_wrapper {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .minister_wrapper {
        max-width: 100%;
        padding: 40px 20px;
    }
}

/* --- DESTINATIONS --- */
.destination-card img {
    height: 220px;
}

@media (max-width: 768px) {
    .destination-card img {
        height: 180px;
    }
}

/* --- INPUT FIELDS (district + members) --- */
.district-sec,
.members-div {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 480px) {
    .district-sec,
    .members-div {
        max-width: 100%;
    }
}

/* --- GENERAL LARGE SCREEN IMPROVEMENTS --- */
@media (min-width: 1400px) {
    .hero {
        padding: 90px 15px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .search-box {
        gap: 30px;
    }

    .deal-card img {
        height: 200px;
        /*object-fit: cover;*/ /* scales & crops image to fill container */
        object-position: center; /* center crop */
    }
}

/* --- Base Header Styles --- */
.global-header {
    background: #fff;
    border-bottom: 2px solid #ddd;
    position: relative;
    z-index: 1000;
    padding: 10px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 auto;
}

/* Left section */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}



.header-text {
    flex: 1;
}

    .header-text h1, .header-text h2 {
        margin: 0;
        line-height: 1.2;
    }

        .header-text h1 a {
            color: #00a85a;
            text-decoration: none;
            font-size: 2.4rem;
            font-weight: bold;
        }

        .header-text h2 a {
            color: #333;
            text-decoration: none;
            font-size: 1.1rem;
        }

/* Right section */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 15px;
}

.social-icons {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

    .social-icons a {
        color: #333;
        font-size: 18px;
        transition: color 0.3s ease;
    }

        .social-icons a:hover {
            color: #007bff;
        }

/* --- Responsive --- */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .header-left, .header-right {
        justify-content: center;
        width: 100%;
    }

    .logos {
        justify-content: center;
        flex-wrap: wrap;
    }

        .logos img {
            height: 50px;
        }

    .header-text h1 a {
        font-size: 2.1rem;
    }

    .header-text h2 a {
        font-size: 0.95rem;
    }

    .header-right {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .logos img {
        height: 45px;
    }

    .header-text h1 a {
        font-size: 2rem;
    }

    .header-text h2 a {
        font-size: 0.85rem;
    }

    .btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}
