:root {
    --white: #fff;
    --black: #000;
    --primary: #C79F32;
    --second: #a82319;
    --third: #48CAE4;
    --bg: #EDEDED;
    --body: #111
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body,
html {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    font-size: 16px;
    color: var(--body);
    background: var(--bg)
}

a,
button {
    transition: all ease .4s
}

.blog-item.flex-item .box-content p,
.blog-item.flex-item h4 a,
.home-blog .blog-item.flex-item .box-content p,
.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word
}

.blog-item .box-content h4,
.blog-item .box-content p,
.home-blog .blog-item .box-content h4,
.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word
}

.home-blog .blog-item .box-content p,
.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word
}

.home-about .box-content p,
.line-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-word
}

.banner-video iframe {
    height: calc(56.25vw - 5px)
}

.banner-slider {
    margin-top: -10px
}

.banner-slider .item .banner-item {
    position: relative
}

.banner-slider .item .banner-item .box-img img {
    max-height: calc(100vh - 50px);
    width: 100%;
    object-fit: cover;
}


/* @media screen and (max-width:996px) {
    .banner-slider .item .banner-item .box-img {
        height: 220px
    }
} */

.box-desc-banner {
    width: min(1000px, 100%);
    margin: 20px auto;
}

.banner {
    background: #141414;
    padding-bottom: 25px;
}

.box-desc-banner .box-title {
    text-align: center;
    padding: 10px;
    /* border-bottom: 2px solid #fff; */
    background: var(--second);
}

.box-desc-banner .box-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff
}

.box-desc-banner .content {
    background: #fff;
}

.box-desc-banner [class^="vuta-col-"]:first-child {
    border-right: 2px solid var(--second);
}

.box-desc-banner .content p {
    position: relative;
    padding: 15px;
    margin: 0;
    font-size: 16px;
    text-align: justify;
    color: #141414;
}

.box-desc-banner
/* .banner-slider .item .box-content .content p {
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: #fff;
} */

.count {
    border-bottom: 2px solidvar(--third);
    border-top: 2px solidvar(--third);
    margin-top: 50px;
    margin-bottom: 50px
}

@media screen and (max-width:996px) {
    .count {
        margin: 20px 0
    }
    .box-desc-banner [class^="vuta-col-"]:first-child {
        border-right: none;
    }
    .box-desc-banner [class^="vuta-col-"]:first-child p {
        padding-bottom: 0;
    }
    .box-desc-banner [class^="vuta-col-"]:last-child p {
        padding-top: 5px;
    }
}

.nv-slider .item {
    margin: 0 10px;
    cursor: pointer;
}

.nv-slider .item .box-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.nv-slider .item .box-img img {
    transition: all ease 0.3s;
}

.nv-slider .item .box-img::before {
    content: "";
    background: rgba(255, 255, 255, .5);
    bottom: 0;
    left: 0;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -khtml-opacity: 1;
    -o-opacity: 1;
    -ms-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    width: 0;
    height: 0;
    z-index: 3;
}

.nv-slider .item .box-img::after {
    content: "";
    background: rgba(255, 255, 255, .5);
    top: 0;
    right: 0;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -khtml-opacity: 1;
    -o-opacity: 1;
    -ms-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    width: 0;
    height: 0;
    z-index: 2;
}

.nv-slider .item:hover .box-img img {
    filter: unset;
    transform: scale(1.1);
}

.nv-slider .item:hover .box-img::before,
.nv-slider .item:hover .box-img::after {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transition-duration: 1.3s;
    -moz-transition-duration: 1.3s;
    -ms-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
    -khtml-opacity: 0;
    -o-opacity: 0;
    -ms-opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
}

.nv-slider .item:hover .box-content h4 {
    color: var(--primary);
    transition: all ease 0.4s;
}

.nv-slider .slick-dots {
    bottom: -10px;
}

.nv-slider .item .box-content h4 {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    margin: 14px 0 10px;
}

.nv-slider .item .box-content p {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #CD2026;
}

.nv-slider {
    margin: 0 -10px;
}

.count .wraper-count {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.count .wraper-count .count-item {
    width: 25%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px
}

@media screen and (max-width:996px) {
    .count .wraper-count .count-item {
        width: 50%
    }
}

.count .wraper-count .count-item .box-count {
    font-size: 50px;
    font-weight: 600;
    color: var(--third)
}

@media screen and (max-width:996px) {
    .count .wraper-count .count-item .box-count {
        font-size: 22px
    }
}

.count .wraper-count .count-item p {
    margin-bottom: 0;
    color: #fff
}

@media screen and (max-width:996px) {
    .count .wraper-count .count-item p {
        font-size: 14px
    }
}

.primary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    background: var(--second);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    gap: 15px;
    font-size: 14px
}

.primary-btn:hover {
    background: var(--primary)
}

.primary-btn img {
    width: 12px;
    height: 12px
}

.box-title h2 {
    color: var(--second);
    position: relative;
    font-size: 27px;
    font-weight: 700
}

.home-about {
    padding: 50px 0 80px;
    background: #f3f3f3
}

@media screen and (max-width:996px) {
    .home-about {
        padding: 20px 0
    }
}

.home-about .box-content h2 {
    color: var(--third);
    position: relative;
    padding-top: 15px;
    font-size: 27px;
    font-weight: 700
}

