.landing_header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 15px 25px 15px;
    position: relative;
    z-index: 99;
    transition: 0.3s;
    width: 100%;
    background-image: linear-gradient(to left, var(--primary), var(--dark-bkgd)), url(./navbar6_bkgd.svg);
    background-size: cover;
    height: 100px;
    max-width: unset;
}



.landing_header .header_bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.landing_header .site_logo_container {
    transform: unset;
    margin-bottom: 0px;
}

.landing_header .custom-logo-link img {
    max-width: 150px;
}

.landing_header .landing_page_title {
    color: var(--light-text);
    font-size: 32px;
    font-weight: 600;
}

.landing p {
    font-size: 22px;
    max-width: 760px;
}

.landing h3 {
    font-size: 32px;
    color: var(--secondary);
}

.landing_header .phone_number img {
    width: 32px;
    margin-right: 15px;
}

.landing_header .phone_number {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--light-text);
    font-size: 30px;
    
}


@media (max-width: 1490px)
{
    .landing_header .phone_number {
    
        font-size: 20px;
        
    }
    
}

@media (max-width: 992px)
{
    

    .landing_header .landing_page_title {
        font-size: 24px;
    }

    .landing_header .header_column {
        width: unset;
        flex-wrap: nowrap;
    }

}

@media (max-width: 768px)
{
    .landing_header .header_bar {
        flex-wrap: nowrap;
        align-items: center;
        
    }

        .landing_page_title {
        display: none;
    }


    .landing_header .custom-logo {
        width: 120px;
    }

    .landing_header .site_logo_container {
        width: unset;
        margin-right: 25px;
        min-width: unset;
    }

    .landing_header .header_column {
        margin-top: 0px;
    }


}

@media (max-width: 510px)
{
 

    .landing_header .phone_number img {
        display: none;
    }

}

@media (max-width: 375px) {
    .landing_header .custom-logo-link, .landing_header .custom-logo {
        max-width: 75px !important;
    }
    

}