
/*----------------------------------------*/
/*  02. header css start
/*----------------------------------------*/
.tp-main-menu ul li {
    display: inline-block;
    margin-right: 60px;
    position: relative;
}.tp-main-menu ul li a {
     font-size: 18px;
     font-weight: 500;
     color: #8A90A2;
     text-transform: capitalize;
     position: relative;
     padding: 37px 0;
     display: inline-block;
 }
.tp-main-menu ul li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-1);
    border-radius: 33px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}
.tp-main-menu ul li a::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-primary);
    border-radius: 33px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.tp-header-bg {
    background-color: var(--tp-common-white);
    margin-left: 80px;
    margin-right: 80px;
    padding: 0 15px;
    margin-top: 50px;
    border-radius: 10px;
}
.header-transparent {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
}

.tp-menu-black ul li {
    margin-right: 40px;
}
.tp-menu-black ul li a {
    font-size: 16px;
}

.tp-menu-black ul li:last-child {
    margin-right: 0;
}

.tp-header-yellow-button {
    line-height: 0;
}
.tp-header-area-two {
    transition: all 0.3s ease;
}

.tp-header-area-two .tp-logo img {
    max-height: 140px;
    transition: all 0.3s ease;
    max-width: 210px;
    width: max-content;
    height: 100px;
}

.tp-main-menu .nav-item {
    margin-right: 20px;
    position: relative;
}

.tp-main-menu .nav-link {
    color: var(--tp-common-black);
    font-weight: 500;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.tp-header-area-two button.navbar-toggler {
    height: 50px;
    line-height: 50px;
    width: 50px;
    background: #68a7ff;
    color: #fff;
    border: 1px solid #00000021;
    text-align: center;
}

.tp-header-area-two button.navbar-toggler svg{
    width: 26px;
    height: 30px;
    display: block;
}
.tp-header-area-two .tp-logo img {
    max-height: 70px;
    /* margin-left: 20px; */
}
.tp-header-area-two .tp-logo img {
    max-height: 80px;
}

.tp-header-area-two > div {
    position: relative;
}
nav.navbar.navbar-expand-lg {
    position: relative;
    width: 100%;
    justify-content: center;
}


.tp-main-menu {
    position: relative;
}



.tp-main-menu ul li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-1);
    border-radius: 33px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.tp-main-menu ul li a::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 4px;
    background-color: var(--tp-theme-primary);
    border-radius: 33px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.tp-main-menu ul li:hover a {
    color: var(--tp-common-black);
}

.tp-main-menu ul li:hover a::after {
    visibility: visible;
    opacity: 1;
    width: 90%;
}

.tp-main-menu ul li:hover a::before {
    visibility: visible;
    opacity: 1;
    width: 50%;
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--tp-common-white);
    width: 100%;
    padding-top: 0;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0 2px 55px rgba(168, 182, 218, 0.32);
    z-index: 9999;
    margin: 0;
    border-radius: 0;
}