.cursor{
    cursor: pointer;
}
.header-area .navbar-brand img{
    width: 89px;
    margin-left: 2rem;
    margin-right: 1rem;
}
.header-area .navbar-expand-lg{
    padding: 0;
    background-color: #fff;
    box-shadow: 0 1px 4px 0 rgb(1 1 1 / 10%);
    position: relative;
    z-index: 999;
}
.navbar-brand {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.header-area .navbar-expand-lg .navbar-nav .nav-link{
	color: #0c121c;
    padding: 1.5rem 1rem;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 4.5rem;
}
.header-area .navbar-expand-lg .navbar-nav .nav-link:hover{
    color: #0c121c;
    background-color: #e9ecec;
    opacity: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.search-icon{
   position: absolute;
    right: 0;
    width: 4.5rem;
    text-align: center;
}
.search-icon img{
    width: 20px;
}
.header-area{    
	position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}
.floating-area{
    position: absolute;
    top: 7.5rem;
    transition: top .4s ease;
    right: 0;
    height: 0;
    /*z-index: 9;*/
}
.floating-btn{
    box-shadow: 0 5px 20px rgb(0 0 0 / 25%);
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005a2b;
    z-index: 99;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    cursor: pointer;
}
.dots{
    display: flex;
    transition: visibility .2s, transform .2s, opacity .1s;
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
}
.trigger-dot {
    border-radius: 50%;
    background-color: #fff;
    width: 4px;
    height: 4px;
    margin: 0 3px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.floating-btn:hover .trigger-dot{
    margin: 0 4px;
   transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.floating-btn:hover{
    background: #000;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.cross-icon{
    transition: visibility .2s, transform .2s, opacity .1s;
    transform: rotate(45deg);
    visibility: hidden;
    position: absolute;
    opacity: 0;
}
.cross-icon img{
    width: 18px;
}
.floating-btn.active .cross-icon{
    display: flex !important;
    justify-content: center;
    visibility: visible;
    transform: rotate(0deg);
    opacity: 1;
}
.floating-btn.active .dots{
    visibility: hidden;
    transform: rotate(-45deg);
    opacity: 0;
}

.menu-items{
    max-width: 280px;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    padding: 10rem 1.5rem 5rem;
    box-shadow: 0 10px 40px rgb(0 0 0 / 20%);
    transform: translateY(-20px);
    transition: visibility .3s, opacity .3s, transform .3s;
    
}
.menu-items.active{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 9;
}
.menu-items ul{
    padding:0;
    margin: 0;
    list-style-type: none;
}
.menu-items li{
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'OpelNext';
}
.menu-items li:last-child{
    border-color: transparent;
}
.menu-items li a {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    color: #0c121c;
    text-decoration: none;
    padding: 1.3rem 1rem;
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0.05rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-items img{
    width: 21px;
    margin-right: 1rem;
}
.menu-items a span{
    border-bottom: 1px solid transparent;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    font-size: 1.35rem;
    font-weight: 600;
}
.menu-items a:hover:focus span, .menu-items a:hover span{
    border-color: #005a2b;
    color: #005a2b;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-items a:focus, .menu-items a:hover{
    background-color: #f8f9f9;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
@media (min-width: 768px){
    .header-area .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .header-area .navbar-expand-lg .navbar-collapse {
        display: flex!important;
        flex-basis: auto;
    }
    .header-area .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}
@media(max-width: 767.98px){
	.mobile_logo {
	    margin: 12px 0;
	}
	.mobile_logo img {
		max-width: 100px;
	}
	/*.hamburger {
	    margin-top: 10px;
	}*/
}