﻿body {
    font-family: 'Reddit Sans', 'Mitr', sans-serif;
}

.full-width {
    width: 100%;
}


@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.error-message {
    color: #ffffff;
    background-color: #ff263a;
    border-color: #ff263a;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
}


/*****************************************
* Fade Gradient
*****************************************/
.fade-gradient {
    position: relative;
}

    .fade-gradient::after {
        position: absolute;
        background-image: linear-gradient(to bottom, rgb(0, 0, 0, 0), rgba(0, 0, 0, 1) );
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*****************************************
* Fade Image
*****************************************/
.fadeimage-mouseover {
    overflow: hidden;
    cursor: pointer;
}

    .fadeimage-mouseover:hover img {
        transform: scale(1.1);
        transition: transform 3s ease-in;
    }



/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #262451;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(38, 36, 81, 1));
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 360px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


/*****************************************
* Main Content 
*****************************************/
#main-content {
    margin-top: 60px;
    min-height: calc(70vh - 60px);
}


@media(max-width: 460px) {
    #main-content {
        margin-top: 60px
    }
}



/*****************************************
* Navbar 
*****************************************/
.navbar {
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    transition: 0.5s ease all;
    height: 60px;
    /*box-shadow: 0px 4px 12px #e8e8e8;*/
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(38, 36, 81, 1));
}

    .navbar .navbar-share {
        position: absolute;
        top: 24px;
        right: 46px;
    }

        .navbar .navbar-share img {
            width: 34px;
        }


    .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(179, 185, 224, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }


    .navbar .navbar-top {
        position: absolute;
        top: 20px;
        right: 24px;
    }

        .navbar .navbar-top .external-link, .navbar .navbar-top .external-link:hover {
            border: 1px solid #45CBCA;
            padding: 5px 13px 4px 13px;
            color: #000000;
            border-radius: 7px;
            font-size: 0.9rem;
            margin: 0px 5px;
            text-decoration: none;
            background: #45CBCA;
            text-transform: uppercase;
        }



    .navbar.bg-transparent {
        background-color: rgba(0, 0, 0, 0);
    }


    .navbar .navbar-brand .navbar-logo {
        height: 40px;
        transition: 0.5s ease all;
    }


.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    color: #b3b9e0;
    font-size: 14px;
    line-height: 16px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}


    .navbar-light .navbar-nav .nav-link:hover {
        color: #b3b9e0;
    }


    .navbar-light .navbar-nav .nav-link.active {
        color: #ffffff;
        background-color: #ff7d26 !important;
        border-color: #ff7d26 !important;
        border-radius: 20px;
        outline: 0;
        position: relative;
    }


@media (max-width: 460px) {

    .navbar {
        padding: 0rem 1rem;
        height: 70px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar .navbar-share {
        top: 26px;
        right: 60px;
    }

        .navbar .navbar-share img {
            width: 20px;
        }

    .navbar .navbar-top {
        top: 7px;
        right: 50px;
    }

    .navbar .navbar-brand {
        top: 8px;
    }


        .navbar .navbar-brand .navbar-logo {
            height: 50px;
        }

    .navbar-nav {
        margin: 10px auto 0px auto;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
    }


    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }
}


.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border: none;
    outline: none;
    position: absolute;
    right: 10px;
    top: 13px;
}


/*****************************************
* Main Backend
*****************************************/
#main-backend {
    padding: 40px 0px 40px 0px;
}


    #main-backend .backpage {
        margin-bottom: 20px;
    }

        #main-backend .backpage .button-action, #main-backend .backpage .button-action:hover {
            justify-content: flex-start;
            transform: scale(1);
        }

            #main-backend .backpage .button-action .button-text {
                padding-left: 10px;
            }

            #main-backend .backpage .button-action .button-icon .button-icon-icon {
                transform: rotate(180deg);
            }

    #main-backend .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

        #main-backend .title-header .title {
            font-size: 40px;
            line-height: 44px;
            color: #29771a;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        #main-backend .title-header .button-link {
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            line-height: 16px;
            background: #cb2d2d;
            border: #a32323;
            border-radius: 0px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            outline: none;
            margin-top: 15px;
            padding: 12px 30px 10px 30px;
        }

@media (max-width: 460px) {
    #main-backend .title-header {
        margin-bottom: 5px;
    }


        #main-backend .title-header .title {
            font-size: 26px;
            line-height: 26px;
        }
}

#main-backend .backend-lists {
    border: 1px solid #5f5f5f;
    background: #2d2d2d;
}




