@charset "UTF-8";
/*
Theme Name: Uni Creation
Theme URI: 
Author: Văn Nguyễn
Author URI: 
Description: 
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: shtheme
Tags: 
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Setup theme
# Modal
# Grid System
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
## Sidebar - Widgets
# Content
	## Posts and pages
	## Comments
# Media
	## Captions
	## Galleries
## Layout construct
## Shortcode
## Footer
## Menu Mobile
## Custom css
## Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* ------------------------------------------------------
Common :: Variables
------------------------------------------------------ */
/* Space */
/* Headline */
/* Tables */
/* ------------------------------------------------------
Common :: Functions
------------------------------------------------------ */
/*--------------------------------------------------------------
# Grid Column
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Container Width
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}
@media (min-width: 550px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 850px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 1300px) {
    .container {
        max-width: 1320px;
    }
}

/*--------------------------------------------------------------
# Container Width - Fluid
--------------------------------------------------------------*/
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*--------------------------------------------------------------
# Container Width - Row
--------------------------------------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row-small {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.row-small > .col,
.row-small > [class*="col-"] {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/*--------------------------------------------------------------
# Container Width - Column
--------------------------------------------------------------*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
}

.col-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-3 {
    flex-basis: 25%;
    max-width: 25%;
}

.col-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
}

.col-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
}

.col-6 {
    flex-basis: 50%;
    max-width: 50%;
}

.col-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
}

.col-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
}

.col-9 {
    flex-basis: 75%;
    max-width: 75%;
}

.col-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
}

.col-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
}

.col-12 {
    flex-basis: 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.3333333333%;
}

.offset-2 {
    margin-left: 16.6666666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.3333333333%;
}

.offset-5 {
    margin-left: 41.6666666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.3333333333%;
}

.offset-8 {
    margin-left: 66.6666666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.3333333333%;
}

.offset-11 {
    margin-left: 91.6666666667%;
}

@media (min-width: 550px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        flex-basis: 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-sm-2 {
        flex-basis: 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-sm-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-sm-5 {
        flex-basis: 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-sm-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex-basis: 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-sm-8 {
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-sm-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-sm-11 {
        flex-basis: 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-sm-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%;
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%;
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%;
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%;
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 850px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        flex-basis: 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-md-2 {
        flex-basis: 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-md-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-md-5 {
        flex-basis: 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex-basis: 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-md-8 {
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-md-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-md-11 {
        flex-basis: 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-md-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.3333333333%;
    }

    .offset-md-2 {
        margin-left: 16.6666666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.3333333333%;
    }

    .offset-md-5 {
        margin-left: 41.6666666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.3333333333%;
    }

    .offset-md-8 {
        margin-left: 66.6666666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.3333333333%;
    }

    .offset-md-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        flex-basis: 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-lg-2 {
        flex-basis: 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-lg-5 {
        flex-basis: 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-lg-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex-basis: 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-lg-8 {
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-lg-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-lg-11 {
        flex-basis: 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-lg-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%;
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%;
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%;
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%;
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 1300px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        flex-basis: 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xl-2 {
        flex-basis: 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xl-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xl-5 {
        flex-basis: 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xl-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex-basis: 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xl-8 {
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xl-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xl-11 {
        flex-basis: 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xl-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%;
    }
}
/*--------------------------------------------------------------
# Sizes
--------------------------------------------------------------*/
.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/*--------------------------------------------------------------
# Display
--------------------------------------------------------------*/
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

@media (min-width: 550px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 850px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 1300px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }
}
/*--------------------------------------------------------------
# Flex Style
--------------------------------------------------------------*/
.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

@media (min-width: 550px) {
    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }
}
@media (min-width: 850px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }
}
@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }
}
@media (min-width: 1300px) {
    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }
}
/*--------------------------------------------------------------
# Margin - Padding
--------------------------------------------------------------*/
.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 1.875rem !important;
}

.mt-5 {
    margin-top: 1.875rem !important;
}

.mr-5 {
    margin-right: 1.875rem !important;
}

.mb-5 {
    margin-bottom: 1.875rem !important;
}

.ml-5 {
    margin-left: 1.875rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 1.875rem !important;
}

.pt-5 {
    padding-top: 1.875rem !important;
}

.pr-5 {
    padding-right: 1.875rem !important;
}

.pb-5 {
    padding-bottom: 1.875rem !important;
}

.pl-5 {
    padding-left: 1.875rem !important;
}

.m-auto {
    margin: auto !important;
}

@media (min-width: 550px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 1.875rem !important;
    }

    .mt-sm-5 {
        margin-top: 1.875rem !important;
    }

    .mr-sm-5 {
        margin-right: 1.875rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 1.875rem !important;
    }

    .ml-sm-5 {
        margin-left: 1.875rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 1.875rem !important;
    }

    .pt-sm-5 {
        padding-top: 1.875rem !important;
    }

    .pr-sm-5 {
        padding-right: 1.875rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 1.875rem !important;
    }

    .pl-sm-5 {
        padding-left: 1.875rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }
}
@media (min-width: 850px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 1.875rem !important;
    }

    .mt-md-5 {
        margin-top: 1.875rem !important;
    }

    .mr-md-5 {
        margin-right: 1.875rem !important;
    }

    .mb-md-5 {
        margin-bottom: 1.875rem !important;
    }

    .ml-md-5 {
        margin-left: 1.875rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 1.875rem !important;
    }

    .pt-md-5 {
        padding-top: 1.875rem !important;
    }

    .pr-md-5 {
        padding-right: 1.875rem !important;
    }

    .pb-md-5 {
        padding-bottom: 1.875rem !important;
    }

    .pl-md-5 {
        padding-left: 1.875rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }
}
@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 1.875rem !important;
    }

    .mt-lg-5 {
        margin-top: 1.875rem !important;
    }

    .mr-lg-5 {
        margin-right: 1.875rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 1.875rem !important;
    }

    .ml-lg-5 {
        margin-left: 1.875rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 1.875rem !important;
    }

    .pt-lg-5 {
        padding-top: 1.875rem !important;
    }

    .pr-lg-5 {
        padding-right: 1.875rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 1.875rem !important;
    }

    .pl-lg-5 {
        padding-left: 1.875rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }
}
@media (min-width: 1300px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 1.875rem !important;
    }

    .mt-xl-5 {
        margin-top: 1.875rem !important;
    }

    .mr-xl-5 {
        margin-right: 1.875rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 1.875rem !important;
    }

    .ml-xl-5 {
        margin-left: 1.875rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 1.875rem !important;
    }

    .pt-xl-5 {
        padding-top: 1.875rem !important;
    }

    .pr-xl-5 {
        padding-right: 1.875rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 1.875rem !important;
    }

    .pl-xl-5 {
        padding-left: 1.875rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }
}
/*--------------------------------------------------------------
# Text - Responsive
--------------------------------------------------------------*/
.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 550px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}
@media (min-width: 850px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}
@media (min-width: 1300px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--textcolor);
    margin: 0;
}

a {
    color: var(--primarycolor);
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
a:hover {
    color: var(--primarycolor);
}
a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 1rem;
    font-family: inherit;
    font-weight: bold;
    line-height: 1.2;
    color: inherit;
    margin-top: 0;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    padding: 0 0 0.625rem;
    margin: 0 0 1.25rem;
    list-style-position: inside;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    background-color: #cce5ff;
    border-color: #b8daff;
}

