a {
    color: #000;
}

/* header */
.header {
    width: 100%;
    z-index: 999;
    position: absolute;
    top: 0%;
    left: 0%;
    /* max-height: 540px; */
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    /* position: absolute;
    z-index: 1; */
    background-color: #F4F6F9;
    text-align: center;
    width: 100%;
}

.header li a {
    display: inline-block;
    padding: 20px 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #171B26;
}

.custom-button {
    background: #FFFFFF;
    border-radius: 50px;
    display: inline-block;
}

.social-media-icon {
    text-align: center;
    display: inline-block;
    margin-left: 6px;
}

/*
.header li a:hover,
.header .menu-btn:hover {
    background-color: #FF4900;
    font-size: 18px;
    font-weight: 200;
}
*/
.header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
}

/* menu */
.header .menu {
    clear: both;
    /* max-height: 0; */
    top: -600px;
    position: absolute;
    z-index: 1;
    transition: top .2s ease-out;
    scroll-behavior: smooth;
}

/* menu icon */
.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 35px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #000;
    display: block;
    height: 3px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */
.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    /* max-height: 560px; */
    position: absolute;
    width: 100%;
    /* padding-top: 81px; */
    top: 0%;
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
    z-index: 99999;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

.responsive_header {}

.responsive_header a {}

.responsive_header a img {
    width: 80%;
}

@media (min-width: 992px) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 20px 30px;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }

    .header .menu-icon {
        display: none;
    }
}