
:root {
    --theme-red: #ef3724;
    --theme-blue: #2960f7;
    --theme-green: #8cc63f;
    --theme-orange: #fd7e14;
    --theme-purple: #6f42c1;
}

/* Light */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 300;
    src: local('Quicksand Light'), local('Quicksand-Light'), url(https://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_pgHYYT8L_.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Normal */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    src: local('Quicksand Regular'), local('Quicksand-Regular'), url(https://fonts.gstatic.com/s/quicksand/v8/6xKtdSZaM9iE8KbpRA_hK1QN.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Medium */
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 500;
    src: local('Quicksand Medium'), local('Quicksand-Medium'), url(https://fonts.gstatic.com/s/quicksand/v8/6xKodSZaM9iE8KbpRA_p2HcYT8L_.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 
    1. Basic
*/

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

.fw-bold {
    font-weight: 700;
}

.fw-medium {
    font-weight: 500;
}

.fw-normal {
    font-weight: 400;
}

.fw-light {
    font-weight: 300;
}

.fs-large {
    font-size: 21px;
}

.fs-normal {
    font-size: 100%;
}

.fs-small {
    font-size: 14px;
}

a:hover, a:active {
    color: #2184f5;
}

/* Image Responsive */
.img-place {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

    .img-place > img {
        width: 100%;
        height: auto;
    }

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    visibility: visible;
    z-index: 99;
}

/* 
    2. Button
*/
.btn-theme {
    padding: 10px 30px;
    margin: 5px;
    height: unset;
    background-color: #747474;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 0 0 2px #fff, 0 3px 9px rgba(0,0,0,0.3);
}

    .btn-theme:hover, .btn-theme:active {
        background-color: #808080;
        color: #fff;
    }

    .btn-theme:focus {
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #747474;
    }

    .btn-theme.no-shadow {
        box-shadow: none !important;
    }

.btn-theme-outline {
    padding: 10px 30px;
    margin: 5px;
    height: unset;
    background-color: transparent;
    color: #747474;
    border: 0;
    font-weight: 500;
    box-shadow: 0 0 0 2px #747474;
}

    .btn-theme-outline:hover {
        background-color: #747474;
        color: #fff;
    }

    .btn-theme-outline:focus {
        background-color: #747474;
        color: #fff;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #747474;
    }

.btn-rounded {
    border-radius: 40px !important;
}

/* Floating Action Button */
.btn-fab {
    display: inline-block;
    padding: 0;
    width: 50px;
    height: 50px;
    outline: none;
    border: 0;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
}

    .btn-fab:focus,
    .btn-fab:active {
        box-shadow: none;
    }

    .btn-fab.btn-sm {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }


/* Template Config */
.config {
    position: fixed;
    top: 50%;
    right: -282px;
    padding: 5px;
    background-color: transparent;
    transition: right .3s ease;
    z-index: 100;
}

    .config.active {
        right: 0;
    }

.template-config {
    position: relative;
    display: block;
    float: left;
    margin: 0 !important;
    padding: 5px;
    background-color: #fff;
    border-radius: 12px 0 0 12px;
    box-shadow: -3px 2px 9px rgba(50, 50, 50, 0.2);
}

    .template-config .btn-fab {
        background-color: transparent !important;
        color: #52565c !important;
        margin: 3px 0;
    }

        .template-config .btn-fab:hover,
        .template-config .btn-fab:focus {
            background-color: #f2f4fa !important;
        }

.color-bar {
    display: block;
    margin: 10px 0;
    width: 100%;
}

.color-item {
    display: inline-block;
    margin: 5px 3px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

    .color-item.selected {
        background-position: center center;
        background-size: 50% 50%;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
    }

.set-menu {
    position: relative;
    display: inline-block;
    margin: 0 !important;
    padding: 10px 15px;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(50, 50, 50, 0.2);
}


/* 
    3. Color Scheme
*/

.bg-theme-gradient {
    background-image: linear-gradient(to right, #f55745 0%, #8490ff 100%) !important;
}

.bg-theme-red {
    background-color: #ef3724 !important;
}

.bg-theme-blue {
    background-color: #2960f7 !important;
}

.bg-theme-green {
    background-color: #8cc63f !important;
}

.bg-theme-orange {
    background-color: #fd7e14 !important;
}

.bg-theme-purple {
    background-color: #6f42c1 !important;
}

.fg-theme-red {
    color: #ef3724 !important;
}

.fg-theme-blue {
    color: #2960f7 !important;
}

.fg-theme-green {
    color: #8cc63f !important;
}

.fg-theme-orange {
    color: #fd7e14 !important;
}

.fg-theme-purple {
    color: #6f42c1 !important;
}

.fg-dark {
    color: #343a40 !important;
}

.fg-white {
    color: #fff !important;
}

/* Social Color */
/*.bg-facebook,
.bg-hover-facebook:hover {
    background-color: #3B5997 !important;
}

.bg-twitter,
.bg-hover-twitter:hover {
    background-color: #1DA1F2 !important;
}

.bg-linkedin,
.bg-hover-linkedin:hover {
    background-color: #0077B5 !important;
}

.bg-pinterest,
.bg-hover-pinterest:hover {
    background-color: #BD081C !important;
}

.bg-google-plus,
.bg-hover-google-plus:hover {
    background-color: #D11718 !important;
}

.bg-behance,
.bg-hover-behance:hover {
    background-color: #005CFF !important;
}


.bg-dribbble,
.bg-hover-dribbble:hover {
    background-color: #E84C88 !important;
}

.bg-github,
.bg-hover-github:hover {
    background-color: #323131 !important;
}

.bg-instagram,
.bg-hover-instagram:hover {
    background-color: #DC3472 !important;
}

.bg-medium,
.bg-hover-medium:hover {
    background-color: #00AB6C !important;
}

.bg-reddit,
.bg-hover-reddit:hover {
    background-color: #FF4501 !important;
}

.bg-snapchat,
.bg-hover-snapchat:hover {
    background-color: #FFFC00 !important;
}

.bg-tumblr,
.bg-hover-tumblr:hover {
    background-color: #01273A !important;
}

.bg-youtube,
.bg-hover-youtube:hover {
    background-color: #FE0002 !important;
}*/

/* 
    4. Progressbar
*/
.progress-wrapper {
    display: block;
    margin: 10px 0;
}

    .progress-wrapper .caption {
        font-weight: 500;
    }

.progress {
    margin-top: 5px;
    height: 1.25rem;
    border: 2px solid #fff;
    background-color: #fff;
    box-shadow: 0 0 0 2px #747474;
}

.progress,
.progress-bar {
    border-radius: 30px;
}

.progress-bar {
    font-size: 12px;
    background-color: #747474;
}

/* 
    5. Preloader
*/

/* 
    6. Pagination
*/
.page-item:not(:last-child) .page-link {
    margin-right: 8px;
}

.page-item.active .page-link {
    background-color: #52565c;
    color: #fff;
}

.page-link {
    border: 0;
    padding: 10px 16px;
    background-color: #f2f4fa;
    color: #52565c;
}

    .page-link:hover {
        color: #2C2D34;
    }

    .page-link:focus {
        box-shadow: none;
    }


/* 
    7. List style
*/
.theme-list {
    position: relative;
    padding-left: 30px;
    list-style: none;
    z-index: 10;
}

    .theme-list::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 9px;
        margin: auto;
        width: 1px;
        height: 85%;
        background-color: #cacdd6;
        z-index: -1;
    }

    .theme-list li {
        display: block;
        margin: 5px 0;
    }

        .theme-list li::before {
            content: "";
            position: absolute;
            left: 3px;
            margin: 6px 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #fff;
            border: 2px solid #888;
        }

/*
 *  8. Navigation 
 */
.sticky {
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-nav .nav-link {
    padding: 14px 10px;
}

@media (min-width: 576px) {
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* 
 *  10. Select
 */
.vg-select {
    width: 100%;
    height: unset;
    line-height: unset;
    padding: 10px 30px 10px 18px;
    font-size: 16px;
    border-width: 2px;
    z-index: 11;
}

    .vg-select:focus {
        border-color: #80bdff;
    }

.nice-select::after {
    width: 7px;
    height: 7px;
    margin-top: -5px;
    right: 15px;
}



/*
    10. Plugins
*/

/* Owl Carousel */
.owl-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    height: 60px;
    z-index: 10;
}

    .owl-header .story-type {
        margin-right: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        text-align: center;
        background-color: #acacac;
        color: #fff;
    }

    .owl-header .time {
        display: block;
        font-size: 12px;
    }

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff !important;
    outline: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
}

.owl-nav .disabled {
    opacity: 0;
    visibility: hidden;
}

.owl-carousel:hover .owl-nav .owl-prev:not(.disabled):not(:disabled),
.owl-carousel:hover .owl-nav .owl-next:not(.disabled):not(:disabled) {
    opacity: 1;
    visibility: visible;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-dots {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
}

    .owl-dots .owl-dot {
        position: relative;
        display: inline-block;
        margin: 0 2px;
        outline: none;
    }

        .owl-dots .owl-dot span {
            display: block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #dadada;
        }

        .owl-dots .owl-dot.active span {
            background: #3c94f8;
        }

/* OpenGraph Grid */
.og-grid {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

    .og-grid li {
        display: inline-block;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
        vertical-align: top;
        width: 100%;
        max-width: 350px;
        height: 250px;
        overflow: hidden;
    }

        .og-grid li > a {
            position: relative;
            border: none;
            display: block;
            width: 100%;
            height: 250px;
        }

            .og-grid li > a img {
                width: auto;
                height: 100%;
            }

        .og-grid li.og-expanded > a::after {
            content: " ";
            position: absolute;
            top: auto;
            left: 50%;
            border: solid transparent;
            height: 0;
            width: 0;
            pointer-events: none;
            border-bottom-color: #f0f3f8;
            border-width: 15px;
            margin: -20px 0 0 -15px;
        }

.og-content {
    display: none;
}

.og-expander {
    position: absolute;
    background: #f0f3f8;
    top: auto;
    left: 0;
    width: 100%;
    margin-top: 10px;
    text-align: left;
    height: 0;
    overflow: hidden;
}

.og-expander-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 15px;
    height: 100%;
}

.og-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

    .og-close::before,
    .og-close::after {
        content: '';
        position: absolute;
        width: 100%;
        top: 50%;
        height: 1px;
        background: #888;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .og-close::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .og-close:hover::before,
    .og-close:hover::after {
        background: #333;
    }

.og-fullimg,
.og-details {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.og-fullimg {
    display: none;
    padding: 8px 0;
    text-align: center;
}

    .og-fullimg img {
        max-height: 100%;
        max-width: 100%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

.og-details h1,
.og-details h2,
.og-details h3,
.og-details h4 {
    font-weight: 400;
}

.og-details p {
    color: #999;
}

.og-loading {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    -webkit-animation: loader 0.5s infinite ease-in-out both;
    -moz-animation: loader 0.5s infinite ease-in-out both;
    animation: loader 0.5s infinite ease-in-out both;
}

@-webkit-keyframes loader {
    0% {
        background: #ddd;
    }

    33% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
    }

    66% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
    }
}

@-moz-keyframes loader {
    0% {
        background: #ddd;
    }

    33% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
    }

    66% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
    }
}

@keyframes loader {
    0% {
        background: #ddd;
    }

    33% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
    }

    66% {
        background: #ccc;
        box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
    }
}

@media (min-width: 640px) {
    .og-grid li {
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .og-expander-inner {
        flex-direction: row;
    }

    .og-fullimg,
    .og-details {
        max-width: 50%;
    }

    .og-fullimg {
        display: block;
    }

    .og-details {
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    .og-grid li {
        max-width: 33.3333%;
    }
}

/* Isotope */
.gridder {
    position: relative;
    display: block;
}

.grid-item {
    display: block;
    float: left;
    margin: 16px 0;
    padding: 0 16px;
}

.grid-item,
.grid-sizer {
    width: 100%;
}

    .grid-item img {
        width: 100%;
        height: 100%;
    }

    .grid-item .img-place {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
        height: 100%;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
    }

    .grid-item .img-caption {
        position: absolute;
        bottom: 0;
        padding: 12px 16px;
        width: 100%;
        background-color: #323131;
        color: #fff;
        z-index: 11;
    }

        .grid-item .img-caption p {
            font-size: 14px;
            margin-bottom: 0;
        }

            .grid-item .img-caption p::before {
                content: "\2014";
                margin-right: 5px;
            }

@media (min-width: 768px) {
    .gridder .grid-item,
    .gridder .grid-sizer {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .gridder .grid-item,
    .gridder .grid-sizer {
        width: 33.33333%;
    }
}


/* Theme color style */


/* Theme Orange */
.theme-orange .bg-theme {
    background-color: #fd7e14 !important;
}

.theme-orange .fg-theme {
    color: #fd7e14 !important;
}

.theme-orange .btn-theme {
    background-color: #fd7e14;
    color: #fff;
}

    .theme-orange .btn-theme:hover {
        background-color: #fd8a2c;
        color: #fff;
    }

    .theme-orange .btn-theme:focus {
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #fd7e14;
    }

.theme-orange .btn-theme-outline {
    color: #fd7e14;
    box-shadow: 0 0 0 2px #fd7e14;
}

    .theme-orange .btn-theme-outline:hover {
        background-color: #fd7e14;
        color: #fff;
    }

    .theme-orange .btn-theme-outline:focus {
        background-color: #fd7e14;
        color: #fff;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #fd7e14;
    }

.theme-orange .btn-fab {
    background-color: #fd7e14;
    color: #fff;
}

    .theme-orange .btn-fab:hover {
        background-color: #fd8a2c;
        color: #fff;
    }

.theme-orange .progress {
    box-shadow: 0 0 0 2px #fd7e14;
}

.theme-orange .progress-bar {
    background-color: #fd7e14;
}

.theme-orange .theme-list li::before {
    border-color: #fd7e14;
}


/******************************* topbar.virtual.css ***************************/
.divider {
    display: block;
    margin: -5px 0 16px 0;
    max-width: 150px;
    border-bottom: 2px dashed #9FA2AB;
}

.badge-subhead {
    margin-bottom: 8px;
    padding: 10px 30px;
    background-color: rgba(116, 116, 116, 0.15);
    color: #747474;
    font-size: 14px;
    border-radius: 40px;
}

/* Filterable button */
.filterable-button {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
}

    .filterable-button .btn {
        padding: 5px 16px;
        margin: 6px;
        font-size: 14px;
        border-radius: 40px;
        background-color: transparent;
        color: #747474;
        box-shadow: 0 0 0 2px #747474;
        font-weight: bold;
    }

        .filterable-button .btn:hover {
            background-color: #747474;
            color: #fff;
        }

        .filterable-button .btn.selected,
        .filterable-button .btn:focus {
            background-color: #747474;
            color: #fff;
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px #747474;
        }


/* Page */
.vg-page {
    position: relative;
    display: block;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.page-home {
    padding: 25px 0;
    width: 100%;
    height: 700px;
    z-index: 99;
}

    .page-home::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(62, 57, 57, 0.8);
        z-index: -1;
    }

    .page-home .navbar {
        position: absolute;
        /*top: auto;*/
        top: 0;
        left: 0;
        width: 100%;
        /* padding-top: 6px;*/
        padding-top: 0px !important;
        padding-bottom: 6px;
        background-color: rgba(104, 102, 102, 0.8);
        z-index: 99;
    }

        .page-home .navbar.floating {
            top: 0;
            background-color: #343a40;
        }

    .page-home .caption-header {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        color: #fff;
        z-index: 10;
    }

    .page-home h1 {
        font-size: 50px;
    }

    .page-home .badge {
        padding: 16px 24px;
        background-color: rgba(239, 56, 36, 0.15);
        color: #EF3724;
        text-shadow: 0 2px 4px rgba(23, 25, 37, 0.4);
        font-size: 16px;
        border-radius: 40px;
    }

    .page-home .floating-button {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: auto;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 50%;
        color: #fff;
        font-size: 21px;
        cursor: pointer;
        z-index: 10;
    }


.page-about {
    background-color: #fff;
}

    .page-about .img-place {
        width: 280px;
        height: 350px;
        background-color: #dfe0e6;
        overflow: unset;
    }

        .page-about .img-place::before {
            content: "";
            position: absolute;
            top: -20px;
            right: -35px;
            width: 100%;
            height: 100%;
            border: 5px solid #747474;
            z-index: -1;
        }

.timeline {
    position: relative;
    display: block;
    list-style: none;
    padding-left: 0;
    width: 100%;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 2px;
        height: 95%;
        background-color: #e3e5e9;
    }

    .timeline li {
        position: relative;
        display: block;
        padding-left: 30px;
        margin-bottom: 20px;
    }

        .timeline li::before {
            content: '';
            position: absolute;
            top: 8px;
            left: -8px;
            width: 18px;
            height: 18px;
            background-color: #747474;
            border: 3px solid #fff;
            border-radius: 50%;
        }

        .timeline li .title {
            width: 150px;
            padding: 6px 20px;
            background-color: #747474;
            color: #fff;
            font-weight: 500;
            border-radius: 30px 0 60px 30px;
        }

        .timeline li .details {
            background-color: #f4f5f8;
            margin-top: 8px;
            padding: 20px;
            border-radius: 4px;
        }

            .timeline li .details h5,
            .timeline li .details p {
                margin-bottom: 0;
            }

            .timeline li .details small {
                display: block;
                font-weight: 500;
                font-size: 14px;
                margin-top: 5px;
                margin-bottom: 10px;
            }

.page-service {
    background-color: #fff;
}

.card-service {
    margin: 16px auto;
    padding: 20px;
    background-color: #fff;
    border: 0;
}

    .card-service .icon {
        display: inline-block;
        margin: 0 auto;
        width: 100px;
        height: 100px;
        line-height: 100px;
        text-align: center;
        font-size: 32px;
        border-radius: 50%;
        background-color: #f4f5f8;
    }

    .card-service .caption {
        margin-top: 16px;
        text-align: center;
        color: #747474;
    }


.page-funfact {
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

    .page-funfact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(41, 36, 36, 0.7);
    }

.testi-carousel .item {
    display: block;
    width: 100%;
}

    .testi-carousel .item .wrap {
        float: left;
        width: 50%;
    }

    .testi-carousel .item .img-place {
        max-width: 350px;
        height: 300px;
        background-color: #f4f5f8;
        border-radius: 4px;
        overflow: hidden;
    }

    .testi-carousel .item .caption {
        display: block;
        padding: 20px 0;
    }

.testi-content {
    font-size: 18px;
}

.testi-info {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    margin-top: 16px;
    width: 100%;
}

    .testi-info .thumb-profile {
        position: relative;
        margin-right: 8px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: #f4f5f8;
        overflow: hidden;
    }


.page-client {
    background-color: #171925;
    color: #fff;
}

    .page-client .row .item {
        padding-top: 60px;
        padding-bottom: 60px;
        border-width: 0 1px 1px 1px;
        border-style: solid;
        border-color: #292e3b;
    }

    .page-client .row:last-child .item {
        border-bottom: 0;
    }

    .page-client .row .item:first-child {
        border-left: 0;
    }

    .page-client .row .item:last-child {
        border-right: 0;
    }

    .page-client .img-place {
        width: 100px;
        height: 100px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

        .page-client .img-place:hover {
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            transform: scale(1.2);
        }

        .page-client .img-place img {
            filter: grayscale(100%) brightness(2);
        }

        .page-client .img-place:hover img {
            filter: none;
        }


.page-blog {
    background-color: #fff;
}

.post-grid {
    justify-content: center;
}

    .post-grid .card {
        margin: 2rem auto;
        max-width: 320px;
        border: 0;
        background-color: #fff;
        -webkit-transition: box-shadow .3s ease;
        -moz-transition: box-shadow .3s ease;
        transition: box-shadow .3s ease;
        box-shadow: 0 4px 30px rgba(140, 152, 164, 0.2);
    }

        .post-grid .card:hover {
            box-shadow: 0 4px 30px rgba(140, 152, 164, 0.4);
        }

        .post-grid .card .caption {
            padding: 20px 16px;
        }

    .post-grid .post-category {
        font-weight: 500;
        color: #EF3724;
        text-decoration: none;
    }

    .post-grid .post-title {
        display: table-row;
        color: #6c727c;
        font-weight: 500;
        font-size: 21px;
        text-decoration: none;
    }

        .post-grid .post-title:hover,
        .post-grid .post-title:focus {
            color: #52565c;
        }

    .post-grid .post-date {
        font-size: 13px;
        color: #777;
    }

.widget-grid .form-control {
    border-width: 0 0 2px 0;
    border-radius: 0;
    padding-left: 5px;
    padding-right: 5px;
}

    .widget-grid .form-control:focus {
        box-shadow: none;
    }


.page-contact {
    background-color: #fff;
}

.vg-maps {
    width: 100%;
    height: 450px;
    background-color: #f8f9fa;
}

.vg-contact-form {
    margin: 0 auto;
    padding: 30px 0;
    max-width: 400px;
}

/* Footer */
.vg-footer {
    position: relative;
    display: block;
    margin: 0;
    padding: 50px 0;
    background-color: #171925;
    color: #9FA2AB;
}

.footer-info {
    max-width: 350px;
}

.vg-footer .list-unstyled a,
.vg-footer .list-unstyled li {
    margin-bottom: 6px;
    font-size: 21px;
    color: #fff;
}

.vg-footer .form-control {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #202334;
    color: #9FA2AB;
    border: 0;
    box-shadow: 0 2px 8px rgba(16, 18, 27, 0.6);
}

    .vg-footer .form-control:focus {
        box-shadow: 0 2px 8px rgba(16, 18, 27, 0.6);
    }

.vg-footer form .btn-theme {
    margin: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: none;
    border-radius: 0 4px 4px 0;
    z-index: 9;
}

/* Theme color style */
/* Theme Red */
.theme-red .badge-subhead {
    background-color: rgba(239, 56, 36, 0.15);
    color: #EF3724;
}

.theme-red .filterable-button .btn.selected,
.theme-red .filterable-button .btn:focus {
    background-color: #EF3724;
    color: #fff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #EF3724;
}

.theme-red .page-about .img-place::before {
    border-color: #EF3724;
}

.theme-red .timeline li:first-child .title {
    background-color: #EF3724;
}

.theme-red .timeline li:first-child::before {
    background-color: #EF3724;
    box-shadow: 0 0 0 2px #EF3724;
}

/* Theme Blue */
.theme-blue .badge-subhead {
    background-color: rgba(41, 96, 247, 0.15);
    color: #2960f7;
}

.theme-blue .filterable-button .btn.selected,
.theme-blue .filterable-button .btn:focus {
    background-color: #2960f7;
    color: #fff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2960f7;
}

.theme-blue .page-home .badge {
    background-color: rgba(41, 96, 247, 0.15);
    color: #2960f7;
}

.theme-blue .page-about .img-place::before {
    border-color: #2960f7;
}

.theme-blue .timeline li:first-child .title {
    background-color: #2960f7;
}

.theme-blue .timeline li:first-child::before {
    background-color: #2960f7;
    box-shadow: 0 0 0 2px #2960f7;
}

.theme-blue .post-grid .post-category {
    color: #2960f7;
}

/* Theme Green */
.theme-green .badge-subhead {
    background-color: rgba(139, 198, 63, 0.15);
    color: #8cc63f;
}

.theme-green .filterable-button .btn.selected,
.theme-green .filterable-button .btn:focus {
    background-color: #8cc63f;
    color: #fff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #8cc63f;
}

.theme-green .page-home .badge {
    background-color: rgba(139, 198, 63, 0.15);
    color: #8cc63f;
}

.theme-green .page-about .img-place::before {
    border-color: #8cc63f;
}

.theme-green .timeline li:first-child .title {
    background-color: #8cc63f;
}

.theme-green .timeline li:first-child::before {
    background-color: #8cc63f;
    box-shadow: 0 0 0 2px #8cc63f;
}

.theme-green .post-grid .post-category {
    color: #8cc63f;
}

/* Theme Orange */
.theme-orange .badge-subhead {
    background-color: rgba(253, 125, 20, 0.15);
    color: #fd7e14;
}

.theme-orange .filterable-button .btn.selected,
.theme-orange .filterable-button .btn:focus {
    background-color: #fd7e14;
    color: #fff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #fd7e14;
}

.theme-orange .page-home .badge {
    background-color: rgba(253, 125, 20, 0.15);
    color: #fd7e14;
}

.theme-orange .page-about .img-place::before {
    border-color: #fd7e14;
}

.theme-orange .timeline li:first-child .title {
    background-color: #fd7e14;
}

.theme-orange .timeline li:first-child::before {
    background-color: #fd7e14;
    box-shadow: 0 0 0 2px #fd7e14;
}

.theme-orange .post-grid .post-category {
    color: #fd7e14;
}

/* Theme Purple */
.theme-purple .badge-subhead {
    background-color: rgba(110, 66, 193, 0.15);
    color: #6f42c1;
}

.theme-purple .filterable-button .btn.selected,
.theme-purple .filterable-button .btn:focus {
    background-color: #6f42c1;
    color: #fff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6f42c1;
}

.theme-purple .page-home .badge {
    background-color: rgba(98, 47, 192, 0.15);
    color: #6f42c1;
}

.theme-purple .page-about .img-place::before {
    border-color: #6f42c1;
}

.theme-purple .timeline li:first-child .title {
    background-color: #6f42c1;
}

.theme-purple .timeline li:first-child::before {
    background-color: #6f42c1;
    box-shadow: 0 0 0 2px #6f42c1;
}

.theme-purple .post-grid .post-category {
    color: #6f42c1;
}