@media screen and (max-width:996px) {
    .home-about .box-content h2 {
        padding-top: 0
    }
}

.home-about .box-content p {
    margin-bottom: 1rem;
    color: #2f2f2f;
    text-align: justify;
}

.home-about h3 {
    color: var(--third);
    position: relative;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase
}

.home-step {
    margin-bottom: 50px;
    background: #141414
}

@media screen and (max-width:996px) {
    .home-step {
        margin-bottom: 20px
    }
}

.home-step #tab {
    background: #f3f3f3
}
article img {
    margin-bottom: 10px;
}
article {
    line-height: 2rem;
}
article ol ,article ul{
    padding-left: 15px;
    margin-bottom: 5px;
  }
  article ol li {
    list-style: num;
  }
.home-step #tab .user-nav-tabs {
    border-bottom: 0;
    justify-content: center
}

@media screen and (max-width:996px) {
    .home-step #tab .user-nav-tabs {
        border-bottom: 1px solidvar(--third)
    }
}

@media screen and (max-width:996px) {
    .home-step #tab .user-nav-tabs li {
        width: 50%
    }
}

.home-step #tab .user-nav-tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase
}

@media screen and (max-width:996px) {
    .home-step #tab .user-nav-tabs li a {
        font-size: 14px;
        padding-left: 0;
        padding-right: 0
    }
}

.home-step #tab .user-nav-tabs li a:hover {
    color: var(--second)
}

.home-step #tab .user-nav-tabs li.active a {
    background: #141414;
    color: var(--primary);
}

.home-step .tab-content .box-step {
    display: flex;
    flex-wrap: wrap
}

.home-step .tab-content .box-step .step-item {
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    position: relative
}

@media screen and (max-width:996px) {
    .home-step .tab-content .box-step .step-item {
        width: 50%;
        padding: 0 10px;
    }
    .home-step .tab-content .box-step .step-item:last-child {
        width: 100%
    }
}

.home-step .tab-content .box-step .step-item::before {
    position: absolute;
    content: "";
    width: 31px;
    height: 20px;
    right: -10px;
    top: 85px;
    background-image: url(../images/icon_right_2.png)
}

@media screen and (max-width:575px) {
    .home-step .tab-content .box-step .step-item {
        width: 100%;
        padding: 0 10px;
    }
    .home-step .tab-content .box-step .step-item::before {
        display: none;
    }
}

.home-step .tab-content .box-step .step-item:last-child::before {
    display: none
}

.home-step .tab-content .box-step .step-item .icon {
    text-align: center
}


/* 
@media screen and (max-width: 575px) {
    .vuta-container {
        padding: 0 8px;
    }
} */

.home-step .tab-content .box-step .step-item .box-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center
}

.home-step .tab-content .box-step .step-item .box-content p {
    text-align: center;
    margin-bottom: 8px;
    color: #fff;
    font-size: 14px;
}


/* section {
    overflow: hidden
} */

.home-projects .vuta-row {
    margin: 0
}

.home-projects [class^=vuta-col-] {
    padding: 0
}

.home-projects .content {
    margin-right: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--second)
}

@media screen and (max-width:996px) {
    .home-projects .content {
        padding: 20px 0;
        margin: 0
    }
}

.home-projects .content p {
    text-align: justify;
    color: #111
}

.home-projects .projects-slider {
    margin: -5px
}

@media screen and (max-width:996px) {
    .home-projects .projects-slider {
        margin: 0
    }
}

.home-projects .projects-slider .item .projects-slider-item {
    position: relative;
    margin: 5px;
    border: 2px solid #fff
}

@media screen and (max-width:996px) {
    .home-projects .projects-slider .item .projects-slider-item {
        margin: 0
    }
}

.home-projects .projects-slider .item .projects-slider-item .box-img {
    aspect-ratio: 999/640
}

.home-projects .projects-slider .item .projects-slider-item .box-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(72, 202, 228, .8);
    -webkit-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s;
    padding: 15px
}

.home-projects .projects-slider .item .projects-slider-item .box-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 20px;
    font-weight: 600
}

.home-projects .projects-slider .item .projects-slider-item .box-content h4 a {
    color: #fff
}

.home-projects .projects-slider .item .projects-slider-item .box-content p {
    font-size: 14px;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

@media screen and (max-width:996px) {
    .home-projects .projects-slider .item .projects-slider-item .box-content p {
        display: none
    }
}

.home-projects .projects-slider .item .projects-slider-item .box-content .box-btn {
    position: absolute;
    bottom: 15px;
    display: flex
}

.home-projects .projects-slider .item .projects-slider-item .box-content .box-btn a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    font-size: 12px;
    gap: 10px;
    align-items: center
}

.home-projects .projects-slider .item .projects-slider-item .box-content .box-btn img {
    height: 12px;
    width: 12px
}

.home-projects .projects-slider .item .projects-slider-item:hover .box-content {
    -webkit-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0)
}

.home-projects .box-home-projects {
    padding-bottom: 40px
}

@media screen and (max-width:996px) {
    .home-projects .box-home-projects {
        padding-bottom: 20px
    }
}

.home-projects .box-home-projects:nth-child(2) .vuta-row [class^=vuta-col-]:nth-child(2) {
    order: 1
}

@media screen and (max-width:996px) {
    .home-projects .box-home-projects:nth-child(2) .vuta-row [class^=vuta-col-]:nth-child(2) {
        order: 2
    }
}

