/********** Template CSS **********/
:root {
    --primary: #3CB815;
    --primary-hover: #59c338;
    --secondary: #F65005;
    --secondary-hover: #f76a2b;
    --light: #F7F8FC;
    --dark: #111111;
    --color-text: #555555;
    --color-focus: #111111;
    --bg: #F7F8FC;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.adm-glyphicon span {
    background: url('./img/setting.png');
    background-size: cover;
    width: 12px;
    height: 12px;
    display: block;
    float: left;
}

html,
body {
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    color: var(--color-text);
    font-size: 16px;
}

button {
    border: none;
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    list-style: none;
    margin: 0;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wrap {
    max-width: 1470px;
    margin: 0 auto;
}
.wrap-product {
    max-width: 900px;
    margin: 0 auto;
}
.wrap-content {
    max-width: 1000px;
    margin: 0 auto;
}

.line-1 {
    position: relative;
    height: 2px;
    margin-bottom: 8px;
}

.line-1::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 60px;
    background-color: var(--primary);
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}

.line-1.left::after {
    left: 0;
    transform: unset;
}

.line-2 {
    position: relative;
    height: 2px;
    margin-bottom: 15px;
}

.line-2::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100px;
    background-color: var(--secondary);
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}

.line-2.left::after {
    left: 0;
    transform: unset;
}

/* header */
.header {}

.header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    transition: 0.3s linear;
    position: relative;
    z-index: 100;
}


.header-top .emailButton {
    font-size: 14px;
}

.header-top .emailButton svg {
    margin-right: 5px;
    vertical-align: middle;
}

.header-top .phoneButton {
    margin-left: 15px;
    font-size: 14px;
}

.header-top .phoneButton svg {
    margin-right: 5px;
    vertical-align: middle;
}

.header-top-right {
    text-align: right;
    display: inline-block;
    float: right;
}

.header-top-right a {
    display: inline-block;
    padding-left: 15px;
}

.header-top-right a svg {
    vertical-align: middle;
}

body.affix .header-top {
    margin-bottom: 80px;
}

.header-bot {
    height: 80px;
    position: relative;
    z-index: 99;
}

body.affix .header-bot {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.header-bot .logo-header {
    line-height: 80px;
    display: inline-block;
}

.header-bot .logo-header img {
    height: 54px;
    width: auto;
}

.header-bot .header-navbar {
    text-align: right;
}

.header-bot .header-navbar>ul {}

.header-bot .header-navbar>ul>li {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.header-bot .header-navbar>ul>li:hover>a,
.header-bot .header-navbar>ul>li.active>a {
    color: var(--color-focus);
}

.header-bot li .sub-menu {
    position: absolute;
    background: #fff;
    text-align: left;
    width: 238px;
    padding: 15px;
    opacity: 0;
    transition: 0.3s linear;
    pointer-events: none;
}

.header-bot .header-navbar>ul>li:hover>.sub-menu {
    opacity: 1;
    pointer-events: all;

}

.header-bot li .navbar-item {
    line-height: 80px;
    padding: 0 12px;
}


.sub-menu>ul {}

.sub-menu>ul li {
    margin-bottom: 5px;
}

.sub-menu>ul li a {
    line-height: 36px;
}

.sub-menu>ul li a:hover,
.sub-menu>ul li.active a {
    color: var(--dark);
}

.fomr-search {
    padding: 10px 0;
    margin-top: 10px;
}

.fomr-search input {
    width: 70%;
    float: left;
    margin-right: 15px;
    height: 38px;
    border-radius: 0;
}

.fomr-search .btn-search {
    width: calc(30% - 15px);
    line-height: 38px;
    background: var(--primary);
    color: white;
}

/* menu-mobile */
.menu-mobile {
    position: fixed;
    background-color: var(--light);
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 99999;
    padding: 50px 25px;
    transition: 0.2s linear;
    opacity: 0;
}

.menu-mobile.active {
    opacity: 1;
    left: 0;
}

.menu-m-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.menu-logo {
    text-align: center;
    margin-bottom: 15px;
}

.menu-logo img {
    max-width: 120px;
}

.level-1 {
    margin-top: 15px;
}

.level-2 {
    display: none;
}

.item-level-1 {
    position: relative;
}

.item-level-1 .submenu {
    position: absolute;
    right: 0;
    top: 5px;
}

.item-level-1 a {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.item-level-2 a {
    padding-left: 15px;
    color: var(--color-text);
}

/* ss1 */

.ss1 {
    margin-bottom: 50px;
    height: 400px;
}

.ss1 .ss1-item img {
    height: 400px;
}

.ss1 .ss1-item {
    position: relative;
}

.ss1 .ss1-sub-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 1;
    font-size: 50px;
    color: var(--color-focus);
    font-weight: 600;
    transform: translate(0, -50%);
    max-width: 700px;
    line-height: 56px;
}

.ss1 .owl-nav {
    height: 0;
}

.ss1 .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    background-color: var(--primary) !important;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    border-radius: 50%;
    opacity: 0.7;
}

.ss1 .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary) !important;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    border-radius: 50%;
    opacity: 0.7;
}