/*****************************************
* Form
*****************************************/
form .form-title {
    font-size: 26px;
    line-height: 26px;
    color: #000000;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

form .form-subtitle {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 20px;
}

form .form-wrapper {
    padding: 20px;
    background: #fbfbfb;
    border-radius: 10px;
    margin-bottom: 20px;
}

    form .form-wrapper .message-text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }

        form .form-wrapper .message-text a, form .form-wrapper .message-text a:hover {
            color: #000000;
            text-decoration: underline;
        }



@media (max-width: 460px) {
    form .form-title {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    form .form-subtitle {
        font-size: 16px;
        line-height: 16px;
    }
}

form .form-group label {
    color: #262451;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 0px 10px;
}

    form .form-group label .fa {
        font-size: 12px;
        line-height: 12px;
        color: #b50505;
    }


form .form-group input {
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    height: 40px;
    font-size: 16px;
    color: #000000;
    line-height: 3rem;
    width: 100%;
    border-radius: 20px;
    outline: none;
    border: 1px solid #eaeaea;
}

    form .form-group input:read-only {
        background: #eeeeee;
    }

form .form-group textarea {
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    font-size: 16px;
    color: #000000;
    line-height: 1.3rem;
    width: 100%;
    border-radius: 20px;
    outline: none;
    border: 1px solid #eaeaea;
}

    form .form-group textarea:read-only {
        background: #eeeeee;
    }


form .form-group select {
    background-clip: padding-box;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    height: 40px;
    font-size: 16px;
    color: #000000;
    line-height: 3rem;
    width: 100%;
    border-radius: 20px;
    outline: none;
    border: 1px solid #eaeaea;
}

    form .form-group select:read-only {
        background: #eeeeee;
    }


    form .form-group select option {
        font-size: 12px;
        line-height: 12px;
    }

form .form-group input[type=file] {
    background: #ffffff;
    border: 1px solid #eae8e4;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 5px 20px;
    box-sizing: border-box;
    height: 40px;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 2rem;
    width: 100%;
    border-radius: 20px;
}



form .form-group.form-checkbox {
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
    margin-bottom: 0rem;
    font-size: 16px;
    line-height: 16px;
}


    form .form-group.form-checkbox .checkbox-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 16px;
    }

        form .form-group.form-checkbox .checkbox-wrapper .checkbox-item {
            width: calc(100%/4);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            line-height: 0.8rem;
            margin-bottom: 10px;
        }

            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item img {
                height: 36px;
            }



            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver img {
                    height: 50px;
                }


    form .form-group.form-checkbox input[type=checkbox] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
    }



form .form-group.form-radio {
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
    margin-bottom: 5px;
}


    form .form-group.form-radio .radio-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 1rem;
    }

        form .form-group.form-radio .radio-wrapper .radio-item {
            width: calc(100%/4);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            line-height: 1rem;
            margin-bottom: 10px;
        }

            form .form-group.form-radio .radio-wrapper .radio-item img {
                height: 36px;
            }



            form .form-group.form-radio .radio-wrapper .radio-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-radio .radio-wrapper .radio-item.driver img {
                    height: 50px;
                }


    form .form-group.form-radio input[type=radio] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
        margin-top: 5px;
    }


form .btn-primary {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    background: #ffa500;
    border: 1px solid #ffa500;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    padding: 10px 30px 10px 30px;
    margin-right: 5px;
}

    form .btn-primary:hover, form .btn-primary:focus {
        color: #000000;
        background: #ffa500;
        border: 1px solid #ffa500;
    }


form .btn-secondary {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    background: #f3f3f3;
    border: 1px solid #f3f3f3;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    padding: 10px 30px 10px 30px;
    margin-right: 5px;
}

    form .btn-secondary:hover, form .btn-secondary:focus {
        color: #000000;
        background: #f3f3f3;
        border: 1px solid #f3f3f3;
    }

form .btn-back {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    padding: 10px 30px 10px 30px;
    margin-right: 5px;
}

    form .btn-back:hover, form .btn-back:focus {
        color: #000000;
        background: #f3f3f3;
        border: 1px solid #f3f3f3;
    }



.checkbox_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*padding-top: 25px;*/
}

    .checkbox_wrapper .checkbox-input {
        width: 20px;
        height: 20px;
    }

    .checkbox_wrapper .checkbox-label {
        padding: 0px 10px;
    }


    .checkbox_wrapper .checkbox-input:read-only {
        pointer-events: none;
    }