.home-projects .box-home-projects:nth-child(2) .vuta-row [class^=vuta-col-]:nth-child(1) {
    order: 2
}

@media screen and (max-width:996px) {
    .home-projects .box-home-projects:nth-child(2) .vuta-row [class^=vuta-col-]:nth-child(1) {
        order: 1
    }
}

.home-projects .box-home-projects:nth-child(2) .slick-arrow.slick-prev {
    left: 10px
}

.home-projects .box-home-projects:nth-child(2) .content {
    padding-left: 0;
    margin-left: 25px;
    margin-right: 0
}

@media screen and (max-width:996px) {
    .home-projects .box-home-projects:nth-child(2) .content {
        padding: 20px 0;
        margin: 0
    }
}

.home-duan {
    padding-bottom: 40px
}

@media screen and (max-width:996px) {
    .home-duan {
        padding-bottom: 20px
    }
}

.home-duan .box-duan-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 462px;
    display: flex;
    flex-wrap: nowrap
}

@media screen and (max-width:996px) {
    .home-duan .box-duan-main {
        height: 250px
    }
}

.home-duan .box-duan {
    width: 33vw;
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    border-left: 1px solid #000;
    transition: all .4s
}

.home-duan .box-duan:hover {
    width: 60vw
}

.home-duan .box-duan:hover .box-content h4 a {
    color: var(--third)
}

.home-duan .box-duan .box-content {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.home-duan .box-duan .box-content h4 {
    font-size: 24px
}

.home-duan .box-duan .box-content h4 a {
    color: #fff
}

.home-duan .box-duan .box-img a {
    position: relative;
    overflow: hidden;
    display: block;
    overflow: hidden
}

.home-duan .box-duan .box-img a:hover img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1)
}

