:root {
    --insurenow-primary-color: #142BC7;
  }

/* Header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header {
    height: 60px;
    background-color: white;
}

.logo {
    /* width: 0vw; */
    height: 100%; /* Adjust the maximum height of your logo */
    max-width: 45vw;
    min-width: 190px;
    max-height: 10vh;
}

.language-selector {
    margin-left: auto; /* Push language selectors to the right */
}

.language-link{
    color: black;
}


.landing-banner{
    height: 100%;
    width: 100%;
}


.brand-color{
    color: white !important;
    background-color: #142BC7 !important;
}

.brand-secondary-color{
    color: black !important;
    background-color: #fdd105 !important;
    border-radius: 20px;
    border: none;
}

.hover-grey:hover:not(.brand-color) {
    background-color: #bababa !important;
    color: black !important;
}

.brand-color-text{
    color: #142BC7;
}

.wrap-text{
    word-wrap: break-word;
    min-width: 50vw;
    max-width: 50vw;
}

.insurer-logo{
    max-width: 80%;
}

.fs-rem-80{
    font-size: 0.8rem;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Ensure the footer is above other content */
    height: 6rem;
}

.active-lang{
    background-color: #142BC7;
    color: white;
    border-radius: 15px; /* Adjust the border-radius to control the roundness */
    border: none; /* Remove the border */
    outline: none; /* Remove the outline */
    cursor: pointer; /* Add a pointer cursor on hover */
}


/* Landing Page */
.product-selector {
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
    transition: border-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-selected {
    border-color: var(--insurenow-primary-color);
    border-width: 5px !important;
}

.landing-body{
    min-height: 100vh; /* Set the body height to at least the height of the viewport */
    display: flex;
    flex-direction: column;
}
main {
    flex: 1; /* This makes the main content area grow to fill the available space */
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Landing page carousel */
.brands-container {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  .brand {
    display: inline-block;
    /* padding: 20px; */
    margin: 15px;
    width: 25%; /* Adjust as needed */
  }