/*****************************************
* Login Form
*****************************************/
#login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    #login-form .login-form-wrapper {
        width: 450px;
        /*box-shadow: 0px 4px 12px #e8e8e8;*/
        padding: 20px;
    }

        #login-form .login-form-wrapper .login-logo {
            text-align: center;
        }

            #login-form .login-form-wrapper .login-logo img {
                width: 50%;
            }

        #login-form .login-form-wrapper .login-system-name {
            font-size: 18px;
            font-weight: 400;
            color: #b3b9e0;
            margin-bottom: 40px;
            text-align: center;
            text-transform: uppercase;
        }


#main-dashboard {
    display: flex;
    justify-content: flex-start;
}

    #main-dashboard .dashboard-menu {
        width: 300px;
        padding: 40px 20px;
    }

        #main-dashboard .dashboard-menu .menu-logo {
            text-align: center;
            margin-bottom: 20px;
        }

            #main-dashboard .dashboard-menu .menu-logo img {
                width: 60%;
            }



        #main-dashboard .dashboard-menu .user-profile {
            color: #26224b;
            font-size: 16px;
            line-height: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            background: #b3b9e0;
            padding: 10px 15px;
            border-radius: 10px;
        }



        #main-dashboard .dashboard-menu a.single-menu, #main-dashboard .dashboard-menu a.single-menu:hover {
            color: #b3b9e0;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
        }

    #main-dashboard .dashboard-content {
        width: calc(100% - 300px);
        height: 100vh;
        padding: 40px 40px 100px 40px;
        background: #ffffff;
        overflow: auto;
        overflow-y: scroll;
        overflow-x: hidden;
    }


.sidemenu {
    margin-bottom: 20px;
}

    .sidemenu .title {
        color: #b3b9e0;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .sidemenu .sidemenu-lists {
        padding: 5px 15px;
        /*background: #bcc6ff;
        border-radius: 5px;*/
    }

    .sidemenu ul {
        list-style: none;
        padding-left: 0px;
        font-size: 14px;
        margin-bottom: 0px;
    }

        .sidemenu ul li {
        }

            .sidemenu ul li a {
                color: #ffffff;
            }


.content-box {
}

    .content-box .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

        .content-box .title-header .title {
            font-size: 36px;
            line-height: 36px;
            color: #262451;
            text-transform: uppercase;
            /*margin-bottom: 10px;*/
        }

        .content-box .title-header .button-link {
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            line-height: 16px;
            background: #cb2d2d;
            border: #a32323;
            border-radius: 0px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            outline: none;
            padding: 12px 30px 10px 30px;
            border-radius: 20px;
        }


.table-data {
    width: 100%;
}

    .table-data thead tr th {
        background: #d3d3d3;
        color: #000000;
        padding: 3px;
    }

    .table-data tbody tr td {
        border: 1px solid #ededed;
        padding: 3px;
        vertical-align: top;
        font-size: 14px;
    }

        .table-data tbody tr td .view-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: url('/frontend-assets/images/icons/view.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px;
        }

        .table-data tbody tr td .edit-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: url('/frontend-assets/images/icons/editing.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px;
        }

        .table-data tbody tr td .delete-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: url('/frontend-assets/images/icons/deleteing.png');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            margin: 0px;
        }

        .table-data tbody tr td .status-checkbox {
            pointer-events: none;
            width: 18px;
            height: 18px;
        }




/*****************************************
* Evidence Item
*****************************************/
.evidence-item, .evidence-item:hover {
    color: #db3832;
    border: 2px solid #bbbbbb;
    display: block;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    width: 60%;
}


    .evidence-item .evidence-icon {
        margin-bottom: 5px;
    }

        .evidence-item .evidence-icon img {
            width: 80%;
        }

    .evidence-item .evidence-title {
        font-weight: 600;
        font-size: 20px;
    }

    .evidence-item .evidence-referrals {
    }


    .evidence-item iframe {
        width: 100%;
        height: 500px;
    }


/*****************************************
* Export PDF
*****************************************/
#export-pdf .title {
    color: #000000;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}

#export-pdf table {
    font-size: 20px;
    line-height: 20px;
}



/*****************************************
* Welcome Video
*****************************************/
#home-intro {
    background: #000000;
    padding: 0px;
    position: relative;
}

@media(max-width:460px) {
    #home-intro {
        padding: 0px;
    }
}



#home-intro .home-intro-text-top {
    color: #ffe34c;
    position: absolute;
    bottom: auto;
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    left: 50%;
    z-index: 2;
    top: 20%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    text-align: center;
}

    #home-intro .home-intro-text-top .home-intro-headline {
        font-size: 34px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 15px;
        width: 100%;
        text-transform: uppercase;
    }

    #home-intro .home-intro-text-top .home-intro-subheadline {
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        width: 100%;
    }

