/* 01. ROOT CSS */

:root {
    --bs-white: #ffffff;
    --bs-black: #000000;
    --bs-nav: #526373;
    --bg-theme-1: #1D6BB5;
    --bg-theme-2: #36A2DA;
    --bs-light-black: #332F30;
    --bs-light-pera: #585c7b;
    --bs-sub-title: #9bacbc;
    --bs-nav-link: #465562;
    --bs-font-Inter: "Inter", sans-serif;
    --theme-shadow: 0px 0px 20px 0px rgba(30, 22, 22, 0.08);
}

/* ================================================ header =================================================== */

.new-main-header {
    z-index: 9999;
    position: fixed;
    height: 5rem;
    width: 100%;
    transition: all 0.3s ease-in-out;
    /* background-color: rgb(255, 255, 255); */
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 10px -10px;
    display: block;
    top: 0;
    left: 0;
}

.navfix {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    background-color: #fff;
    animation: 300ms ease-in-out fadeInDown;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1201px) {
    .navhover {
        background-color: #fff;
        animation: 300ms ease-in-out fadeInDown;
    }

    .new-mobile-logo-box {
        display: none;
        visibility: hidden;
    }
}

header.navhover .new-nav .new-dropdown .new-link,
header.navfix .new-nav .new-dropdown .new-link {
    color: var(--bs-black);
}

.new-main-header .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0rem;
    padding-bottom: 0rem;
    max-width: 1400px;
    margin: 0 auto;
    position: initial;
    height: 100%;
}

.navbar-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 50px;
}

.navbar-brand-logo {
    max-width: 170px;
    width: 100%;
    height: auto;
}

.navbar-brand-logo img {
    width: 100%;
    height: 100%;
}

.new-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.new-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    column-gap: 55px;
}

.new-nav .new-dropdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    position: relative;
    cursor: pointer;
}

.new-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    font-family: var(--bs-font-Inter);
    color: var(--bs-nav);
    letter-spacing: 0.4px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    padding: 0 15px !important;
}

.new-link:hover {
    color: var(--bg-theme-1);
}

header.navfix .new-nav .new-dropdown .full-new-link:hover .new-link,
header.navfix .new-nav .new-dropdown .new-link:hover {
    color: var(--bg-theme-1);
}

header.navfix .new-nav .new-dropdown.open-dropdown .full-new-link .new-link {
    color: var(--bg-theme-1);
}


.new-nav .new-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 40px 40px 100px rgba(24, 48, 63, .2);
    transform-origin: 50% -50px;
    transform: rotateX(-15deg);
    transition: opacity 0.25s linear, transform 0.25s linear;
    border-radius: 6px;
    width: auto;
    z-index: 9999;
    background-color: #fff;
}

.new-dropdown-menu.active {
    display: block;
}

.drop-box-lg .drop-flex-icon {
    margin-bottom: 15px;
}

.drop-box-lg .drop-flex-icon img {
    height: 55px;
    width: 55px;
    filter: contrast(0);
    transition: all 0.2s ease-in;
}

.drop-box-md .drop-flex-icon {
    margin-right: 10px;
}

.drop-box-md .drop-flex-icon img {
    height: 29px;
    width: 29px;
}

.scraper-list-slide {
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgba(25, 16, 12, 0.04);
    border-radius: 15px;
}

.scraper-list-btn {
    transition: all 0.2s ease-in;
}

.scraper-list-btn .scraper-navlink {
    text-decoration: none;
}

.scraper-list-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scraper-flex-content {
    margin-right: 3px;
}

.scraper-list-tag {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    font-family: var(--bs-font-Inter);
    color: var(--bg-theme-1);
    letter-spacing: 0.4px;
}

.scraper-flex-content .scraper-title-btn {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    font-family: var(--bs-font-Inter);
    color: #0026a2;
    letter-spacing: 0.4px;
}

.scraper-flex-icon img {
    height: 25px;
    width: 25px;
}

.drop-btn-hover .drop-flex-icon {
    margin-right: 0px;
}

.scraper-flex-icon i {
    transform: translateY(1px);
    font-size: 15px;
    color: #0026a2;
    transition: all 0.2s ease-in;
}

.scraper-list-btn .scraper-navlink:hover i {
    transform: translateX(4px);
}

.drop-btn-hover .drop-flex-icon img {
    height: 20px;
    width: 20px;
    filter: invert(100);
}

.drop-box-data-1 {
    display: grid;
    grid-template-columns: 250px 250px 250px;
    align-items: start;
    height: 100%;
    width: 100%;
}

.drop-box-data-11 {
    display: grid;
    grid-template-columns: 300px 300px;
    align-items: start;
    height: 100%;
    width: 100%;
}