.home-duan .box-duan .box-img img {
    object-fit: cover;
    height: 462px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

@media screen and (max-width:996px) {
    .home-duan .box-duan .box-img img {
        height: 250px
    }
}

.box-duan-main {
    display: flex
}

.home-gallery {
    padding-top: 20px;
    /* background: #fff; */
    padding-bottom: 20px
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #D62929;
}

.video {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    overflow: hidden;
}

@media (max-width: 380px) {
    .video {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .video {
        height: 230px;
    }
    .banner-slider .item .banner-item .box-img img {
        height: 230px;
    }
}

.alert {
    display: none;
}

.video video {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slick-arrow {
    border: 0
}

.slick-arrow::before {
    font-family: fontawesome;
    color: var(--third);
    font-size: 30px
}

.slick-arrow.slick-prev {
    left: 0
}

.slick-arrow.slick-prev::before {
    content: "\f104"
}

.slick-arrow.slick-next {
    right: 10px
}

.slick-arrow.slick-next::before {
    content: "\f105"
}

.home-bst .wraper {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #000;
    padding-left: calc((100vw - 1320px)/ 2)
}

@media screen and (max-width:996px) {
    .home-bst .wraper {
        padding: 20px 10px
    }
}

.home-bst .box-title h2 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 100px;
    line-height: 1;
    margin-bottom: 80px
}

@media screen and (max-width:996px) {
    .home-bst .box-title h2 {
        margin-bottom: 10px;
        line-height: 1.5;
        text-align: center
    }
}

.home-bst .vuta-row {
    margin: 0
}

.home-bst .vuta-row [class^=vuta-col-] {
    padding: 0
}

.home-bst .vuta-row .box-content {
    padding: 30px;
    height: 100%;
    background: #2f2f2f
}

.home-bst .vuta-row .box-content h3 {
    font-size: 27px;
    color: var(--third)
}

@media screen and (max-width:996px) {
    .home-bst .vuta-row .box-content h3 {
        font-size: 22px;
        margin-bottom: 0
    }
}

.home-bst .vuta-row .box-content p {
    padding-top: 20px;
    margin-top: 30px;
    text-align: justify;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-top: 1px solidvar(--third);
    border-bottom: 1px solidvar(--third)
}

@media screen and (max-width:996px) {
    .home-bst .vuta-row .box-content p {
        padding-top: 10px;
        margin-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px
    }
}

.home-bst .content-item:nth-child(2) [class^=vuta-col-]:nth-child(1) {
    order: 2
}

@media screen and (max-width:996px) {
    .home-bst .content-item:nth-child(2) [class^=vuta-col-]:nth-child(1) {
        order: 1
    }
}

.home-bst .content-item:nth-child(2) [class^=vuta-col-]:nth-child(2) {
    order: 1
}

@media screen and (max-width:996px) {
    .home-bst .content-item:nth-child(2) [class^=vuta-col-]:nth-child(2) {
        order: 2
    }
}

.slick-dotted {
    margin-bottom: 0!important
}

.slick-dots {
    bottom: 10px
}

.slick-dots li {
    width: 10px;
    height: 10px
}

.slick-dots li button {
    background: #ccc;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    transition: all ease 0s;
    padding: 0
}

.slick-dots li button::before {
    display: none
}

.slick-dots li.slick-active {
    width: 35px
}

.slick-dots li.slick-active button {
    width: 35px;
    border-radius: 12px;
    background: #333
}

.home-brand {
    background: #fff;
    padding: 40px 0 0
}

@media screen and (max-width:996px) {
    .home-brand {
        padding: 20px 0
    }
}

.home-brand .box-title {
    text-align: center;
    margin-bottom: 20px
}

.home-feedback {
    padding: 40px 0 80px;
    background: #000;
}

@media screen and (max-width: 996px) {
    .home-feedback {
        padding: 20px 0 60px;
    }
}

.home-feedback .box-title {
    margin-bottom: 20px;
    text-align: center;
}

.home-feedback .box-title h2 {
    color: #fff;
}

.home-feedback .slick-dots {
    bottom: -30px;
}

article ul {
    padding-left: 15px;
}

article ul li {
    list-style: disc;
}

article .image-center {
    margin-bottom: 8px;
}

.form-group {
    width: 100%;
    overflow: hidden;
}

.home-feedback .feedback-item {
    display: flex;
    overflow: hidden;
    width: min(996px, 100%);
    margin: 0 auto;
    justify-content: center;
}

.home-feedback .feedback-item>.box-img {
    aspect-ratio: 3/2;
    flex-shrink: 1;
    max-width: 300px;
    overflow: hidden;
}

.home-feedback .feedback-item>.box-img img {
    border-radius: 10px 0 0 10px;
}

.home-feedback .feedback-item .box-content {
    background-color: #fff;
    position: relative;
    padding: 30px;
    z-index: 10;
    color: #2f2f2f;
    border-radius: 10px;
}

.home-feedback .feedback-item .box-content p {
    margin-bottom: 0;
    padding-left: 20px;
    position: relative;
    text-align: justify;
    padding-right: 20px;
}

.home-feedback .feedback-item .box-content p::before {
    content: "\f10d";
    font-family: fontawesome;
    color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width:767px) {
    .home-feedback .feedback-item {
        flex-direction: column;
    }
    .home-feedback .feedback-item>.box-img {
        max-width: 100%;
    }
    .home-feedback .feedback-item>.box-img img {
        border-radius: 10px 10px 0 0;
    }
    .home-feedback .feedback-item .box-content {
        border-radius: 0 0 10px 10px;
    }
}

.home-feedback .feedback-item .box-content p::after {
    content: "\f10e";
    font-family: fontawesome;
    color: var(--primary);
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-feedback .feedback-item .box-content::before {
    content: "";
    display: inline-block;
    border-right: 30px solidvar(--primary);
    border-bottom: 30px solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
}

.home-feedback .feedback-item .box-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    color: var(--second);
    font-weight: 600;
}

.home-feedback .feedback-item .box-info .box-img {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.home-feedback .feedback-item .box-info .box-img img {
    border-radius: 50%;
}

.home-feedback .feedback-item .rating {
    padding-left: 15px;
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.home-feedback .feedback-item .rating i {
    color: #ffc000;
}

.home-contact {
    background: var(--bg);
    padding: 40px 0 0;
    color: #2f2f2f
}

.home-contact .vuta-row {
    margin: 0;
}

.home-contact [class^="vuta-col-"] {
    padding: 0;
}

.form-s {
    margin-bottom: 10px;
}

@media screen and (max-width:996px) {
    .home-contact {
        padding: 20px 0 0
    }
    .home-contact .map {
        margin-bottom: 10px
    }
}

@media screen and (max-width: 767px) {
    #MorganAndMen .popup_content {
        width: 450px !important;
        height: 400px !important;
    }
}

@media screen and (max-width: 575) {
    #MorganAndMen .popup_content {
        width: 450px !important;
        height: 400px !important;
    }
}

.form-contact {
    padding: 30px;
    /* border-radius: 10px; */
    height: 100%;
    background: #fff;
    /* box-shadow: 0 3px 12px rgba(0, 0, 0, .1) */
}

.form-s {
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    overflow: hidden;
}

@media screen and (max-width:996px) {
    .form-contact {
        padding: 20px
    }
}

.form-contact h2 {
    text-align: center;
    margin-bottom: 20px
}

.form-contact .gr-input {
    margin-bottom: 15px
}

.form-contact .gr-input label {
    display: block;
    margin-bottom: 10px
}

.form-contact label {
    font-weight: 600
}

.form-contact .gr-checkbox .list-checkbox {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.form-contact .gr-checkbox .list-checkbox label {
    position: relative;
    font-weight: 400;
    cursor: pointer;
    padding-left: 20px
}

.form-contact .gr-checkbox .list-checkbox label input {
    position: absolute;
    left: 0;
    top: 5px
}

.form-contact .gr-checkbox .list-checkbox:last-child {
    margin-bottom: 5px
}

.form-contact textarea {
    min-height: 100px
}

.primary-btn {
    border-radius: 4px
}

.blog-item {
    margin-bottom: 20px;
    height: 100%
}

.blog-item .box-img {
    aspect-ratio: 3/2;
    overflow: hidden
}

.blog-item .box-img img {
    transition: all ease .7s
}

.blog-item:hover .box-img img {
    transform: scale(1.1)
}

.blog-item .box-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    background: #fff
}

.blog-item .box-content h4 {
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;
    flex: 1;
    line-height: 24px;
}

.blog-item .box-content h4 a {
    color: var(--second)
}

.blog-item .box-content h4 a:hover {
    color: var(--primary)
}

.blog-item .box-content p {
    color: #2f2f2f;
    margin-bottom: 16px;
    min-height: 48px;
    text-align: justify;
}

.blog-item.flex-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc
}

.blog-item.flex-item:last-child {
    padding: 0;
    margin: 0;
    border: 0
}

.blog-item.flex-item .box-img {
    /* height: 90px; */
    width: 120px;
    flex-shrink: 0
}

.blog-item.flex-item .box-content {
    width: 100%
}

.blog-item.flex-item .box-content p {
    margin-bottom: 0
}

.blog-item.flex-item h4 {
    font-size: 16px;
    line-height: 24px;
    min-height: unset
}

.home-blog {
    padding: 40px 0;
    background: #f3f3f3;
}

.home-blog .slick-dots {
    bottom: -10px;
}

@media screen and (max-width:996px) {
    .home-blog {
        padding: 20px 0
    }
    .home-blog .slick-dots {
        bottom: 10px;
    }
    .box-desc-banner .box-title h4 {
        font-size: 15px;
    }
}

.home-blog .box-title {
    margin-bottom: 20px;
}

.home-blog .box-title h2 {
    text-align: center;
}

.home-blog .blog-item .box-img {
    aspect-ratio: 3/2
}

.home-blog .blog-item .box-content {
    padding: 15px;
    background: #fff
}

.home-blog .blog-item .box-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px
}

