*,
body {
    margin: 0
}

.arrow,
.dropdown-link:first-child:hover~.arrow {
    background-color: #3a6fd9
}

.banner_header,
header {
    box-shadow: rgba(0, 0, 0, .35) 0 5px 15px
}

#tabs-wrapper,
#tabs-wrapper *,
#tabs-wrapper:after,
#tabs-wrapper:before,
*,
.section-tab .tab-title,
.section-tab h4:after,
.section-tab h4:before,
section p:after,
section p:before {
    box-sizing: border-box
}

header,
nav {
    position: fixed;
    top: 0
}

.btn,
.logo,
.logo a {
    text-transform: uppercase
}

*,
.main_menu ul li .mega_menu_item a,
body {
    padding: 0
}

body {
    font-family: Poppins, sans-serif
}

:root {
    --clr-nav-hover: #dfecf6;
    --clr-dropdown-hov: #fff;
    --clr-light: #FAFAFA;
    --background-color: #fff;
    --hover-color: #4654d4
}

ul {
    list-style: none
}

a {
    text-decoration: none
}

header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999999;
    padding: .1rem 0
}

.banner_header,
.dropdown-link>a,
nav {
    background-color: #fff
}

.flex_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.container_header {
    width: calc(100vw - 25px) !important;
    margin: 0 auto
}

.book_a_demo_button a {
    color: #3a6fdb;
    border: 1px solid #3a6fdb;
    padding: .4rem .6rem;
    border-radius: 5px;
    margin-right: 1.1rem
}

.book_a_demo_button a:hover {
    background-color: #3a6fdb;
    color: #fff
}

.main_logo {
    width: 14%
}

.coma_S img,
.logo a img,
svg,
.main_logo img {
    max-width: 100%
}

.nav-btn {
    flex: 3;
    display: flex;
    justify-content: end
}

.nav-links {
    display: flex;
    justify-content: right;
    align-items: center
}

.log-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1
}

.logo {
    color: var(--clr-light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px
}

.logo span {
    font-weight: 300
}

.btn {
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid var(--clr-light);
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s
}

.btn.solid,
.btn.transparent:hover {
    background-color: var(--clr-light);
    color: var(--clr-btn)
}

.btn.solid:hover,
.btn.transparent {
    background-color: transparent;
    color: var(--clr-light)
}

.nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.banner_header_main,
.dropdown ul,
.dropdown-link,
.main_menu ul li,
.nav-link {
    position: relative;
    z-index: 1
}

#check,
.arrow,
.dropdown {
    position: absolute
}

.nav-link>a {
    line-height: 3rem;
    color: #000;
    padding: .8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    font-weight: 500
}

.nav-link>a>i {
    margin-left: .2rem
}

.nav-link:hover>a {
    transform: scale(1.1)
}

.dropdown {
    top: 100%;
    left: -40px;
    width: max-content;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s
}

.dropdown-link>a {
    display: flex;
    color: #000;
    padding: .8rem 1.5rem;
    font-size: 1rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s
}

.dropdown-link:hover>a {
    color: #3a6fd9;
    border-left: 5px solid #3a6fd9
}

.dropdown-link:not(:nth-last-child(2)) {
    border-bottom: 1px solid var(--clr-light)
}

.dropdown-link i {
    transform: rotate(-90deg)
}

.arrow {
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 88px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1
}

#check,
.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem
}

.dropdown.second {
    top: 0;
    left: 100%;
    cursor: pointer;
    transform: translateX(10px)
}

.dropdown.second .arrow {
    top: 10px;
    left: -5.5px
}

.dropdown-link:hover>.dropdown,
.nav-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: rgba(0, 0, 0, .35) 0 5px 15px
}

.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end
}

.hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #000;
    position: relative;
    z-index: 1001;
    transition: .5s
}

.hamburger-menu div:after,
.hamburger-menu div:before {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #000;
    border-radius: 3px;
    transition: .5s
}

.hamburger-menu div:before {
    transform: translateY(-7px)
}

.hamburger-menu div:after {
    transform: translateY(7px)
}

#check {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg)
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg)
}

.banner_header {
    border-radius: 18px;
    position: relative
}