.ss1 .owl-nav svg {
    fill: white;
    margin: 10px;
}

/* ss2 */

.ss2 {
    padding: 50px 0;
}

.ss2 iframe {
    /* padding-right: 20px;
    padding-top: 50px; */
}

.ss2 .ss2-item {}

.ss2 .ss2-item h2,
.ss2 .ss2-item h3,
.ss2 .ss2-item h4 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ss2 .ss2-item p {
    font-size: 16px;
    margin-bottom: 20px;
}

.ss2 .ss2-item ul {}

.ss2 .ss2-item ul li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.ss2 .ss2-item ul li::after {
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url('./img/tick.svg');
    background-size: contain;
}

.ss2 .ss2-item .ss2-btn {
    padding: 16px 48px;
    margin-top: 26px;
    display: inline-block;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    transition: 0.3s linear;
}

.ss2 .ss2-item .ss2-btn:hover {
    background-color: var(--primary-hover);
}

.ss2 .video_box iframe {
    width: 100%;
    height: 500px;
}

.ss2 .video_box video {
    width: 100%;
    height: 500px;
}

.ss2 .ss2-img {
    position: relative;

}

.ss2 .ss2-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.ss2 .ss2-img svg {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* ss3 */

.ss3 {
    padding: 50px 0;
}

/* product-item */

.product-item {
    background: var(--bg);
    margin-bottom: 30px;
}

.product-item .p-image {
    overflow: hidden;
    display: block;
    border: 1px solid var(--light);
}

.product-item .p-image:hover img {
    overflow: hidden;
    transform: scale(1.1);
}

.product-item .p-image img {
    display: block;
    transition: 0.2s;
    /* height: 460px; */
    height: 300px;
}

.product-item .p-title {
    padding: 26px 20px 30px;
    text-align: center;
    min-height: 84px;
}

.product-item .p-title a {
    padding: 0 20px;
    font-size: 20px;
    transition: 0.3s;
    font-weight: 600;
}

.product-item .p-title a:hover {
    color: var(--primary);
}

.product-content {
    padding: 50px 0 0;
}

.product-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.product-content h2 {
    font-style: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-content h3 {
    font-style: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-content h4,
.product-content h5 {
    font-style: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pdetail-title {
    font-style: 42px;
    line-height: 50px;
    margin-bottom: 20px;
    color: var(--dark);
}

.img-thumb-detail {
    margin-top: 15px;
}

.product-btn-contact {
    margin-top: 30px;
}

.product-btn-contact a {
    padding: 10px 25px;
    border-radius: 50px;
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.2s linear;
    display: inline-block;
}

.product-btn-contact :any-link:hover {
    background-color: var(--primary-hover);
}

.pdetail-comment {
    padding: 50px 0;
}

.pdetail-comment h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pdetail-comment .cmt_btn {
    background-color: var(--secondary);
    color: white;
    font-size: 16px;
    border: none;
    outline: none;
    padding: 10px 25px;
    border-radius: 50px;
}

.pdetail-comment .btn-review {
    background-color: var(--primary);
    color: white;
    font-size: 16px;
    border: none;
    outline: none;
    padding: 10px 25px;
    border-radius: 50px;
}

.pdrelated-box {
    padding: 50px 0;
}

.pdrelated-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ss4 */

.ss4 {
    padding: 70px 0 70px 0;
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    background-color: #F7F8FC !important;
}

.ss4 .ss4-title {
    text-align: center;
}

.ss4 .ss4-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    margin-top: 15px;
}

.ss4 .ss4-item {
    padding: 50px;
    text-align: center;
    background: white;
}

.ss4 .ss4-item img {
    max-width: 90px;
}

.ss4 .ss4-item .ss4-item-title {
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
}

.ss4 .ss4-item .ss4-item-des {
    font-size: 16px;
    line-height: 26px;
}

/* ss5 */
.ss5 {
    padding: 50px 0;
}

.ss5 .ss5-title {
    margin-bottom: 35px;
}

.ss5 .ss5-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ss5 .ss5-title p {}

.ss5 .ss5-content-wrap {}

.ss5 .ss5-tab {
    margin-top: 40px;
    text-align: right;
}

.ss5 .ss5-tab .tab-item {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    margin-left: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s linear;
    margin-bottom: 15px;
}

.ss5 .ss5-tab .tab-item:hover {
    background-color: var(--primary);
    color: white;
}

.ss5 .ss5-tab .tab-item.active {
    background-color: var(--primary);
    color: white;
}


.ss5 .ss5-tab-content {
    padding-top: 30px;
}

.ss5 .ss5-btn {
    text-align: center;
}

.ss5 .ss5-btn a {
    padding: 16px 48px;
    margin-top: 5px;
    display: inline-block;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    transition: 0.3s linear;
}

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



/* ss-contact-now */
.ss-contact-now {
    padding: 70px 0;
    margin-top: 25px;
    background: var(--primary);
    color: white;
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
}

.ss-contact-now .ssc-title {}

.ss-contact-now .ssc-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ss-contact-now .ssc-title p {}

.ss-contact-now .btn-contact {
    text-align: right;
}

.ss-contact-now .btn-contact a {
    padding: 16px 50px;
    background: var(--secondary);
    border-radius: 50px;
    font-size: 20px;
    margin-top: 39px;
    display: inline-block;
    transition: 0.3s;
    font-weight: 500;
}

.ss-contact-now .btn-contact a:hover {
    background-color: var(--secondary-hover);
}

/* ss6 */
.ss6 {
    padding: 50px 0 20px;
}

.ss6 .ss6-title {
    padding: 20px 0;
}

.ss6 .ss6-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.ss6 .ss6-title p {
    text-align: center;
    font-size: 16px;
}

.ss6 .ss6-content-wrap {}



/* new-item */
.new-item {
    background: var(--bg);
    margin-bottom: 30px;
}

.new-item .new-item-img {
    overflow: hidden;
    display: block;
    border: 1px solid var(--light);
}

.new-item .new-item-img:hover img {
    transform: scale(1.1);
}

.new-item .new-item-img img {
    transition: 0.2s linear;
    height: 305px;
}

.new-item .new-item-content {
    padding: 24px;
}

.new-item .new-item-content .new-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(222, 226, 230);
}

.new-item .new-item-content .new-title a {
    transition: 0.2s linear;
}

.new-item .new-item-content .new-title:hover a {
    color: var(--primary);
}

.new-item .new-item-content .new-date {
    padding: 20px 0;
}

.new-item .new-item-content .new-date>div {
    display: inline-block;
    padding-right: 15px;
}

.new-item .new-item-content .new-date>div svg {
    vertical-align: middle;
    margin-right: 5px;
}

.data-relate .prtitle {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

/* contact-form */
.contact-form {
    padding: 50px 0;
}

.contact-form .contact-title {
    text-align: center;
    padding-bottom: 50px;
}

.contact-form .contact-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form .contact-title p {
    font-size: 16px;
}

.contact-form .contact-form-body {}

.contact-form .contact-infor-wrap {
    background: var(--primary);
    color: white;
    font-size: 16px;
    padding: 40px;
    margin-right: 15px;
}

.contact-form .contact-infor {
    margin-bottom: 45px;
}

.contact-form .contact-infor p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .contact-infor a svg {
    margin-right: 5px;
}

.contact-form .contact-social {}

.contact-form .contact-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    border: 1px solid white;
    text-align: center;
    margin: 0 2.5px;
    transition: 0.2s linear;
}

/* .contact-form .contact-social a:hover {
    background-color: white;

} */

/* .contact-form .contact-social a:hover svg,
.contact-form .contact-social a:hover path,
.contact-form .contact-social a:hover mask {
    fill: var(--dark);
} */

.contact-form form {
    margin-left: 20px;
}

.contact-form form .form-sub {
    margin-bottom: 24px;
}

.contact-form .form-input {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-input input {
    height: 58px;
    padding: 25px 15px 10px;
    border-radius: 0;
}

.contact-form .form-input label {
    position: absolute;
    font-weight: 400;
    left: 15px;
    top: 15px;
    transition: 0.2s linear;
}

.contact-form .form-input.active label {
    top: 5px;
}

.contact-form .form-input textarea {
    height: 150px;
    border-radius: 0;
    padding: 25px 15px 10px;
}

.contact-form .btn-contact-submit {}

.contact-form .btn-contact-submit button {
    padding: 16px 50px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    transition: 0.2s linear;
}

.contact-form .btn-contact-submit button:hover {
    background-color: var(--primary-hover);
}

/* footer */
.footer {
    padding: 50px 0 0;
    background: var(--color-focus);
    color: #999999;
}

.footer .footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer .footer-item {}

.footer .footer-item .contact-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    border: 1px solid #999999;
    text-align: center;
    margin: 0 2.5px;
}

.footer .footer-item .footer-item-des {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.footer .footer-item .contact-social a:hover {
    border-color: white;
}

.footer .footer-item .contact-social a:hover path {
    fill: white;
}

.footer .footer-wrap {
    padding-bottom: 50px;
}

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

.footer .footer-item ul li a {
    padding-left: 30px;
    transition: 0.2s linear;
    position: relative;
}

.footer .footer-item ul li a svg {
    position: absolute;
    left: 0;
    top: 1px;
    transition: 0.2s linear;
}

.footer .footer-item ul li:hover a {
    color: white;
}

.footer .footer-item ul li:hover path {
    fill: white;
}

.footer .copyright {
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright strong {
    color: white;
    font-weight: 500;
}

/* page */
.page-banner {
    padding: 190px 0 100px;
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner-content {
    padding: 10px 0;
}

.page-banner-content h1,
.page-banner-content .page-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 50px;
    /* margin-bottom: 30px; */
    color: var(--dark);
}

.page-banner-content .breadcrumb-build ol li {
    display: inline-block;
    position: relative;
    padding-right: 10px;
}

.page-banner-content .breadcrumb-build ol li a {
    color: var(--primary);
}

.page-banner-content .breadcrumb-build ol li:last-child a {
    color: var(--color-text);
}

.page-banner-content .breadcrumb-build ol li+li::before {
    content: '/';
    padding-right: 10px;
}

.page-body {
    padding-top: 70px;
    padding-bottom: 50px;
}

.page-body .new-date {
    padding: 15px 0;
}

.page-body p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 24px;
}

.page-body h2,
.page-body h3,
.page-body h4 {
    margin-bottom: 15px;
}

.google-map iframe {
    width: 100%;
    height: 400px;
}

.page-social {
    text-align: center;
    padding: 20px 0;
}

.page-social li {
    transition: 0.3s linear;
    display: inline-block;
    margin: 0 5px;
}

.page-social li:hover {
    transform: translate(0, -5px);
}

.page-social li a {
    font-size: 14px;
    text-align: center;
    color: white;
    display: inline-block;
    width: 150px;
    border-radius: 5px;
    padding: 8px 0;
}

.page-social li a svg {
    margin-right: 15px;
    vertical-align: middle;
}

.page-social li a.facebook {
    background-color: #4267B2;
}

.page-social li a.tweet {
    background-color: #000000;
}

.page-social li a.email {
    background-color: #7d7d7d;
}

.page-social li a.whatsapp {
    background-color: #25d366;
}

.page-social li a.share {
    background-color: #95D03A;
}

/*  */

#back-to-top {
    position: fixed;
    bottom: 50px;
    right: -100%;
    opacity: 0;
    transition: 0.2s linear;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    z-index: 9999;
}

#back-to-top svg {
    vertical-align: middle;
}

#back-to-top.show {
    opacity: 1;
    right: 15px;
}

