* {
    margin: 0;
    padding: 0;
}

.fl-container {
    width: 100%;
    /* max-width: 940px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-fade {
    width: 100%;
}

.fl-mask-fade {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.fl-item-fade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    display: flex;
    opacity: 0;
    z-index: 1;
}

.fl-item-fade:first-child {
    opacity: 1;
    z-index: 2;
}

.fl-item-fade p {
    font-size: 2em;
    color: #ffffff;
    font-weight: 500;
}

.fl-arrows {
    width: 44px;
    height: auto;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;

}

.fl-nav {
    width: 100%;
    height: 44px;
    background-color: transparent;
    margin: auto;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.fl-nav-item {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    margin: 0 3px;
    z-index: 2;
}

.nav-active{
    background-color: #e69705;
}