.banner_header h1,
.banner_header h4,
.banner_header h6 {
    color: #162b7f;
    text-align: center;
    font-size: 1.5rem;
    padding: 2.4rem 0
}

.etl_banner_main_padd {
    padding-top: 3rem
}

.banner_header_bg {
    background-color: #5465ff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 13px;
    bottom: -13%;
    z-index: 0;
    border-radius: 15px
}

.coma_S {
    position: absolute;
    width: 6%;
    z-index: 1;
    top: -36px;
    left: -4px
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:920px) {

    .dropdown-link:first-child:hover~.arrow,
    .nav-link:hover .arrow,
    .nav-link:hover>a {
        background-color: var(--clr-nav-hover)
    }

    .hamburger-menu-container {
        display: flex
    }

    .main_logo {
        width: 11%
    }

    #check,
    .dropdown-link:hover>.dropdown,
    .nav-link:hover>.dropdown {
        display: block
    }

    .nav-btn {
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3.5rem !important;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s
    }

    #check:checked~.nav-btn {
        transform: translateX(0)
    }

    #check:checked~.nav-btn .log-sign,
    #check:checked~.nav-btn .nav-link {
        animation: animation .5s ease forwards var(--i)
    }

    .nav-links {
        flex: initial;
        width: 100%
    }

    .nav-links>ul {
        flex-direction: column
    }

    .nav-link {
        width: 100%;
        opacity: 0;
        transform: translateY(15px)
    }

    .nav-link>a {
        line-height: 1;
        padding: 1.6rem 2rem
    }

    .nav-link:hover>a {
        transform: scale(1)
    }

    .dropdown,
    .dropdown.second {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: var(--clr-dropdown-hov);
        display: none
    }

    .dropdown-link:hover>a>i,
    .nav-link:hover>a>i {
        transform: rotate(360deg)
    }

    .dropdown-link>a {
        background-color: transparent;
        color: #000;
        padding: 1.2rem 2rem;
        line-height: 1
    }

    .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 3rem
    }

    .dropdown.second .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 4rem
    }

    .dropdown-link:not(:nth-last-child(2)) {
        border-bottom: none
    }

    .arrow {
        z-index: 1;
        background-color: var(--clr-btn);
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s
    }

    .dropdown .dropdown .arrow {
        display: none
    }

    .dropdown-link:hover>a {
        background-color: var(--clr-dropdown-link-hov)
    }

    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s
    }

    .dropdown i {
        font-size: 1rem;
        transition: .7s
    }

    .log-sign {
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px)
    }
}

.main_menu ul li ul,
.mega_menu {
    transition: .5s;
    box-shadow: 0 5px 15px 0 rgba(212, 201, 201, .75)
}

.tab-title i {
    font-size: 1.4rem;
    color: #4956d3;
    margin-right: .7rem;
    width: 8%
}

.tab-content h5,
.tab-content h5 i {
    font-size: 1.6rem !important
}

.menu_left_main_box {
    display: flex;
    justify-content: space-between
}

.menu_left_1,
.menu_left_2 {
    width: 49%
}

.tab-content h5 {
    padding: 1rem 1rem .4rem;
    font-weight: 500
}

.tab-content span {
    padding-left: 1rem !important
}

.tab-content p {
    padding: 0 !important;
    width: 100%;
    font-size: .8rem !important;
    line-height: 1.3rem
}

.tab-content li {
    padding: 1rem
}

#tabs-wrapper {
    background: #fff;
    color: #000;
    width: 100%;
    font-family: Poppins, sans-serif !important;
    line-height: 1.8em
}

.section-tab {
    height: 45vh;
    border-bottom: 7px solid #4654d3
}

.section-tab .tab-content:after,
.section-tab .tab-content:before,
.section-tab:after,
.section-tab:before {
    box-sizing: border-box;
    content: "";
    display: table
}

.section-tab .tab-content:after,
.section-tab:after {
    clear: both
}

.section-tab .tab-title {
    border-right: 0px solid #ccc;
    border-top: none;
    cursor: pointer;
    padding: 12px 20px;
    font-weight: 700
}

section .tab-content {
    zoom: 1;
    position: relative;
    height: 45vh;
    border-left: none;
    display: none
}

