.header{
    /* background-color:rgba(0, 0, 0, 0.8); */
    /* background-color:rgba(255, 217, 0, 0.87); */
    /*border-bottom:1px solid transparent;
    border-bottom:1px solid rgb(210, 210, 210);*/
    /* border-bottom:1px solid rgb(210, 210, 210); */
    padding-top:0.5rem;
    padding: 1rem;
    position:sticky;
    top:0px;
    z-index:4;
    background-color:rgba(255, 255, 255, 0.9);
    background-color: white;
    transition:border-bottom-color 1s, background-color 0.5s;
    /* box-shadow: 1px 1px 2px rgb(210, 210, 210); */
    /* background-color:#ee954df6; */
}
@media (max-width:425px){
    .header{
        padding: 1rem 1rem;
    }
}
@media (max-width:600px) {
    .header{
        background-color:#ee954df6;
    }
}

/* @media (max-width:1200px){
    .header > div{
        padding:0rem 1rem;
    }
} */
.logo:hover{
    cursor:pointer;
}
.header > div{
    max-width:1300px;
    margin:auto;
    display:grid;
    display:-ms-grid;
    display:-moz-grid;
    grid-template-columns:max-content max-content;
    grid-template-rows:auto;
    align-content:center;
    justify-content: space-between;
}
.logo{
    display:grid;
    display:-ms-grid;
    display:-moz-grid;
    grid-template-columns:max-content max-content;
    grid-template-rows:auto;
    align-content:center;
}
.logo h1{
    display:inline-block;
    font-size:1.5rem;
    padding-left:1rem;
    align-self:center;
}
@media (max-width: 425px){
    .logo h1{
        width:50vw;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        -ms-text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}
@media (max-width:425px){
    .logo h1{
        padding-left:0.5rem;
    }
}

.header .imageContainer{
    width:40px;
    height:40px;
    display:inline-block;
    
}
.header .imageContainer img{
    border: 2px solid gold;
    border: 2px solid rgb(45, 45, 45);
    border-radius: 50%;
    padding:0.2rem;
    box-sizing: border-box;
}
@media (max-width:425px){

    .logo h1{
        font-size:1.5rem;
    }
    .header .imageContainer{
        width:45px;
        height:45px;
    }
}
.header .logo img{
    width:100%;
    height:100%;
}

.header> div > div{
    /* display:inline-block; */
    width:max-content;
}

.header > div > div:last-of-type{
    align-self:center;
}

.menu{
    display:none;
}

@media (max-width:756px){
    .header{
        /* padding-bottom:0.5rem; */
    }
    .menuItems{
        display:none;
    }
    .menu{
        display:grid;
        display:-ms-grid;
        display:-moz-grid;
        align-content:center;
    }
    .header > div{
        /* padding:0rem 2rem; */
    }
}

/*Menu bars styling*/

.menu_bars{
    width:25px;
    height:25px;
}

.menu_bars > div {
    background-color:black;
    height:2px;
    margin:5px 0px;
    transition: width 0.2s;
}

.menu_bars > div:nth-of-type(2){
    width:50%;
}

.menu_bars > div:last-of-type{
    width:25%;
}

/*menu items styling*/
.menuItem{
    display:inline-block;
}
.menuItem a{
    padding:0.5rem 1rem;
    font-weight:500;
    display:grid;
    display:-ms-grid;
    display:-moz-grid;
    grid-template-columns:max-content max-content;
    align-content:center;
    transition:border-color 0.2s;
    
}

/*.menuItems > .menuItem:not(:first-of-type) a:hover{
    border-color:gold;
}*/

.ourHServices a{
    grid-template-columns:max-content max-content max-content;
}

.menuItem:hover a{
    cursor:pointer;
    /* color: gold; */
}
.header .our-services{
    display: none;
}
.header .our-services > div{
    box-shadow:2px 2px 5px rgb(120, 120, 120);
    border-radius: 10px;
    padding:1rem 1rem 2rem 1rem;
    background-color: white;
}
.header .our-services a{
    background-color: white;
    padding: 1rem 2rem;
    min-width: 400px;
    border-radius: 10px;
}
.menuItems .menuItem:first-of-type:hover .our-services{
    display: block;
}
.down_curret{
    width:11px !important;
    height:12px !important;
    margin:auto 0.5rem;
}
.header .our-services{
    position: relative;
}
.header .our-services > div{
    position: absolute;
    top:0px;
    left: 0px;
}