header {
    border-bottom: 2px solid #D0D0D0;
}

.header-inside{
    display: grid;
    grid-template-columns: auto auto;
    height: 102px;
    align-content: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2%;
    height: 50px;
}

.logo-img-outer {
    max-height: 40px;
    height: 100%;
    
}

.logo-img {
    background-color: #19234C;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    padding: 15%;
    object-fit: cover;
    object-position: center;


    &:hover{
        cursor: pointer!important;
    }
}

.logo-img-header {
    background-color: #19234C;
}

.logo-name {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    font-weight: 700;
}

.logo-title {
    font-size: 14px;
    font-weight: 400;
}

.logo-name-header, .logo-title-header {
    color: #19234C
}

.header-bar {
    display: grid;
    grid-template-columns: 1.5fr 2fr 0.5fr;
    align-items: center;
    gap: 2%;
    height: 50px;
}

.free-quote-header {
    background-color: #19234C;
    border: 1px solid #19234C;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;

    &:hover{
        cursor: pointer;
        background-color: #fff;
    }

    &:hover a{
        color: #19234C!important;
    }
}

.free-quote-header-desktop {
    height: 60%;
}

.free-quote-header a {
    color: #fff!important;
    font-size: 14px;
    font-weight: 700;
}

.search-box input {
  width: 100%;
  background-image: url("../images/magnifying glass.png")!important;
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 18px;
  padding-left: 32px;
  border: 1px solid #19234C;
  border-radius: 20px;
}

.search-box-desktop {
    width: 100%;
}

.burger-menu {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.burger-menu img {
    height: 20px;
    width: 20px;
}

.header-nav {
    display: none;
    transition: all 0.3s ease;
    flex-direction: column;
    border: 2px solid #19234C;
    border-radius: 4px;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 2%;
    padding-bottom: 2%;
    height: 400px;
    width: 20%;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    z-index: 999;
}

.header-nav.menu-open {
    display: flex;
}

.header-nav a {
    font-size: 24px;
    font-weight: 400;
    color: #19234C;
    width: 100%;
    text-align: center;

    &:hover{
        background-color: #19234C;
        color: #fff!important;
        cursor: pointer;
    }
}
.header-nav .close_menu {
    font-size: 20px;
    color: #000!important;
    position: absolute;
    width: 20px;
    top: 1%;
    right: 5%;

    &:hover{
        cursor: pointer;
        background-color: #fff;
        color: #000 !important;;
    }
}

.social_media_header img {
    width: 42px;
    height: 42px;

    &:hover{
        cursor: pointer;
        background-color: #fff;
    }
} 

.hide-lg-dvs {
    display: none;;
}