.home-blog .blog-item .box-content h4 a {
    color: var(--second)
}

.home-blog .blog-item .box-content p {
    color: #2f2f2f
}

.blog {
    padding: 80px 0 40px
}

@media screen and (max-width:996px) {
    .blog {
        padding: 20px 0
    }
}

.blog .box-btn {
    margin-top: 20px;
    display: flex;
    justify-content: center
}

.blog .blog-item .box-btn {
    justify-content: left;
    margin-top: auto;
}

.aside-blog .aside-item {
    margin-bottom: 20px
}

.aside-blog .aside-item .box {
    padding: 15px;
    background: #fff
}

.aside-blog .aside-item .box ul {
    padding-left: 15px
}

.aside-blog .aside-item .box ul li {
    margin-bottom: 10px;
    list-style: disc;
    color: #2f2f2f
}

.aside-blog .aside-item .box ul li a {
    color: #2f2f2f;
    display: flex;
    justify-content: space-between
}

.aside-blog .aside-item .box ul li.active a,
.aside-blog .aside-item .box ul li:hover a {
    color: var(--third)
}

.aside-blog .form-contact {
    padding: 15px;
    color: #2f2f2f;
    border-radius: 0
}

.aside-blog .form-contact .primary-btn {
    font-size: 13px;
    width: 100%
}

.aside-blog h2,
.aside-blog h3 {
    font-size: 18px!important;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--second);
    font-weight: 700
}

.fanpage .fb-page {
    width: 100%!important
}

.fanpage .fb-page span {
    width: 100%!important
}

.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px
}

.pagination ul li a {
    border-radius: 4px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--third)
}

.pagination ul li.active a {
    background: var(--second)
}

.pagination ul li.disabled {
    cursor: not-allowed
}

.banner-page {
    overflow: unset;
    position: relative;
    z-index: 9
}

.banner-page .box-img {
    height: 434px
}

@media screen and (max-width:996px) {
    .banner-page .box-img {
        height: 250px
    }
}

.banner-page .box-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -62px;
    width: min(820px, 100%);
}

@media screen and (max-width:996px) {
    .banner-page .box-content {
        position: unset;
        width: 100%;
        transform: unset
    }
}

.banner-page .box-content .box-title {
    background: var(--second);
    text-align: center;
    padding: 10px
}

.banner-page .box-content .box-title h2 {
    color: #fff;
    font-size: 16px!important;
    margin-bottom: 0;
    text-transform: uppercase
}

.banner-page .box-content .content {
    padding: 8px;
    text-align: center;
    color: #2f2f2f;
    font-size: 16px;
    background: #fff;
    min-height: 62px;
}

.banner-page .box-content .content p {
    margin-bottom: 0;
    /* padding: 10px; */
    text-align: center;
    color: #2f2f2f;
    font-weight: 600;
    font-size: 16px;
    background: #fff
}

.sticky {
    position: relative;
}

.aside.aside-blog {
    position: sticky;
    top: 100px;
}

#MorganAndMen {
    width: auto !important;
    height: auto !important;
}

#MorganAndMen .form-c {
    padding: 10px 20px;
    border-radius: 0;
    height: 100%;
    background: transparent;
    box-shadow: none;
}

#MorganAndMen .form-c .box-title h2 {
    font-size: 20px;
}


/* background: linear-gradient(180deg, rgb(228, 220, 216) 1%, rgb(255, 192, 0) 84%) */

#MorganAndMen .form-c .form-contact {
    padding: 0;
    background: transparent;
    height: auto;
}

@media (max-width:575px) {
    #MorganAndMen .form-c .box-title h2 {
        font-size: 18px !important;
        text-align: center;
        margin-bottom: 10px;
    }
}

#MorganAndMen .vuta-row {
    margin: 0;
}

#MorganAndMen [class^="vuta-col-"] {
    padding: 0;
}

#MorganAndMen .form-c {
    border: 5px solid var(--second);
    overflow-y: scroll;
}

#fanback .popup_content {
    padding: 0;
}