/*--------------------------------------------------------------
# google_conversion_frame
--------------------------------------------------------------*/
iframe[name="google_conversion_frame"] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 24px;
    max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption .wp-caption-text {
    margin: 12.92px 0;
    text-align: center;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.slick-slider.slick-carousel {
    margin-left: -5px;
    margin-right: -5px;
}
.slick-slider.slick-carousel .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
}
.slick-slider .slick-prev {
    left: 5px;
}
.slick-slider .slick-next {
    right: 5px;
}
@media only screen and (min-width: 850px) {
    .slick-slider.slick-carousel {
        margin-left: -15px;
        margin-right: -15px;
    }
    .slick-slider.slick-carousel .slick-slide {
        padding-left: 15px;
        padding-right: 15px;
    }
    .slick-slider .slick-arrow.slick-next {
        right: -15px;
    }
    .slick-slider .slick-arrow.slick-prev {
        left: -15px;
    }
}
.slick-slider.slick-carousel.slick-dotted {
    padding-bottom: 40px;
    margin-bottom: 0;
}
.slick-slider .slick-slide,
.slick-slider .slick-slide a {
    outline: none;
}
.slick-slider .slick-arrow {
    z-index: 1;
}
.slick-slider .slick-arrow:before {
    font-family: "univn";
    color: var(--primarycolor);
    opacity: 1;
}
.slick-slider .slick-arrow.slick-next {
    right: -15px;
}
.slick-slider .slick-arrow.slick-next:before {
    content: "\F105" !important;
}
.slick-slider .slick-arrow.slick-prev {
    left: -15px;
}
.slick-slider .slick-arrow.slick-prev:before {
    content: "\F104" !important;
}
.slick-slider .slick-dots {
    bottom: 10px;
}
.slick-slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}
.slick-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primarycolor);
    border-radius: 50%;
    background: transparent;
}
.slick-slider .slick-dots li button:before {
    display: none;
}
.slick-slider .slick-dots li.slick-active button {
    background: var(--primarycolor);
}

/*--------------------------------------------------------------
## Css Scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background-color: #b1abab;
}

/*--------------------------------------------------------------
# Layout System
--------------------------------------------------------------*/
@media only screen and (min-width: 992px) {
    .content-sidebar-wrap {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    .content-sidebar-wrap .site-main,
    .content-sidebar-wrap .sidebar {
        padding-left: 15px;
        padding-right: 15px;
    }
    .category .content-sidebar-wrap .site-main,
    .category .content-sidebar-wrap .sidebar {
        margin-bottom: 30px;
    }
    .page-template-page-fullwidth .content-sidebar-wrap .site-main,
    .page-template-page-contact .content-sidebar-wrap .site-main,
    .error404 .content-sidebar-wrap .site-main,
    .page-template-default .content-sidebar-wrap .site-main,
    .search .content-sidebar-wrap .site-main,
    .no-sidebar .content-sidebar-wrap .site-main,
    .page-template-page-news .content-sidebar-wrap .site-main,
    .page-template-page-product-viewed .content-sidebar-wrap .site-main,
    .page-template-page-bh .content-sidebar-wrap .site-main {
        flex-basis: 100%;
        max-width: 100%;
    }
    .sidebar-left .content-sidebar-wrap .site-main,
    .sidebar-right .content-sidebar-wrap .site-main,
    .page-template-page-left-sidebar .content-sidebar-wrap .site-main,
    .page-template-page-right-sidebar .content-sidebar-wrap .site-main {
        flex-basis: 66.666667%;
        max-width: 66.666667%;
    }
    .sidebar-right .content-sidebar-wrap .site-main,
    .sidebar-right-right .content-sidebar-wrap .site-main,
    .page-template-page-right-sidebar .content-sidebar-wrap .site-main {
        order: 1;
    }
    .sidebar-left .content-sidebar-wrap .site-main,
    .sidebar-left-right .content-sidebar-wrap .site-main,
    .page-template-page-left-sidebar .content-sidebar-wrap .site-main {
        order: 2;
    }
    .sidebar-left-left .content-sidebar-wrap .site-main {
        order: 3;
    }
    .sidebar-left .content-sidebar-wrap .sidebar-primary,
    .sidebar-right .content-sidebar-wrap .sidebar-primary,
    .page-template-page-left-sidebar .content-sidebar-wrap .sidebar-primary,
    .page-template-page-right-sidebar .content-sidebar-wrap .sidebar-primary {
        flex-basis: 33.333333%;
        max-width: 33.333333%;
    }
    .sidebar-left .content-sidebar-wrap .sidebar-primary,
    .sidebar-left-right .content-sidebar-wrap .sidebar-primary,
    .sidebar-left-left .content-sidebar-wrap .sidebar-primary,
    .page-template-page-left-sidebar .content-sidebar-wrap .sidebar-primary {
        order: 1;
    }
    .sidebar-right .content-sidebar-wrap .sidebar-primary,
    .sidebar-right-right .content-sidebar-wrap .sidebar-primary,
    .page-template-page-right-sidebar .content-sidebar-wrap .sidebar-primary {
        order: 2;
    }
}
/*--------------------------------------------------------------
# Column
--------------------------------------------------------------*/
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-sm-15 {
    flex-basis: 20% !important;
    max-width: 20% !important;
}

@media (min-width: 768px) {
    .col-md-15 {
        flex-basis: 20% !important;
        max-width: 20% !important;
    }
}
@media (min-width: 992px) {
    .col-lg-15 {
        flex-basis: 20% !important;
        max-width: 20% !important;
    }
}
@media (min-width: 1200px) {
    .col-xl-15 {
        flex-basis: 20% !important;
        max-width: 20% !important;
    }
}
/***************
 * Pagination Css
***************/
#result_pagination {
    position: relative;
    display: block;
}
#result_pagination:after {
    display: table;
    content: " ";
    clear: both;
}

.pagination {
    margin-bottom: 20px;
    position: relative;
}
.pagination .page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin: 0;
    list-style: none;
}
.pagination .page-numbers li {
    list-style: none;
    float: left;
    margin: 0 5px;
    padding: 0;
}
.pagination .page-numbers li span,
.pagination .page-numbers li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 40px;
    height: 40px;
    color: var(--textcolor);
    background: #fff;
    border: 0.5px solid #c0c0c0;
}
.pagination .page-numbers li span:hover,
.pagination .page-numbers li span.current,
.pagination .page-numbers li a:hover,
.pagination .page-numbers li a.current {
    color: #fff;
    text-decoration: none;
    background-color: var(--primarycolor) !important;
    border-color: var(--primarycolor) !important;
}

/***************
 * Readmore Css
***************/
/*CSS load*/
.resultLoadMore {
    margin-bottom: 50px;
}
.resultLoadMore #ButtonLoadMore {
    cursor: pointer;
    position: relative;
    border: 0px;
}
.resultLoadMore #ButtonLoadMore.loading:before {
    content: "";
    background: url("assets/img/ajax-loader.gif") center no-repeat, #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.loading_pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    z-index: 999;
}

