/* ========HEADER========= */
.header-top {
    background-color: var(--bg-color-second);
}

.header-top p {
    margin-bottom: 0;
}

.header-mobile {
    background-color: var(--bg-color);
}

.logo img {
    max-width: 240px;
}

.form-top {
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
}

.form-top select {
    border: none;
    border-radius: 30px 0 0 30px;
    width: 200px;
    border-right: 1px solid #ccc;
}

.form-top .form-goup.relative {
    flex: 1;
}

.form-top input {
    width: 82%;
    border: none;
}

.icon-form {
    background: #2F0299;
    color: #ffffff;
    right: 0px;
    width: 60px;
    line-height: 43px;
    text-align: center;
}

.call-action img {
    width: 43px;
}

.header-bottom .row>* {
    padding-left: 0;
    padding-right: 0;
}


.header-bottom {
    background-color: var(--bg-menu);
}

.header-bottom span,
.header-bottom a,
.header-bottom .icon-menu {
    color: #fff;
}

.header-bottom .menu-main li {
    margin-right: 4px;
}

.menu-catagory {
    background: var(--red-color);
    padding-left: 20px;
}

.menu-main a:hover {
    background: var(--blue-color);
}

.menu-main li {
    position: relative;
}

.active {
    background: var(--blue-color);
}

.submenu {
    position: absolute;
    top: 100%;
    background-color: var(--white-color);
    z-index: 3;
    min-width: 260px;
    display: none;
}

.submenu::before {
    content: '';
    display: block;
    position: absolute;
    height: 14px;
    top: -12px;
    width: 100%;
}

.submenu li {
    margin-right: 0 !important;
}

.submenu a {
    font-size: 16px;
    color: var(--text-color);
    display: block;
    padding: 10px 18px;
    transition: all .3s ease;
}

.submenu a:hover {
    background-color: #efefef;
    color: var(--blue-color);
}

.menu-main li:hover .submenu {
    display: block;
}

.sub-menu-catagory {
    z-index: 90;
    top: 100%;
    width: 100%;
    background-color: var(--white-color);
    display: none;
}

.sub-menu-catagory li {
    margin-right: 0 !important;
    border-bottom: 1px solid #ccc;
}

.sub-menu-catagory a {
    color: var(--red-color) !important;
    font-weight: 500;
}

.sub-menu-catagory a:hover {
    background-color: var(--red-color);
    color: var(--white-color) !important;
}

.sub-menu-catagory .submenu {
    transform: translateX(100%);
    top: 0;
    right: 0;
}

.col-xl-3.col-lg-3.col-md-3.relative:hover .sub-menu-catagory {
    display: block;
}

/* ======= menu-mobile ====== */

.menu-mobile {
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    background: #fff;
    z-index: 3;
    transition: all .2s linear;
}

.menu-mobile-main li:not(:last-child) {
    margin-bottom: 14px;
}

.menu-mobile-main a {
    color: var(--text-color);
    font-size: 16px;
}

.menu-mobile .menu-mobile-main li a {
    position: relative;
}

.menu-mobile .menu-mobile-main .parent::before {
    content: '\f078';
    font-family: var(--fontAwesome);
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.elementBefore::before {
    content: '\f077' !important;
    font-family: var(--fontAwesome);
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.showMenu {
    left: 0;
    animation: showMenuMain .3s linear forwards;
    transition: all .3s linear;
}

@keyframes showMenuMain {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlay {
    height: 100%;
    width: 100%;
    background: #000000a8;
    top: 0;
    left: -100%;
    opacity: 1;
}

.showOverlay {
    z-index: 2;
    left: 0;
    animation: showOverlay .5s ease-in-out forwards;
}

@keyframes showOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.parent+ul {
    margin: 20px 0 20px 40px;
}

.parent+ul li {
    list-style: disc;
}

/* ======= SEARCH - MOBILE ====== */

.search-mobile {
    display: none;
}

.search-mobile input[type="text"] {
    padding-right: 80px;
}

.search-mobile .btn-searchMb {
    right: 0;
    padding: 3px;
}

/* ======= slide ======== */
.slide-mobile {
    display: none;
}

.slide-pc img {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--black-color);
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
}

.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    background-color: green;
    color: white;
    font-size: 30px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.contact-toggle:hover {
    transform: scale(1.1);
}

.contact-list {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    min-width: 200px;
}

.contact-list a {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: background 0.3s;
}

.contact-list a:hover {
    background: #f1f1f1;
}

.contact-list img {
    margin-right: 10px;
}

@keyframes fadeToggle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* FOOTER */

.footer-main {
    background: url(../../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 60px 0;
}

.footer-main .title-head {
    color: var(--white-color);
    font-size: 20px;
    text-transform: uppercase;
}

.footer-main .col-xl-4 ul li {
    margin-bottom: 20px;
}

.footer-main .col-xl-4 ul li,
.footer-main .col-xl-4 ul li a {
    color: var(--white-color);
}

.footer-main .info li span,
.footer-main .col-xl-4 ul li a {
    font-size: 16px;
}

.footer-main .col-xl-4 .social li a {
    border-radius: 50px;
    background-color: var(--white-color);
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    position: relative;
    color: var(--bg-color-second);
}

.footer-main .social li a .icon-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-footer li {
    position: relative;
    padding-left: 20px;
}

.menu-footer li::before {
    content: '\f061';
    display: block;
    position: absolute;
    font-family: var(--fontAwesome);
    font-size: 16px;
    left: 0;

}

.map iframe {
    width: 100%;
    margin-bottom: 20px;
}

.title-head.facebook {
    margin-bottom: 10px;
    min-height: initial;
}

.bct {
    width: 180px;
}

.main h1 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 26px;
    border-bottom: 1px solid #e0ecf9;
}

.main .product-image {
    height: 300px;
}

.ads-side {
    max-height: 375px;
}

.mobile-bg {
    background-color: var(--blue-color);
}

.mobile-top p {
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

.mobile-top .relative {
    overflow: hidden;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.video iframe {
    width: 100%;
}

.main .content {
    font-size: 16px;
}

.main .content img {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 14px;
}

.main .content iframe {
    margin: 0 auto;
    width: 600px;
    max-width: 100%;
    margin-bottom: 14px;
    display: block;
}

.main .content a {
    font-weight: bold;
}

ol.breadcrumb {
    margin-bottom: 0;
}

li.breadcrumb-item {
    font-size: 18px;
}

li.breadcrumb-item a {
    color: #2309cd;

}

li.breadcrumb-item.active {
    color: #333;
    background: initial;
}

.nav-breadcrumb {
    background: #f2f2f2;
}

nav.nav-breadcrumb nav {
    padding: 12px;
}

nav.nav-breadcrumb .container {
    padding: 0;
}

a.share-social {
    padding: 10px 12px;
    border-radius: 6px;
    margin-right: 10px;
    color: var(--white-color);
}

.facebook-color {
    background-color: #405591;
}

.twitter-color {
    background-color: #4294e7;
}

.pinterest-color {
    background-color: #bc2f2d;
}

.telegram-color {
    background-color: #4298d2;
}

span.num {
    display: inline-block;
    background: red;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    top: -7px;
    font-size: 15px;
}