/***************************************************************/


/* =========================================================== */


/* /////////////////////// F O O T E R /////////////////////// */


/* =========================================================== */


/***************************************************************/

.section__info {
    display: grid;
    /*   grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem; */
    background: #28a745;
    margin-top: 3rem;
    /* position: fixed;
    bottom: 0; 
    width: 100%;*/
    padding-left: 2rem;
    padding-right: 2rem;
}

.section__infoTwo {
    background: #f2f2f2;
    padding: 20px;
}

.section__info h1 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.section__info p {
    line-height: 1.5;
}


/* .section__infoTwo {
    display: flex;
  }
  
  .section__info-about_link {
    display: inline-block;
  } */

.section__infoTwo .section__info-about_link a,
.section__infoTwo .section__info-about_link p {
    color: var(--main-gray-color);
    margin-left: 5px;
    margin-right: 5px;
    text-wrap: balance;
    font-size: .8rem;
}

.section__info-about,
.section__info-health {
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: white;
}

.section__info-about {
    font-size: 1rem;
    width: 60vw;
}

.section__info-health a {
    color: white;
}

.title-medicare-listings {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .footer-row {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 650px) {
    .footer-row {
        flex-direction: column-reverse;
        align-items: center;
        height: 200px;
    }
    .text-left {
        text-align: center !important;
        align-items: center;
    }
    .text-right {
        text-align: center !important;
        align-items: center;
    }
}


/***************************************************************/


/* =========================================================== */


/* ////////////////////// N A V  B A R /////////////////////// */


/* =========================================================== */


/***************************************************************/

.website-logo,
.website-logo-movil {
    display: flex;
    justify-content: center;
    align-items: center;
    /*   position: fixed;
    top: 1rem;
    left: 1rem;
    width: 50px;
    height: 25px;
    background: var(--main-red-color); 
    transform: translateY(-15px);
    color: white;
    text-align: center;
    z-index: 999;*/
}

.website-logo img,
.website-logo-movil img {
    height: 50px;
}

.website-logo-movil {
    display: none;
}

.topnav {
    overflow: hidden;
    background-color: #28a745;
    position: fixed;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* box-shadow: inset 0 -7px 0 var(--main-red-color); */
    z-index: 999;
    transition: all 0.3s ease-out;
    padding: 0px 15px;
}

.topBar {
    display: none;
}

.topnav a {
    /*float: right;*/
    position: relative;
}

.topnav .callEvent {
    margin-right: 30px;
    text-align: right;
    padding: 10px;
}

.topnav .callEvent a {
    font-size: .7rem;
    text-decoration: none;
    color: white;
}

.topnav .callEvent a big {
    display: block;
}

.topnav .callEvent a:hover {
    opacity: 1;
    color: #e9e9e9;
    text-decoration: underline;
}

.topnav .callEvent a.active {
    opacity: .5;
    color: white;
}

.navBarIcon {
    display: none !important;
}


/* Drop Down */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: fixed;
    width: 100vw;
    top: 49px;
    right: 0;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--main-gray-color);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease-out;
}

.dropdown-content a:hover {
    background-color: var(--main-gray-color);
    color: white;
}

.show {
    display: block;
}

@media screen and (max-width: 800px) {
    .website-logo {
        display: none;
    }
    .topBar {
        display: flex;
        justify-content: center;
        font-weight: normal;
        align-items: center;
        flex-direction: column;
        gap: 5px
    }
    .topBar div {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .topBar a,
    .topBar p {
        font-size: 3vw;
        color: white;
    }
    .website-logo-movil {
        display: block;
    }
    .website-logo-movil img {
        height: 55px !important;
    }
    .topnav .callEvent {
        margin: 0px;
        text-align: right;
        display: none;
    }
    .topnav .callEvent a {
        font-size: .5rem;
    }
    .navBox {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        flex-direction: column;
        padding: 0px 10px;
    }
    .topnav {
        /*height: 3.5rem;*/
        height: 110px;
        padding: 0px 3px;
        background-color: #28a745;
    }
    .navBarIcon {
        display: block !important;
        float: right;
    }
    .navBarIcon:hover {
        background-color: var(--main-blue-color) !important;
    }
    .dropdown-content {
        top: 295px;
        z-index: 999;
    }
    .topnav.responsive {
        display: grid;
        grid-template-rows: 1fr;
        width: 100vw;
        transition: all 0.3s ease-out;
    }
    .topnav.responsive .navBarIcon {
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
    }
    .topnav.responsive a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .topnav.responsive a.active {
        background-color: var(--main-blue-color) !important;
    }
    .topnav.responsive a:first-child {
        padding-top: 4rem;
    }
}