.section-tab .active {
    cursor: default
}

.section-tab .active+.tab-content {
    display: block
}

@media screen and (min-width:600px) {
    .section-tab .tab-title {
        position: relative;
        width: 25%;
        display: block
    }

    .section-tab .tab-content {
        position: absolute;
        width: 75%;
        right: 0;
        top: 0
    }

    .section-tab .active {
        background: #ebf1fe;
        color: #4654d3 !important;
        border-radius: 5px
    }
}

nav {
    width: 100%;
    z-index: 24;
    box-shadow: 2px 5px 10px -1px #3a3ca863
}

.rows {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.logo {
    width: 13%;
    line-height: 0
}

.logo a {
    font-size: 20px;
    font-weight: 700;
    color: #353535
}

.main_menu>ul>li {
    display: inline-block;
    position: relative;
    margin: 0 -2px
}

.main_menu ul li a {
    font-size: 1rem;
    color: #353535;
    padding: 12px 14px;
    display: block;
    font-weight: 500
}

.main_menu ul li .active,
.main_menu ul li:hover>a {
    color: #4654d4
}

.main_menu ul li ul {
    width: 300px;
    background: #fff
}

.main_menu ul li ul li a i {
    float: right
}

.main_menu ul li ul li ul {
    left: 100%;
    top: 0
}

.mega_menu_dropdown {
    position: static !important
}

.mega_menu {
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-wrap: wrap
}

.mega_menu_item,
.mega_menu_item img {
    width: 100%
}

.main_menu ul li .mega_menu_item li:hover {
    background-color: #ebf1fe !important;
    color: #4654d4;
    width: 100%;
    border-radius: 5px
}

.mega_menu_item h3 {
    margin-bottom: 15px
}

.mega_menu_demo_2 .mega_menu {
    left: 50%;
    transform: translateX(-50%);
    width: 100%
}

.mobile_btn {
    display: none
}

.books_a_demos a {
    color: #fff !important;
    border: 1px solid #4654d4;
    background-color: #4654d4;
    margin-right: 1rem;
    border-radius: 7px;
    transition: 2s;
    font-size: 1.2rem;
    font-weight: 500
}

.books_a_demos a:hover {
    background-color: transparent;
    color: #4654d4 !important
}

@media (min-width:992px) and (max-width:1199.98px) {
    .container {
        width: 1120px
    }

    .mega_menu_demo_2 .mega_menu {
        width: 100%
    }

    .main_menu ul li ul {
        width: 300px
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .container {
        width: 720px
    }

    .mega_menu_demo_2 .mega_menu {
        width: 100%
    }

    .main_menu ul li a {
        font-size: 15px;
        padding: 12px 14px
    }

    .main_menu ul li ul {
        width: 150px
    }
}

@media (min-width:768px) {

    .main_menu ul li .mega_menu,
    .main_menu ul li ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 50px
    }

    .main_menu ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        z-index: 99
    }

    .main_menu ul li:hover>.mega_menu {
        visibility: visible;
        opacity: 1;
        margin-top: .4rem;
        z-index: 99
    }
}

@media (max-width:767.98px) {

    .main_menu ul li,
    .mobile_btn {
        display: block
    }

    .container,
    .main_menu ul li ul,
    .mega_menu_demo_2 .mega_menu {
        width: 100%
    }

    .logo {
        width: 40%;
        line-height: 0
    }

    .mobile_btn {
        cursor: pointer;
        font-size: 1.7rem;
        padding: 5px
    }

    .main_menu {
        display: none;
        width: 100%
    }

    .main_menu ul li a i {
        float: right
    }

    .main_menu ul li a {
        border-bottom: 1px solid #ddd
    }

    .main_menu ul li ul li ul {
        left: 0;
        top: auto
    }

    .mega_menu .mega_menu_item {
        width: 50%
    }

    .main_menu ul li .mega_menu,
    .main_menu ul li ul {
        display: none;
        transition: none
    }

    .mega_menu_demo_2 .mega_menu {
        transform: translateX(0)
    }
}

@media (max-width:575.98px) {
    .mega_menu .mega_menu_item {
        width: 100%
    }
}