.remove-borda {
    margin-top: 0 !important;
    height: 0 !important;
}

#TheBlogWidgets {
    padding: 0 !important;
    position: absolute !important;
    right: 0px !important;
    top: 0px !important;
    height: 30px !important;
    width: 30px !important;
}


/* .home-contact {
    background: #fff
} */

.fanpage {
    margin-bottom: 15px;
}

.home-contact .info h3 {
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--second)
}

.home-contact .info .list-info li {
    margin-bottom: 10px;
    font-weight: 700
}

.home-contact .info .list-info li span {
    font-weight: 400
}

.home-contact .info .list-info li a {
    color: #2f2f2f
}

.home-contact .box-btn {
    display: flex;
    justify-content: right
}

@media screen and (max-width:996px) {
    .home-contact .box-btn button {
        width: 100%
    }
}

.bst-detail {
    padding: 80px 0 40px
}

.bst-detail .time {
    display: block;
    margin-bottom: 10px
}

.bst-detail .box-detail h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--third)
}

.bst-detail .box-detail .vuta-row {
    border: 5px solid #fff;
    margin: 0;
    margin-bottom: 20px
}

.bst-detail .box-detail .vuta-row [class^=vuta-col-] {
    padding: 0
}

.bst-detail .box-detail .vuta-row a {
    border: 5px solid #fff
}

.bst-detail .box-detail .vuta-row a .box-img {
    aspect-ratio: 1/1;
    overflow: hidden
}

.bst-detail .box-detail .vuta-row a .box-img img {
    transition: all ease .7s
}

.bst-detail .box-detail .vuta-row a:hover .box-img img {
    transform: scale(1.1)
}

.slick-track {
    margin-left: 0;
}


/* .box-related,
.box-share {
    padding: 15px;
    background: #2f2f2f;
    border-radius: 10px
} */

.box-share {
    margin-bottom: 20px
}

.box-share span {
    margin-bottom: 10px;
    display: block;
    color: #fff
}

.box-share ul {
    display: flex;
    gap: 10px
}

.box-share ul li a {
    border-radius: 4px;
    height: 30px;
    width: 30px;
    background: var(--third);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.box-share ul li a:hover {
    background: var(--second)
}

.box-related h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--second);
    font-weight: 600
}

.box-related .related-slider {
    margin: 0 -5px
}

.box-related .related-slider .item {
    margin: 0 5px
}

.box-related .related-slider .item .blog-item {
    margin-bottom: 0
}

.page .toc-wrap {
    display: none
}

.blog-detail {
    padding: 20px 0 40px;
    position: relative;
}

.blog-detail.page {
    padding: 100px 0 40px;
}

@media screen and (max-width:996px) {
    .blog-detail {
        padding: 20px 0
    }
    .blog-detail.page {
        padding: 20px 0
    }
}

.blog-detail .breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 10px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch
}

.blog-detail .breadcrumb ul li {
    position: relative
}

.blog-detail .breadcrumb ul li a {
    font-size: 14px;
    color: #141414;
    font-weight: 600
}

.blog-detail .breadcrumb ul li::before {
    position: absolute;
    content: "/";
    left: -16px;
    color: #141414
}

.blog-detail .breadcrumb ul li:first-child::before {
    display: none
}

.blog-detail .breadcrumb ul li:last-child a {
    font-size: 14px;
    color: var(--second);
    font-weight: 600
}

.blog-detail .content {
    padding-bottom: 20px
}

.blog-detail .content h1 {
    font-size: 28px;
    color: var(--second);
    font-weight: 600
}

@media screen and (max-width:996px) {
    .blog-detail .content h1 {
        font-size: 20px
    }
}

.blog-detail .content h2 {
    font-size: 24px;
    font-weight: 600
}

@media screen and (max-width:996px) {
    .blog-detail .content h2 {
        font-size: 20px!important
    }
}

.blog-detail .content h3 {
    font-size: 20px;
    font-weight: 600
}

@media screen and (max-width:996px) {
    .blog-detail .content h3 {
        font-size: 18px
    }
}

.blog-detail .content .box-img {
    margin-bottom: 10px
}

.blog-detail .content .box-img figcaption {
    margin-bottom: 0
}

.blog-detail .content caption,
.blog-detail .content figcaption {
    padding: 5px;
    text-align: center;
    background: var(--third);
    margin-bottom: 10px;
    color: #fff;
    font-style: italic
}

.blog-detail .content .table {
    margin-bottom: 0
}

.blog-detail .content .meta {
    margin-bottom: 10px
}

.blog-detail .content .meta span {
    margin-right: 20px
}

.blog-detail .content .sort-desc {
    font-style: italic
}

.blog-detail .content blockquote {
    border-left: 5px solid var(--third);
    padding-left: 15px;
    margin-left: 15px
}

.blog-detail .content blockquote p {
    margin: 0;
    font-style: italic
}

.blog-cat-item {
    position: relative;
    margin-bottom: 20px
}

.blog-cat-item .box-content {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px;
    bottom: 0;
    transition: all ease .4s;
    text-align: center;
    background: rgba(0, 0, 0, .5)
}

.blog-cat-item .box-content h4 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase
}

.blog-cat-item .box-content a {
    color: #fff
}

.blog-cat-item .box-img {
    overflow: hidden;
    aspect-ratio: 3/2
}

.blog-cat-item .box-img img {
    transition: all ease .7s
}