@media(max-width:460px) {
    #home-intro .home-intro-text-top {
        top: 10%;
        left: 10%;
        transform: translate(-10%, -10%);
    }

        #home-intro .home-intro-text-top .home-intro-headline {
            font-size: 28px;
            line-height: 28px;
            margin-bottom: 5px;
        }

        #home-intro .home-intro-text-top .home-intro-subheadline {
            font-size: 16px;
            line-height: 20px;
        }
}



#home-intro .home-intro-button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -90%);
    z-index: 2;
}

    #home-intro .home-intro-button .btn-contact {
        padding: 18px 30px;
        color: #000000;
        background-color: #ffe34c;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }

    #home-intro .home-intro-button .btn-contact-outline {
        padding: 18px 30px;
        color: #ffe34c;
        background-color: transparent;
        border: 1px solid #ffe34c;
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        font-size: 18px;
        line-height: 18px;
        margin: 5px;
    }


@media(max-width:460px) {
    #home-intro .home-intro-button .btn-contact {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }

    #home-intro .home-intro-button .btn-contact-outline {
        padding: 14px 30px;
        font-size: 16px;
        line-height: 16px;
    }
}




.home-intro-wrapper {
    height: 70vh;
    min-height: 680px;
    /*max-width: 1920px;*/
    max-height: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

    .home-intro-wrapper .home-intro-container {
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        position: relative;
    }




/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(38, 36, 81, 1));
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: none;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                text-align: center;
                margin-bottom: 30px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 50%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #b3b9e0;
                    font-size: 1.5rem;
                    letter-spacing: 0px;
                    text-align: center;
                    padding: 2px 0px;
                    text-transform: unset;
                }





/*****************************************
* Notice Box
*****************************************/
#home-about {
    padding: 100px 0px 100px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

.home-about {
    width: 70%;
    margin: 0px auto;
}

    .home-about .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


    .home-about .detail {
        color: #ffffff;
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

        .home-about .detail b, .home-about .detail strong {
            color: #f10040;
        }

        .home-about .detail a[href^="tel"],
        .home-about .detail a[href^="mailto"] {
            color: #ffe34c;
            text-decoration: none;
        }


@media (max-width: 460px) {
    #home-about {
        padding: 50px 0px 50px 0px;
    }

    .home-about {
        width: 100%;
    }

        .home-about .title {
            font-size: 30px;
            line-height: 34px;
        }


        .home-about .detail {
            width: 100%;
            font-size: 16px;
            line-height: 18px;
        }
}





/*****************************************
* Footer
*****************************************/
#footer {
    color: #b3b9e0;
    padding: 40px 0px 0px 0px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(38, 36, 81, 1));
}

    #footer .container {
        padding-right: 0px;
        padding-left: 0px;
    }


@media (max-width: 460px) {

    #footer {
        padding: 20px 0px 0px 0px;
    }
}


.footer-bottom {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


    .footer-bottom .footer-header {
        font-size: 20px;
        line-height: 20px;
    }

    .footer-bottom .footer-text {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        padding: 10px 0px 20px 0px;
        color: #ffffff;
    }

    .footer-bottom .footer-phone {
        font-size: 16px;
        line-height: 20px;
        padding: 5px 0px;
        margin-bottom: 20px;
    }

        .footer-bottom .footer-phone a, .footer-bottom .footer-phone a:hover {
            color: #ffffff;
            font-weight: 600;
            text-decoration: none;
        }

    .footer-bottom .left-panel {
        width: 20%;
        padding: 20px;
    }

        .footer-bottom .left-panel .footer-brand {
        }

            .footer-bottom .left-panel .footer-brand img {
                width: 70%;
                margin-bottom: 20px;
            }

        .footer-bottom .left-panel .qr-code {
            width: 40%;
        }

    .footer-bottom .middle-panel {
        width: 50%;
        padding: 20px;
    }


    .footer-bottom .right-panel {
        width: 30%;
        padding: 20px;
    }

@media (max-width: 460px) {
    .footer-bottom .left-panel .footer-brand img {
        width: 30%;
    }
}



.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px 20px 0px;
}

    .footer-social .social-item {
        width: 36px;
        height: 36px;
        margin: 0px 5px;
    }

        .footer-social .social-item img {
            /*filter: brightness(0%);*/
        }


.footer-copyright {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #434b55;
}


