/* Top offer menu before header section */
.top_offer__ {
    height: 36px;
    /* padding: 10px 15px; */
    width: 100%;
    background-color: var(--second-color);
    overflow: hidden;
    /* transition: height 0.3s, padding 0.3s; */
    transition: height 0.3s;
}

.top_offer__link {
    color: #FFFFFF;
    font-size: 16px;
}


@media screen and (max-width: 550px) {
    .top_offer__link {
        font-size: 14px;
    }
}

/* For header top offer */
.top_offer_hide {
    height: 0;
    padding: 0;
}

/* --------------------------------- */

/* burger menu  */

.burger_menu {
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: auto;
}

.burger {
    height: 15px;
    width: 45px;
    cursor: pointer;
    display: grid;
    justify-items: end;
    /* margin-right: 10px; */
}

.burger_bar {
    width: 27px;
    height: 2px;
    background-color: var(--main-black);
    margin: 2px 0;
    transition: 0.4s;
    border-radius: 50px;
}

.bar1 {
    width: 34px;
}

.bar2 {
    width: 20px;
    display: none;
}

.bar3 {
    width: 15px;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 2px);
    transform: rotate(-45deg) translate(-6px, 2px);
    width: 20px;
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-4px, 0px);
    transform: rotate(45deg) translate(-4px, 0px);
    width: 20px;
}


/* Show Burger menu within a fixed with  */
@media screen and (max-width: 800px) {
    .burger {
        display: grid;
    }
}

/* / burder menu  */

/* --------------------------------- */
.header {
    background-color: rgb(222, 248, 255);
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid #E5E9F2;
    position: sticky;
    top: 0;
    /* top: -1px; */
    z-index: 100;
    font-size: 14px;
}

.header_dv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-page-width);
    padding: 5px 20px;
    margin: 0 auto;
    width: 100%;
}

/* .hedr_right{

} */

nav ul {
    min-width: 250px;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    font-weight: 600;
}

nav ul li {
    padding: 5px 10px;
}

.nav_link {
    transition: transform 0.3s;
}

.nav_link:hover {
    color: var(--prc-i);
    transform: scale(1.2);

}

/* Header CTA Button */
.header-CTA-btn {
    margin-left: 15px;
}

.header .logo img {
    max-height: 50px;
}