@media (max-width: 414px) {
    .pagination_post li,
    .pagination li {
        margin: 0 3px;
    }
    .pagination_post li span,
    .pagination li span {
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
    .pagination_post li a,
    .pagination li a {
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
}
/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
    outline: none;
}

button,
select {
    text-transform: none;
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 12px;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 5px;
    margin-left: 0;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(24px + 12px + 2px);
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ccc;
    background-clip: padding-box;
    outline: none;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea {
    overflow: auto;
    resize: vertical;
}

.btn {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--primarycolor);
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

/*--------------------------------------------------------------
# Contact Form 7
--------------------------------------------------------------*/
.wpcf7 label {
    font-weight: 500;
    display: block;
}
.wpcf7 .wpcf7-validation-errors {
    margin: 32px 0 16px;
}
.wpcf7 .wpcf7-not-valid-tip {
    margin: 5px 0;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
    border: none;
}
.wpcf7 .wpcf7-response-output {
    padding: 12px 20px !important;
    margin: 32px 0 16px !important;
}
.wpcf7 .form-group {
    margin-bottom: 15px;
}
.wpcf7 .form-control {
    height: 38px;
    font-size: 14px;
}
.wpcf7 .btn {
    min-width: 110px;
    border-color: var(--primarycolor);
    background-color: var(--primarycolor);
    color: #fff;
}
.wpcf7 .btn:hover {
    background-color: var(--primarycolor);
    border-color: var(--primarycolor);
}
.wpcf7 textarea.form-control {
    height: 160px;
}

/* Slideshow container */
/* On smaller screens, decrease text size */
#slider {
    position: relative;
    margin: 0 auto 15px;
    overflow: hidden;
    background: url(assets/img/ajax-loading.gif) center center no-repeat;
}
#slider .slider-box {
    padding-top: 39.3564356%;
    display: block;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
@media only screen and (min-width: 768px) {
    #slider {
        margin: 0 auto 30px;
    }
    #slider .slider-box {
        padding-top: 32.5581395%;
        border-radius: 0;
    }
}
#slider .slider-thumbnail {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
#slider .slider-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
#slider .slider-container.slick-initialized {
    visibility: visible;
    opacity: 1;
}
#slider .slider-container .slick-slide {
    padding-left: 0;
    padding-right: 0;
}
#slider .slider-for {
    margin-bottom: 15px;
}
#slider .slider-for .slick-arrow {
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid #c0c0c0;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}
#slider .slider-for .slick-arrow:before {
    color: #c0c0c0;
    font-size: 15px;
}
#slider .slider-for .slick-arrow:hover {
    background: var(--primarycolor);
}
#slider .slider-for .slick-arrow:hover:before {
    color: #fff;
}
#slider .slider-for .slick-arrow.slick-disabled {
    opacity: 0.5 !important;
}
#slider .slider-for .slick-arrow.slick-prev {
    left: 30px;
}
#slider .slider-for .slick-arrow.slick-next {
    right: 30px;
}
#slider .slider-for:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, -50%);
}
#slider .slider-nav {
    background: #fff;
}
#slider .slider-nav .slider-item span {
    padding: 12px 10px 11px;
    text-align: center;
    display: block;
    cursor: pointer;
}
#slider .slider-nav .slider-item.slick-current span {
    background: #0e71b9;
    color: #fff;
}
#slider .slider-caption {
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
#slider .slider-caption a {
    color: var(--textcolor);
}
#slider .fade {
    animation-name: fade;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: linear;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    z-index: 9999999;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    z-index: 999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .modal-title {
    font-size: 16px;
    line-height: 1.25;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    cursor: pointer;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    max-height: calc(100vh - 200px);
    min-height: auto;
    overflow-y: auto;
}

