header{
    width: 100%;
    float: left;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: white;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

header .px-1200{
    width: 100%;
    max-width: 1200px;
    display: flex;
    padding: 0 20px;
    box-sizing: border-box;
    justify-content: space-between;
}

header .lets-reduce{
    width: 115px;
    height: 36px;
    float: left;
    padding: 20px 0;
}

header .lets-reduce img{
    width: 115px;
    height: 35px;
}

header nav{
    padding: 26px 0 24px 0;
}

nav ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

header li{
    float: left;
    color: #1e1d2d;
    text-align: center;
    padding: 0 20px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
}

.tools-span{
    padding-right: 25px;
    background-image: url("../assets/chevron-down-black.svg");
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: right center;
}

header .tools:hover .tools-span{
    color: #fb320e;
    background-image: url("../assets/chevron-up-color.svg");
}

.tools:hover .tools-options{
    display: block;
}

.tools-options{
    width: 240px;
    display: none;
    flex-direction: column;
    position: absolute;
}

.tools-options .li-cont{
    margin-top: 15px;
    max-height: 300px;
    overflow: auto;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #E2E5E9;
}

.tools-options ul{
    height: 100%;
    display: flex;
    padding: 20px 5px;
    flex-direction: column;
}

.tools-options ul li{
    font-size: 14px;
    text-align: left;
    padding: 5px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

header li a{
    width: 100%;
    text-decoration: none;
    color: #1e1d2d;
}

header li a:hover{
    color: #fb320e;
}

header .try-now{
    float: right;
    border: none;
    outline: none;
    color: white;
    text-decoration: none;
    font-size: 15px !important;
    padding: 10px 30px;
    border-radius: 5px;
    margin: 13px 0;
    background-color: #fb320e;
}

header .menu{
    display: none;
}

@media screen and (max-width: 800px) {
    header .lets-reduce{
        width: 115px;
        height: 36px;
        padding: 15px 0;
    }

    header nav{
        display: none;
    }

    header .try-now{
        display: none;
    }

    header .menu{
        width: 65px;
        height: 65px;
        float: right;
        display: block;
        border: none;
        outline: none;
        top: 0;
        right: 5px;
        position: absolute;
        background-repeat: no-repeat;
        background-size: 25px 25px;
        background-position: center;
        background-image: url("../assets/menu-black.svg");
        background-color: white;
    }

    header.responsive{
        padding-bottom: 20px;
    }

    header.responsive .px-1200{
        display: flex;
        flex-direction: column;
    }

    header.responsive nav{
        width: 100%;
        display: block;
        padding: 0;
    }

    header.responsive ul{
        display: flex;
        padding: 0 30px;
        flex-direction: column;
    }

    header.responsive li{
        padding: 5px 0;
        text-align: left;
    }
    
    .tools-options{
        width: 100%;
        position: static;
    }

    .tools-options ul{
        border: none;
        padding: 0 0 0 20px !important;
        background-color: white;
    }

    .tools-options ul li{
        font-size: 15px;
    }

    header.responsive .menu{
        display: block;
        background-image: url("../assets/close-black.svg");
    }

    header.responsive .try-now{
        float: left;
        display: block;
        margin-left: 30px;
        padding: 13px 30px;
    }
}