.elementor-drop-menu {
    padding: 12px 0;
    height: 100%;
}

.new-drop-menu-1 {
    padding: 0;
}

.menu-item-link {
    display: flex;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    column-gap: 6px;
}

.menu-item-link img {
    max-width: 18px;
    width: 100%;
    height: auto;
}

.elementor-menu-head {
    padding: 10px 20px;
    min-height: 40px;
}

.elementor-menu-head .nav-head-title {
    color: var(--bs-sub-title);
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
}

.elementor-menu-list {
    padding-left: 0;
}

.menu-item {
    padding: 14px 18px;
    transition: all .25s ease-out;
}

.menu-item:hover {
    background-color: #edf1f6;
}

.nav-title {
    color: var(--bs-nav-link);
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.5px;
}

.nav-elementor-bg {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.drop-box-data-2 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    min-width: 300px;
    width: 100%;
    height: 100%;
}

.drop-box-data-2 .elementor-drop-menu {
    width: 100%;
}

.drop-box-data-2 .elementor-menu-list {
    width: 100%;
}


@media screen and (min-width: 1201px) {
    .new-menu .new-nav .new-dropdown.open-dropdown>.new-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0%;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        box-shadow: 40px 40px 100px rgba(24, 48, 63, .2);
        transform-origin: 50% -50px;
        transform: rotateX(-15deg);
        transition: opacity 0.25s linear, transform 0.25s linear;
        border-radius: 6px;
        width: auto;
    }

    .new-menu .new-nav .new-dropdown:hover>.new-dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: rotateX(0);
        pointer-events: auto;
        overscroll-behavior: contain;
    }

    .hamburger-menu {
        display: none;
    }
}

@media screen and (max-width: 1550px) {
    .drop-box-data.drop-box-lg {
        width: 950px;
    }
}

@media screen and (max-width: 1400px) {
    .new-main-header .navbar {
        padding: 0 10px;
    }

    .drop-box-data.drop-box-lg {
        width: 860px;
    }

    .new-nav .drop-before-services::before {
        left: 52%;
        top: -8%;
    }

    .new-nav .drop-before-retail::before {
        left: 54%;
        top: -4%;
    }
}

@media screen and (max-width: 1300px) {
    .drop-box-data.drop-box-lg {
        width: 740px;
    }
}

@media screen and (max-width: 1200px) {
    .new-main-header .navbar {
        padding: 0px 0px;
    }

    .hamburger-menu {
        margin-right: 15px;
        background-color: white;
    }
}



.full-new-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.full-new-link::after {
    font-size: 10px;
    vertical-align: middle;
    font-family: 'Fontawesome';
    content: '\f106';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -40%) rotate(180deg);
    color: var(--bs-nav);
}

.full-new-link:hover .new-link {
    color: var(--bg-theme-1);
}

.full-new-link:hover::after {
    color: var(--bg-theme-1);
}

.full-new-link:hover::after {
    color: var(--bg-theme-1);
    transition: all 0.4s ease;
    transform: translate(0%, -40%) rotate(0deg);
}

.full-new-link:hover .new-link {
    color: var(--bg-theme-1);
}

/* ===================================== MOBILE MENU =============================================== */

.hamburger-menu {
    width: 32px;
    cursor: pointer;
    line-height: 8px;
    z-index: 999;
    height: 32px;
    background-color: white;
    width: 41px !important;
    height: 40px !important;
    padding: 4px 0px 0px 5px !important;
    border-radius: 10px;
}

.new-main-header .hamburger-menu span {
    display: inline-block;
    width: 32px;
    height: 5px;
    background: var(--bg-theme-1);
    transition: all 0.5s;
    border-radius: 40px;
}

.hamburger-menu span:nth-child(1) {
    width: 22px;
    background: var(--bg-theme-2);
}

.hamburger-menu span:nth-child(3) {
    width: 22px;
    background: var(--bg-theme-2);
}

.hamburger-menu.active-icon span {
    margin-top: 15px;
    position: absolute;
    width: 32px;
}

.hamburger-menu.active-icon span:first-child {
    transform: rotate(-135deg);
    background: var(--bg-theme-1);
}

.hamburger-menu.active-icon span:nth-child(2) {
    transform: rotate(135deg);
    background: var(--bg-theme-1);
}

.hamburger-menu.active-icon span:last-child {
    margin-top: 30px;
    width: 0px;
    display: none;
}

.hamburger-menu.active-icon span {
    background: var(--bg-theme-1);
}

.new-main-header.navfix .hamburger-menu span {
    background: var(--bg-theme-1);
}