figure.table {
    height: 100% !important;
    width: 100% !important;
}
figure.table table {
    width: 100% !important;
    border-collapse: collapse;
}
figure.table table p {
    margin-bottom: 0;
}
figure.table table:not(caption) > * > * {
    border-color: #ccc;
    border-bottom-width: 1px;
    padding: 0.5rem;
}
figure.table table tr {
    line-height: 30px;
}
figure.table table td {
    border: 1px solid #d1d1d1;
    padding: 10px;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
    margin: 0.25rem;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
    }
}
@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}
form.search-form {
    display: flex;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
}
form.search-form label {
    margin-bottom: 0;
    width: calc(100% - 100px);
    padding-left: 10px;
    padding-right: 10px;
}
form.search-form .search-field {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #dedede;
    border-radius: 3px;
}
form.search-form .search-submit {
    height: 40px;
    width: 100px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #dedede;
    border-radius: 3px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
## Shortcode 
--------------------------------------------------------------*/
/* Shortcode Blog */
.blog-shortcode .post-item .post-info__thumb {
    overflow: hidden;
}
.blog-shortcode .post-item .post-info__thumb a {
    display: block;
    position: relative;
    background: #fff;
    padding-top: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.35s ease-in-out;
}
.blog-shortcode .post-item .post-info__content {
    margin: 0;
}
.blog-shortcode .post-item .post-info__meta {
    margin-bottom: 5px;
}
.blog-shortcode .post-item .post-info__meta i {
    margin-right: 5px;
}
.blog-shortcode .post-item .post-info__category {
    margin-top: 5px;
    font-weight: bold;
    text-transform: uppercase;
}
.blog-shortcode .post-item .post-info__title {
    margin: 5px 0 5px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-shortcode .post-item .post-info__title a {
    color: var(--textcolor);
}
.blog-shortcode .post-item .post-info__title a:hover {
    color: var(--primarycolor);
}
.blog-shortcode .post-item .post-info__description {
    text-align: justify;
    line-height: 1.4;
}
.blog-shortcode .post-item .post-info:hover .post-info__thumb a {
    transform: scale(1.1);
}
.blog-shortcode.style-1 .post-info .post-info__thumb .img {
    padding-top: 59.4594595%;
}
.blog-shortcode.style-1 .post-info .post-info__title {
    margin: 0 0 10px 0;
    font-size: 16px;
}
.blog-shortcode.style-1 .post-info .post-info__title a {
    color: var(--textcolor);
}
.blog-shortcode.style-1 .post-info .post-info__title a:hover {
    color: var(--primarycolor);
}
.blog-shortcode.style-1 .post-info .post-info__description {
    line-height: 1.57142857;
    text-align: left;
    color: #707070;
}
.blog-shortcode.style-1 .post-info .post-info__description p {
    margin-bottom: 5px;
}
.blog-shortcode.style-1 .post-info .post-info__meta {
    font-size: 12px;
    line-height: 1.66666667;
    text-align: left;
    color: #707070;
}
.category .blog-shortcode.style-1 .post-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.category .blog-shortcode.style-1 .post-info .post-info__thumb {
    max-width: 250px;
    flex-basis: 250px;
    margin-right: 20px;
}
.category .blog-shortcode.style-1 .post-info .post-info__thumb .img {
    padding-top: 71.2%;
}
.category .blog-shortcode.style-1 .post-info .post-info__content {
    max-width: calc(100% - 250px - 20px);
    flex-basis: calc(100% - 250px - 20px);
}
.category .blog-shortcode.style-1 .post-info .post-info__title {
    font-size: 16px;
}
.category .blog-shortcode.style-1 .post-info .post-info__meta {
    margin-bottom: 20px;
}
.category .blog-shortcode.style-1 .post-info .post-info__meta a {
    display: inline-flex;
    min-width: 60px;
    padding: 0 7px;
    height: 25px;
    background: var(--primarycolor);
    justify-content: center;
    align-items: center;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.42857143;
    text-align: left;
    color: #fff;
    text-transform: none;
    margin-right: 13px;
}
.category .blog-shortcode.style-1 .element:last-child .post-info {
    margin-bottom: 0;
}
@media only screen and (max-width: 549.98px) {
    .category .blog-shortcode.style-1 .post-info .post-info__thumb {
        max-width: 90px;
        flex-basis: 90px;
        margin-right: 10px;
    }
    .category .blog-shortcode.style-1 .post-info .post-info__thumb .img {
        padding-top: 66.6666667%;
    }
    .category .blog-shortcode.style-1 .post-info .post-info__content {
        max-width: calc(100% - 90px - 10px);
        flex-basis: calc(100% - 90px - 10px);
    }
    .category .blog-shortcode.style-1 .post-info .post-info__title {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.25;
    }
    .category .blog-shortcode.style-1 .post-info .post-info__description {
        display: none;
    }
    .category .blog-shortcode.style-1 .post-info .post-info__meta {
        margin-bottom: 0;
    }
    .category .blog-shortcode.style-1 .post-info .post-info__meta a {
        font-size: 10px;
        min-width: 43px;
        height: 16px;
    }
    .category .blog-shortcode.style-1 .element:first-child .post-info__thumb {
        max-width: 100%;
        flex-basis: 100%;
        margin: 0 0 15px;
    }
    .category .blog-shortcode.style-1 .element:first-child .post-info__content {
        max-width: 100%;
        flex-basis: 100%;
    }
    .category .blog-shortcode.style-1 .element:first-child .post-info__title {
        font-size: 20px;
    }
}
.blog-shortcode.style-3 .post-info .post-info__thumb,
.blog-shortcode.style-4 .post-info .post-info__thumb {
    margin-bottom: 10px;
}
.blog-shortcode.style-3 .post-info .post-info__thumb .img,
.blog-shortcode.style-4 .post-info .post-info__thumb .img {
    padding-top: 61.9641465%;
}
.blog-shortcode.style-3 .post-info .post-info__title,
.blog-shortcode.style-4 .post-info .post-info__title {
    font-size: 14px;
    line-height: 1.42857143;
    text-align: left;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}
.blog-shortcode.style-3 .post-info .post-info__description p,
.blog-shortcode.style-4 .post-info .post-info__description p {
    margin-bottom: 0;
}
.blog-shortcode.style-3 .post-info .post-info__meta,
.blog-shortcode.style-4 .post-info .post-info__meta {
    font-weight: normal;
    font-size: 12px;
    line-height: 1.66667;
    text-align: left;
    color: #707070;
    margin-bottom: 0;
}
.tax-video_cat .blog-shortcode.style-3 .row,
.tax-video_cat .blog-shortcode.style-4 .row {
    margin-left: -5px;
    margin-right: -5px;
}
.tax-video_cat .blog-shortcode.style-3 .row [class*="col"],
.tax-video_cat .blog-shortcode.style-4 .row [class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
}
.tax-video_cat .blog-shortcode.style-3 .element,
.tax-video_cat .blog-shortcode.style-4 .element {
    margin-bottom: 20px;
}
.tax-video_cat .blog-shortcode.style-3 .post-info .post-info__title,
.tax-video_cat .blog-shortcode.style-4 .post-info .post-info__title {
    min-height: 40px;
}
.blog-shortcode.style-5 .post-info {
    margin-bottom: 0;
}
.blog-shortcode.style-5 .post-info__thumb {
    float: left;
    width: 110px;
    margin-right: 15px;
}
.blog-shortcode.style-5 .post-info__title {
    margin-top: 0;
}
.blog-shortcode.style-5 .post-info__description {
    font-size: 13px;
}
.blog-shortcode.style-6 .first-element-layout,
.blog-shortcode.style-6 .second-element-layout {
    margin-bottom: 20px;
}
.blog-shortcode.style-6 .first-element-layout .element {
    margin-bottom: 0;
}
.blog-shortcode.style-6 .first-element-layout .post-info__thumb {
    margin-bottom: 25px;
}
.blog-shortcode.style-6 .first-element-layout .post-info__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}
.blog-shortcode.style-6 .first-element-layout .post-info__title a {
    color: var(--primarycolor);
}
.blog-shortcode.style-6 .first-element-layout .post-info__meta {
    font-size: 16px;
}
.blog-shortcode.style-6 .first-element-layout .post-info__meta .date-time {
    margin-right: 75px;
}
.blog-shortcode.style-6
    .first-element-layout
    .post-info__meta
    .number-view
    span {
    font-weight: normal;
}
.blog-shortcode.style-6 .second-element-layout .element {
    display: inline-block;
    width: 100%;
}
.blog-shortcode.style-6 .second-element-layout .element:not(:last-child) {
    margin-bottom: 30px;
}
.blog-shortcode.style-6 .second-element-layout .element:last-child {
    margin-bottom: 0;
}
.blog-shortcode.style-6 .second-element-layout .post-info {
    display: inline-block;
    width: 100%;
}
.blog-shortcode.style-6 .second-element-layout .post-info__thumb {
    float: left;
    width: 29.341%;
    margin-right: 15px;
}
.blog-shortcode.style-6 .second-element-layout .post-info__thumb .img {
    padding-top: 73.3727811%;
}
.blog-shortcode.style-6 .second-element-layout .post-info__title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-shortcode.style-6 .second-element-layout .post-info .post-info__meta {
    font-size: 14px;
}
.blog-shortcode.style-6
    .second-element-layout
    .post-info
    .post-info__meta
    .date-time {
    margin-right: 56px;
}
.blog-shortcode.style-6
    .second-element-layout
    .post-info
    .post-info__meta
    .date-time
    i {
    font-weight: 500;
}
.blog-shortcode.style-6
    .second-element-layout
    .post-info
    .post-info__meta
    .number-view
    span {
    font-weight: normal;
}
.blog-shortcode.style-7 .first-element-layout .element .post-info__thumb {
    float: left;
    width: 30%;
    margin-right: 20px;
}
.blog-shortcode.style-7 .first-element-layout .element .post-info__title {
    margin: 0 0 5px 0;
}
.blog-shortcode.style-7 .second-element-layout {
    margin-bottom: 20px;
}
.blog-shortcode.style-7 .second-element-layout .element {
    margin-bottom: 5px;
}
.blog-shortcode.style-7 .second-element-layout .element .post-info__title {
    margin: 0;
}
.blog-shortcode.style-7
    .second-element-layout
    .element
    .post-info__title
    a:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--primarycolor);
    border-radius: 50%;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.video-shortcode.style-1 .post-info .post-info__thumb {
    margin-bottom: 20px;
}
.video-shortcode.style-1 .post-info .post-info__thumb .img {
    padding-top: 59.4594595%;
}
.video-shortcode.style-1 .post-info .post-info__title {
    font-size: 14px;
    line-height: 1.42857143;
    font-weight: normal;
}
.video-shortcode.style-1 .post-info .post-info__title a {
    color: #707070;
}
.video-shortcode.style-1
    .element:not(:first-child)
    .post-info
    .post-info__thumb {
    display: none;
}