.blog-cat-item:hover .box-content {
    background: rgba(0, 0, 0, .8)
}

.blog-cat-item:hover .box-content a {
    color: var(--primary)
}

.blog-cat-item:hover .box-img img {
    transform: scale(1.1)
}

.toc-wrap {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    background-color: #fff6e5;
    border-width: 1px;
    border-color: #d2d6dc;
    margin-bottom: 15px;
    color: #2f2f2f
}

.toc-wrap .toc-title {
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 8px 15px;
    padding-left: 20px;
    background: var(--second);
    position: relative;
    cursor: pointer
}

.toc-wrap .toc-title::before {
    position: absolute;
    top: 8px;
    right: 15px;
    content: "\f0d7";
    font-family: fontawesome;
    transition: all ease .5s;
    -webkit-transform: rotate(180deg)!important;
    -ms-transform: rotate(180deg)!important;
    -o-transform: rotate(180deg)!important;
    transform: rotate(180deg)!important
}

.toc-wrap .toc-title.active::before {
    -webkit-transform: rotate(0)!important;
    -ms-transform: rotate(0)!important;
    -o-transform: rotate(0)!important;
    transform: rotate(0)!important
}

.toc-wrap #toc {
    max-height: 0;
    overflow: hidden;
    transition: all ease .4s
}

.toc-wrap #toc.active {
    max-height: 5000px
}

.toc-wrap #toc ul {
    padding: 15px
}

.toc-wrap #toc ul li {
    list-style: none
}

.toc-wrap #toc ul li a {
    color: #000
}

.toc-wrap #toc ul li.toc-h3 a,
.toc-wrap #toc ul li.toc-h4 a,
.toc-wrap #toc ul li.toc-h5 a {
    color: #222
}

.toc-wrap #toc a:hover {
    color: var(--third)!important
}

.toc-wrap #toc .toc-active {
    font-weight: 700;
    color: #2563eb
}

.toc-wrap #toc .toc-item {
    padding: .1em 0
}

.toc-wrap #toc .toc-item a {
    padding: .25em .5em
}

.toc-wrap #toc .toc-h2 {
    margin-left: .5em
}

.toc-wrap #toc .toc-h3 {
    margin-left: 1.75em
}

.toc-wrap #toc .toc-h4 {
    margin-left: 3em
}

.toc-wrap #toc .toc-h5 {
    margin-left: 4.25em
}

.toc-wrap #toc .toc-h6 {
    margin-left: 5.5em
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 100px;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    background: var(--third);
    opacity: .8;
    border-radius: 50%;
    color: #fff;
    display: none;
    transition: all ease .4s;
    z-index: 999999999
}

.back-to-top.active {
    display: flex
}

.back-to-top:hover {
    opacity: 1
}

#button-contact-vr {
    position: fixed;
    bottom: 140px;
    z-index: 99999;
    right: 0
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -15px
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, .7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom2 1.3s infinite;
    animation: zoom2 1.3s infinite
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px
}

.phone-bar a {
    position: fixed;
    bottom: 25px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
    background: #f44336;
    letter-spacing: 1.5px;
    font-weight: 700
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%)
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes zoom2 {
    0% {
        transform: scale(.9)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom2 {
    0% {
        transform: scale(.9)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-bar a:hover {
    opacity: .8;
    color: #fff
}

#mess img {
    border-radius: 50%
}

#mess .phone-vr-circle-fill,
#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, .7)
}

#mess .phone-vr-img-circle,
#zalo-vr .phone-vr-img-circle {
    background-color: #2196f3
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113, 68, 151, .8)
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, .7)
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196f3
}

.popup-search {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, .9);
    top: 0;
    transition: transform .7s ease;
    display: none
}

.popup-search .popup-content {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative
}

.popup-search .close-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    font-weight: 700;
    padding: 0 8px;
    border-radius: 50%;
    border: 2px #fff solid;
    top: 15px;
    font-size: 15px;
    cursor: pointer
}

.popup-search .form-search {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: min(600px, 100% - 10px)
}

.popup-search .form-search form {
    position: relative
}

.popup-search .form-search input {
    background: #fff;
    border: none;
    outline: 0;
    height: 60px;
    line-height: 30px;
    font-size: 16px;
    color: #272727;
    padding: 15px 30px;
    width: 100%
}

.popup-search .form-search button {
    position: absolute;
    background: var(--third);
    border: none;
    height: 60px;
    width: 60px;
    color: #fff;
    top: 0;
    right: 0;
    transition: all ease .4s
}

@media screen and (max-width:996px) {
    h2 {
        font-size: 24px!important
    }
}

@media screen and (max-width:996px) {
    .map iframe {
        height: 200px
    }
}

.home-gallery .vuta-row {
    margin: 0 -8px!important
}

.home-gallery a {
    padding: 8px!important
}

@media (max-width:996px) {
    .home-gallery a {
        padding: 5px!important
    }
    .home-gallery .vuta-row {
        margin: 0 -5px!important
    }
}

.about-item .box-img {
    aspect-ratio: 3/2
}

.about-item .content {
    background: #fff;
    padding: 20px 30px 20px
}

.about-item .box-title {
    padding: 10px;
    background: var(--second)
}

.about-item .box-title h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0
}

.about-item .box-title h4 a {
    color: #fff
}