@media screen and (max-width: 1200px) {
    .new-main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .new-main-header .navbar {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu {
        top: 0;
        position: absolute;
        text-align: start;
        background: #fff;
        overflow: hidden;
    }

    .mobile-menu.active {
        right: 0;
        width: 50%;
        height: 100vh;
        overflow-y: auto;
        display: block;
        /* padding: 15px; */
        background-color: var(--bg-theme-1);
        box-shadow: 6px 6px 22px rgba(42, 31, 63, 0.1);
        top: 0;
    }

    .new-mobile-logo-box {
        height: 5rem;
        width: 100%;
        display: flex;
        align-items: center;
        background-color: var(--bs-white);
        position: fixed;
        top: 0;
        z-index: 6;
        padding: 20px;
        visibility: hidden;
    }

    .new-mobile-logo {
        height: 5rem;
        width: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .new-mobile-logo img {
        width: 100%;
        height: 100%;
        /* visibility: hidden; */
    }

    .new-nav {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        margin-bottom: 20px;
        top: 5rem;
        position: absolute;
        left: 0;
        width: 100%;
        column-gap: 0;
        z-index: 5;
    }

    .new-nav .new-dropdown {
        height: auto;
        line-height: 52px;
        border-bottom: 1px solid #d9d9d9;
        display: block;
        width: 100%;
        margin-right: 0;
        position: relative;
        padding: 0px;
    }

    .new-nav .new-dropdown .new-link {
        color: var(--bs-white);
        font-size: 16px;
        display: inline-block;
        padding: 0 15px;
    }

    header.navfix .new-nav .new-dropdown .new-link {
        color: var(--bs-white);
    }

    .new-dropdown.open .new-dropdown-menu {
        display: block !important;
    }

    .new-nav .new-dropdown-menu {
        top: 0;
        left: 0;
        /* position: relative; */
        border-radius: 0px;
        background: #f6f9ff;
        transform: translate(0%, 0%);
    }

    .drop-box-data.drop-box-lg {
        width: 100%;
    }

    .drop-box-lg .drop-flex-icon {
        line-height: 40px;
        margin-bottom: 6px;
    }

    .drop-box-lg .drop-flex-icon img {
        height: 38px;
        width: 38px;
    }

    .drop-small-subtitle {
        line-height: 22px;
    }

    .new-dropdown .full-new-link::after {
        margin-left: 0;
        font-size: 1.1em;
        vertical-align: middle;
        font-family: "FontAwesome";
        content: "\f077";
        position: absolute;
        right: 3%;
        transform: rotate(180deg);
        color: var(--bs-white);
        top: 0;
    }

    .new-dropdown.open-dropdown .full-new-link::after {
        transform: rotate(0deg);
    }

    .new-dropdown.open-dropdown .new-dropdown-menu {
        display: block;
    }

    .navbar .primery-btn {
        display: none;
    }

    .scraper-list-slide {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .scraper-list-tag {
        line-height: 24px;
    }

    .scraper-flex-content {
        line-height: 34px;
    }

    .scraper-list-btn .scraper-navlink {
        line-height: 34px;
    }

    header.navfix .new-nav .new-dropdown.open-dropdown .full-new-link .new-link {
        color: var(--bs-white);
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu.active {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {

    .drop-box-lg .drop-flex-icon img {
        height: 32px;
        width: 32px;
    }

    .drop-box-lg .drop-flex-icon {
        line-height: 34px;
        margin-bottom: 6px;
    }

    .drop-small-subtitle {
        line-height: 18px;
    }

}


@media screen and (max-width: 1200px) {
    .full-new-link {
        justify-content: start;
    }

    .full-new-link i {
        display: none;
    }

    .new-dropdown.open-dropdown .new-dropdown-menu {
        position: relative;
        visibility: visible;
        opacity: 1;
    }

    .drop-box-data {
        border-radius: 4px;
        border-top: none;
    }

    .new-nav .new-dropdown-menu {
        transition: none;
    }

    header.navfix .new-nav .new-dropdown .full-new-link:hover .new-link,
    header.navfix .new-nav .new-dropdown .new-link:hover {
        color: var(--bs-white);
    }

    .new-drop-menu-1 {
        display: none;
    }

    .drop-box-data-1 {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .drop-box-data-11 {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .elementor-drop-menu {
        padding: 0px 0px;
    }

    .elementor-menu-head .nav-head-title {
        line-height: 26px;
    }
    .elementor-menu-head {
        padding: 12px 15px;
    }

    .nav-title {
        line-height: 26px;
    }
    .drop-box-data-1 .new-drop-menu-3 .elementor-menu-head {
        /* display: none; */
    }
    .drop-box-data-11 .new-drop-menu-3 .elementor-menu-head {
        display: none;
    }

    .menu-item {
        padding: 12px 15px;
    }
    .drop-box-data-1 {
        row-gap: 0px;
    }
     .drop-box-data-11 {
        row-gap: 0px;
    }
}