/*!
 * layout.css
 * Version - 1.0
 * Website: alanhair.vn
 * Author: Ghida
 * Copyright (c) 2020 gdavietnam.com
 */

/*Cover*/
.gd_cover_item {
    width: 100%;
    background: #ebebeb;
    max-height: 50vh;
    overflow: hidden;
    position: relative;
}

    .gd_cover_item .img-fluid {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gd_cover_item .gd_absolute {
        transform: translateY(-50%);
        max-width: 100%;
        top: 50%;
        color: #fff;
        left: 0;
        position: absolute;
        width: 100%;
    }

    .gd_cover_item .gd_text {
        color: #000;
        font-weight: 300;
        display: block;
        font-size: 48px;
    }

    .gd_cover_item .gd_cat_desc {
        color: #000;
        width: 40%;
    }

.gd_breadcrumb {
    clear: both;
    text-align: left;
    margin-top: 15px;
}

    .gd_breadcrumb .breadcrumbs a {
        display: inline-block;
        padding: 10px 0;
        color: #000;
    }

        .gd_breadcrumb .breadcrumbs a:hover {
            color: #737373;
        }

.gd_box__title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}


    .gd_box__title > a {
        border: 1px solid #666;
        display: inline-block;
    }

    .gd_box__title .gd_text {
        font-size: 36px;
        font-weight: 300;
        color: #000;
        display: inline-block;
        margin-bottom: 0;
        padding: 20px 50px;
        font-family: 'Montserrat',sans-serif;
        position: relative;
        z-index: 1;
    }

/*#region HOME */
.section_about {
    padding: 50px 0;
    position: relative;
}

.about_image .gd_inner {
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
    margin-right: 15px;
    z-index: 1;
    overflow: hidden;
}

    .about_image .gd_inner > a {
        position: relative;
        display: block;
    }

    .about_image .gd_inner a::before, .about_image .gd_inner a::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: "";
        background: rgba(0, 0, 0, 0.1);
        opacity: 0;
        z-index: 2;
        transition: all 0.5s ease-out 0s;
        -webkit-transition: all 0.5s ease-out 0s;
    }

.about_image img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.about_image:hover img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
}

.about_image:hover .gd_inner a::before {
    opacity: 1;
    top: 50%;
    bottom: 50%;
}

.about_image:hover .gd_inner a::after {
    opacity: 1;
    left: 50%;
    right: 50%;
}

.about_intro .gd_inner {
    position: relative;
    padding: 135px 36px;
    position: relative;
    margin: 70px 0 0;
}

    .about_intro .gd_inner .about_desc {
        position: relative;
        z-index: 2;
    }

        .about_intro .gd_inner .about_desc h2 {
            font-size: 36px;
            font-family: 'Montserrat';
            font-weight: 700;
        }

    .about_intro .gd_inner::before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: -300px;
        content: "";
        background-color: #eaeaea;
    }

    .about_intro .gd_inner::after {
        position: absolute;
        content: "";
        background-color: rgba(255, 255, 255, 0.3);
        width: 500px;
        height: 500px;
        top: 0;
        bottom: 0;
        right: 150px;
        z-index: 1;
        border-radius: 50%;
        margin: auto;
    }

.gd_action .gd_readmore:nth-child(1) {
    margin-right: 15px;
    position: relative;
    z-index: 2;
}

