header {
    padding-top: 20px;
}

.subheader {
    padding-top: 20px;
}


.nav-bar .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.element {

    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;

}




.element ul {
    text-decoration: none;
    font-size: 18px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin-right: 6px;
}

.element ul li {
    display: block;
}

.element ul li a {
    font-weight: "400";
    font-size: 16px;
    height: 70px;
    align-items: center;
    overflow: hidden;
    display: flex;
    transition: all .3s linear;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: #025366;
}

.element a:hover {
    color: #E2B12B
}



.element ul li a::after {
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    bottom: 15px;
    z-index: 1;
    right: 0;
    transition: all .3s linear;
    opacity: 0;
    transform: translateX(-100%);
    border: none;
    left: 0;
    margin: auto;
    background-color: #E2B12B !important;
}

.element ul li a:hover::after {
    opacity: 1;
    transform: translateX(0%);

}

.top-par {
    background-color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 90%;
}

.sub-header {
    padding: 90px 50px;
    background-color: #025366;
    border: 1px solid #fff;

    border-radius: 7px;
    width: 100%;
    background-repeat: no-repeat;
    z-index: 1;
    align-items: center;
    justify-content: center;

}

.img-header img {
    max-width: 86% !important;
}


.img-header {
    height: 386px;
}

.img-header img {
    max-width: 79%;
}

.sub-header h6 {
    /* position: relative;
    right: 26px; */
    color: #E2B12B;
}

.sub-header h2 {
    font-size: 30px;
    color: #fff;
}

.sub-header h1 {
    color: #fff;
}

.sub-header p {
    color: #fff;
}

.text-header {
    padding: 10px;
}

.button-downloud {
    padding: 16px;
    display: flex;
    gap: 10px;
}


.button-downloud img {
    border: 1px solid #025366;
    border-radius: 5px;
    object-fit: contain;
    width: 170px;
    height: 56px;
}
.img-header {
    position: relative;
    bottom: 23px;
}

.img-header img {
    max-width: 442px !important;
    transform: translateX(0px);
    animation: float 6s ease-out infinite;
    object-fit: contain;

}

@keyframes float {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-60px);
    }

    100% {
        transform: translateX(0px);
    }
}