@media only screen and (min-width: 850px) {
    /*--------------------------------------------------------------
  # Main Navigation
  --------------------------------------------------------------*/
    .main-navigation {
        position: relative;
        z-index: 9;
        margin-bottom: 5px;
    }
    .main-navigation.fixed {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        animation: stuckMoveDown 1s;
    }
    .logged-in .main-navigation.fixed {
        top: 32px;
    }
    @keyframes stuckMoveDown {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }
    .header-logo-content .main-navigation .wrap {
        background: var(--primarycolor);
        border-radius: 5px;
    }
    .main-navigation ul {
        padding: 0;
        margin: 0;
    }
    .main-navigation ul.menu {
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }
    .header-logo .main-navigation ul.menu {
        justify-content: flex-end;
    }
    .main-navigation ul.menu li {
        position: relative;
        display: block;
    }
    .main-navigation ul.menu li a {
        line-height: 1.42;
        color: var(--textcolor);
        display: block;
        font-weight: normal;
        text-decoration: none;
    }
    .main-navigation ul.menu > li {
        margin: 0 20px;
    }
    .main-navigation ul.menu > li > a {
        font-size: 14px;
        line-height: 1.5;
        color: #fff;
        text-transform: uppercase;
    }
    .header-logo .main-navigation ul.menu > li > a {
        color: var(--textcolor);
        line-height: 80px;
        height: 80px;
    }
    .main-navigation ul.menu > li.menu-item-has-children > a {
        position: relative;
    }
    .main-navigation ul.menu > li.menu-item-has-children > a:after {
        margin-left: 6px;
        content: "\F107";
        font-family: "univn";
    }
    .main-navigation ul.menu > li.has-megamenu {
        position: static;
    }
    .main-navigation ul.menu > li.has-megamenu ul.sub-menu {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
    }
    .main-navigation ul.menu > li.has-megamenu ul.sub-menu li {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .main-navigation ul.menu > li.has-megamenu ul.sub-menu li a {
        border-bottom: 0;
    }
    .main-navigation ul li .sub-menu {
        border-radius: 5px;
        box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.15);
        background-color: #fff;
        min-width: 220px;
        left: 0;
        position: absolute;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 20px, 0);
        -moz-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        -o-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
        -moz-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }
    .main-navigation ul li .sub-menu li a {
        padding: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .main-navigation ul li .sub-menu li:last-child a {
        border-bottom: none;
    }
    .main-navigation ul li .sub-menu li.menu-item-has-children > a:before {
        line-height: 22px;
        content: "\f107";
        font-family: "univn";
    }
    .main-navigation ul li .sub-menu li ul {
        position: absolute;
        left: 80%;
        top: -2px;
        opacity: 0;
        visibility: hidden;
        -moz-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        -webkit-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }
    .main-navigation ul li .sub-menu li ul li {
        width: 100%;
        opacity: 1;
    }
    .main-navigation ul li .sub-menu li:hover > ul {
        left: 100%;
        opacity: 1;
        visibility: visible;
    }
    .main-navigation ul li:hover > ul.sub-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .main-navigation ul.menu > li > a:hover,
    .main-navigation ul.menu > li.current-menu-item > a,
    .site-header.logo-left .main-navigation ul.menu > li > a:hover,
    .site-header.logo-left .main-navigation ul.menu > li.current-menu-item > a {
        color: #ffa072 !important;
    }
    .main-navigation ul.menu > li > a:hover:after,
    .main-navigation ul.menu > li.current-menu-item > a:after,
    .site-header.logo-left .main-navigation ul.menu > li > a:hover:after,
    .site-header.logo-left
        .main-navigation
        ul.menu
        > li.current-menu-item
        > a:after {
        border-color: #ffa072 !important;
    }

    .main-navigation ul.menu ul > li > a:hover,
    .main-navigation ul.menu ul > li.current-menu-item > a,
    .site-header.logo-left .main-navigation ul.menu ul > li > a:hover,
    .site-header.logo-left
        .main-navigation
        ul.menu
        ul
        > li.current-menu-item
        > a {
        color: #ffa072;
    }
}
@media only screen and (max-width: 850px) {
    /*--------------------------------------------------------------
  ## Menu Mobile 
  --------------------------------------------------------------*/
    #site-navigation {
        display: none;
    }

    .toplg {
        height: 90px;
        display: table;
        width: 100%;
        overflow: hidden;
        text-align: center;
    }
    .toplg a {
        display: table-cell;
        vertical-align: middle;
    }
    .toplg a img {
        display: inline;
        max-height: 70px;
        margin: 0 auto;
    }

    .mobile_search {
        padding: 20px;
    }

    #showmenu {
        display: inline-flex;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        top: 4px;
        z-index: 1;
        border-radius: 3px;
        background: #0e71b9;
    }
    #showmenu:hover .showmenu-hamburger span:before {
        transform: translateX(0);
    }
    #showmenu:hover .showmenu-hamburger span:after {
        transform: translateX(200%);
    }
    #showmenu .showmenu-hamburger {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #showmenu .showmenu-hamburger span {
        display: block;
        width: 16px;
        height: 1.5px;
        margin-bottom: 4px;
        overflow: hidden;
        position: relative;
    }
    #showmenu .showmenu-hamburger span:last-child {
        margin: 0;
    }
    #showmenu .showmenu-hamburger span:last-child:before {
        transition-delay: 150ms;
    }
    #showmenu .showmenu-hamburger span:last-child:after {
        transition-delay: 150ms;
    }
    #showmenu .showmenu-hamburger span:before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition: transform ease 300ms;
        transform: translateX(-200%);
    }
    #showmenu .showmenu-hamburger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition: transform ease 300ms;
        transform: translateX(0);
    }
    #showmenu .showmenu-hamburger span:nth-child(2):before {
        transition-delay: 75ms;
    }
    #showmenu .showmenu-hamburger span:nth-child(2):after {
        transition-delay: 75ms;
    }
    #showmenu.active .showmenu-hamburger span:before {
        transform: translateX(100%);
    }
    #showmenu.active .showmenu-hamburger span:after {
        transform: translateX(200%);
    }

    #page {
        -webkit-overflow-scrolling: touch;
        -webkit-transition: 0.45s;
        transition: 0.45s;
    }

    .menu_close {
        width: 30px;
        height: 30px;
        position: relative;
        border-radius: 3px;
        background: #dc232a;
    }

    .showmenu-cross {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .showmenu-cross span {
        display: block;
        width: 15px;
        height: 1.5px;
        background-color: #fff;
        transform: translateY(50%) rotate(45deg) scaleX(0);
        transition: transform ease 200ms;
    }
    .showmenu-cross span:last-child {
        transform: translateY(-50%) rotate(-45deg) scaleX(0);
    }

    .nav-is-toggled {
        position: relative;
    }
    .nav-is-toggled #mobilenav {
        transform: translateX(0);
    }
    .nav-is-toggled .showmenu-cross span {
        transition-delay: 450ms;
        background-color: #fff;
        transform: translateY(50%) rotate(45deg) scaleX(1);
    }
    .nav-is-toggled .showmenu-cross span:last-child {
        transform: translateY(-50%) rotate(-45deg) scaleX(1);
    }
    .nav-is-toggled #showmenu .showmenu-cross span {
        background-color: #fff;
    }

    #mobilenav {
        transform: translateX(-100%);
        display: flex;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 60%;
        height: 100vh;
        background-color: var(--primarycolor);
        -webkit-overflow-scrolling: touch;
        transition: 0.45s;
        overflow: hidden;
    }
}
@media only screen and (max-width: 850px) and (min-width: 550px) {
    #mobilenav {
        width: 400px;
    }
}
@media only screen and (max-width: 850px) {
    #mobilenav .mobilenav__inner {
        width: 100%;
        overflow: auto;
        padding-bottom: 50px;
    }
    #mobilenav .h90 {
        margin-top: 13px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
    }
    #mobilenav .h90 img {
        max-height: 70px;
        max-width: 70%;
        filter: brightness(0) invert(1);
    }
    #mobilenav li {
        position: relative;
    }
    #mobilenav .mobile-menu > li:not(:last-child) {
        border-bottom: solid 1px #e0e0e054;
    }
    #mobilenav .mobile-menu a {
        display: block;
        padding: 11px 15px;
        background-color: transparent;
        color: #fff;
        line-height: 24px;
        text-transform: uppercase;
    }
    #mobilenav .mobile-menu .arrow {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 46px;
        text-align: center;
        line-height: 46px;
        color: #fff;
    }
    #mobilenav .mobile-menu li.open .arrow i::before {
        content: "\f106" !important;
    }
    #mobilenav .sub-menu {
        display: none;
    }
    #mobilenav .menu-item-has-children {
        position: relative;
    }
    #mobilenav .menu-item-has-children ul {
        padding-left: 20px;
    }
    #mobilenav .menu-item-has-children.active > .sub-menu {
        transform: translate(0, 0px);
        visibility: visible;
    }
    #mobilenav .mega-menu .mega-image {
        margin-bottom: 5px;
    }
    #mobilenav .mega-menu .mega-image,
    #mobilenav .mega-menu .mega-title {
        display: block;
        text-align: center;
    }
    #mobilenav .mega-menu .sub-menu {
        padding-left: 0;
        width: 100%;
        z-index: 100;
        background-color: #000;
    }
    #mobilenav .mega-menu .sub-menu li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        background-color: #000;
        border: 1px solid #2d2c2c;
    }
    #mobilenav .mega-menu .sub-menu li a {
        background: #000;
        border-bottom: 0;
        color: #808083;
        padding: 15px;
        display: block;
        text-transform: uppercase;
    }
    #mobilenav .mega-menu .sub-menu li a:hover {
        color: #fff !important;
    }
    #mobilenav .mega-menu.open .sub-menu {
        display: flex !important;
        flex-wrap: wrap;
    }

    #mobilenav .mobile-menu,
    #mobilenav .sub-menu {
        flex: 0 0 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .panel-overlay {
        opacity: 0;
        filter: alpha(opacity=0);
    }
    .panel-overlay.active {
        background: #000;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 999;
        min-height: 100vh;
        opacity: 0.6;
        filter: alpha(opacity=35);
        -moz-transition: opacity 0.2s ease-in-out 0s;
        -o-transition: opacity 0.2s ease-in-out 0s;
        -webkit-transition: opacity 0.2s ease-in-out 0s;
        transition: opacity 0.2s ease-in-out 0s;
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-title,
.site-description {
    font-size: 0;
    margin: 0;
}

.site-header {
    position: relative;
}
.site-header.header-logo .logo img,
.site-header.header-logo-content .logo img {
    max-height: 60px;
}
.site-header .top-header {
    background: linear-gradient(to left, #f06826 0%, #dc232a 100%);
}
.site-header .top-header .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.site-header .top-header .menu li:not(:first-child) {
    margin-left: 15px;
}
.site-header .top-header .menu li:not(:first-child).bold a {
    font-weight: bold;
}
.site-header .top-header .menu a {
    color: #fff;
}
@media only screen and (max-width: 549.98px) {
    .site-header .top-header .menu {
        justify-content: space-between;
    }
    .site-header .top-header .menu li:not(:first-child) {
        margin-left: 10px;
    }
    .site-header .top-header .menu a {
        font-size: 10px;
    }
}
.site-header .top-header .widget {
    margin-bottom: 0;
}
.site-header .top-header .widget .sub-menu {
    display: none;
}
.site-header .header-content {
    position: relative;
    padding-top: 10px;
}
.site-header .mt-10 {
    margin-top: 10px;
}
.site-header .mb-10 {
    margin-bottom: 10px;
}
.site-header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.site-header .header-right .head-info {
    margin-right: 15px;
    padding-left: 45px;
}
.site-header .header-right .head-info.tvbh {
    background: url("assets/img/img-phone.svg") left center no-repeat;
    background-size: 35px;
}
.site-header .header-right .head-info.support {
    background: url("assets/img/img-support.svg") left center no-repeat;
    background-size: 35px;
}
.site-header .header-right .head-info span {
    display: block;
}
.site-header .header-right .head-info .vl {
    font-size: 13px;
    line-height: 1.53846154;
    text-align: left;
    color: #db2329;
    font-weight: bold;
}

/*--------------------------------------------------------------
## Footer 
--------------------------------------------------------------*/
.site-footer {
    color: #777;
    background: #fff;
}
.site-footer a {
    color: #777;
}

.top-footer .wrap {
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c0c0c0;
}
.top-footer .row-topft {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.top-footer .row-topft .policy-item {
    max-width: calc(100% / 2);
    flex-basis: calc(100% / 2);
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.top-footer .row-topft .policy-info {
    display: flex;
    align-items: center;
}
.top-footer .row-topft .policy-info .policy-icon {
    max-width: 40px;
    flex-basis: 40px;
    margin-right: 10px;
}
.top-footer .row-topft .policy-info .policy-content {
    max-width: calc(100% - 40px - 10px);
    flex-basis: calc(100% - 40px - 10px);
    text-transform: uppercase;
    line-height: 1.42;
    font-size: 12px;
}
.top-footer .row-topft .policy-info .policy-content span {
    display: block;
    color: #333;
    font-weight: bold;
}

.main-footer {
    padding: 30px 0 0px 0;
}
.main-footer h3.widget-title {
    margin: 0 0 13px;
    padding-bottom: 10px;
    font-size: 14px;
    position: relative;
}
.main-footer h3.widget-title:before {
    content: "";
    width: 35px;
    height: 1px;
    background: #0e71b9;
    position: absolute;
    bottom: 0;
    left: 0;
}
.main-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main-footer ul ul {
    display: none;
}
.main-footer .widget_nav_menu ul li {
    position: relative;
    padding: 0px;
    border-bottom: 0 !important;
}
.main-footer .widget_nav_menu ul li a {
    color: #777;
    padding: 7px 0;
}
.main-footer .widget_nav_menu ul li a:hover {
    text-decoration: underline;
}
.main-footer .widget_nav_menu ul li a .arrow {
    width: 34px;
    height: 34px;
    background: transparent;
}
.main-footer .widget_nav_menu ul li a .arrow:before {
    color: #fff;
    top: 7px;
    left: initial;
    right: 1px;
}

.bottom-footer h3 {
    display: flex;
    align-items: center;
    height: 35px;
    background: #0e71b9;
    font-size: 14px;
    color: #fff;
    padding-left: 45px;
    position: relative;
}
.bottom-footer h3 .number {
    width: 35px;
    height: 35px;
    background: #3590de;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bottom-footer .info-location .line-location {
    padding-left: 20px;
    position: relative;
    line-height: 1;
    line-height: 1.42;
    margin-bottom: 10px;
}
.bottom-footer .info-location .line-location:last-child {
    margin-bottom: 30px;
}
.bottom-footer .info-location .line-location a {
    color: #3590de;
    text-decoration: underline;
}
.bottom-footer .info-location i {
    position: absolute;
    top: 2px;
    left: 0;
    color: #db232a;
}

.site-info {
    background: white;
    color: #777;
}
.site-info .logo-bct img {
    max-height: 60px;
    object-position: center;
    object-fit: contain;
}
.site-info .wrap {
    padding: 20px 0;
    border-top: 1px solid #c0c0c0;
}
.site-info a,
.site-info span {
    color: #777;
}
.site-info p {
    margin-bottom: 0;
}

.nav-social {
    position: fixed;
    right: 5px;
    background: #fff;
    border-radius: 5px;
    width: auto;
    z-index: 150;
    top: 220px;
    padding: 10px 0;
    border: 1px solid #f2f2f2;
}
.nav-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-social ul li {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: calc(0.6em - 5px);
    margin-bottom: 0.6em;
    list-style: none;
    text-align: center;
}
.nav-social ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.nav-social ul li img {
    max-width: 25px;
    max-height: 20px;
    object-position: center;
    object-fit: contain;
}
.nav-social ul > li a {
    padding: 5px 12px 5px 12px;
    display: block;
    text-align: center;
    font-size: 11px;
    line-height: 15px;
    color: #000;
    font-weight: 400;
    max-width: 80px;
    max-height: 60px;
    text-decoration: none;
}
.nav-social ul > li a img {
    margin-bottom: 10px;
}

.bottom-contact-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    background: white;
    width: 100%;
    z-index: 99;
    box-shadow: 2px 1px 9px #dedede;
    border-top: 1px solid #eaeaea;
}
.bottom-contact-mobile ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.bottom-contact-mobile ul li {
    width: 20%;
    flex-basis: 20%;
    list-style: none;
    text-align: center;
    font-size: 13.5px;
}
.bottom-contact-mobile ul li img {
    width: 25px;
    height: 20px;
    object-position: center;
    object-fit: contain;
    margin-top: 10px;
    margin-bottom: 3px;
}
.bottom-contact-mobile ul li span {
    color: #000;
    font-size: 12px;
}

/*--------------------------------------------------------------
# Breadcrumds
--------------------------------------------------------------*/
.wrap-breadcrumbs {
    padding: 10px 0;
}
.wrap-breadcrumbs .title {
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
}
.wrap-breadcrumbs .rank-math-breadcrumb {
    font-size: 12px;
}
.wrap-breadcrumbs .rank-math-breadcrumb a,
.wrap-breadcrumbs .rank-math-breadcrumb span {
    font-size: 12px;
    line-height: 1.666667;
    text-align: left;
    color: #777;
}
.wrap-breadcrumbs .rank-math-breadcrumb p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Theme Css
--------------------------------------------------------------*/
body {
    background: #f4f5f6;
}

.page-template-page-fullwidth .site-content > .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.page-template-page-fullwidth .site-content > .container .content-sidebar-wrap {
    margin-left: 0;
    margin-right: 0;
}
.page-template-page-fullwidth
    .site-content
    > .container
    .content-sidebar-wrap
    .site-main {
    padding-left: 0;
    padding-right: 0;
}

.single h1.entry-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    text-transform: none;
    border-bottom: 0;
    padding-bottom: 0;
}
.single h1.entry-title:before {
    display: none;
}
.single h1.entry-title > span {
    position: relative;
    display: inline-block;
    color: #333;
}

.framevideo {
    width: 100%;
    aspect-ratio: 1/0.5625;
    position: relative;
}
.framevideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dgwt-wcas-sf-wrapp {
    margin-bottom: 3px;
}
.dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    font-size: 12px;
    line-height: 1.66667;
    text-align: left;
    border-color: #c0c0c0;
}
.dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input::placeholder {
    font-style: normal;
    color: #c0c0c0;
}
.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before {
    display: none;
}

.best-search {
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.66667;
    text-align: left;
    color: #777;
    display: none;
}
.best-search .text-fill {
    cursor: pointer;
}

.dgwt-wcas-st {
    font-size: 12px;
    color: #222;
}

.custom-slider .slick-slider.slick-carousel {
    margin-left: -7.5px;
    margin-right: 0 !important;
}
.custom-slider .slick-arrow {
    width: 26px;
    height: 48px;
    background: #fff;
    opacity: 0.68;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.custom-slider .slick-arrow.slick-next {
    border-radius: 20px 0px 0px 20px;
    right: 0;
}
.custom-slider .slick-arrow.slick-prev {
    border-radius: 0 20px 20px 0;
    left: 7.5px;
}

.home-act {
    width: 100%;
    display: block;
    padding: 40px 0;
    text-align: center;
    margin: auto;
}

.home-act .title h3 {
    font-weight: normal;
    color: #000;
    font-size: 16px;
}

.home-act .title h1 {
    color: #000;
    font-size: 20px;
    margin-bottom: 5px;
}

.home-act .content {
    max-width: 600px;
    margin: auto;
}

.home-act input#code {
    width: 100%;
    border-radius: 4px;
}

.home-act button#btnSend {
    background: #da2430;
    border-radius: 3px !important;
    color: #fff;
    text-transform: unset !important;
    font-size: 15px;
    margin: 0px !important;
}