.btn-fixed {
    position: fixed;
    bottom: 100px;
    z-index: 9999;
    right: 0;
    width: 50px;
    height: 50px;
}

.btn-fixed a svg {
    transform: scale(2.25);
}

.btn-icon-menu {
    display: none;
    z-index: 9;
}

/* comment */
.comment-img {
    width: 50px;
    height: 50px;
    float: left;
    display: inline-block;
}

.comment-name {
    display: inline-block;
    margin-left: 30px;
    float: left;

}

.comment-content {
    margin-left: 80px;
    margin-top: 5px;
}

.lang {
    position: relative;
    float: right;
    display: inline-block;
    margin-right: 15px;
}

.lang-item svg {
    vertical-align: middle;
}
.lang-list {
    width: 110px;
}
.lang-item {
    display: inline-block;
    margin-left: 10px;
}
.contry-list {
    position: absolute;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: var(--light);
    z-index: 9999;
    width: 150px;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
}

.contry-list .contry+.contry {
    margin-top: 10px;
}

.contry-list.open {
    display: block;
}

/* mobile */
@media only screen and (max-width: 1366px) {
    .ss1 {
        height: 400px;
    }

    .ss1 .ss1-item img {
        height: 400px;
    }
}

@media only screen and (max-width: 768px) {
    .product-item .p-image img {
        height: 345px;
    }

    .page-banner-content h1,
    .page-banner-content .page-title {
        font-size: 40px;
    }

    .ss1 {
        height: 400px;
    }

    .ss1 .ss1-item img {
        height: 400px;
    }

    .btn-icon-menu {
        display: block;
        position: absolute;
        width: 30px;
        top: 50%;
        left: 15px;
        transform: translate(0, -50%);
        cursor: pointer;
    }

    .ss1 .owl-nav .owl-prev,
    .ss1 .owl-nav .owl-next {
        width: 40px;
        height: 40px;
    }

    .header-top {
        display: none;
    }

    .header-bot {
        height: 65px;
    }

    .header-bot .logo-header {
        line-height: 65px;
        display: block;
        text-align: center;
    }

    .ss1 {
        margin-bottom: 0;
    }

    .ss1-item {
        height: 400px;
    }

    .ss1-item img {
        height: 100%;
    }

    .ss1 .ss1-sub-text {
        font-size: 40px;
    }

    .ss2 iframe {
        padding-top: 0;
        padding-right: 0;
    }

    .ss2 .ss2-item {
        margin-top: 30px;
    }

    .ss2 .ss2-item h2,
    .ss2 .ss2-item h3,
    .ss2 .ss2-item h4 {
        font-size: 26px;
        line-height: 32px;
    }

    .ss4 .ss4-title h2 {
        font-size: 30px;
    }

    .ss4 .ss4-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .ss4 .ss4-item .ss4-item-title {
        font-size: 20px;
    }

    .ss5 .ss5-tab {
        text-align: center;
    }

    .ss5 .ss5-tab .tab-item {
        margin-left: 10px;
        margin-bottom: 10px;
    }

    .ss-contact-now .btn-contact {
        text-align: center;
    }

    .page-social li a {
        width: 36px;
    }

    .page-social li a svg {
        margin-right: 0;
    }

    .page-social a span {
        display: none;
    }

    .contact-form .contact-infor-wrap {
        margin-right: 0;
    }

    .contact-form form {
        margin-left: 0;
        margin-top: 30px;
    }

    .new-item .new-item-img img {
        height: 228px;
    }
}

/* toiuu  */

.toiuu .owl-carousel {
    display: block;
}

.toiuu .owl-carousel .item {
    display: none;
}

.toiuu .owl-carousel .item:first-child {
    display: block !important;
}

/* toiuu end */