/**
*****************************************
	Theme Name: Laboratory
	Author: SyncZer Inc
	Author URL: https://www.synczersolutions.com/
	Version: 1.0
******************************************
**/

/*
01. Header Main Styles.
02. Header Responsive.
*/
.h-contact-list li,
.social-icon li {
    list-style: none;
    display: inline-block;
    color: var(--white);
    font-size: 0.8rem;
    padding: 0;
    text-align: center;
}
.h-contact-list a,
.social-icon a {
    text-align: center;
    font-size: 0.8rem;
    color: var(--white);
    display: block;
    line-height: 19px;
    margin: 0;
}
.h-contact-list a:hover,
.social-icon a:hover {
    color: var(--main-1);
}
.social-icon a i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #fff;
    border-radius: 100%;
    color: var(--main-2);
}
.navbar-brand img {
    max-height: 65px;
}
.navbar-nav .nav-item .nav-link{
    text-transform: capitalize;
    padding: 8px 12px;
    color: var(--black);
    position: relative;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    font-size: 16px;
}
.navbar-nav .nav-item .nav-link:hover,  
.navbar-nav .nav-item .nav-link.active{
    color: var(--main-2);
    position: relative;
}
.sticky_header{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    animation: smoothScroll 1s forwards;
    box-shadow: 8px 7px 8px -8px rgb(0 0 0 / 20%);
    background: #fff;
}
.navbar-brand img{
    height: 65px;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-120px);
	}
	100% {
		transform: translateY(0px);
	}
}
@media (max-width: 991px){
    .navbar-collapse {
        flex-basis: auto;
    }
    .sidenav {
        height: 1000px !important;
        width: 0;
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        background-color: var(--black);
        transition: 0.5s;
        padding-top: 20px;
    }
    .sidenav ul{
        padding-left: 25px;
    }
    .sidenav .close-btn {
        display: flex !important;
        justify-content: flex-end;
        padding: 8px 20px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #fff;
        display: block;
        transition: 0.3s;
    }
    .sidenav .close-btn:hover{
        color: red;
    }
    .sidenav .navbar-nav .nav-item .nav-link{
        padding: 10px 0;
        color: var(--white) !important;
    }
}
.navbar-toggler{
    color: var(--black) !important;
    border-radius: 0;
    font-size: 1.7rem;
}