div#error-page {
    color: #ff3333;
    font-size: 15px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    .home-act .content {
        width: 100%;
    }
}
#box-result table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
}
#box-result table tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}
#box-result table tr td {
    padding: 10px;
    border-top: 1px solid #dee2e6;
    text-align: left;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media only screen and (min-width: 576px) {
    .top-footer .row-topft .policy-info .policy-icon {
        max-width: 50px;
        flex-basis: 50px;
    }
    .top-footer .row-topft .policy-info .policy-content {
        max-width: calc(100% - 50px - 10px);
        flex-basis: calc(100% - 50px - 10px);
    }
    .top-footer .row-topft .policy-info .policy-content {
        font-size: 14px;
    }
}
@media only screen and (min-width: 850px) {
    .wrap-breadcrumbs {
        padding: 1.25rem 0;
    }

    .single h1.entry-title {
        font-size: 24px;
    }

    .top-footer .row-topft .policy-item {
        max-width: calc(100% / 3);
        flex-basis: calc(100% / 3);
    }

    .main-footer {
        padding-bottom: 20px;
    }

    .best-search {
        display: block;
    }

    .site-header .header-right {
        justify-content: space-between;
    }
    .site-header .blockSearch {
        padding-right: 30px;
    }
    .site-header .header-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .site-header .mt-10 {
        margin-top: 0;
    }
    .site-header .mb-10 {
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 1200px) {
    .top-footer .row-topft .policy-item {
        max-width: calc(100% / 5);
        flex-basis: calc(100% / 5);
    }

    .custom-slider .slick-slider.slick-carousel {
        margin-left: -10px;
        margin-right: -10px;
    }
}
/*--------------------------------------------------------------
# Sidebar - Widgets
--------------------------------------------------------------*/
.category .sidebar-primary {
    padding-left: 0;
    padding-right: 0;
}
.sidebar-primary .sidebar-box {
    padding: 20px !important;
    background: #fff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 5px;
    margin-bottom: 35px;
}
@media only screen and (max-width: 549.98px) {
    .sidebar-primary .sidebar-box {
        padding: 20px 15px !important;
    }
}

.widget {
    margin: 0 0 24px;
}
.sidebar .widget {
    margin: 0 0 30px 0;
}
.sidebar .widget:last-child {
    margin-bottom: 0;
}
.sidebar .widget .widget-title {
    font-size: 16px;
    line-height: 1.25;
    text-align: left;
    border-bottom: 1px solid #c0c0c0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    color: var(--primarycolor);
}
.sidebar .widget .widget-title:before {
    content: "";
    background: var(--primarycolor);
    width: 50px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
}
.sidebar .widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.widget select {
    max-width: 100%;
}

/* Widget Recent Posts */
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.widget .list-post-item li {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    clear: both;
    width: 100%;
}
.widget .list-post-item li:last-child {
    margin-bottom: 0;
}
.widget .list-post-item li h3 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.widget .list-post-item li h3 a {
    color: inherit;
}
.widget .list-post-item li a.primary-cat {
    display: inline-flex;
    min-width: 43px;
    padding: 0 7px;
    height: 16px;
    background: var(--primarycolor);
    justify-content: center;
    align-items: center;
    font-weight: normal;
    font-size: 10px;
    line-height: 1.42857143;
    text-align: left;
    color: #fff;
    text-transform: none;
    margin-right: 13px;
}
.widget .list-post-item li .date-time {
    font-weight: normal;
    font-size: 12px;
    line-height: 1.66666667;
    text-align: left;
    color: #777;
}
.widget .list-post-item .post:after {
    clear: both;
}
.widget .list-post-item .alignleft {
    max-width: 90px;
    flex-basis: 90px;
    height: 60px;
    margin-right: 10px;
}
.widget .list-post-item .alignleft .img,
.widget .list-post-item .alignleft img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.widget .list-post-item .alignright {
    max-width: 90px;
    flex-basis: 90px;
    height: 60px;
    margin-left: 10px;
}
.widget .list-post-item .alignright .img,
.widget .list-post-item .alignright img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.widget .list-post-item .aligncenter {
    text-align: center;
}
.widget .list-post-item .content_post {
    max-width: calc(100% - 90px - 10px);
    flex-basis: calc(100% - 90px - 10px);
}
.widget .list-post-item li:first-child {
    padding-bottom: 15px;
    border-bottom: 1px solid #c0c0c0;
}
.widget .list-post-item li:first-child .alignleft,
.widget .list-post-item li:first-child .alignright,
.widget .list-post-item li:first-child .content_post {
    max-width: 100%;
    flex-basis: 100%;
    margin-right: 0;
}
.widget .list-post-item li:first-child .alignleft,
.widget .list-post-item li:first-child .alignright {
    margin-bottom: 10px;
    position: relative;
    height: auto;
}
.widget .list-post-item li:first-child .alignleft img,
.widget .list-post-item li:first-child .alignright img {
    aspect-ratio: 1/0.594594595;
    height: auto;
}
.widget .list-post-item li:first-child .primary-cat {
    position: absolute;
    bottom: 0;
    left: 0;
}
.widget .list-post-item li:first-child .date-time {
    color: #c0c0c0;
}
.widget .list-post-item li:first-child h3 {
    margin-bottom: 10px;
}

/* Widget Custom Menu */
.widget_nav_menu ul li {
    position: relative;
}
.widget_nav_menu ul li a {
    font-size: 14px;
    font-weight: normal;
    display: block;
    color: var(--textcolor);
    position: relative;
    padding: 10px 0px;
}
.widget_nav_menu ul li.menu-item-has-children ul {
    display: none;
    padding: 0 0 0 10px;
}
.widget_nav_menu ul li.menu-item-has-children .arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 39px;
    height: 39px;
    cursor: pointer;
    text-align: center;
    line-height: 39px;
    color: var(--textcolor);
    background: rgba(255, 255, 255, 0.085);
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}
.footer-widgets .widget_nav_menu ul li.menu-item-has-children .arrow {
    color: #fff;
    background: transparent;
}
.widget_nav_menu ul li:hover > a,
.widget_nav_menu ul li.current-menu-item > a {
    color: var(--primarycolor);
}

