:root {
    --maincolor: #4CC9FE;
    --blackcolor: #1E1E1E;
    --black2color: #032838;
    --textcolor: #878787;
    --text2color: #414141;
    --text3color: #646464;
    --lightmaincolor: #E8F6FC;
    --lightcolor: #F2F2F2;
    --light2color: #CACACA;
    --light3color: #BABABA;
    --light4color: #AAAAAA;
    --whitecolor: #FFFFFF;
    --easeoutcubic: cubic-bezier(.215, .61, .355, 1);
}


/*---------------------- Public Style ---------------------*/

body {
    background-color: var(--whitecolor);
    margin: 0;
    padding: 16px 0;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.overhide {
    overflow: hidden;
}

* {
    font-family: YekanBakh;
    outline: medium none !important;
    text-decoration: none !important;
}

.container {
    max-width: 1520px;
    padding: 0;
}

::selection {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.overlay-menu,
.overlay-filter {
    background-color: var(--blackcolor);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.overlay-filter {
    z-index: 99999;
}

.overlay-menu.show,
.overlay-filter.show {
    opacity: 0.6;
    visibility: visible;
}

.content-main {
    padding: 16px 0;
}

.mt-120 {
    margin-top: 120px;
}

.btn-abara-custom {
    background-color: var(--lightcolor);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 8px 8px;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--blackcolor);
    border-radius: 200px;
    border: none;
    transition: all 0.3s;
}

.btn-abara-custom:hover {
    background-color: var(--blackcolor);
    color: var(--whitecolor);
    gap: 20px;
}

.btn-abara-custom>i {
    background-color: var(--maincolor);
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    font-weight: 700;
    color: var(--blackcolor);
    transition: all 0.3s;
}

.btn-abara-custom:hover>i {
    background-color: var(--whitecolor);
}

.head-section {
    padding: 0 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.head-section .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.head-section .content .title {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 32px;
    font-weight: 800;
    line-height: 38px;
    margin: 0;
}

.head-section .content .desc {
    color: var(--textcolor);
    font-family: Morabba;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

.head-section .arrows-swiper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.head-section .arrows-swiper .swiper-button {
    background: var(--lightcolor);
    border-radius: 100px;
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 10px;
    color: var(--light3color);
    transition: all 0.3s;
}

.head-section .arrows-swiper .swiper-button:hover {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.head-section .arrows-swiper .swiper-button>i {
    font-weight: bold;
}

.head-section .arrows-swiper .swiper-button-disabled {
    opacity: 0.5;
}

.head-section .options {
    display: flex;
    align-items: center;
    gap: 24px;
}

.head-section .options .nav-tabs {
    display: inline-flex;
    height: 48px;
    padding: 4px;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 500px;
    background: var(--whitecolor);
    border: 2px solid var(--lightcolor);
}

.head-section .options .nav-tabs .nav-item {
    height: 100%;
}

.head-section .options .nav-tabs .nav-link {
    background-color: transparent;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 200px;
    font-size: 14px;
    font-weight: 400;
    color: var(--textcolor);
    border: none;
    transition: all 0.3s;
}

.head-section .options .nav-tabs .nav-link.active {
    background-color: var(--lightmaincolor);
    font-weight: 800;
    color: var(--blackcolor);
    padding: 0 20px;
}

.head-section.centerd .content {
    width: 100%;
    align-items: center;
    text-align: center;
}

.dropdown-abara {
    background-color: var(--whitecolor);
    border-radius: 16px !important;
    border: none;
    overflow: hidden;
    top: 4px;
}

.dropdown-abara .select2-results__option {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--textcolor);
    transition: all 0.3s;
}

.dropdown-abara .select2-results__option--selected {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.dropdown-abara .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--lightmaincolor);
    color: var(--blackcolor);
}

.custom-checkbox .custom-control-label::before {
    background-color: var(--lightcolor);
    width: 20px;
    height: 20px;
    border-radius: 6px !important;
    border: 2px solid var(--blackcolor);
    transition: all 0.3s;
}

.custom-checkbox .custom-control-label::after {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--blackcolor);
}

.custom-checkbox .custom-control-input:checked+.custom-control-label::before {
    background-color: var(--maincolor);
    border-color: var(--maincolor);
}

.more-row-bottom {
    text-align: center;
    margin-top: 48px;
}

/*---------------------- /Public Style ---------------------*/

/*---------------------- Modal ---------------------*/

.modal-backdrop {
    z-index: 9999;
}

.modal {
    z-index: 99999;
}

.modal-xl {
    max-width: 1520px;
}

.modal-content {
    border-radius: 20px;
}

.modal-body,
.modal-footer {
    padding: 20px;
}

.modal-header {
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.modal-header .modal-title {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 18px;
    font-weight: 800;
}

.modal-header .close {
    background: var(--lightcolor);
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 24px;
    font-weight: normal;
    color: var(--light3color);
    margin: 0;
    padding: 0;
    opacity: 1;
    text-shadow: none;
    transition: all 0.3s;
}

.modal-header .close:hover {
    background-color: var(--blackcolor);
    color: var(--whitecolor);
}

.modal .head-info-modal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal .head-info-modal .logo-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.modal .head-info-modal .logo-main>img {
    width: 90px;
}

.modal .head-info-modal .logo-main .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 8px;
}

.modal .head-info-modal .logo-main .content>.fa {
    color: var(--blackcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.modal .head-info-modal .logo-main .content>.en {
    color: var(--textcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 13.5px;
    font-weight: 300;
}

.modal .head-info-modal .image-pump {
    width: 150px;
    height: 150px;
    background-color: var(--lightcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    aspect-ratio: 1/1;
}

.modal .head-info-modal .image-pump>img {
    height: 130px;
    max-width: 90%;
    object-fit: contain;
}

.modal .box-chart-modal {
    width: 100%;
    border: 2px solid var(--lightcolor);
    border-radius: 20px;
    padding: 20px 15px 0 0;
}

.modal .nav-tabs {
    width: 100%;
    display: flex;
    height: 64px;
    padding: 4px;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 500px;
    background: var(--whitecolor);
    border: 2px solid var(--lightcolor);
    margin-bottom: 32px;
}

.modal .nav-tabs .nav-item {
    height: 100%;
}

.modal .nav-tabs .nav-link {
    background-color: transparent;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 200px;
    font-size: 16px;
    font-weight: 400;
    color: var(--textcolor);
    border: none;
    transition: all 0.3s;
}

.modal .nav-tabs .nav-link.active {
    background-color: var(--lightmaincolor);
    font-weight: 800;
    color: var(--blackcolor);
    padding: 0 24px;
}

.modal .tab-content {
    padding: 0 8px;
}

.modal .content-box-tab h4 {
    font-family: Morabba;
    color: var(--blackcolor);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 20px;
}

.modal .content-box-tab p {
    color: var(--textcolor);
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    line-height: 32px;
}

.modal .content-box-tab ul {
    margin-bottom: 32px;
    padding: 0 16px 0 0;
}

.modal .content-box-tab ul>li {
    margin: 10px 0;
    color: var(--textcolor);
}

.modal .outer-iframe {
    width: 60%;
    height: 500px;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
}

.modal .btn-print-modal {
    background-color: var(--blackcolor);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: var(--whitecolor);
    border-radius: 200px;
    border: none;
    transition: all 0.3s;
}

/*---------------------- /Modal ---------------------*/

/*---------------------- Chart ---------------------*/

.apexcharts-tooltip.light .apexcharts-tooltip-title {
    text-align: center;
}

.apexcharts-tooltip-series-group {
    justify-content: flex-start;
    padding-right: 4px !important;
}

.apexcharts-tooltip-marker {
    flex-shrink: 0;
    margin-left: 6px;
}

.apexcharts-tooltip-text {
    width: 100%;
    text-align: right;
}

.apexcharts-legend.position-bottom.center {
    position: relative !important;
    inset: 0 !important;
}

.apexcharts-legend.position-bottom .apexcharts-legend-series {
    gap: 5px;
}

/*---------------------- /Chart ---------------------*/

/*---------------------- Header Main ---------------------*/

.header-main .header-top {
    position: relative;
    background-color: var(--lightcolor);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    padding: 0 16px;
    z-index: 9999;
}

.header-main .header-top .menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
}

.header-main .header-top .logo-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.header-main .header-top .logo-main>img {
    width: 60px;
}

.header-main .header-top .logo-main .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.header-main .header-top .logo-main .content>.fa {
    color: var(--blackcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.header-main .header-top .logo-main .content>.en {
    color: var(--textcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 11px;
    font-weight: 300;
}

.header-main .header-top .navbar-expand-lg {
    padding: 0;
    position: static;
}

.header-main .header-top .navbar-nav {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.header-main .header-top .navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 32px 0;
    color: var(--text2color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.header-main .header-top .navbar-nav .nav-item .dropdown-toggle::after {
    display: none;
}

.header-main .header-top .navbar-nav .nav-item .dropdown-toggle>i {
    font-size: 8px;
    color: var(--light4color);
    transition: all 0.4s;
}

.header-main .header-top .navbar-nav .nav-item .dropdown-toggle:hover>i,
.header-main .header-top .navbar-nav .show .dropdown-toggle>i {
    transform: rotate(180deg);
    color: var(--maincolor);
}

.header-main .header-top .navbar-nav .nav-item .nav-link::before {
    content: "";
    background-color: var(--maincolor);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 100px;
    margin: 0 auto;
    opacity: 0;
    transition: all 0.4s;
}

.header-main .header-top .navbar-nav .nav-item .nav-link:hover::before,
.header-main .header-top .navbar-nav .show .nav-link::before {
    width: 60%;
    opacity: 1;
}

.header-main .header-top .navbar-nav .nav-item .nav-link:hover,
.header-main .header-top .navbar-nav .show .nav-link {
    color: var(--maincolor);
}

.header-main .header-top .btns-group {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-main .header-top .btns-group .btn-abara-custom {
    background-color: var(--maincolor);
    font-weight: 700;
}

.header-main .header-top .btns-group .btn-abara-custom:hover {
    background-color: var(--blackcolor);
}

.header-main .header-top .btns-group .btn-abara-custom>i {
    background-color: var(--whitecolor);
}

.header-main .header-top .btns-group .btn-search {
    background-color: var(--whitecolor);
    display: flex;
    width: 52px;
    height: 52px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 900;
    color: var(--blackcolor);
    transition: all 0.3s;
}

.header-main .header-top .btns-group .btn-search:hover {
    background-color: var(--blackcolor);
    color: var(--whitecolor);
}

.header-main .header-top .btns-group .btn-show-respmenu {
    display: none;
    background-color: var(--blackcolor);
    color: var(--whitecolor);
}

.header-main .header-top .btns-group .btn-show-respmenu .bar {
    background-color: var(--whitecolor);
    width: 18px;
    height: 2px;
    border-radius: 10px;
}

.header-main .header-top .btns-group .btn-show-respmenu .bar::before,
.header-main .header-top .btns-group .btn-show-respmenu .bar::after {
    content: "";
    position: absolute;
    background-color: var(--whitecolor);
    width: 18px;
    height: 2px;
    border-radius: 10px;
}

.header-main .header-top .btns-group .btn-show-respmenu .bar::before {
    transform: translateY(-5px);
}

.header-main .header-top .btns-group .btn-show-respmenu .bar::after {
    transform: translateY(5px);
}

.header-main .megamenu-custom .menubox {
    background-color: var(--blackcolor);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-height: 500px;
    z-index: 9999;
    border-radius: 20px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 0.3s;
}

.header-main .megamenu-custom.show .menubox {
    opacity: 1;
    visibility: visible;
}

.header-main .megamenu-custom .head-item {
    display: inline-flex;
    background-color: var(--maincolor);
    padding: 4px 8px 2px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blackcolor);
    margin: 0 0 20px;
}

.header-main .megamenu-custom .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.header-main .megamenu-custom .list-menu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 500;
    color: var(--light4color);
    text-transform: uppercase;
    transition: all 0.3s;
}

.header-main .megamenu-custom .list-menu a:hover {
    color: var(--maincolor);
    padding-right: 4px;
}

.header-main .header-top .navbar-custom-resp .btn-close-menu {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 30px;
    height: 40px;
    background-color: var(--blackcolor);
    border-radius: 10px 0 0 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--whitecolor);
    border: none;
}

.header-main .header-top .navbar-custom-resp .logo-main {
    display: none;
}

.header-main .header-top .navbar .dropdown .dropdown-menu {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    position: absolute;
    background: var(--blackcolor);
    padding: 20px;
    border-radius: 20px;
    z-index: 1022;
    top: 70px;
    right: 0;
    left: -148px;
    border: none;
}

.header-main .header-top .navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 60px;
}

.header-main .header-top .navbar .dropdown-menu .dropdown-item {
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    color: var(--whitecolor);
    padding: 8px 0;
    border-radius: 10px;
    white-space: initial;
    transition: all 0.4s;
}

.header-main .header-top .navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--maincolor);
    color: var(--whitecolor);
    font-weight: 500;
    padding-right: 10px;
}

/*---------------------- /Header Main ---------------------*/

/*---------------------- Section About ---------------------*/

.sec-aboutus .row {
    align-items: center;
}

.sec-aboutus .swiper-slideshow {
    width: 100%;
    height: 700px;
    border-radius: 24px;
    overflow: hidden;
}

.sec-aboutus .swiper-slideshow .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-aboutus .swiper-slideshow .year-company {
    background-color: var(--whitecolor);
    border-radius: 20px;
    display: flex;
    width: 150px;
    height: 180px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 100;
}

.sec-aboutus .swiper-slideshow .year-company .number {
    font-family: Morabba;
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -2.5px;
    color: var(--maincolor);
}

.sec-aboutus .swiper-slideshow .year-company .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.sec-aboutus .swiper-slideshow .year-company .text>h4 {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.sec-aboutus .swiper-slideshow .year-company .text>span {
    color: var(--textcolor);
    font-family: Morabba;
    font-size: 16px;
    font-weight: 400;
}

.sec-aboutus .swiper-slideshow .arrows-swiper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
}

.sec-aboutus .swiper-slideshow .swiper-button {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(3px);
    border-radius: 100px;
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 14px;
    color: var(--whitecolor);
    transition: all 0.3s;
}

.sec-aboutus .swiper-slideshow .swiper-button:hover {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.sec-aboutus .swiper-slideshow .swiper-button>i {
    font-weight: bold;
}

.sec-aboutus .swiper-slideshow .swiper-button-disabled {
    opacity: 0.5;
}

.sec-aboutus .content-box {
    display: flex;
    width: 100%;
    padding: 0 40px 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.sec-aboutus .content-box .head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sec-aboutus .content-box .head .title {
    color: var(--blackcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 48px;
    font-weight: 800;
    margin: 0;
}

.sec-aboutus .content-box .head .desc {
    color: var(--textcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
}

.sec-aboutus .content-box .desc-about {
    color: var(--text2color);
    text-align: justify;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    margin: 0;
}

.sec-aboutus .content-box .options {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-aboutus .content-box .options .socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.sec-aboutus .content-box .options .socials .list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
}

.sec-aboutus .content-box .options .socials .item-sc {
    background: var(--lightcolor);
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    color: var(--light4color);
    transition: all 0.3s;
}

.sec-aboutus .content-box .options .socials .item-sc:hover {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.sec-aboutus .content-box .options .socials .desc {
    color: var(--textcolor);
    text-align: left;
    font-size: 12px;
    font-weight: 400;
}

/*---------------------- /Section About ---------------------*/

/*---------------------- Section Products ---------------------*/

.sec-products {
    overflow-x: hidden;
}

.sec-products .swiper-products {
    margin: 0 -60px;
}

.sec-products .box-item-product {
    cursor: pointer;
    background-color: var(--lightcolor);
    width: 100%;
    height: 360px;
    padding: 8px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--lightcolor);
    transition: all 0.3s;
}

.sec-products .box-item-product:hover {
    background-color: var(--whitecolor);
    border-color: var(--maincolor);
}

.sec-products .box-item-product .image-box {
    background-color: var(--whitecolor);
    display: flex;
    width: 100%;
    height: 260px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    transition: all 0.3s;
}

.sec-products .box-item-product:hover .image-box {
    background-color: var(--lightcolor);
}

.sec-products .box-item-product .image-box>img {
    max-width: 85%;
    height: 200px;
    object-fit: contain;
    transition: all 0.6s;
}

.sec-products .box-item-product:hover .image-box>img {
    transform: scale(0.9);
}

.sec-products .box-item-product .name-prd {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
    transition: all 0.3s;
}

.sec-products .box-item-product:hover .name-prd {
    font-weight: 700;
}

.sec-products .box-item-product .name-prd>a {
    display: block;
    color: var(--blackcolor);
    padding: 22px 10px;
}

/*---------------------- /Section Products ---------------------*/

/*---------------------- Section Services ---------------------*/

.sec-services .bento-columns {
    padding: 0 300px;
}

.sec-services .bento-columns .row {
    margin: 0 -6px;
    height: 360px;
}

.sec-services .bento-columns .row .col-lg-6 {
    padding: 0 6px;
    height: 100%;
}

.sec-services .bento-columns .main-box {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.sec-services .bento-columns .main-box>img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.sec-services .bento-columns .main-box:hover>img {
    transform: scale(1.2);
}

.sec-services .bento-columns .main-box .content-box {
    position: relative;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(5px);
    display: flex;
    width: 100%;
    height: 90px;
    padding: 30px 30px 10px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 100;
    transition: all 0.3s;
}

.sec-services .bento-columns .main-box:hover .content-box {
    background-color: var(--blackcolor);
}

.sec-services .bento-columns .main-box .content-box>h4 {
    color: var(--whitecolor);
    text-align: center;
    font-family: Morabba;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

.sec-services .bento-columns .main-box .content-box .box-icon {
    background: var(--maincolor);
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    color: var(--blackcolor);
    position: absolute;
    top: -24px;
    transition: all 0.3s;
}

.sec-services .bento-columns .main-box:hover .content-box .box-icon {
    background-color: var(--whitecolor);
    color: var(--maincolor);
}

.sec-services .bento-columns .half-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.sec-services .bento-columns .half-columns>a {
    position: relative;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    overflow: hidden;
}

.sec-services .bento-columns .half-columns .item-company>img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.sec-services .bento-columns .half-columns .item-company:hover>img {
    transform: scale(1.2);
}

.sec-services .bento-columns .half-columns .item-company .title {
    border-radius: 500px;
    border: 1px solid var(--whitecolor);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(3px);
    display: flex;
    width: 100%;
    height: 32px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    color: var(--whitecolor);
    text-align: center;
    font-family: Morabba;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    transition: all 0.3s;
}

.sec-services .bento-columns .half-columns .item-company:hover .title {
    background-color: var(--whitecolor);
    color: var(--blackcolor);
}

.sec-services .bento-columns .half-columns .item-search {
    background-color: var(--maincolor);
    justify-content: center;
    padding: 20px;
    gap: 24px;
    transition: all 0.3s;
}

.sec-services .bento-columns .half-columns .item-search:hover {
    background-color: var(--blackcolor);
}

.sec-services .bento-columns .half-columns .item-search>i {
    font-size: 32px;
    color: var(--blackcolor);
    transition: all 0.3s;
}

.sec-services .bento-columns .half-columns .item-search:hover>i {
    color: var(--maincolor);
}

.sec-services .bento-columns .half-columns .item-search .title {
    color: var(--blackcolor);
    text-align: center;
    font-family: Morabba;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    transition: all 0.3s;
}

.sec-services .bento-columns .half-columns .item-search:hover .title {
    color: var(--whitecolor);
}

.sec-services .bento-columns .item-stand {
    position: relative;
    display: flex;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.sec-services .bento-columns .item-stand>img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.sec-services .bento-columns .item-stand:hover>img {
    transform: scale(1.2);
}

.sec-services .bento-columns .item-stand .blur-box {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(15px);
    position: relative;
    width: 100%;
    display: flex;
    padding: 32px 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s;
}

.sec-services .bento-columns .item-stand:hover .blur-box {
    backdrop-filter: blur(5px);
}

.sec-services .bento-columns .item-stand .blur-box .box-icon {
    background: var(--maincolor);
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 32px;
    color: var(--blackcolor);
    transition: all 0.3s;
}

.sec-services .bento-columns .item-stand:hover .blur-box .box-icon {
    background-color: var(--whitecolor);
    color: var(--maincolor);
}

.sec-services .bento-columns .item-stand .blur-box .number {
    color: var(--whitecolor);
    text-align: center;
    font-family: Morabba;
    font-size: 40px;
    font-weight: 900;
    line-height: 32px;
    letter-spacing: -1.6px;
    margin: 0;
    transition: all 0.3s;
}

.sec-services .bento-columns .item-stand .blur-box .desc {
    color: var(--whitecolor);
    text-align: center;
    font-family: Morabba;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    transition: all 0.3s;
}

.sec-services .bento-columns .item-stand:hover .blur-box .number,
.sec-services .bento-columns .item-stand:hover .blur-box .desc {
    color: var(--blackcolor);
}

/*---------------------- /Section Services ---------------------*/

/*---------------------- Section Statistics ---------------------*/

.sec-statistics .box-outer-stats {
    border-radius: 20px;
    background: var(--lightcolor);
    display: flex;
    padding: 64px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}

.sec-statistics .box-outer-stats .ceo-speech {
    width: 100%;
    display: flex;
    padding: 0 12px;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
}

.sec-statistics .box-outer-stats .ceo-speech .ceo-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
    padding-left: 48px;
}

.sec-statistics .box-outer-stats .ceo-speech .ceo-info::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--whitecolor);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.sec-statistics .box-outer-stats .ceo-info .profile {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
    border-radius: 12px;
    object-fit: cover;
}

.sec-statistics .box-outer-stats .ceo-info .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.sec-statistics .box-outer-stats .ceo-info .fullname {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.sec-statistics .box-outer-stats .ceo-info .expertise {
    color: var(--textcolor);
    font-family: Morabba;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.sec-statistics .box-outer-stats .ceo-speech blockquote {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
    margin: 0;
}

.sec-statistics .box-outer-stats .ceo-speech blockquote>span {
    position: relative;
    color: var(--blackcolor);
    font-size: 32px;
    font-weight: 800;
    line-height: 42px;
    display: inline-flex;
    margin: 0 2px;
}

.sec-statistics .box-outer-stats .ceo-speech blockquote>.first {
    transform: scale(-1);
    top: -15px;
}

.sec-statistics .box-outer-stats .spacing {
    display: flex;
    width: 100%;
    border-color: var(--whitecolor);
    margin: 0;
}

.sec-statistics .box-outer-stats .statistics {
    width: 100%;
    display: flex;
    padding: 0 12px;
    justify-content: space-between;
    align-items: center;
}

.sec-statistics .box-outer-stats .statistics .item-stat {
    width: 280px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.sec-statistics .box-outer-stats .statistics .box-icon {
    border-radius: 16px;
    background: var(--whitecolor);
    display: flex;
    width: 140px;
    height: 140px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.sec-statistics .box-outer-stats .statistics .box-icon>i {
    border-radius: 100px;
    background: var(--maincolor);
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    font-size: 28px;
    color: var(--blackcolor);
}

.sec-statistics .box-outer-stats .statistics .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sec-statistics .box-outer-stats .statistics .content .number {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    margin: 0;
    direction: ltr;
}

.sec-statistics .box-outer-stats .statistics .content .number>span {
    font-family: Morabba;
    font-weight: 500;
    -moz-font-feature-settings: "ss01";
    -webkit-font-feature-settings: "ss01";
    font-feature-settings: "ss01";
}

.sec-statistics .box-outer-stats .statistics .content .desc {
    color: var(--textcolor);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/*---------------------- /Section Statistics ---------------------*/

/*---------------------- Section Other Links ---------------------*/

.sec-other-links {
    margin-top: 6px;
}

.sec-other-links .row {
    margin: 0 -6px;
}

.sec-other-links .row .col-12 {
    padding: 6px;
}

.sec-other-links .box-outer-link {
    border-radius: 20px;
    background: var(--lightcolor);
    display: flex;
    width: 100%;
    height: 120px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.3s;
}

.sec-other-links .box-outer-link:hover {
    background-color: var(--maincolor);
}

.sec-other-links .box-outer-link .title {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    transition: all 0.3s;
}

.sec-other-links .box-outer-link:hover .title {
    color: var(--whitecolor);
}

.sec-other-links .box-outer-link .desc {
    color: var(--textcolor);
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    transition: all 0.3s;
}

.sec-other-links .box-outer-link:hover .desc {
    color: var(--blackcolor);
}

/*---------------------- /Section Other Links ---------------------*/

/*---------------------- Section News ---------------------*/

.sec-news .swiper-listnews {
    margin: 0 -60px;
}

.sec-news .item-news-abara {
    cursor: pointer;
    border-radius: 20px;
    background: var(--lightcolor);
    border: 2px solid var(--lightcolor);
    display: flex;
    width: 100%;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.sec-news .item-news-abara:hover {
    background-color: var(--whitecolor);
    border-color: var(--maincolor);
}

.sec-news .item-news-abara .image-box {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.sec-news .item-news-abara .image-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.sec-news .item-news-abara:hover .image-box>img {
    transform: scale(1.2);
}

.sec-news .item-news-abara .image-box .date {
    border-radius: 8px;
    background: var(--whitecolor);
    display: flex;
    padding: 6px 12px 4px 12px;
    justify-content: center;
    align-items: center;
    color: var(--light4color);
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    transition: all 0.3s;
}

.sec-news .item-news-abara:hover .image-box .date {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.sec-news .item-news-abara .content {
    width: 100%;
    display: flex;
    padding: 16px 4px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sec-news .item-news-abara .content .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.sec-news .item-news-abara .content .title>a {
    color: var(--blackcolor);
    font-family: Morabba;
}

.sec-news .item-news-abara .content .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--textcolor);
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

/*---------------------- /Section News ---------------------*/

/*---------------------- Section Collaboration ---------------------*/

.sec-collaboration .row {
    margin: 0 -6px;
}

.sec-collaboration .row .col-12 {
    padding: 0 6px;
}

.sec-collaboration .image-box {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    background-color: var(--maincolor);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.sec-collaboration .image-box>img {
    position: absolute;
    height: 122%;
    z-index: 100;
}

.sec-collaboration .content-box {
    border-radius: 20px;
    background: var(--lightcolor);
    display: flex;
    width: 100%;
    height: 400px;
    padding: 48px 64px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.sec-collaboration .content-box .title {
    color: var(--blackcolor);
    font-family: Morabba;
    font-size: 40px;
    font-weight: 800;
    margin: 0;
}

.sec-collaboration .content-box .desc {
    color: var(--textcolor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

.sec-collaboration .content-box .options {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec-collaboration .content-box .options .btns-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec-collaboration .content-box .options .btn-call {
    border-radius: 100px;
    background: var(--blackcolor);
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    font-size: 20px;
    color: var(--whitecolor);
    transition: all 0.3s;
}

.sec-collaboration .content-box .options .btn-call:hover {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.sec-collaboration .content-box .options .btn-abara-custom {
    background-color: var(--whitecolor);
    font-weight: 700;
}

.sec-collaboration .content-box .options .btn-abara-custom:hover {
    background-color: var(--maincolor);
    color: var(--whitecolor);
}

.sec-collaboration .content-box .options .box-icon {
    background: var(--maincolor);
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 30px;
    color: var(--blackcolor);
    transition: all 0.3s;
}

/*---------------------- /Section Collaboration ---------------------*/

/*---------------------- Footer Main ---------------------*/

.footer-main .box-outer-footer {
    background-color: var(--blackcolor);
    padding: 10px;
    width: 100%;
    gap: 64px;
    border-radius: 20px;
}

.footer-main .box-outer-footer .row {
    align-items: center;
}

.footer-main .box-outer-footer .footer-info {
    padding: 54px 54px 10px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
}

.footer-main .footer-info .head-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-main .footer-info .head-info .aboutus {
    width: 37%;
}

.footer-main .footer-info .aboutus .logo-main .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.footer-main .footer-info .aboutus .logo-main .content>.fa {
    color: var(--whitecolor);
    text-align: right;
    font-family: Morabba;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.footer-main .footer-info .aboutus .logo-main .content>.en {
    color: var(--textcolor);
    text-align: right;
    font-family: Morabba;
    font-size: 11px;
    font-weight: 300;
}

.footer-main .footer-info .aboutus .desc {
    color: var(--light2color);
    text-align: justify;
    font-size: 12px;
    font-weight: 200;
    line-height: 26px;
    margin: 14px 0 0;
}

.footer-main .footer-info .contactus,
.footer-main .footer-info .namads {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-main .footer-info .title-head {
    color: var(--textcolor);
    font-family: Morabba;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}

.footer-main .footer-info .contactus .list-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-main .footer-info .contactus .list-tel>a {
    color: var(--whitecolor);
    font-family: Morabba;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    direction: ltr;
    transition: all 0.3s;
}

.footer-main .footer-info .contactus .list-tel>a:hover {
    color: var(--maincolor);
}

.footer-main .footer-info .box-logos {
    background-color: var(--whitecolor);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 8px;
    border-radius: 16px;
}

.footer-main .footer-info .box-logos img {
    height: 70px;
}

.footer-main .footer-info .copyright {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-main .footer-info .copyright .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-main .footer-info .copyright .company {
    color: var(--light2color);
    font-family: Morabba;
    font-size: 14px;
    font-weight: 400;
}

.footer-main .footer-info .copyright .designer {
    color: var(--textcolor);
    font-family: Morabba;
    font-size: 12px;
    font-weight: 400;
}

.footer-main .footer-info .socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.footer-main .footer-info .socials .item-sc {
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 20px;
    color: var(--text3color);
    transition: all 0.3s;
}

.footer-main .footer-info .socials .item-sc:hover {
    background-color: var(--maincolor);
    color: var(--blackcolor);
}

.footer-main .footer-map {
    padding-right: 32px;
}

.footer-main .box-map {
    position: relative;
    background: var(--text2color);
    display: flex;
    width: 100%;
    height: 420px;
    padding: 10px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
}

.footer-main .box-map iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-main .box-map .address-box {
    position: relative;
    background: rgba(30, 30, 30, 0.30);
    backdrop-filter: blur(5px);
    width: 100%;
    display: flex;
    padding: 28px 16px 16px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    color: var(--whitecolor);
    text-align: center;
    font-family: Morabba;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.footer-main .box-map .address-box .box-icon {
    background: var(--maincolor);
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-size: 24px;
    color: var(--blackcolor);
    position: absolute;
    top: -24px;
}

/*---------------------- /Footer Main ---------------------*/

/*---------------------- Select Pump Page ---------------------*/

.sec-select-pump {
    padding: 64px 0;
}

.sec-select-pump .swiper-categories {
    margin-bottom: 48px;
}

.sec-select-pump .swiper-categories .box-ctg-product {
    background-color: var(--lightcolor);
    height: 210px;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sec-select-pump .swiper-categories .box-ctg-product .image-box {
    position: relative;
    background-color: var(--whitecolor);
    border-radius: 16px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-select-pump .swiper-categories .box-ctg-product .image-box>img {
    height: 110px;
    max-width: 120px;
    object-fit: contain;
}

.sec-select-pump .swiper-categories .box-ctg-product.main-box .image-box>img {
    height: 70px;
}

.sec-select-pump .swiper-categories .box-ctg-product .image-box .custom-checkbox {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 100;
}

.sec-select-pump .swiper-categories .box-ctg-product .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--blackcolor);
    text-align: center;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 4px 4px 0 4px;
}

.sec-select-pump .box-outer-filter {
    position: relative;
    background: var(--lightcolor);
    display: flex;
    width: 100%;
    padding: 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    border-radius: 20px;
}

.sec-select-pump .box-outer-filter .btn-close-filter {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 30px;
    height: 40px;
    background-color: var(--blackcolor);
    border-radius: 10px 0 0 10px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--whitecolor);
    border: none;
}

.sec-select-pump .box-outer-filter .nav-tabs {
    width: 100%;
    display: flex;
    height: 48px;
    padding: 6px;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 500px;
    background: var(--whitecolor);
    border: none;
}

.sec-select-pump .box-outer-filter .nav-tabs .nav-item {
    flex: 1 0 0;
    height: 100%;
}

.sec-select-pump .box-outer-filter .nav-tabs .nav-link {
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 200px;
    font-size: 14px;
    font-weight: 400;
    color: var(--textcolor);
    border: none;
    transition: all 0.3s;
}

.sec-select-pump .box-outer-filter .nav-tabs .nav-link.active {
    background-color: var(--lightmaincolor);
    font-weight: 800;
    color: var(--blackcolor);
}

.sec-select-pump .box-outer-filter .tab-content {
    width: 100%;
}

.sec-select-pump .box-outer-filter .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 6px;
}

.sec-select-pump .box-outer-filter .form-group label {
    color: var(--blackcolor);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.sec-select-pump .box-outer-filter .form-group .input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
}

.sec-select-pump .box-outer-filter .form-group .input-group .form-control {
    background-color: var(--whitecolor);
    border-radius: 16px;
    height: 48px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--blackcolor);
    box-shadow: none;
    border: 2px solid var(--whitecolor);
    transition: all 0.3s;
}

.sec-select-pump .box-outer-filter .form-group .input-group .form-control:focus {
    border-color: var(--maincolor);
}

.sec-select-pump .box-outer-filter .form-group .input-group .select2 {
    width: 100px !important;
    flex-shrink: 0;
}

.sec-select-pump .box-outer-filter .form-group>.select2 {
    width: 100% !important;
}

.sec-select-pump .box-outer-filter .form-group .select2-selection--single {
    background-color: var(--whitecolor);
    height: 48px;
    border: 2px solid var(--whitecolor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.sec-select-pump .box-outer-filter .form-group .select2-container--open .select2-selection--single {
    border-color: var(--maincolor);
}

.sec-select-pump .box-outer-filter .form-group .select2-selection__rendered {
    width: 100%;
    line-height: 46px;
    color: var(--blackcolor);
    font-weight: 16px;
    font-weight: 700;
    padding: 0 14px 0 10px;
}

.sec-select-pump .box-outer-filter .form-group>.select2 .select2-selection__rendered {
    font-size: 14px;
}

.sec-select-pump .box-outer-filter .form-group .select2-selection__arrow {
    width: auto;
    height: auto;
    top: auto;
    right: auto;
    left: 14px;
}

.sec-select-pump .box-outer-filter .form-group .select2-selection__arrow::after {
    content: "\e900";
    font-family: 'icomoon';
    font-size: 7px;
    color: var(--light4color);
    font-weight: bold;
}

.sec-select-pump .box-outer-filter .form-group .select2-selection__arrow>b {
    display: none;
}

.sec-select-pump .box-outer-filter .btn-abara-custom {
    position: relative;
    height: 56px;
    background-color: var(--maincolor);
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--blackcolor);
    width: 100%;
    margin-top: 4px;
}

.sec-select-pump .box-outer-filter .btn-abara-custom>i {
    background-color: var(--whitecolor);
    width: 42px;
    height: 42px;
    position: absolute;
    left: 8px;
    font-size: 20px;
    font-weight: normal;
}

.sec-select-pump .result-col {
    padding: 16px;
}

.sec-select-pump .result-col .head-result {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec-select-pump .result-col .nav-tabs {
    display: inline-flex;
    height: 48px;
    padding: 4px;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 500px;
    background: var(--whitecolor);
    border: 2px solid var(--lightcolor);
}

.sec-select-pump .result-col .nav-tabs .nav-item {
    height: 100%;
}

.sec-select-pump .result-col .nav-tabs .nav-link {
    background-color: transparent;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 200px;
    font-size: 14px;
    font-weight: 400;
    color: var(--textcolor);
    border: none;
    transition: all 0.3s;
}

.sec-select-pump .result-col .nav-tabs .nav-link.active {
    background-color: var(--lightmaincolor);
    font-weight: 800;
    color: var(--blackcolor);
    padding: 0 20px;
}

.sec-select-pump .result-col .head-result .btn-abara-custom {
    background-color: var(--maincolor);
    font-weight: 700;
    display: none;
}

.sec-select-pump .result-col .head-result .btn-abara-custom>i {
    background-color: var(--whitecolor);
    font-size: 16px;
    font-weight: normal;
}

.sec-select-pump .result-col .head-result .text-result {
    background-color: var(--lightcolor);
    padding: 8px 16px;
    border-radius: 200px;
    font-size: 14px;
    font-weight: bold;
    color: var(--blackcolor);
    text-align: center;
}

.sec-select-pump .result-col .tab-content {
    width: 100%;
    margin-top: 32px;
}

.sec-select-pump .result-col .thead-table,
.modal .thead-table {
    background-color: var(--black2color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.sec-select-pump .result-col .thead-table span,
.modal .thead-table span {
    font-size: 14px;
    font-weight: 400;
    color: var(--whitecolor);
    text-align: center;
}

.sec-select-pump .result-col .thead-table span:nth-child(1) {
    width: 90px;
}

.sec-select-pump .result-col .thead-table span:nth-child(2) {
    width: 260px;
}

.modal .thead-table span:nth-child(1) {
    width: 300px;
}

.sec-select-pump .result-col .thead-table span:nth-child(n+3):nth-child(-n+8) {
    flex: 1 0 0;
}

.modal .thead-table span:nth-child(n+2):nth-child(-n+8) {
    flex: 1 0 0;
}

.sec-select-pump .result-col .item-result-details,
.modal .item-result-details {
    background-color: var(--lightcolor);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.sec-select-pump .result-col .item-result-details .main-rst,
.sec-select-pump .result-col .item-result-details .stat-rst,
.sec-select-pump .result-col .item-result-details .other-rst,
.modal .item-result-details .main-rst,
.modal .item-result-details .stat-rst,
.modal .item-result-details .other-rst {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.sec-select-pump .result-col .item-result-details .stat-rst,
.sec-select-pump .result-col .item-result-details .other-rst,
.sec-select-pump .result-col .item-result-details .stat-rst>div,
.sec-select-pump .result-col .item-result-details .other-rst>div,
.modal .item-result-details .stat-rst,
.modal .item-result-details .other-rst,
.modal .item-result-details .stat-rst>div,
.modal .item-result-details .other-rst>div {
    flex: 1 0 0;
}

.sec-select-pump .result-col .item-result-details .stat-rst .title,
.modal .item-result-details .stat-rst .title {
    display: none;
    font-size: 12px;
    font-weight: normal;
    color: var(--textcolor);
}

.sec-select-pump .result-col .item-result-details .main-rst>div:nth-child(1) {
    width: 90px;
}

.sec-select-pump .result-col .item-result-details .main-rst>div:nth-child(2) {
    width: 240px;
}

.modal .item-result-details .main-rst>div:nth-child(1) {
    width: 280px;
}

.sec-select-pump .result-col .item-result-details>div:nth-child(n+3):nth-child(-n+8) {
    flex: 1 0 0;
}

.modal .item-result-details>div:nth-child(n+3):nth-child(-n+8) {
    flex: 1 0 0;
}

.sec-select-pump .result-col .item-result-details .image-box,
.modal .item-result-details .image-box {
    background-color: var(--whitecolor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    aspect-ratio: 1/1;
}

.sec-select-pump .result-col .item-result-details .image-box>img,
.modal .item-result-details .image-box>img {
    height: 66px;
    max-width: 90%;
    object-fit: contain;
}

.sec-select-pump .result-col .item-result-details .col-item,
.modal .item-result-details .col-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sec-select-pump .result-col .item-result-details .col-item .data,
.modal .item-result-details .col-item .data {
    background-color: var(--whitecolor);
    width: 100%;
    padding: 6px 10px 4px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blackcolor);
    line-height: normal;
}

.sec-select-pump .result-col .item-result-details .col-item .data>i,
.modal .item-result-details .col-item .data>i {
    font-size: 8px;
    font-weight: bold;
}

.sec-select-pump .result-col .item-result-details .item-orange .data:first-child,
.modal .item-result-details .item-orange .data:first-child {
    background-color: #FBE3D9;
    color: #C23A01;
}

/* .sec-select-pump .result-col .item-result-details .item-orange .data:last-child,
.modal .item-result-details .item-orange .data:last-child {
    background-color: #C23A01;
    color: #FBE3D9;
} */

.sec-select-pump .result-col .item-result-details .item-green .data:nth-child(1),
.modal .item-result-details .item-green .data:nth-child(1) {
    background-color: #49D0C0;
}

.sec-select-pump .result-col .item-result-details .item-green .data:nth-child(2),
.modal .item-result-details .item-green .data:nth-child(2) {
    background-color: #BAE6E1;
}

.sec-select-pump .result-col .item-result-details .item-blue .data:nth-child(1),
.modal .item-result-details .item-blue .data:nth-child(1) {
    background-color: #4CC9FE;
}

.sec-select-pump .result-col .item-result-details .item-blue .data:nth-child(2),
.modal .item-result-details .item-blue .data:nth-child(2) {
    background-color: #BAE5F7;
}

.sec-select-pump .result-col .item-result-details .item-gray .data:first-child,
.modal .item-result-details .item-gray .data:first-child {
    background-color: #DADADA;
}

.sec-select-pump .result-col .item-result-details .item-end .data:first-child,
.modal .item-result-details .item-end .data:first-child {
    background-color: #49D0C0;
    color: #fff;
}

.sec-select-pump .result-col .item-result-details .col-item small.data,
.modal .item-result-details .col-item small.data {
    font-size: 12px;
}

.sec-select-pump .result-col .item-result-details .btn-view,
.modal .item-result-details .btn-view {
    width: 100%;
    background-color: #0188C2;
    border-radius: 10px;
    padding: 6px 10px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--whitecolor);
    border: none;
}

.modal .item-result-details .btn-view {
    background-color: var(--blackcolor);
}

/*---------------------- /Select Pump Page ---------------------*/

/*---------------------- Responsives ---------------------*/

@media only screen and (min-width:1700px) and (max-width: 1800px) {
    .container {
        padding: 0;
    }
}

@media only screen and (min-width:1200px) and (max-width: 1700px) {
    .container {
        padding: 0 16px;
    }

    .sec-select-pump .result-col .item-result-details .col-item small.data {
        font-size: 11px;
    }
}


/*---------------------- /Responsives ---------------------*/