
.mobile-menu-btn {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}


.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 15px;
    /* top: 50%; */
    top:29%;
    transform: translateY(-50%);
    z-index: 100;
}


.drawer-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}


/* .drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.drawer-close:hover {
    color: #000;
}

.drawer-close:focus {
    outline: none;
} */

.drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f4f4f4;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: #444;
    transition: background .2s, color .2s, transform .25s;
}
.drawer-close:hover { background: #e8e8e8; color: #000; transform: rotate(90deg); }
.drawer-close:focus { outline: none; }

.menu-link .arrow {
    display: none;
    font-size: 20px;
    line-height: 1;
    transition: transform .3s;
    color: #999;
    margin-left: auto;
}


.about-heading h2{
    margin-bottom: 15px;
    font-size: 36px;
}


.get-in-touch {
    padding: 50px 30px;

    h2 {
        font-size: 30px;
    }

}

.logo img{
    width: 80px;
    height:83px ;
}

.blog-1-area.about-blog{
    padding-bottom: 80px;
}

.welcome-area , .power-area{
    padding:65px 0;
}


.about-links ul li a {
    font-weight: bold;
}


@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .navigation li a {
    padding-left: 23px;
  }
}


@media (min-width: 992px) {
    .navigation {
            display: block;
        }
    
        .menu-item {
            display: inline-block;
            position: relative;
            
            &:hover {
            color: #000;
        }
        }
    
        .menu-link {
            display: block;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
        }
    
        /* .menu-link:hover {
            color: #000;
        } */
    
    
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 200px;
            list-style: none;
            padding: 0;
            margin: 0;
            z-index: 999;
            background-clip: padding-box;
            border-top: 2px solid #fff;
            height: auto;
            text-align: left;
            top: 70px;
            white-space: nowrap;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            width: 220px;
            transition: all 0.4s ease;
            box-shadow: 0px 7px 25px 0px rgba(0, 28, 148, 0.15) !important;
            transform-origin: 0 0 0;
            transform: scaleY(0.2);
            padding: 20px 0px 20px 0px;
            display: flex;
            flex-direction: column;
        }
    
        .dropdown:hover>.sub-menu {
            top: 70px;
        }
    
        .dropdown:hover>.sub-menu,
        .menu-item:hover>.sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0px);
        }
    
        .sub-menu li a {
            display: block;
            padding: 10px 16px;
            color: #333;
            text-decoration: none;
            white-space: nowrap;
        }
    
        .sub-menu li a:hover {
            background: #f5f5f5;
        }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 11000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, .15);
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        overflow-y: auto;
        display: block;
    }

    .navigation.open {
        right: 0;
    }

    .navigation ul {
        text-align: left !important;

          li{
            width: 100%;
         }
    }

    .drawer-header {
        display: flex;
    }

    #mainMenu {
        display: flex;
        flex-direction: column;
    }

    .menu-item {
        display: block;
        border-bottom: 1px solid #f0f0f0;

        &:hover{
            background-color: #f7f7f7;
        }
    }

    .menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
    }

    /* .menu-link:hover {
        background: #f7f7f7;
    } */

    .menu-link .arrow {
        display: inline-block;
    }

    .sub-menu {
        display: none;
        background: #f9f9f9;
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eee;
    }

    .sub-menu.open {
        display: block;
    }

    .sub-menu li a {
        display: block;
        padding: 11px 20px 11px 32px;
        color: #555;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #efefef;
    }

    .sub-menu li:last-child a {
        border-bottom: none;
    }

     .sub-menu li:hover {
        width: 100%;
        background: #eee;
        color: #000;
    }

    /* .sub-menu li a:hover {
        background: #eee;
        color: #000;
    } */

    .menu-item.sub-open>.menu-link .arrow {
        transform: rotate(90deg);
        color: #333;
    }

    .navigation>ul>li>a {
        line-height: 25px;
        padding: 13px 20px;
    }

    
    .navigation>ul>li.current-menu-has-children>a:after{
         line-height: 15px;
    }

}



@media only screen and (max-width: 767px) {
    .slider-content-area {
        margin-left: -15px;
    }

    .about-heading h2,
    .get-in-touch h2 {

        font-size: 22px !important;
    }

    .blog-1-area.about-blog {
        padding-bottom: 0;
    }

    .single-footer h2 {
      font-size: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .slider-content h2 {
        font-size: 25px;
    }

    .about-heading h2,
    .get-in-touch h2 {
        font-size: 18px !important;
        line-height: 30px;
    }

    h3 {
        font-size: 18px;
    }
}







