﻿.lounge {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.lounge-bg-image img {
    width: 100%;
}

.lounge-bg-image {
    /*position:absolute;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.lounge-list {
    position: absolute;
    right: 0;
    z-index: 1;
    width: auto;
    top: 40%;
    overflow: hidden;
    transform: translateY(-50%);
}

    .lounge-list ul {
        margin: auto;
        padding: 25px;
        width: max-content;
    }

        .lounge-list ul li {
            list-style: none;
            padding: 10px 15px;
            margin: 5px auto;
            border-radius: 5px;
            transition: 0.35s;
        }

        .lounge-list ul a {
            color: #fff;
            text-shadow: 0px 1px 5px #0e0e0e;
            display: flex;
        }

            .lounge-list ul a i {
                width: 50px;
                height: 50px;
                line-height: 50px;
                background: rgba(255, 255, 255, 0.1);
                text-align: center;
                border-radius: 50%;
                transition: 0.35s;
                border: 2px solid rgba(255, 255, 255, 0.1);
                position:relative;
            }

                .lounge-list ul a i:before {
                    background-size: 24px;
                    background-position: center;
                    position:absolute;
                    background-repeat: no-repeat;
                    content:'';
                    width: 100%;
                    height: 100%;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%,-50%);
                }

.fa-comments-1:before {
    background: url(../images/lounge/chat.png);
}

.fa-comments-2:before {
    background: url(../images/lounge/info.png);
}

.fa-comments-3:before {
    background: url(../images/lounge/video.png);
}

.fa-comments-4:before {
    background: url(../images/lounge/contact-us.png);
}

.fa-comments-5:before {
    background: url(../images/lounge/brochure.png);
}

.lounge-list ul a span {
    padding-left: 5px;
    font-weight: 500;
    font-size: 24px;
    /* text-shadow: 0px 1px 5px #0e0e0e; */
    /* float: left; */
    /* display: flex; */
    line-height: 50px;
}

.bg-one {
    background: #37367a;
    border: 1px solid #37367a;
}

    .bg-one:hover {
        background: rgba(55, 54, 122, 0.75);
        color: #37367a;
    }

        .bg-one:hover i {
            background: rgba(55, 54, 122, 0.75);
            border-color: #37367a;
        }

.bg-two {
    background: rgba(96, 191, 91, 1);
    border: 1px solid rgba(96, 191, 91, 1);
}

    .bg-two:hover {
        background: rgba(96, 191, 91,0.75);
    }

        .bg-two:hover i {
            background: rgba(96, 191, 91,0.75);
            border-color: rgba(96, 191, 91,1);
        }

.bg-three {
    background: rgba(0, 115, 172, 1);
    border: 1px solid rgba(0, 115, 172, 1);
}

    .bg-three:hover {
        background: rgba(0, 115, 172, 0.75);
    }

        .bg-three:hover i {
            background: rgba(0, 115, 172, 0.75);
            border-color: rgba(0, 115, 172, 1);
        }

.bg-four {
    background: rgba(1, 113, 97, 1);
    border: 1px solid rgba(1, 113, 97, 1);
}

    .bg-four:hover {
        background: rgba(1, 113, 97, 0.75);
    }

        .bg-four:hover i {
            background: rgba(1, 113, 97, 0.75);
            border-color: rgba(1, 113, 97, 1);
        }

.bg-five {
    background: rgba(31, 83, 81, 1);
    border: 1px solid rgba(31, 83, 81, 1);
}

    .bg-five:hover {
        background: rgba(31, 83, 81, 0.75);
    }

        .bg-five:hover i {
            background: rgba(31, 83, 81, 0.75);
            border-color: rgba(31, 83, 81, 1);
        }
/*.lounge-list ul li:hover {
    opacity:0.3;
}*/
@media(max-width:991px) {
    .lounge-list {
        width: 100%;
        padding: 0;
        top: unset;
        bottom: 0;
        transform: unset;
        text-align: center;
    }

        .lounge-list ul {
            width: 100%;
            padding: 0;
        }

            .lounge-list ul li {
                display: inline-block;
                padding: 8px 15px;
            }
}

@media (max-width: 767px) {
    .lounge-list {
        position: unset;
        padding: 5px 10px;
    }

        .lounge-list ul li {
            padding: 5px 10px;
                min-width: 160px;
        }
}
