/*!
 * app.css for chemfineinternational.com
 * Author wzcoder.com
 * @Copyright 2005-2021 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2021-06-28-1:59 PM
 */


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Nexa", sans-serif;
}

.trans_03 {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.brd-r5 {
    border-radius: 5px;
}

.hover-block {
    display: block;
    overflow: hidden;
}

.hover-block:hover .hover-zoom {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.powerby, .powerby a {
    color: var(--text-color-secondary);
}

.gslider h4.gslide-title {
    font-size: 2rem;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary-color);
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled, #header.header-inner-pages {
    background: rgba(17, 17, 17, 0.7);
    padding: 10px 0;
}

#header.header-scrolled .logo img {

}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 8px 12px;
}

.navbar a {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #fff;
}

.navbar .getstarted {
    padding: 8px 25px;
    margin-left: 30px;
    color: #fff;
    border: 2px solid #fff;
}

.navbar .getstarted:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar > ul > li > .getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 12px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0;
    border: 0;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--dark-color);
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    background-color: var(--primary-color);
    color: #ffffff;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.navbar .dropdown-toggle::after {
    display: none !important;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 767px) {
    #header .logo img {
        max-height: 36px !important;
    }
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 7, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}


.navbar-mobile ul.nav-menu {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 5px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #15222b;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #ff4a17;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    width: 100%;
    margin: 6px 0 10px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #ff4a17;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

ul.header-search {
    margin: 0 auto;
    text-align: center;
    justify-content: center;
}
/*--/search--*/
form.search-box {
    margin: 0 auto;
    max-width: 500px;
}

.navbar li.nav-item.search-right a {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 54px;
}

.navbar .search-right .popup form input {
    background: #FFFFFF;
    border: none;
    padding: 12px 12px;
    font-size: 16px;
    outline: none;
    width: 100%;
    color: var(--text-color-primary);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.navbar .search-right .popup form button {
    background: var(--primary-color);
    border: none;
    outline: none;
    font-size: 17px;
    padding: 12px 16px;
    cursor: pointer;
    color: #fff;
    border-radius: var(--border-radius);
    margin-left: 0.6em;
}

.navbar .search-right .popup form input:focus {
    outline: none;
    border: 2px solid var(--primary-color);
    background: #FFFFFF;
}

.navbar .search-right .pop-overlay {
    position: fixed;
    top: 0px;
    /* left: 0; */
    right: 0;
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    background: rgb(0 0 0 / 70%);
    box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 65%);
    height: 100vh;
    width: 100%;
}

.navbar .search-right .pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.navbar .search-right .popup {
    margin: 0rem auto;
    padding: 40px 50px;
    max-width: 1000px;
    border-radius: 0px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.navbar .search-right a.close {
    color: #fff !important;
}

.navbar .search-right .search-top {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    grid-gap: 30px;
    margin-top: 24px;
}

.navbar ul.social-icons-top {
    justify-content: center;
}

.navbar .search-right .popup h3 {
    font-size: 28px !important;
    line-height: 48px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.navbar .search-right .title-side {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--text-color-primary);
}

.navbar .search-right .close {
    position: absolute;
    top: 60px;
    right: 60px;
    transition: all 200ms;
    font-size: 52px !important;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    background: none;
}

.navbar .search-right .close:hover {
    color: var(--secondary-color);
    background: none;
}

/*--//search--*/
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    font-family: "Nexa", sans-serif;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
    color: var(--text-color-secondary);
}

.section-bg {
    padding: 120px 0;
    background: var(--light-bg-color);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #2b2b2b;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #aaaaaa;
}

.breadcrumbs ol a:hover {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--primary-color);
    content: "/";
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
#slider {
    width: 100%;
    height: 100vh;
    background-color: rgba(63, 73, 83, 0.8);
    overflow: hidden;
    position: relative;
}