.about_ani {
    position: absolute;
    z-index: 10;
    top: 120px;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

.gd_fixed_left {
    left: 0;
}

.gd_fixed_right {
    right: 0;
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.gd_choose__item {
    margin-bottom: 15px;
}

.gd_choose__inner {
    border: 1px solid transparent;
    padding: 15px;
    transition: .2s border-color;
}

    .gd_choose__inner:hover {
        border-color: #b7b7b7;
    }

.choose_icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    background: #e6e6e6;
    margin: 0 auto 30px;
}

.choose_title {
    font-size: 21px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}

.choose_desc {
    text-align: center;
    font-size: 13px;
}

.module_product_tab {
    padding: 50px 0 60px;
    background: #eaeaea;
}
.gd_p__image {
    margin-bottom: 30px;
    box-shadow: 3px 5px 10px rgba(0,0,0,0.25);
    transition: all 300ms ease-in 0ms;
}
.gd_p__image:hover {
    box-shadow: 3px 5px 15px rgba(0,0,0,0.25);
}
.gd_p__content {
    bottom: 34px;
    left: 30px;
    position: absolute;
    transition: .2s transform .1s ease-in-out;
    width: 100%;
    z-index: 3;
}

.gd_p__inner:hover .gd_p__content {
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.gd_p__inner .gd_text {
    color: #000;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

.gd_p__inner:hover .portfolio-m__name {
    transition: .2s transform ease-in-out, .4s opacity;
}

.gd_p__inner .gd_readmore {
    display: inline-block;
    opacity: 0;
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: .2s transform ease-in-out, .3s opacity;
    vertical-align: middle;
    position: absolute;
    font-size: 12px;
}

.gd_p__inner:hover .gd_readmore {
    transition: .4s transform ease-in-out, .5s opacity;
    transform: translateY(0);
    opacity: 1;
}
/**New product/*/
.module_product_new {
    background-image: url(../images/bg-product.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    margin-top: 100px;
}

    .module_product_new .gd__p_item {
        flex: 0 0 40%;
    }

    .module_product_new .gd_p__items.d-flex {
        flex-flow: wrap;
        justify-content: center;
    }

    .module_product_new .gd__p_image {
        background: #f5f5f5;
        border-radius: 50%;
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

        .module_product_new .gd__p_image .gd__p_image img {
            max-width: 100%;
            width: auto;
        }

        .module_product_new .gd__p_image img {
            width: auto;
            max-width: 100%;
            height: auto;
            margin: auto;
            display: block;
        }

    .module_product_new .gd__p_content {
        margin-top: 30px;
    }

    .module_product_new .gd_fix_center {
        flex: 0 0 20%;
        text-align: center;
        color: #e5e5e5;
        font-size: 60px;
        font-family: 'Montserrat';
        font-weight: 700;
    }
/*Shipping*/
.section_shipping {
    margin-bottom: 80px;
    position: relative;
}

    .section_shipping:before {
        content: "";
        width: 60%;
        height: 1px;
        background: #2c29aa;
        max-width: 950px;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: absolute;
        z-index: -1;
    }

.gd_shipping__item {
    text-align: center;
}

    .gd_shipping__item .ship_icon {
        font-size: 48px;
    }

    .gd_shipping__item .gd_shipping__inner {
        border-radius: 50%;
        box-shadow: 0 0 25px 0 rgba(0,0,0,0.1);
        height: 250px;
        width: 250px;
        margin: auto;
        display: flex;
        flex-flow: column;
        justify-content: center;
        background: #fff;
    }

    .gd_shipping__item strong {
        font-size: 20px;
        font-family: 'Montserrat';
        display: block;
        margin-bottom: 5px;
    }

    .gd_shipping__item .ship_desc {
        padding: 0 15px;
    }

.module_video {
    padding: 100px 0 0px;
}

    .module_video .gd_post__title .gd_text {
        text-align: center;
        font-size: 18px;
        text-transform: uppercase;
    }

    .module_video .gd_post__meta {
        justify-content: center;
    }

.gd_hvlog_list .play_video {
    width: 100%;
}

.gd_hvlog_list .item_video {
    list-style: none;
    padding: 5px;
}

    .gd_hvlog_list .item_video .gd_link {
        display: block;
        position: relative;
        width: 80px;
        height: 80px;
        overflow: hidden;
        border-radius: 50%;
        cursor: pointer;
    }

        .gd_hvlog_list .item_video .gd_link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gd_hvlog_list .item_video .gd_link .fa-play {
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

.module_article {
    padding: 50px 0;
}

.gd_top_post .gd_post__content {
    text-align: left;
}

.gd_slider_post {
    width: 100%;
    clear: both;
}

    .gd_slider_post .gd_post__item {
        position: relative;
    }

    .gd_slider_post .gd_post__content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        flex-flow: column;
        justify-content: center;
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
        background: rgba(0, 0, 0, 0.3);
        transition: all 0.5s ease-out 0s;
        -webkit-transition: all 0.5s ease-out 0s;
    }

    .gd_slider_post .gd_post__inner:hover .gd_post__content {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .gd_slider_post .gd_post__content::after {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        z-index: 1;
        transition: all 0.5s ease-out 0s;
        -webkit-transition: all 0.5s ease-out 0s;
    }

    .gd_slider_post .gd_post__content:hover::after {
        opacity: 1;
    }

    .gd_slider_post .gd_post__title .gd_text, .gd_slider_post .gd_post__title:hover .gd_text {
        color: #fff !important;
    }

    .gd_slider_post .gd_post__meta {
        display: block;
        color: #fff;
    }

    .gd_slider_post .gd_sub__meta {
        display: none;
    }

    .gd_slider_post .gd_post__meta .gd_readmore {
        border-color: #fff;
        color: #fff;
        margin: 0;
    }

        .gd_slider_post .gd_post__meta .gd_readmore:hover {
            border-color: #2c29aa;
        }

.product_slider .gd__p_image {
    border-radius: 50%;
    width: 80%;
    margin: 15px auto;
}

.list_tax_product {
    margin-bottom: 30px;
}

    .list_tax_product ul {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .list_tax_product ul li {
            color: #000;
        }

            .list_tax_product ul li a {
                font-size: 14px;
                font-family: 'Montserrat',sans-serif;
                color: #000;
                position: relative;
                padding: 8px 35px;
                border-radius: 30px;
                border: 1px solid transparent;
                margin: 0 15px;
            }

                .list_tax_product ul li a.active, .list_tax_product ul li:hover a {
                    color: #737373;
                }

                .list_tax_product ul li a.active {
                    border-color: #000;
                    color: #000;
                }


.product_slider .owl-nav [class^="owl-"] {
    display: inline-block;
    zoom: 1;
    cursor: pointer;
    position: absolute;
    margin-top: -15px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 36px;
    color: #fff;
    /* font-family: -webkit-body; */
    line-height: 40px;
    top: 42%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(0,0,0,0.5);
}

.product_slider .owl-nav.disabled [class^="owl-"] {
    opacity: 0.5;
    /*cursor: default;*/
}

.product_slider .owl-nav .owl-next {
    right: -30px;
}

.product_slider .owl-nav .owl-prev {
    left: -30px;
}

.product_slider .owl-nav [class^="owl-"]:hover {
    background: rgba(44, 41, 170,0.85);
}

.gd_module__prices {
    padding-top: 50px;
}

.gd_price__item {
    margin-bottom: 50px;
}

.gd_price__title {
    display: flex;
    margin-bottom: 1.5rem;
}

    .gd_price__title .gd_text {
        margin: 0;
        font-size: 21px;
        font-weight: 300;
        flex: 0 1 auto;
    }

    .gd_price__title .gd_doted {
        background-image: radial-gradient(circle closest-side, rgba(0, 0, 0, 1) 99%, transparent 1%);
        background-size: 6px 2px;
        background-repeat: repeat-x;
        flex: 1 1 auto;
        background-position: bottom 10px left;
    }

    .gd_price__title .gd_pricing {
        white-space: nowrap;
        font-size: 21px;
        color: #737373;
        flex: 0 1 auto;
    }

.gd_price__content {
    color: #737373;
}
/*#endregion */

/*#region ARTICLE*/
.page-listing {
    margin-top: 30px;
    margin-bottom: 50px;
}

.gd_article_list {
}

    .gd_article_list .gd_box__title {
        display: none;
    }

/*News Item*/
.gd_post__item {
    width: 100%;
    float: left;
    margin-bottom: 50px;
}

.gd_post__inner {
}

.gd_post__image {
    overflow: hidden;
    margin-bottom: 0;
    max-height: 415px;
    position: relative;
}

    .gd_post__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 300ms ease-in 0ms;
    }

    .gd_post__image:hover img {
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .gd_post__image .date {
        background: rgba(23, 29, 32, 0.3);
        color: #fff;
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: 300;
        line-height: 1;
        padding: 8px 15px;
        display: flex;
        border-radius: 20px;
        align-items: center;
    }

        .gd_post__image .date span {
            display: block;
            text-align: center;
        }

            .gd_post__image .date span.month {
                margin-left: 5px;
            }

.gd_post__content {
}

    .gd_post__content .gd_readmore {
        padding: 0;
    }

.gd_post__meta {
    display: flex;
    color: rgb(153, 153, 153);
    justify-content: flex-start;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.gd_post__title .gd_text {
    font-size: 24px;
    color: #000;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Montserrat',sans-serif;
    margin: 25px 0;
}

.gd_post__title:hover .gd_text {
    color: #464646;
}

.gd_post__excerpt {
    color: rgb(114, 114, 114);
}

.gd_post__content:hover .gd_readmore {
    display: inline-block;
}

.gd_readmore {
    display: none;
    padding: 0;
    color: #000;
    position: relative;
    letter-spacing: 2px;
    z-index: 5;
    animation: fadeIn 300ms 0;
}

    .gd_readmore:hover {
        color: #464646;
    }

    .gd_readmore:before {
        content: "";
        height: 1px;
        background: #464646;
        width: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 300ms ease-in 0ms;
    }

    .gd_readmore:hover::before {
        width: 100%;
    }

.gd_post__meta .date, .gd_post__meta .views {
    margin-right: 15px;
}

    .gd_post__meta .date i, .gd_post__meta .views i {
    }

.gd_post__meta .share {
}
/*Single*/
.page-detail {
    color: #303030;
    padding: 50px 0;
}

.gd_post__single .gd_post__meta {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
}

.gd_post__single .meta_wr {
    display: flex;
}

.gd_single__image {
    border-radius: 15px;
    overflow: hidden;
}

.gd_post__single_title {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(49,48,48,1);
    font-weight: 300;
}

.gd_post__single_content {
    text-align: justify;
    color: rgb(48, 48, 48);
}

    .gd_post__single_content .gallery {
        float: left;
        width: 100%;
        /* display: flex; */
        margin-left: -5px;
        margin-right: -5px;
    }

        .gd_post__single_content .gallery .gallery-item {
            padding: 0 5px;
            margin-bottom: 10px;
        }

.gd_post__single .play_video {
    margin: 30px;
    width: 100%;
}

.gd_post__single .item_video {
    list-style: none;
    padding: 5px;
}

    .gd_post__single .item_video .gd_link {
        display: block;
        position: relative;
        width: 80px;
        height: 80px;
        overflow: hidden;
        border-radius: 50%;
        cursor: pointer;
    }

        .gd_post__single .item_video .gd_link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gd_post__single .item_video .gd_link .fa-play {
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

.gd_post__single_content *:not(table) {
    max-width: 100%;
}

.gd_post__single_content figure img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 1000px;
    margin: 15px 0;
}

.gd_post__single_content ul {
    padding-left: 30px;
}

.gd_post__single_content a {
    font-weight: bold;
}

    .gd_post__single_content a:hover {
        color: #eb747b;
    }

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

.gd_post__single_content .table {
    max-width: none;
    width: auto;
    text-align: left;
}

.gd_post__single_content .table-bordered td, .gd_post__single_content .table-bordered th {
    border: 1px solid #e5e5e5;
}

.gd_post__single_content h1 {
    font-size: 1.8em;
    font-weight: 700;
    font-style: normal;
    line-height: 1.25em;
    margin-top: 0.9583em;
    margin-bottom: 0.5833em;
    letter-spacing: -1.5px;
    text-transform: none;
}

.gd_post__single_content h2 {
    font-size: 1.5em;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1111em;
    margin-top: 1.0444em;
    margin-bottom: 0.76em;
    letter-spacing: -0.3px;
    text-transform: none;
}

.gd_post__single_content h3 {
    font-size: 1.15em;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1515em;
    margin-top: 1.3333em;
    margin-bottom: 0.7879em;
    letter-spacing: -0.3px;
    text-transform: none;
}

.gd_post__single_content h4 {
    font-size: 1em;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3043em;
    margin-top: 1.9565em;
    margin-bottom: 1.0435em;
    letter-spacing: -0.3px;
    text-transform: none;
}

.gd_post__single_content h5 {
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    line-height: 1.35em;
    margin-top: 1.5em;
    margin-bottom: 1.3em;
    letter-spacing: 0px;
    text-transform: none;
}

.gd_post__single_content h6 {
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4706em;
    margin-top: 2.1176em;
    margin-bottom: 0.9412em;
    letter-spacing: 0px;
    text-transform: none;
}

/*Related*/
.related-post .gd_box__title {
    text-align: center;
    margin: 50px 0 30px;
}

    .related-post .gd_box__title .gd_box__title_text {
        font-size: 24px;
        font-weight: 400;
        display: inline-block;
        border: 1px solid #303030;
        padding: 10px 30px;
        z-index: 10;
        position: relative;
    }

.related-content {
    clear: both;
}

    .related-content .gd_post__image {
    }

    .related-content .gd_post__item {
        width: 50%;
        padding: 0 15px;
        margin: 0;
    }

    .related-content .gd_post__title .gd_text {
        font-size: 18px;
    }

    .related-content .gd_post__inner {
        border-bottom: 1px dashed #e5e5e5;
        width: 100%;
        float: left;
        padding: 15px 0;
    }

    .related-content .gd_post__item:nth-child(3) .gd_post__inner, .related-content .gd_post__item:nth-child(4) .gd_post__inner {
        border: none;
    }


.related_slider .owl-nav [class^="owl-"] {
    color: #e5e5e5;
    line-height: 1;
    opacity: 0;
    background: rgba(0,0,0,0.5);
    position: absolute;
    text-align: center;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.3s ease-in 0s;
    visibility: hidden;
    z-index: 100;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 36px;
}

.related_slider .owl-prev {
    left: 10px;
}

.related_slider .owl-next {
    right: 10px;
}

.related_slider:hover .owl-nav [class^="owl-"] {
    opacity: 1;
    visibility: visible;
}

.related_slider .owl-nav.disabled {
}
/* In sidebar*/
.gd_widget_article {
    clear: both;
}

.gd_widget__content {
    width: 100%;
    float: left;
    padding: 0;
}

.gd_widget_article .gd_post__item {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.gd_widget_article .gd_post__image {
    width: 110px;
    height: 80px;
    margin-right: 15px;
    float: left;
}

.gd_widget_article .gd_post__title {
}

    .gd_widget_article .gd_post__title .gd_text {
        font-size: 18px;
        line-height: 1.35;
        display: block;
        margin: 0;
    }

    .gd_widget_article .gd_post__title:hover .gd_text {
        color: #2c29aa;
    }

.gd_widget_article .gd_date i {
    color: #2c29aa;
}

.sidebar-mini .gd_widget_article .gd_post__image {
    width: 85px;
    height: 85px;
}

.gd_list__content {
    clear: both;
    list-style: none;
}

    .gd_list__content .gd_item {
        margin-bottom: 10px;
    }

        .gd_list__content .gd_item a {
            color: #404040;
            display: inline;
        }

            .gd_list__content .gd_item a:hover {
                color: #AC834B;
            }

            .gd_list__content .gd_item a h6 {
                display: inline;
            }

        .gd_list__content .gd_item .gd_date {
            display: inline;
            font-style: italic;
            opacity: 0.65;
        }
/*#endregion ARTICLE*/

/*#region PRODUCT*/
.woocommerce-breadcrumb > a, .gd_breadcrumb .breadcrumbs a {
    display: inline-block;
    padding: 10px 0;
    color: #000;
}

.gd_paging {
    border-radius: 0;
}

    .gd_paging ul.page-numbers {
        list-style: none;
        display: flex;
    }

    .gd_paging li .page-numbers {
        width: 30px;
        display: block;
        border: 1px solid #e5e5e5;
        line-height: 28px;
        text-align: center;
        margin-right: 8px;
    }

        .gd_paging li .page-numbers.current, .gd_paging li a.page-numbers:hover {
            background: #737373;
            color: #fff;
            border-color: #737373;
        }

.gd_products_header {
    margin-bottom: 30px;
}

.gd_page__title {
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-left: 0;
    line-height: 1.5;
    background-size: auto 100%;
    font-weight: bold;
    display: none;
}

.gd_toolbox {
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: center;
}

    .gd_toolbox .woocommerce-notices-wrapper {
        flex: 0 0 100%;
    }

.gd_ordering {
    position: relative;
}

    .gd_ordering::before {
        content: "\f107";
        position: absolute;
        top: 4px;
        right: 8px;
        font-family: 'Font Awesome 5 Pro';
        z-index: -1;
    }

.gd_orderby {
    height: 30px;
    padding: 2px 10px;
    border: 1px solid #e5e5e5;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
}

.gd_product_list {
    padding: 100px 0;
}

.gd__p_items.row {
}

    .gd__p_items.row .gd__p_item {
    }

.gd__p_item {
    margin-bottom: 30px;
}

.gd__p_inner {
    position: relative;
    padding-bottom: 10px;
}

    .gd__p_inner:hover {
        transition: all 200ms ease-in 0ms;
    }

.gd__p_image {
    position: relative;
    overflow: hidden;
}

    .gd__p_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 300ms ease-in 0ms;
    }

    .gd__p_image a {
        display: block;
        position: relative;
    }


    .gd__p_image > a::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-size: 100% 100%;
        -moz-transform: scale(0,0);
        -ms-transform: scale(0,0);
        -o-transform: scale(0,0);
        -webkit-transform: scale(0,0);
        transform: scale(0,0);
        transition: all 300ms ease-in 0ms;
        display: none;
    }

    .gd__p_image:hover a::before {
        -moz-transform: scale(1,1);
        -ms-transform: scale(1,1);
        -o-transform: scale(1,1);
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

.gd__p_inner:hover img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.gd_control {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
}

    .gd_control .button, .gd_control .wc-forward {
        display: inline-block;
        text-align: center;
        text-transform: uppercase;
        /* text-indent: -9999px; */
        font-size: 12px;
        color: #fff;
        background: #2c29aa;
        padding: 6px 25px 7px;
        /* border-radius: 50%; */
        margin: 2px 0;
        white-space: nowrap;
        transform: scale(0);
        visibility: hidden;
        transition: all 0.3s ease 0s;
    }

.gd__p_image:hover .gd_control a {
    visibility: visible;
    transform: scale(1);
}

.gd__p_content {
    padding: 0 5px;
}

    .gd__p_content .gd_text {
        font-size: 18px;
        text-align: center;
        color: #333;
        font-weight: 700;
        font-family: 'Montserrat';
        line-height: 1.35;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .gd__p_content a:hover .gd_text {
        color: #2c29aa;
    }

    .gd__p_content .button {
        border: 1px solid #222;
        padding: 10px 25px;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .gd__p_content .button:hover {
            color: #fff;
            background: #2c29aa;
            border-color: #2c29aa;
        }

.gd_p__excerpt ul {
    padding-left: 15px;
    margin-bottom: 15px;
}

.gd__p_price {
    text-align: center;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
    line-height: 1;
}

    .gd__p_price .price {
        display: flex;
        flex-flow: row;
        justify-content: center;
        align-items: center;
    }

    .gd__p_price ins {
        text-decoration: none;
    }

    .gd__p_price del {
        font-size: 12px;
        display: block;
        margin-right: 5px;
        opacity: 0.6;
    }

    .gd__p_price .woocommerce-Price-currencySymbol {
        font-size: 11px;
        float: right;
    }

.gd_product_list .gd__p_inner {
    display: flex;
    padding: 0;
}

.gd_product_list .gd__p_image {
    margin-right: 30px;
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
}

.gd_product_list .gd_p__excerpt {
    text-align: justify;
}

.gd_product_list .gd__p_content .gd_text {
    font-size: 24px;
    text-align: left;
}

.gd_product_list .gd__p_content .price {
    display: block;
    margin: 15px 0;
}

.gd_product_list .gd__p_content .wc-forward {
    display: inline-block;
    clear: both;
    padding: 8px 30px;
    border: 1px solid #303030;
}

.woocommerce-Price-amount.amount {
    flex-flow: row-reverse;
    font-weight: bold;
}
/*detail*/
.gd_product_detail {
    padding: 95px 0;
}

.gd_p_single__images {
    margin-bottom: 20px;
    position: relative;
}

.product.sale .gd_p_single__images::before {
    border-bottom: 86px solid transparent;
    border-right: 86px solid #f47e49;
    content: "";
    position: absolute;
    z-index: 100;
    right: 15px;
    top: 0;
}

.onsale {
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 100;
    text-transform: uppercase;
    color: #fff;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    letter-spacing: 2px;
}

.gd_onsale.onsale {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background: #ff0000;
    top: 15px;
    padding: 5px 10px;
    border-radius: 0 15px 15px 0;
    right: 0;
}

.gd_p_single__summary {
    display: flex;
    flex-flow: column;
    margin-bottom: 20px;
}

.gd_p_single__title {
    order: 0;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.gd_p_single__summary .product_sku {
    margin-bottom: 5px;
    order: 1;
}

    .gd_p_single__summary .product_sku .sku {
        font-weight: bold;
    }

.gd_p_single__summary .stock {
    margin-bottom: 5px;
    order: 2;
    font-weight: 600;
    font-size: 16px;
}

    .gd_p_single__summary .stock strong {
        color: #333;
        display: none;
    }

.gd_p_single__summary .shop_attributes {
    order: 3;
}

.gd_p_single__short_desc {
    order: 4;
    line-height: 1.4;
    padding: 10px 0;
}

    .gd_p_single__short_desc ul {
        padding-left: 15px;
    }

.gd_p_single__summary .gd__p_price {
    text-align: left;
    font-size: 35px;
    color: #c4161c;
    order: 5;
    clear: both;
    margin-bottom: 15px;
}

    .gd_p_single__summary .gd__p_price del {
        font-size: 15px;
    }

    .gd_p_single__summary .gd__p_price .woocommerce-Price-currencySymbol {
        font-size: 18px;
    }

.gd_p_single__summary .cart {
    order: 6;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 15px;
}

    .gd_p_single__summary .cart .qty {
        width: 90px;
        padding: 5px 8px;
        border: 1px solid #e5e5e5;
        margin-right: 10px;
        background: #f8f8f8;
        height: 40px;
    }

.single_add_to_cart_button {
    background: #2c29aa url(../images/icon/icon_add_cart.png) no-repeat left 15px center;
    border: 1px solid #2c29aa;
    text-transform: uppercase;
    color: #fff;
    padding-left: 45px;
    padding-right: 15px;
    font-size: 13px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
}

    .single_add_to_cart_button:hover {
        background-color: #eb747b;
        border-color: #eb747b;
    }


.gd_p_single__summary .product_meta {
    order: 7;
    margin-bottom: 10px;
}

    .gd_p_single__summary .product_meta > span {
        display: block;
        margin-bottom: 10px;
    }

    .gd_p_single__summary .product_meta a {
        color: #2c29aa;
    }

        .gd_p_single__summary .product_meta a:hover {
            color: #007bff;
        }

.gd_p_single__summary .product-share {
    order: 8;
    margin-bottom: 15px;
}

.gd_p_single__summary .product-contact {
    order: 9;
    padding: 15px;
    border: 1px solid #e5e5e5;
}

    .gd_p_single__summary .product-contact span {
        display: block;
        margin-bottom: 5px;
    }

        .gd_p_single__summary .product-contact span.hotline a {
            color: #CB1E24;
            font-size: 18px;
            font-weight: bold;
        }

        .gd_p_single__summary .product-contact span.email a {
            color: #2c29aa;
        }

.gd_p_single__summary .cart .screen-reader-text {
    display: none;
}

.gd_tabs {
}

    .gd_tabs img {
        height: auto;
    }

    .gd_tabs *:not(table) {
        max-width: 100%;
    }

.tabs.gd_tabs_control {
    display: flex;
    list-style: none;
    flex-flow: nowrap;
    /* border: 1px solid #CC9900; */
    /* background: #CC9900; */
    padding-left: 0px;
    background-size: auto 100%;
    justify-content: center;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
}

    .tabs.gd_tabs_control li {
        padding: 0 15px;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: -1px;
    }

.gd_tabs_control li a {
    display: block;
    padding: 15px 0;
    /* border-right: 1px solid #e5e5e5; */
    line-height: 1.5;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.gd_tabs_control li:last-child a {
    border: none;
}

.tabs.gd_tabs_control li.active {
}

    .tabs.gd_tabs_control li a:hover, .tabs.gd_tabs_control li.active a {
        color: #2c29aa;
    }

    .tabs.gd_tabs_control li.active a {
        border-bottom: 1px solid #2c29aa;
    }

.gd_tabs_panel {
    text-align: justify;
    line-height: 1.5;
    padding: 20px 0;
    border-top: none;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 300;
}

    .gd_tabs_panel > h2:first-child {
        display: none;
    }

table.shop_attributes p {
    margin: 0;
}

table.shop_attributes td {
    padding: 0 15px;
}

.woocommerce-noreviews {
    background: none;
    color: #222222;
}

.comment-form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

    .comment-form .comment-notes {
        width: 100%;
    }

    .comment-form .comment-form-rating {
        width: 100%;
    }

    .comment-form .comment-form-comment {
        width: 100%;
        order: 2;
    }

    .comment-form .comment-form-author {
        width: 48%;
        order: 1;
    }

    .comment-form .comment-form-email {
        order: 1;
        width: 48%;
    }

    .comment-form .form-submit {
        order: 3;
        width: 100%;
    }

    .comment-form .comment-form-comment label {
        display: block;
    }

    .comment-form .comment-form-comment textarea {
        height: 85px;
    }

    .comment-form input[type="text"], .comment-form input[type="email"], .comment-form textarea {
        border: 1px solid #e5e5e5;
        width: 100%;
        height: 35px;
        padding: 5px 10px;
    }

    .comment-form .form-submit .submit {
        color: #fff;
        padding: 5px 15px;
        text-transform: uppercase;
        background: #2c29aa;
        border: 1px solid #2c29aa;
    }

.gd_p_related {
    clear: both;
}

    .gd_p_related .gd_related_title {
        padding-bottom: 15px;
        margin-bottom: 25px;
        font-size: 36px;
        font-weight: bold;
        padding-top: 10px;
        margin-top: 25px;
        text-align: center;
        font-family: 'Montserrat';
    }

    .gd_p_related .owl-nav [class^="owl-"] {
        display: inline-block;
        zoom: 1;
        cursor: pointer;
        position: absolute;
        border-radius: 0;
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 70px;
        color: #fff;
        font-family: -webkit-body;
        line-height: 36px;
        top: 42%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .gd_p_related .owl-nav.disabled [class^="owl-"] {
        opacity: 0.5;
        cursor: default;
    }

    .gd_p_related .owl-nav .owl-next {
        right: -30px;
    }

    .gd_p_related .owl-nav .owl-prev {
        left: -30px;
    }

.gd_related_content {
    clear: both;
}
/*#endregion PRODUCT*/

/*#region TESTIMONIAL */
.module_testimonial {
    clear: both;
    background: url('../images/bg_testimonial.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}

    .module_testimonial .gd_box__title {
        text-align: center;
    }

        .module_testimonial .gd_box__title .gd_text {
            color: #ccc;
        }

.gd_tes__items {
    clear: both;
    padding: 0 10%;
    margin: auto;
}

.gd_tes__item {
    justify-content: space-between;
    display: flex;
    padding: 15px;
}

    .gd_tes__item:hover .gd_tes__content {
        border: 1px solid #AC834B;
    }

.gd_tes__image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 30px;
}

.gd_tes__content {
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.5);
    padding: 40px 20px 30px 70px;
    color: #fff;
    text-align: left;
    background: rgba(0,0,0,0.5) url('../images/icon/icon_quote.png') no-repeat top 15px right 15px;
    transition: all 500ms cubic-bezier(.17,.67,.83,.67);
    position: relative;
}

.tes_name {
    font-size: 13px;
    font-weight: 300;
    font-family: Averta, 'Open Sans', sans-serif;
    color: #AC834B;
    margin-top: 10px;
}

.test_job {
    font-size: 16px;
    font-weight: 300;
}

.tes_content {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
}

    .tes_content::after {
        position: absolute;
        left: 0;
        top: 25px;
        background: #2c29aa;
        content: "\e978";
        font-family: icomoon;
        font-style: normal;
        color: #18191b;
        padding: 0px 15px;
        font-size: 28px;
        transform: rotate(180deg);
    }

.module_testimonial .owl-nav [class^="owl-"] {
    color: #e5e5e5;
    line-height: 38px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.3s ease-in 0s;
    visibility: hidden;
    z-index: 100;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 33px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
}

.module_testimonial .owl-prev {
    left: 0;
}

.module_testimonial .owl-next {
    right: 0;
}

.module_testimonial:hover .owl-nav [class^="owl-"] {
    opacity: 1;
    visibility: visible;
}

.module_testimonial .owl-nav.disabled {
    display: none;
}
/*#endregion */

/*#region SIDEBAR*/
.form_reg {
    clear: both;
    padding: 15px;
    font-weight: 300;
}

    .form_reg .col-6 {
        padding-left: 0;
        padding-right: 5px;
    }

        .form_reg .col-6:last-child {
            padding-right: 0;
            padding-left: 5px;
        }

    .form_reg .form-control {
        border-radius: 20px;
    }

    .form_reg .btn-control {
        background: #AC834B;
        padding: 15px 30px;
        text-transform: uppercase;
        color: #fff;
        border-radius: 30px;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        margin-top: 15px;
    }

    .form_reg .name-gd, .form_reg .email-gd, .form_reg .phone-gd, .form_reg .add-gd, .form_reg .wpcf7-date {
        background-image: url('../images/icon/icon_form.png');
        background-repeat: no-repeat;
        padding-left: 30px;
    }

    .form_reg .name-gd {
        background-position: top 8px left 10px;
    }

    .form_reg .email-gd {
        background-position: top -16px left 10px;
    }

    .form_reg .phone-gd {
        background-position: top -40px left 10px;
    }

    .form_reg .wpcf7-date {
        background-position: bottom -18px left 10px;
    }

    .form_reg .add-gd {
        background-position: bottom 8px left 10px;
    }

.gd_box__title, .gd_widget__title {
    display: block;
    padding: 0 15px;
}

    .gd_box__title_text, .gd_widget__title .gd_text {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        color: #303030;
        margin: 0;
        display: block;
        padding: 10px 0;
        font-family: 'Montserrat';
    }

.widget_media_gallery .gallery {
    margin-top: 15px;
    display: flex;
    margin-left: -2px;
    margin-right: -2px;
}

.widget_media_gallery .gallery-item {
    overflow: hidden;
    padding: 2px;
}

.gallery-columns-2 .gallery-item {
    flex: 0 0 50%;
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
    flex: 0 0 25%;
    max-width: 25%;
}

.widget {
    clear: both;
    margin-bottom: 30px;
    float: left;
    width: 100%;
    overflow: hidden;
}

.gd_widget__title {
    position: relative;
    border: 1px solid #303030;
    margin-bottom: 20px;
}

    .gd_widget__title .gd_text, .widget .gd_box__title_text {
        color: #303030;
        display: block;
        font-family: 'Montserrat';
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 5px;
    }

.widget .gd_box__title .toggle-btn::after, .widget_product_categories .gd_box__title .toggle-btn::after {
    content: "\e145";
    position: absolute;
    right: 10px;
    top: 6px;
    font-family: icomoon;
    cursor: pointer;
    visibility: hidden;
    font-size: 20px;
    color: #d6d6d6;
}

.widget .gd_box__title .toggle-btn.isActive::after, .widget_product_categories .gd_box__title_text .toggle-btn.isActive::after {
    content: "\e15b";
}

.widget_media_image .attachment-full {
    width: 100%;
}

.widget_product_categories {
}

    .widget_product_categories ul.product-categories, .widget_nav_menu ul.menu {
        width: 100%;
        float: left;
        margin-bottom: 0;
    }

    .widget_product_categories li.cat-item, .widget_nav_menu li {
        list-style: none;
        position: relative;
        margin-bottom: 15px;
    }

        .widget_product_categories li.cat-item a, .widget_nav_menu li a {
            font-size: 15px;
            color: #222;
            display: inline-block;
            padding: 10px 30px;
            position: relative;
        }

            .widget_product_categories li.cat-item a:hover, .widget_nav_menu ul.menu li a:hover, .widget_nav_menu ul.menu li.current-menu-item a {
                transition: all 300ms ease-in 0ms;
                color: #000;
                border-color: #737373;
            }

.widget_nav_menu ul.sub-menu li a {
    background: none;
}

    .widget_product_categories ul.children li.cat-item a::before, .widget_nav_menu ul.sub-menu li a:before {
        position: absolute;
        content: "";
        left: -12px;
        top: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #eb747b;
        transform: translateY(-50%);
    }

.widget_product_categories ul.children {
}

    .widget_product_categories ul.children li.cat-item, .widget_nav_menu ul.sub-menu li {
        /*border-top: 1px dashed #e5e5e5;*/
        position: relative;
        padding-left: 15px;
    }

        .widget_product_categories ul.children li.cat-item:last-child, .widget_nav_menu ul.sub-menu li:last-child {
            /*border-bottom: 1px dashed #e5e5e5;*/
        }

        .widget_nav_menu ul.sub-menu li:first-child {
            border: none;
        }

.widget_nav_menu ul.sub-menu ul.sub-menu li:first-child {
    /*border-top: 1px dashed #e5e5e5;*/
}

.widget_nav_menu ul.sub-menu ul.sub-menu li:last-child {
    border-bottom: none;
}

.widget_product_categories ul.children li.cat-parent .togglemenu, .widget_nav_menu ul.menu li > .togglemenu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    width: 30px;
    display: flex;
    min-height: 38px;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

    .widget_product_categories ul.children li.cat-parent .togglemenu::after, .widget_nav_menu ul.menu li > .togglemenu::after {
        content: "\f105";
        cursor: pointer;
        font-family: icomoon;
        font-size: 15px;
        padding: 8px 12px;
    }

.widget_product_categories ul.children li.cat-parent.is-active > .togglemenu::after, .widget_nav_menu ul.menu li.is-active > .togglemenu::after {
    content: "\f107";
}

.widget_product_categories ul.children li.cat-parent.is-active .children {
    /*display: block;*/
}

.widget_product_categories ul.children .children, .widget_nav_menu ul.menu .sub-menu {
    display: none;
    padding-left: 10px;
}

    .widget_product_categories ul.children .children a {
        text-transform: uppercase;
    }

    .widget_product_categories ul.children .children li:last-child, .widget_nav_menu ul.menu .sub-menu li:first-child {
        border-bottom: none;
    }

.widget_product_categories ul.product-categories > li.cat-item {
}

    .widget_product_categories ul.product-categories > li.cat-item > a, .widget_nav_menu ul.menu > li > a {
        color: #000;
        font-weight: 300;
        font-size: 15px;
        display: inline-block;
        line-height: 1.4;
        border: 1px solid transparent;
        border-radius: 30px;
    }


        .widget_product_categories ul.product-categories > li.cat-item > a:hover {
            color: #2c29aa;
        }

        .widget_product_categories ul.product-categories > li.cat-item > a:before {
            content: "";
            background: none;
        }

    .widget_product_categories ul.product-categories > li.cat-item.cat-parent > a {
        border-bottom: none;
        display: inline-block;
    }

    .widget_product_categories ul.product-categories > li.cat-item:last-child > a, .widget_nav_menu ul.menu > li:last-child > a {
        border: none;
    }

.widget_nav_menu ul.menu > li .sub-menu ~ .togglemenu {
    visibility: visible;
}

.widget_layered_nav ul {
    list-style: none;
    clear: both;
}

    .widget_layered_nav ul > li {
        padding: 5px 0;
    }

.widget_product_search .woocommerce-product-search {
    width: 100%;
    float: left;
}

.woocommerce-product-search .screen-reader-text {
    display: block;
}

.woocommerce-product-search .search-field {
    width: calc( 100% - 75px);
    height: 30px;
    border: 1px solid #2c29aa;
    padding: 2px 10px;
}

.woocommerce-product-search [type="submit"] {
    border: none;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    background: #2c29aa;
    height: 30px;
    float: right;
    max-width: 75px;
    font-size: 14px;
    white-space: nowrap;
}

.widget_recent_entries ul {
    list-style: none;
    display: block;
    clear: both;
    margin-top: 20px;
    float: left;
}

    .widget_recent_entries ul li {
        margin-bottom: 15px;
    }

    .widget_recent_entries ul a {
        font-size: 17px;
        line-height: 1.2;
        display: block;
        color: #404040;
    }

/*.sidebar-default .gd_widget__title .gd_widget__text,
.sidebar-default .gd_box__title {
    position: relative;
    display: block;
    background: none;
}

    .sidebar-default .gd_widget__title .gd_widget__text::before,
    .sidebar-default .gd_box__title .gd_box__title_text::before {
        content: "";
        background: #AC834B;
        width: 75px;
        height: 1px;
        position: absolute;
        bottom: 2px;
        left: 0;
    }

    .sidebar-default .gd_widget__title .gd_widget__text::after,
    .sidebar-default .gd_box__title .gd_box__title_text::after {
        content: "";
        width: 35px;
        height: 1px;
        bottom: 0;
        left: 0;
        background: #AC834B;
        position: absolute;
        }*/

.widget_product_tag_cloud .tagcloud {
}

    .widget_product_tag_cloud .tagcloud .tag-cloud-link {
        font-size: 14px !important;
        font-weight: 300;
        padding: 5px 10px;
        border: 1px solid #e5e5e5;
        white-space: nowrap;
        display: inline-block;
        margin-bottom: 5px;
        text-transform: capitalize;
    }

        .widget_product_tag_cloud .tagcloud .tag-cloud-link:hover {
            border-color: rgba(44, 41, 170,0.85);
        }
/*#endregion SIDEBAR */

/*#region CONTACT */
/*Contact*/
.gd_contact_us {
    padding: 70px 0 50px;
}

.gd_contact__box .gd_title {
    color: #000;
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 300;
    text-align: center;
}

.gd_ct__item {
}

    .gd_ct__item .gd_inner {
        text-align: center;
    }

    .gd_ct__item .gd_ct_icon {
        font-size: 70px;
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        line-height: 200px;
        margin: 30px auto;
    }

    .gd_ct__item .gd_ct_title {
        font-family: 'Montserrat';
        font-weight: 700;
        font-size: 20px;
    }

    .gd_ct__item .gd_ct_desc {
    }

.gd_contact__box {
    margin-bottom: 30px;
}

.google-map {
    height: 550px;
}

.gd_ct_form {
    padding: 70px 0 50px;
    background: #eaeaea;
}

.gd_form__contact {
    max-width: 650px;
    margin: auto;
}

    .gd_form__contact .form-control {
        line-height: 2rem;
        border-radius: 1px;
        font-size: 16px;
        font-weight: 300;
    }

        .gd_form__contact .form-control.wpcf7-textarea {
            height: 200px;
        }

.wpcf7-form-control.wpcf7-submit.btn.contact-submit {
    border: 1px solid #000;
    border-radius: 0;
    padding: 12px 45px;
    text-transform: uppercase;
    background: none;
    margin: 30px auto 0;
    display: block;
    transition: all 300ms ease-in 0ms;
    border-radius: 30px;
}

    .wpcf7-form-control.wpcf7-submit.btn.contact-submit:hover {
        border-color: #fff;
        color: #fff;
    }
/*#endregion */

/*#region ABOUT US */
.page-about .gd_page_content {
    text-align: center;
    padding: 0 10%;
}

.page-about .gd_ct__item .gd_ct_icon {
    display: flex;
    font-size: 1rem;
}

    .page-about .gd_ct__item .gd_ct_icon img {
        max-width: 75px;
        display: block;
        margin: auto;
    }

.page-about .gd_ct__item .gd_ct_desc {
    font-weight: 300;
}


.gd_member__content {
    margin-top: 15px;
}

.gd_member__name {
    font-size: 18px;
    display: block;
    font-weight: 300;
}

.gd_member__jobtitle {
    display: block;
}

.gd_module__award {
    padding: 50px 0;
}

    .gd_module__award .gd_award__items {
        padding: 0 10%;
    }

.gd_award__item .gd_inner {
}

.gd_award__item .gd_award_icon img {
    width: auto;
    max-width: 100%;
    margin: auto;
}

.gd_award__item .gd_award_icon {
    margin-bottom: 15px;
}

.gd_award_title {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}

.gd_award_desc {
    padding: 0 15px;
}


/*#endregion */

/*#region ORTHER*/

.navigation {
    clear: both;
    text-align: center;
}

    .navigation a, .navigation span.current {
        display: inline-block;
        width: 35px;
        line-height: 33px;
        border: 1px solid #e5e5e5;
        text-align: center;
        margin-right: 8px;
        border-radius: 20px;
        color: #000;
    }

        .navigation a:hover, .navigation span.current {
            color: #fff;
            background-color: #666;
            border-color: #666;
        }

        .navigation a.last, .navigation a.first {
            width: auto;
            padding: 0 15px;
        }

    .navigation .extend {
        margin-right: 8px;
    }

.wp-pagenavi .pages {
    display: none;
}

.gd_page_nosidebar {
    margin: 30px 0;
}

.gd_page_content {
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
}

    .gd_page_content * {
        max-width: 100%;
    }

    .gd_page_content ul {
        list-style: inside;
        padding-left: 15px;
        margin-bottom: 10px;
    }

.page-booking {
    padding: 50px 0;
}

.gd_notices {
    margin-bottom: 30px;
    border: 1px solid #ED3229;
    padding: 15px;
}
/*-------------------------
 1. Video Popup
 -------------------------*/
.video-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    visibility: hidden;
}

    .video-popup.active {
        visibility: visible;
    }

.video-wrap {
    max-width: 820px;
    width: 80%;
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid rgba(255,255,255,0.5);
    border-radius: 5px;
}

.video-closed {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    padding-top: 1px;
}

.video-popup iframe {
    display: block;
    width: 100%;
    height: 100%;
}
/*Keyframes*/
@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 0 17px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes pulse-shadow-white {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 0 17px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.2);
    }
}

@keyframes pulse-shadow-white {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow: 0 0 0 17px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.2);
    }
}

@-webkit-keyframes pulse-color {
    0% {
        box-shadow: 0 0 0 0px rgba(235, 116, 123, 0.3);
    }

    50% {
        box-shadow: 0 0 0 17px rgba(235, 116, 123, 0.2);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(235, 116, 123, 0.1);
    }
}

@keyframes pulse-color {
    0% {
        box-shadow: 0 0 0 0px rgba(235, 116, 123, 0.3);
    }

    50% {
        box-shadow: 0 0 0 17px rgba(235, 116, 123, 0.2);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(235, 116, 123, 0.1);
    }
}
/*#endregion ORTHER*/