/* Widget Information */
.widget_information li {
    padding: 0px 0px 10px 22px;
    position: relative;
}
.widget_information li i {
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    text-align: center;
    color: #db232a;
}
.widget_information li.label-company {
    padding-left: 0;
    text-transform: uppercase;
}
.widget_information li.label-company i {
    display: none;
}

/* Widget Social */
.widget_social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget_social ul li {
    display: inline-block;
    margin-right: 5px;
}
.widget_social ul li:last-child {
    margin-right: 0;
}
.widget_social ul li a {
    display: inline-block;
    color: var(--textcolor);
    text-align: center;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.widget_social ul li a:hover {
    -webkit-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    transform: translate(0, -5px);
}

/* Widget Tag Cloud */
.tagcloud a {
    font-size: 14px !important;
    display: inline-block;
    border: 1px solid var(--primarycolor);
    margin: 0 3px 5px 0;
    padding: 2px 5px;
    border-radius: 3px;
    color: var(--primarycolor);
}
.tagcloud a:hover {
    background: var(--primarycolor);
    color: #fff;
}

/*# sourceMappingURL=style.css.map */
/* Vertical Menu Styles */
.vertical-menu {
    position: relative;
}

.vertical-menu-title {
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 16px;
    background: #10619c;
    color: #fff;
    border-bottom: none;
    cursor: pointer;
}

.vertical-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show menu on homepage by default */
body.home .vertical-menu-list {
    opacity: 1;
    visibility: visible;
}

/* Hide menu when navigation is fixed */
body.home .main-navigation.fixed .vertical-menu-list,
body:not(.home) .vertical-menu-list {
    opacity: 0;
    visibility: hidden;
}

/* Show menu on hover - works for both fixed and non-fixed states */
.vertical-menu:hover .vertical-menu-list,
.main-navigation.fixed .vertical-menu:hover .vertical-menu-list {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fixed menu styles */
.main-navigation.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Add padding to body when menu is fixed to prevent content jump */
body.menu-fixed .main-navigation {
    margin-bottom: 0;
}

.vertical-menu-list > li {
    position: relative;
    border-bottom: 1px solid #eee;
}

.vertical-menu-list > li:last-child {
    border-bottom: none;
}

.vertical-menu-list > li > a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vertical-menu-list > li > a:hover {
    background: #f5f5f5;
    color: #000;
    padding-left: 25px;
}

/* Submenu Styles - Absolute positioning to the right */
.vertical-menu-list li {
    position: relative;
}

.vertical-menu-list li .sub-menu {
    position: absolute;
    left: 100% !important;
    top: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.vertical-menu-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.vertical-menu-list li .sub-menu li {
    border-bottom: 1px solid #eee;
}

.vertical-menu-list li .sub-menu li:last-child {
    border-bottom: none;
}

.vertical-menu-list li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vertical-menu-list li .sub-menu li a:hover {
    background: #f5f5f5;
    color: #000;
    padding-left: 25px;
}

/* Nested submenu (third level) */
.vertical-menu-list li .sub-menu li .sub-menu {
    left: 100%;
    top: 0;
}

/* Menu item with submenu indicator */
.vertical-menu-list li.menu-item-has-children > a::after {
    content: "\F105";
    font-family: "univn";
    font-weight: 900;
    float: right;
    margin-left: 10px;
}