@media (max-width: 460px) {

    .footer-bottom .left-panel, .footer-bottom .middle-panel, .footer-bottom .right-panel {
        width: 100%;
        padding: 10px 20px;
    }

    .footer-bottom .footer-header {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .footer-bottom .footer-text {
        padding: 10px 0px 10px 0px;
    }
}



/*****************************************
* Testimonials
*****************************************/
#testimonials {
    padding: 100px 0px;
    background: #f7f7f7;
}

    #testimonials .title {
        font-size: 60px;
        line-height: 64px;
        font-weight: 600;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        color: #262451;
        text-transform: uppercase;
    }

    #testimonials .subtitle {
        font-weight: 400;
        font-size: 20px;
        margin-bottom: 30px;
        letter-spacing: 0px;
        text-align: center;
    }


@media (max-width: 460px) {
    #testimonials {
        padding: 40px 0px;
    }

        #testimonials .title {
            font-size: 36px;
            line-height: 40px;
        }

        #testimonials .subtitle {
            font-size: 18px;
            line-height: 22px;
        }
}


.testimonials-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .testimonials-lists .testimonials-item {
        width: calc(100% / 4 - 20px);
        padding: 30px 20px;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
        margin: 10px;
        text-align: center;
    }

        .testimonials-lists .testimonials-item .testimonials-name {
            font-size: 20px;
            line-height: 20px;
            color: #262451;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .testimonials-lists .testimonials-item .testimonials-position {
            font-size: 16px;
            line-height: 16px;
            font-weight: 600;
            color: #bbbaba;
            margin-bottom: 5px;
        }

        .testimonials-lists .testimonials-item .testimonials-business-type {
            font-size: 14px;
            line-height: 14px;
            color: #bbbaba;
            font-weight: 400;
            margin-bottom: 10px;
            height: 40px;
        }

        .testimonials-lists .testimonials-item .testimonials-feedback {
        }

@media (max-width: 460px) {
    .testimonials-lists .testimonials-item {
        width: 100%;
    }
}


/*****************************************
* Menu Tab
*****************************************/
#menu-tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px;
}

    #menu-tab .menu-tab-item, #menu-tab .menu-tab-item:hover {
        padding: 10px 20px;
        color: #262451;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        text-decoration: none;
        display: inline-block;
    }


        #menu-tab .menu-tab-item.active {
            border-radius: 10px;
            background: #262451;
            color: #ffffff;
            pointer-events: none;
        }


/*****************************************
* Portfoloio
*****************************************/
#portfolio {
    padding: 100px 0px 0px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

    #portfolio .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


.portfolio-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /*padding: 15px;*/
}

    .portfolio-lists .portfolio-item {
        width: calc(100%/3);
        /*padding: 15px;*/
    }

        .portfolio-lists .portfolio-item img {
            box-shadow: 2px 4px 12px rgba(0,0,0, 0.4);
            /*border-radius: 5px;*/
        }


        .portfolio-lists .portfolio-item .portfolio-content {
            position: absolute;
            color: #fff;
            text-align: center;
            margin: 0;
            bottom: 40px;
            left: 0px;
            right: 0px;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: linear-gradient(to top, rgb(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
        }

            .portfolio-lists .portfolio-item .portfolio-content p {
                font-size: 20px;
                line-height: 24px;
                margin-bottom: 10px;
            }

            .portfolio-lists .portfolio-item .portfolio-content h1 {
                font-size: 22px;
                line-height: 26px;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 15px;
                padding: 0px 20px;
            }



@media(max-width:430px) {
    .portfolio-lists .portfolio-item {
        width: 100%;
        padding: 0px 0px 20px 0px;
    }
}


/*****************************************
* Benefit
*****************************************/
#benefit {
    padding: 100px 0px 100px 0px;
    background: #000000;
    background-image: linear-gradient(to bottom, rgba(38, 36, 81, 0.2), rgba(38, 36, 81, 1));
}

    #benefit .title {
        color: #b3b9e0;
        font-size: 36px;
        line-height: 36px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 0px;
    }


.benefit-item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    color: rgb(179, 185, 224);
    width: 80%;
    margin: 0px auto 20px auto;
    box-shadow: 0 0 5px rgba(255, 125, 0, 0.6) inset, 0 0 10px 2px rgba(179, 185, 224, 0.5) inset, 0 0 15px 4px rgba(179, 185, 224, 0.4) inset, 5px 5px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 20px;
}

    .benefit-item .benefit-icon {
        width: 200px;
        text-align: center;
    }

        .benefit-item .benefit-icon i {
            font-size: 80px;
            display: block;
            margin-bottom: 15px;
            color: #b3b9e0;
        }

    .benefit-item .benefit-detail {
        width: calc(100% - 200px);
    }

        .benefit-item .benefit-detail .benefit-title {
            font-size: 26px;
            line-height: 26px;
            margin-bottom: 10px;
        }

        .benefit-item .benefit-detail .benefit-desc {
            font-size: 16px;
            line-height: 20px;
        }
