header.main_header {
    padding: 10px 0px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: 2s;
}
header.main_header:hover {
    background: var(--blue);
}
.header_inner_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_main_nav nav ul {
    display: flex;
    column-gap: 48px;
}
.header_main_nav nav ul li a {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.header_right {
    display: flex;
    column-gap: 32px;
}
.header_logo img {
    width: 80px;
}

.companies_dropdown .company_select {
    background: transparent;
    color: #fff;
    border: none !important;
    font-size: 18px;
    line-height: 24px;
    width: 180px;
    display: flex;
    column-gap: 12px;
    align-items: center;
    cursor: pointer;
  }
  .company_menu ul li a {
    color: #fff;
    font-size: 18px;
    padding: 18px 24px;
    display: inline-block;
    line-height: 1.5;
    border-bottom: 1px solid;
}
.company_menu {
    position: absolute;
    top: 65px;
    background: var(--black);
    right: 0;
    width: 293px;
    height: 337px;
    padding: 0;
    transition: 1.6s cubic-bezier(0.25, 0.1, 0, 1.21);
    max-height: 0px;
    overflow-y: auto;
}
.companies_dropdown {
    display: flex;
    align-items: center;
    column-gap: 12px;
    position: relative;
}
.company_menu_inner h3 {
    margin: 24px 24px 24px 24px;
    color: #fff;
    font-size: 24px;
    border-bottom: 1px solid;
    padding-bottom: 8px;
}
.company_menu.open {
    max-height: 1000px;
}
.hero_main_content_inner {
    display: inline-block;
}
span.hero_title_top {
    font-size: 64px;
    color: #fff;
    display: block;
}
span.hero_title_bottom {
    font-size: 96px;
    font-weight: 600;
    color: #fff;
    margin-left: 50%;
    line-height: 1;
}
.about_sl_outer {
    display: flex;
    column-gap: 100px;
    align-items: center;
}
.about_slider_nav button.slick-arrow {
    background: transparent !important;
    border: navajowhite;
    font-size: 20px;
    line-height: 1;
}
.about_slider_nav {
    display: flex;
    column-gap: 20px;
    background: #fff;
    align-items: center;
    height: fit-content;
    padding: 30px 42px;
    border-radius: 100px;
}

.dots ul.slick-dots li button {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #9D9D9D;
    margin: 0;
    padding: 0;
}
.dots ul.slick-dots li button:before{
    display: none;
}
.dots ul.slick-dots li.slick-active button {
    background: #000;
    border: 3px solid #000;
}

/* Megamenu CSS */

.megamenu {
    background: var(--blue);
    position: absolute;
    left: 0;
    width: 100%;
    top: 102px;
    transition: 1.6s cubic-bezier(0.25, 0.1, 0, 1.21);
    max-height: 0px;
    overflow: hidden;
}
.mega_menu_inner{
    padding: 100px 0px;    
}
.megamenu_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.header_main_nav nav .megamenu_grid_item ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.megamenu_grid_item h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 28px;
}
.megamenu.open {
    max-height: 1000px;
}
header.main_header.menu-open{
    background-color: var(--blue);
    transition: 0.5s ease;
}
.header_main_nav nav ul li:has(.megamenu.open) svg {
    transform: rotate(180deg);
}
.header_main_nav nav ul li svg{
    transition: 1s cubic-bezier(0.25, 0.1, 0, 1.21);
}
/* .header_main_nav nav > ul > li:hover > .megamenu {
    max-height: 1000px;
} */

