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

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

.mainMenu {
    display: flex;
    padding: 0px;
    list-style: none;
    gap: 30px;
    margin: 0;
    position: relative;
}

.devideLine {
    width: 1px;
    background: linear-gradient(90deg, #CE0012, #A3057F);
    height: 40px;
    margin: 0px 30px;
}

.mainMenu li a {
    color: #000;
    text-decoration: none;
    display: flex;
    gap: 3px;
}

.parterBtn a {
    color: #000;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 20px;
    border-style: solid;
    padding: 5px 20px;
    background:
        linear-gradient(to right, white, white),
        linear-gradient(to right, #CE0012, #A3057F);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    transition: 0.3s;
}

.parterBtn a:hover {
    background: linear-gradient(to right, #CE0012, #A3057F);
    color: #fff;
}

header.header {
    padding: 20px 0px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 5;
    margin: 0;
}

.headerTitle {
    margin: 0;
}

p.headerParagraph {
    margin: 0;
    font-size: 23px;
    padding-right: 20px;
}

.inchargeColor {
    font-family: nexaBold;
    background: -webkit-linear-gradient(90deg, #CE0012, #A3057F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Hcta1:hover {
    top: 3px;
    left: -3px;
    box-shadow: -3px 3px 0 #404040;
}

.Hcta1 {
    top: 0;
    left: 0;
    transition: all 0.15s linear 0s;
    position: relative;
    display: inline-block;
    padding: 3px 15px;
    background-color: #ffffff;
    color: #000000;
    letter-spacing: 1px;
    box-shadow: -5px 5px 0 #404040;
    text-decoration: none;
    border: 1px solid #000;
}

/* button css */
.Hcta1:hover {
    top: 3px;
    left: -3px;
    box-shadow: -3px 3px 0 #404040;
    background: -webkit-linear-gradient(90deg, #CE0012, #A3057F);
    color: #fff;
}

.Hcta1:hover::after {
    top: 0px;
    left: -3px;
    width: 4px;
    height: 4px;
}

.Hcta1:hover::before {
    bottom: -3px;
    right: 0px;
    width: 4px;
    height: 4px;
}

.Hcta1::after {
    transition: all 0.15s linear 0s;
    content: '';
    position: absolute;
    top: 0px;
    left: -4px;
    width: 8px;
    height: 8px;
    background-color: #404040;
    transform: rotate(45deg);
    z-index: -1;
}

.Hcta1::before {
    transition: all 0.15s linear 0s;
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0px;
    width: 8px;
    height: 8px;
    background-color: #404040;
    transform: rotate(45deg);
    z-index: -1;
}

a:active.Hcta1 {
    top: 6px;
    left: -6px;
    box-shadow: none;
}

a:active.Hcta1:before {
    bottom: 1px;
    right: 1px;
}

a:active.Hcta1:after {
    top: 1px;
    left: 1px;
}

/* button css end */
.headerInnerBox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

img.headerLogo {
    width: 230px;
}

.headerSection {
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.headerSection::before {
    content: '';
    background-image: url(../images/hero_banner.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position-x: 180px;
    height: 100%;
    position: absolute;
    right: -110px;
    bottom: -24px;
    width: 100%;
    z-index: -1;
}

.headerSection::after {
    content: '';
    background-image: url(../images/Charge-Icon.svg);
    height: 170px;
    position: absolute;
    bottom: 0;
    left: -31px;
    width: 210px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

video.headerVIdo {
    position: absolute;
    width: 130px;
    bottom: -11px;
    left: -35px;
    display: none;
}

.headerContentBox {
    display: flex;
    align-items: center;
    height: 80vh;
}

.mainMenu li {
    position: relative;
}

.mainMenu li::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #1d2467, #1d2467);
    transition: 0.3s;
}

.mainMenu li:hover::before {
    content: '';
    width: 100%;
}

.toggleBar {
    display: none;
    cursor: pointer;
}

.toggleBar span {
    width: 23px;
    display: block;
    height: 2px;
    background: #000;
    margin-bottom: 4px;
}

.closeNav {
    display: none;
}

.dropDownList {
    display: none;
    padding: 0px;
    width: 190px;
    position: absolute;
    top: 20px;
}

.dropDown {
    list-style: none;
    padding: 5px 20px;
    box-shadow: 0px 2px 5px;
    margin-top: 15px;
    background-color: #fff;
}

.mainMenu li:hover .dropDownList {
    display: block;
}

@media only screen and (max-width:767px) {
    .mainMenu li:hover .dropDownList {
        display: block;
        position: relative;
        top: -10px;
    }

    ul.dropDown {
        box-shadow: none;
        margin-top: 5px;
        padding: 0px 15px;
        padding-top: 12px;
    }

    li.dropDonwItem {
        margin-bottom: 0px !important;
    }
}

.carratDown {
    width: 11px;
    object-fit: contain;
}

.UAELOGO {
    max-width: 140px;
}

header.header .container {
    padding: 0px;
    max-width: 90%;
}

@media only screen and (max-width: 991px) {
    .toggleBar {
        display: block !important;
    }

    .headerNav {
        display: block;
        position: absolute;
        overflow: hidden;
        width: 100%;
        background: #fff;
        top: 0;
        left: -100%;
        padding: 30px 30px 20px;
        height: 100vh;
        transition: 0.3s;
    }

    .closeNav {
        display: block;
        position: absolute;
        right: 20px;
        font-size: 60px;
        transform: rotate(45deg);
        top: -10px;
        cursor: pointer;
        z-index: 5;
    }

    .headerNav ul {
        display: block;
    }

    .headerNav ul li {
        margin-bottom: 10px;
    }

    .headerNav ul li a {
        font-size: 22px;
    }

    .mainMenu li:hover .dropDownList {
        display: block;
        position: relative;
        top: -10px;
    }
}