.header {
    background: var(--second);
    position: relative;
    /* background: var(--second); */
    z-index: 999;
    /* top: 0;
    left: 0; */
    width: 100%
}

@media screen and (max-width:996px) {
    .header {
        position: unset;
        padding: 3px 0
    }
    .about-item {
        margin-bottom: 15px;
    }
    .about-item .content {
        padding: 10px;
    }
}

.header.fixed-top {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    width: 100%;
    position: fixed;
    background: var(--second);
    top: 0;
    left: 0;
    z-index: 999
}

.header .vuta-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header .vuta-container .logo img {
    width: 75px
}

@media screen and (max-width:996px) {
    .header .vuta-container .logo img {
        width: 60px
    }
}

.mobile-btn {
    display:none;
}

@media screen and (max-width:1200px) {
    .header .vuta-container .header-menu {
        display: none
    }
    .mobile-btn {
        display: block;
    }
}

.header .vuta-container .header-menu .accordion {
    display: flex;
    gap: 40px
}

.header .vuta-container .header-menu .accordion .link>a {
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    height: 85px;
    text-transform: uppercase
}

.header .vuta-container .header-menu .accordion>li.active .link a,
.header .vuta-container .header-menu .accordion>li:hover .link a {
    color: #ffc000
}

.header .vuta-container .header-menu .accordion .dropdown {
    position: relative
}

.header .vuta-container .header-menu .accordion .dropdown .link>a {
    position: relative
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    min-width: 230px;
    background: #fff;
    transition: all ease .4s;
    opacity: 0;
    visibility: hidden
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu li {
    border-bottom: 1px solid #282525
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
}

.header .vuta-container .header-menu .accordion .dropdown .sub-menu li a:hover {
    color: var(--second)
}

.header .vuta-container .header-menu .accordion .dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%
}

.header .vuta-container .header-right ul {
    display: flex;
    gap: 30px
}

.header .vuta-container .header-right ul li i {
    margin-right: 5px
}



.header .vuta-container .header-right ul li a {
    color: #fff;
    font-weight: 600
}

.header .vuta-container .header-right ul li:hover a {
    color: #ffc000
}

#mobile-btn {
    display: none
}

@media screen and (max-width:1200px) {
    #mobile-btn {
        display: block
    }
    #mobile-btn span {
        margin-bottom: 5px;
        background: var(--primary)
    }
    #mobile-btn span:last-child {
        margin-bottom: 0
    }
}

#menu-mobile .mobile-logo {
    text-align: center;
    margin-bottom: 20px
}

#menu-mobile .mobile-logo img {
    width: 75px
}

#menu-mobile .close-mobile-menu {
    color: #000;
    cursor: pointer
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media screen and (max-width:996px) {
    .fadeindown {
        animation: unset
    }
}

.footer .footer-top {
    padding: 40px 0 15px;
    /* background: url(../images/bg-footer.png) no-repeat center/cover; */
    background: #000;
    color: #fff
}

.footer .footer-top .footer-logo {
    text-align: center
}

.footer .footer-top .footer-logo a img {
    margin-bottom: 20px
}

.footer .footer-top .list-contact {
    display: flex;
    gap: 15px;
    justify-content: center
}

.footer .footer-top .list-contact li a {
    color: #fff;
    font-weight: 700;
    height: 35px;
    width: 35px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px
}

.footer .footer-top .list-contact li a:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff
}

.footer .footer-top h3 {
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
    border-left: 3px solid var(--primary);
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase
}

.footer .footer-top h2 {
    font-size: 16px!important;
    font-weight: 700;
    margin-bottom: 15px
}

@media screen and (max-width:996px) {
    .footer .footer-top h2 {
        text-align: center
    }
}

@media (max-width:575px) {
    .footer .footer-top h2 {
        font-size: 14px !important;
        text-align: left;
        font-weight: 600;
    }
    .footer .footer-top .footer-logo a img {
        margin-bottom: 20px;
        max-width: 120px;
    }
}

.footer .footer-top ul li {
    margin-bottom: 10px
}

.footer .footer-top ul li a {
    color: #fff
}

.footer .footer-top ul li a:hover {
    color: var(--primary)
}

.footer .footer-top .map {
    margin-top: 10px
}

.footer .copyright {
    padding: 5px 0;
    background: #333
}

.footer .copyright p {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    color: #fff
}

.footer h3 a {
    font-weight: 600;
    color: var(--primary);
}

@media screen and (max-width:996px) {
    .footer .copyright p {
        font-size: 12px
    }
}

.footer .copyright p a {
    font-weight: 600;
    color: #fff
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.pagination li a {
    display: flex;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    background: var(--primary);
    justify-content: center;
    align-items: center;
    color: #fff;
}

.pagination li.active a {
    background: var(--second);
}

.pagination li a:hover {
    background: var(--second);
}

.pagination li.disabled a:hover {
    cursor: not-allowed;
    background: var(--second);
}

.blog-slider {
    margin: 0 -10px;
}

.blog-slider .item {
    margin: 10px;
}
.header-top {
    background: var(--bg);
    padding: 3px 0;
}
.header-top span,
.header-top a {
    color: #333;
    font-size:14px !important;
}
@media screen and (max-width:996px) {
    .header-top {
        display: none;
    }
}

.header-bottom {
    padding: 3px 0;
    
}