/*
Theme Name: Staqo Theme
Theme URI: http://staqo.com
Author: Staqo Dev Team
Author URI: http://staqo.com
Description: A custom WordPress theme for Staqo brand.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: staqo
*/

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignwide {
    width: 100%;
    max-width: 1200px;
}

.alignfull {
    width: 100%;
    max-width: 100%;
}

/* Main mega container */
.mega-menu {
    display: flex;
    gap: 2rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 3rem;
    height: 100vh;
    overflow-y: auto;
    display: none;
}

/* Show on hover */
.header-nav>li.has-mega:hover .mega-menu {
    display: flex;
}

/* Left column */
.mega-left {
    width: 30%;
}

.mega-left h3 {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 120%;
    color: #DAD6D6;
    margin-bottom: 2.375rem;
}

.mega-left p {
    font-weight: 400;
    font-size: 1.319rem;
    line-height: 191%;
    color: #DAD6D6;
}

.mega-left .learn-more {
    font-weight: 500;
    font-size: 1.343rem;
    color: #DAD6D6;
    display: flex;
    gap: 0.56rem;
    margin-top: 2.75rem;
}

.mega-left .learn-more img {
    width: 4.476rem;
    height: 2rem;
    transition: 0.2s;
}

.mega-left .learn-more:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(3200%) hue-rotate(277deg);
}

/* Right column links */
.mega-right {
    width: 70%;
    position: relative;
}

.mega-links {
    width: 100%;
}

.header-nav .mega-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.375rem;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 120%;
}

.left-nav>a {
    width: 29%;
    border-bottom: 1px solid #5F5F5F;
}

.sub-menu {
    position: absolute;
    top: 0;
    left: 31%;
    width: 70%;
    display: none;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #e0e0e0;
}

.sub-menu li {
    width: 33%;
}

.header-nav .sub-menu a {
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #878787;
    padding: 0;
    margin-bottom: 1rem;
}

.left-nav.active>.sub-menu {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;

}

.left-nav.active>a {
    background-color: #FFFFFF14;
}

/* Chrome, Edge, Safari */

.sub-menu::-webkit-scrollbar {
    width: 8px;
    /* scrollbar size */
}

.sub-menu::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.sub-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media(min-width: 993px) {
    .left-nav:hover .sub-menu {
        display: flex;
        flex-wrap: wrap;
    }

    .left-nav a:hover {
        background-color: #FFFFFF14;
    }

}

.lets-connect-form {
    text-align: left;
}

.lets-connect-form .lc-final-btn {
    width: 100%;
    padding: 1rem;
    background: #0b61d8;
    color: #fff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 1rem;
}

.lets-connect-form input {
    width: 100%;
    border: 1.69px solid #929292 !important;
    padding: 1rem;
    border-radius: unset;
    background: transparent;
    padding-right: 7rem;
    outline: none;
    font-weight: 600;
    font-size: 1rem;
}

.lets-connect-form input::placeholder {
    font-weight: 600;
    font-size: 1rem;
    line-height: 150%;
    color: #000000;
}

.lets-connect-form label {
    display: block;
    font-weight: 600;
    font-size: 1.372rem;
    line-height: 150%;
    margin-bottom: 0.688rem;
}

.lc-step {
    display: none;
}

.lc-step.is-active {
    display: block;
}

/* step 1 */
.lc-message-box {
    position: relative;
}

/* inline Next button */
.lc-inline-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: #000;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.lc-inline-btn.is-hidden {
    display: none;
}