#slider .carousel, #slider .carousel-inner, #slider .carousel-item, #slider .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#slider .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#slider .carousel-item::before {
    content: '';
    background-color: rgba(30, 35, 40, 0.6);
}

#slider .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
}

#slider .container {
    text-align: center;
}

#slider h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
}

#slider p {
    font-size: 22px;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#slider .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#slider .carousel-inner .carousel-item,
#slider .carousel-inner .active.carousel-item-start,
#slider .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#slider .carousel-inner .active,
#slider .carousel-inner .carousel-item-next.carousel-item-start,
#slider .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#slider .carousel-inner .carousel-item-next,
#slider .carousel-inner .carousel-item-prev,
#slider .carousel-inner .active.carousel-item-start,
#slider .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#slider .carousel-control-next-icon, #slider .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#slider .carousel-control-next-icon:hover, #slider .carousel-control-prev-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

#slider .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 30px;
    height: 4px;
    opacity: .6;
    transition: 0.3s;
}

#slider .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
}

#slider .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: var(--primary-color);
}

#slider .btn-get-started:hover {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    #slider {
        height: 100vh;
    }

    #slider .carousel-container {
        top: 8px;
    }
}

@media (max-width: 768px) {
    #slider h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #slider .carousel-control-prev, #slider .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    #slider {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
    padding: 140px 0;
    background: url("../img/about-bg.png") center center no-repeat;
    position: relative;
}


.about .container {
    position: relative;
}

.about:before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li + li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: var(--primary-color);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--primary-color);
}

.about .content .btn-learn-more:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 992px) {
    .about {
        padding: 60px 0;
    }
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products-box {
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 9%);
    margin-bottom: 60px;
    overflow: hidden;
}

.products-box .box-img {
    overflow: hidden;
}

.products-box:hover {
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 15%);
}

.products-box:hover .box-img img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.products-box .box-text a {
    font-family: "Nexa", Sans-Serif;
    font-size: 18px;
    font-weight: 700;
    display: block;
    padding: 10px 0;
}

.products-box:hover .box-text a {
    color: var(--focus-color);
}

.products-box .box-text p {
    color: var(--text-color-secondary);
    font-size: 15px;
}

.product-ps {
    color: var(--text-color-secondary);
}

#lists .product-item:hover {
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 15%);
}

#lists .product-item .box-img {
    overflow: hidden;
}

#lists .product-item:hover .box-img img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpeg") fixed center center;
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Nexa", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
}


/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-box {
    margin-bottom: 10px;
}

.news-box .media-img {
    width: 75px;
    height: 75px;
    margin-right: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.news-box .media-img img {
    height: 100%;
    width: auto;
}

.news-box .media-body p {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 0;
}

.news-box .media-body h3 a {
    font-size: 14px;
    color: #aaaaaa;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: var(--dark-bg-color);
}

#footer .footer-top {
    padding: 60px 0 10px 0;
    background: var(--dark-bg-color);
}

#footer .footer-top .footer-contact {
    margin-bottom: 10px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: var(--primary-color);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Nexa", sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

#footer .footer-top .footer-links, #footer .footer-top .footer-social {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: white;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--text-color-secondary);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff;
}


#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

#footer a:hover {
    color: var(--focus-color);
}

#footer .links {
    margin-top: 10px;
    color: #aaaaaa;
}

#footer .links a {
    color: #aaaaaa;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.section-bg, .services .icon-box {
    background-color: #f8f9fa;
}

.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
}

.services .icon-box i {
    float: left;
    color: var(--primary-color);
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #556270;
    transition: 0.3s;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

.services .icon-box:hover h4 a {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
}

.clients .swiper-slide:hover img {
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.clients .clients-wrap {
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.clients .client-logo {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    background: #fff;
    height: 100px;
}

.clients .client-logo img {
    transition: all 0.3s ease-in-out;
    height: 65px;
    filter: grayscale(15%);
}

.clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.counts .count-box {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.counts [class*="col-lg-"]:last-child .count-box {
    border-right: none;
}

.counts .count-box i {
    display: none;
}

.counts .count-box span.purecounter {
    font-size: 40px;
    font-family: "Nexa", Sans-Serif;
}

.counts .count-box p {
    font-size: 15px;
    color: var(--text-color-secondary);
    margin-bottom: 0;

}

@media (max-width: 992px) {
    .counts .count-box {
        border-right: none;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .counts [class*="col-lg-"]:last-child .count-box {
        border-bottom: none;
    }

}

/*--------------------------------------------------------------
# Banner inner
--------------------------------------------------------------*/
.banner-inner {
    padding-top: 100px;
    min-height: 30vh;
    background-position: center center;
    background-size: cover;
}

.banner-inner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(30, 35, 40, 0.6);
    z-index: 1;
}

.banner-inner-wrapper {
    display: flex;
    justify-content: left;
    align-items: center;
    position: absolute;
    bottom: 50px;
    top: 120px;
    left: 50px;
    right: 50px;
    z-index: 2;
    text-transform: uppercase;
}

.banner-inner-wrapper h2, .banner-inner-wrapper p {
    color: var(--white);
    margin-left: 60px;
}

.banner-inner-wrapper h2 {
    font-size: 40px;
}

.banner-inner-wrapper p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .banner-inner-wrapper {
        top: 90px;
        left: 0;
        right: 0;
    }

    .banner-inner-wrapper h2, .banner-inner-wrapper p {
        margin: 0;
        font-size: 14px;
    }

    .banner-inner-wrapper h2 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .page-nav {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Page nav
--------------------------------------------------------------*/
.page-nav {
    padding: 10px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}


.page-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.page-nav ul.breadcrumbs-path > li {
    white-space: nowrap;
    padding: 8px 4px 8px 0;
}

.page-nav ul.nav-items > li {
    white-space: nowrap;
    padding: 8px 0 8px 16px;
}

.page-nav ul.nav-items > li:not(:last-child):after {
    content: "/";
    margin-left: 10px;
    display: inline-block;
    color: var(--text-color-secondary);
}

.breadcrumbs-path li {
    padding-left: 0;
}

.breadcrumbs-path li a {
    font-family: "Nexa", Sans-Serif;
}

.breadcrumbs-path span.bi {
    padding-right: 6px;
    color: var(--text-color-secondary);
    font-size: 14px;
}

.page-nav .nav-items a.page-nav-link {
    font-family: "Nexa", Sans-Serif;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

.page-nav .nav-items .page-nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.page-nav .nav-items li:hover a::before, .page-nav .nav-items .page-nav-link:hover::before {
    visibility: visible;
    width: 100%;
}

/*--------------------------------------------------------------
# Page About
--------------------------------------------------------------*/
.chairman-text {
    position: relative;
    padding: 60px 50px 0;
}

.chairman-text quotient {
    line-height: 1.8;
    font-size: 1.1rem;
}

.chairman .chairman-text em {
    font-size: 60px;
    position: absolute;
    color: var(--light-bg-color);
    z-index: -1;
}

.chairman .chairman-text em.left {
    top: 0;
    left: 0;
}

.chairman .chairman-text em.right {
    right: 0;
    bottom: 40px;
}

.chairman-photo .ceo {
    max-width: 460px;
    height: auto;
}

.chairman-text .sign {
    margin-top: 50px;
    font-size: 26px;
    font-style: italic;
    position: relative;
    padding-left: 100px;
}

.chairman-text .sign .img-sign {
    max-width: 150px;
    height: auto;
}

.chairman-text .sign:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 60px;
    left: 0;
    top: 38%;
    border-bottom: 1px solid var(--text-color-primary);

}

.profile {
    background-color: var(--light-bg-color);
}

.about-box {
    overflow: hidden;
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 9%);
    transition-property: all;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-duration: .3s;
}

.about-box:hover {
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 15%);
}

.about-box .box-img {
    overflow: hidden;
}

.about-box:hover .box-img img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.about-box .box-caption {
    padding: 2.14286rem;
}

.box-caption h3 {
    font-family: "Nexa", Sans-Serif;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}

.box-caption h3::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.about-box:hover .box-caption h3::before {
    visibility: visible;
    width: 100%;
}

.about-box .box-caption p {
    color: var(--text-color-secondary);
}

.profile-text {
    margin-bottom: 60px;
}


.honor .box-thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.honor .box-thumb a {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.honor .box-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.honor .box-thumb:before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
    background-image: linear-gradient(
            180deg, transparent, rgba(0, 0, 0, 0.8));
    z-index: 20;
}

.honor .box-thumb .box-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    z-index: 30;
}

.honor .box-thumb .box-text h4 {
    margin-top: auto;
    color: #ffffff;
    margin-bottom: 0;
    font-size: 20px;
}


.honor .box-thumb:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.honor .nav-pills .nav-link {
    font-size: 26px;
    border-radius: 0;
    padding: 0;
    margin: 10px 20px;
    text-transform: uppercase;
}

.honor .nav-pills .active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 1px solid var(--primary-color);
}


.about-clients {
    padding: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-clients .swiper-slide {
    border-right: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.about-clients .swiper-slide:first-child {
    border-left: 1px solid var(--border-color);
}

.about-clients .client-logo img {
    transition: all 0.3s ease-in-out;
    height: 60px;
    filter: grayscale(15%);
}

.about-clients .client-logo:hover img {
    filter: none;
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# List
--------------------------------------------------------------*/
#list .article-box {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

#list .article-box:hover .article-img {
    box-shadow: 0px 0px 10px #cecece;
}

#list .article-box .article-img {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#list .article-box .article-img {
    max-height: 340px;
}

#list .article-box .article-content h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Nexa", Sans-Serif;
}

#list .article-box .article-content .date {
    font-size: 15px;
    color: var(--text-color-primary);
}

#list .article-box .article-content .desc {
    color: var(--text-color-primary);
}

#list .article-box .article-content a {
    font-size: 14px;
}

/*--------------------------------------------------------------
# introduction headline
--------------------------------------------------------------*/

.introduction-headline .intro-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 450px;
    overflow: hidden;
}

.introduction-headline .intro-img img {
    width: 100%;
    height: auto;
}

.introduction-headline .intro-content h3 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 2rem;
}

.introduction-headline .intro-content p {
    font-size: 16px;
    color: var(--text-color-primary);
}

.introduction-headline .btn-download {
    margin-top: 2rem;
    background-color: var(--primary-color);
    font-family: "Nexa", Sans-Serif;
    color: #FFFFFF;
    padding: 10px 30px;
}

.introduction-headline .btn-download i {
    margin-right: 8px;
}

#lists .product-item {
    overflow: hidden;
    background-color: var(--light-bg-color);
    margin-bottom: 30px;
}

#lists .product-item .box-text {
    padding: 15px;
}

#lists .product-item .box-text a {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
}

#lists .product-item .box-text p {
    color: var(--text-color-secondary);
    font-size: 15px;
}

.read-more {
    font-size: 14px !important;
    font-weight: normal !important;
}

@media (max-width: 768px) {
    .introduction-headline .intro-img {
        margin-bottom: 1rem;
    }

    .introduction-headline .intro-content h3 {
        margin-bottom: 1rem;
    }

}

@media (min-width: 992px) {
    .product-show .product-wrapper .product-img {
        padding: 0 40px;
    }

    .product-show .product-wrapper .product-info {
        padding: 40px;
    }
}

.product-show .product-wrapper .product-info h3 {
    margin: 1rem 0;
}

.product-show .product-wrapper:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.product-more {
    background: var(--light-bg-color);
}

.product-table table th {
    font-weight: bold !important;
}


/*--------------------------------------------------------------
# solution
--------------------------------------------------------------*/
.category-solution .nav-solution a {
    font-size: 22px;
    padding: 10px 20px;
    margin: 0 20px;
    display: inline-block;
    background-color: var(--light-bg-color);
}

.category-solution .nav-solution a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.box-solution {
    position: relative;
    overflow: hidden;
}

.box-solution:hover img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.box-solution .box-caption {
    position: absolute;
    padding: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.box-solution .box-caption h4, .box-solution .box-caption .box-icon i {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 0;
}

.box-solution:hover .box-caption .box-icon {
    padding-right: 30px;
}

.box-solution:hover .box-caption h4 {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .box-solution .box-caption {
        padding: 10px 15px;
    }

    .box-solution .box-caption h4, .box-solution .box-caption .box-icon i {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
#support {
    display: none !important;
}

.support .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100%;
}

.support .icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}

.support .icon {
    position: absolute;
    left: -20px;
    top: calc(50% - 30px);
}

.support .icon i {
    font-size: 64px;
    line-height: 1;
    transition: 0.5s;
}

.support .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.support .title a {
    color: #2a2c39;
    transition: ease-in-out 0.3s;
}

.support .title a:hover {
    color: var(--primary-color);
}

.support .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Article
--------------------------------------------------------------*/

#article .post-more {
    list-style: none;
    padding: 0px 0;
    margin: 20px 0;
    display: flex;
}

#article .post-more li {
    margin-right: 20px;
}

#article .post-more li, #article .post-more li a {
    color: var(--text-color-secondary);
    font-size: 14px;
}

#article .post-more span {
    margin-right: 5px;
}

#article .article-head h2 {
    font-size: 28px;
}

/*--------------------------------------------------------------
# Related List
--------------------------------------------------------------*/
.article-related {
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 9%);
}

.article-related:hover {
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 15%);
}

.article-related .box-img {
    margin-bottom: 1rem;
    overflow: hidden;
    max-height: 283px;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.article-related:hover .box-img img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.article-related .box-text {
    padding: 0 20px;
}

.article-related .box-text a {
    font-family: "Nexa", Sans-Serif;
    font-size: 18px;
    font-weight: 700;
    display: block;
    padding: 10px 0;
}

.article-related:hover .box-text a {
    color: var(--focus-color);
}

.article-related .box-text p {
    color: var(--text-color-secondary);
    font-size: 15px;
    margin-bottom: 0;
}

.article-related .read-more {
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Contact page
--------------------------------------------------------------*/
#contact .article-head h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

#contact .article-head h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

@media (max-width: 991px) {
    #contact .article-right {
        padding-top: 60px;
    }
}

.contact .info {
    margin-top: 40px;
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #FFFFFF;
    float: left;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color-primary);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--title-color);
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {

    background: rgb(254 90 14 / 60%);
    color: #fff;
}

.contact .email-form {
    margin-top: 40px;
    width: 100%;
    background: #fff;
}

.contact .email-form .form-group {
    padding-bottom: 8px;
}

.contact .email-form .error-message {
    display: none;
    color: #fff;
    background: var(--primary-color);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .email-form .error-message br + br {
    margin-top: 25px;
}

.contact .email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--primary-color);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--primary-color);
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .email-form input, .contact .email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.contact .email-form input:focus, .contact .email-form textarea:focus {
    border-color: var(--primary-color);
}

.contact .email-form input {
    height: 44px;
}

.contact .email-form textarea {
    padding: 10px 12px;
}

.contact .email-form button[type="submit"] {
    background: var(--primary-color);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
}

.contact .email-form button[type="submit"]:hover {
    background: var(--primary-color);
}

#map {
    padding-top: 0;
}

/*--------------------------------------------------------------
# article page
--------------------------------------------------------------*/
#article .article-body img {
    max-width: 100%;
    height: auto;
}
