/*
 Template Potifolio Version 1 / 2023.07
 By Eng. Hanan Al-Slaiman
=================================

    |
    |__ PUBLIC STYLES
    |__ CUSTOM STYLES
    |__ HEADER PAGE STYLES  
    |    |__ NAVBAR STYLES
    |__ HOME  
    |__ ABOUT
    |__ COUNTERS
    |__ PROJECTS    
    |__ CONTACT
    |__ FOOTER


*/

.bg-text {
    color: #24242438;
    font-size: 10rem;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    text-transform: uppercase;
    z-index: 3;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.section {
    padding: 4rem 0;
}

.section-md {
    padding: 2rem 0;
}

.section-sm {
    padding: 1rem 0;
}

.section-content {
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-text {
    color: #707070;
}

@media (max-width: 996px) {

    .bg-text {
        font-size: 3rem;
        top: 35%;
    }
}



/***********************************************
************************************************
                Loading PAGE STYLES
************************************************
***********************************************/
.loading-wrapper {
    min-height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-item {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-item img {
    width: 50px;
    height: 50px;
}

.loader {
    /* width: 48px; */
    /* height: 48px; */
    border: 2px solid #000;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid;
    border-color: var(--main-dark-color) transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/***********************************************
************************************************
                HEADER PAGE STYLES
************************************************
***********************************************/

.page-header {
    position: sticky;
    z-index: 999;
    top: 0;
    background-color: #ffffffa2;
    /* margin-bottom: -8.3rem; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.topbar {
    background-color: #f3f3f381;
    padding: .3rem 0;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: .5rem 0;
}

.logo-img {
    width: 4.3rem;
    min-width: 4rem;
}

.logo-txt {
    font-size: 23px;
    font-family: janna-lt-w20-regular, sans-serif;
    text-align: center;
    line-height: 23px;
    white-space: nowrap;
}


@media (max-width: 996px) {

    .topbar-wrapper {
        flex-wrap: wrap;
    }

    .topbar-wrapper>p {
        display: none;
    }

    .logo-txt {
        font-size: 18px;
    }

}

/***********************************************
                NAVBAR STYLES
***********************************************/
.navbar {
    position: relative;
    user-select: none;
}

.navbar-wrapper {
    /* background-color: #fff; */
    /* padding: 0 1rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.sticky {
    position: sticky;
    position: -webkit-sticky;
    -webkit-position: sticky;
    -moz-position: sticky;
    -ms-position: sticky;
    -o-position: sticky;
    z-index: 999;
    top: 0;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 2.5rem;
}

.nav-item {
    padding: 1.3rem 1rem;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    text-align: center;
}

.nav-item:hover {
    color: #3b3b3b;
}

.nav-item .nav-item-link {
    white-space: nowrap;
    position: relative;
}

.nav-item .nav-item-link::before {
    content: '';
    width: 0;
    height: .25rem;
    background-color: #3b3b3b;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.nav-item.has-menu .nav-item-link::after {
    content: '\f107';
    font: normal normal normal 14px/1 FontAwesome;
    margin-inline-start: 1rem;
    position: absolute;
    right: -1rem;
    top: 30%;
}

.nav-item.active .nav-item-link::before,
.nav-item:hover .nav-item-link::before {
    width: 1.3rem;
}

.nav-item-menu {
    z-index: 100;
    list-style: none;
}

.nav-item-menu li>a {
    padding: .7rem 1rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    min-width: 250px;
    text-align: center;
}

.nav-item-menu li>a:hover {
    background-color: #000;
    color: #fff;
}


.toggle-nav-list {
    /* padding: 1rem; */
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}

.nav-list-header {
    display: none;
}

@media (max-width: 996px) {
    .nav-list-wrapper {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffffed;
        transform: translateX(110vw);
        -webkit-transform: translateX(110vw);
        -moz-transform: translateX(110vw);
        -ms-transform: translateX(110vw);
        -o-transform: translateX(110vw);
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .nav-list-wrapper.show {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    .nav-list-header {
        display: flex;
        padding: .5rem 2rem;
        justify-content: end;
        background-color: #ffffffce;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        overflow: auto;
        max-height: 90vh;
        padding: 0 2.5rem;
    }

    .nav-item-menu {
        overflow-y: hidden;
        height: 0;
        transition: .4s;
        -webkit-transition: .4s;
        -moz-transition: .4s;
        -ms-transition: .4s;
        -o-transition: .4s;
    }

    .nav-item-menu.show {
        height: auto;
        padding: 1rem 0 0;
    }
}

@media (min-width: 996px) {

    .nav-item-menu {
        z-index: 100;
        position: absolute;
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        background-color: #fff;
        display: none;
    }

    .nav-item.has-menu:hover .nav-item-menu {
        display: block;
    }

    .toggle-nav-list {
        display: none;
    }

    .nav-item:last-of-type {
        padding-inline-end: 0;
    }

}


/***********************************************
************************************************
            HOME STYLES
************************************************
***********************************************/


/*******************************
********* SLIDER STYLES ********
*******************************/

.home-single-slide {
    padding: var(--section-pd);
    min-height: 620px;
    background-size: cover;
}

.home-single-slide .overlay-box {
    background: linear-gradient(to right top, var(--main-dark-color), #00000000);
    /* opacity: 0.7; */
}

.home-single-slide .single-slide-content {
    position: relative;
    z-index: 20;
    height: 100%;
    padding: 8rem 8rem 3rem;
    display: flex;
    align-items: center;
    color: #fff;
}


.home-single-slide .title {
    font-size: 4.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.slider-section .owl-nav {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.slider-section .owl-nav .owl-prev,
.slider-section .owl-nav .owl-next {
    background: none;
    font-size: 67px;
    color: rgba(255, 255, 255, 0.603);
}

.slider-section .owl-nav .owl-prev:hover,
.slider-section .owl-nav .owl-next:hover {
    background: none;
    color: #fff;
}

.slide-btns {
    margin-top: 1rem;
}


.contact-tape {
    padding: 1.5rem 0;
    background: var(--main-dark-color);
    color: #fff;
}


@media (max-width: 996px) {

    .home-single-slide .single-slide-content {
        padding: 13rem 3rem 3rem;
    }

    .home-single-slide {
        min-height: 500px;
        height: 550px;
    }

    .home-single-slide .title {
        font-size: 3rem;
    }

    .contact-tape p {
        margin-bottom: 1rem;
    }

}

/***********************************************
************************************************
            ABOUT ME STYLES
************************************************
***********************************************/

.about-section .bg-text {
    color: #2424240a;
}

.about-items {
    display: flex;
    /* padding-top: 2rem; */
}

.about-item {
    padding: 2.5rem;
    text-align: center;
    flex: 0 0 33%;
    box-shadow: 0 0 2px 2px #f3f3f3;
    position: relative;
    overflow: hidden;
    transition: .3s;
    background-color: #f9f9f9;
    min-height: 170px;
}

.about-item img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    max-width: none;
}

.about-item i {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.about-item:hover {
    background: var(--main-dark-opacity-color);
    color: #fff;
}

.about-item:hover img {
    opacity: 1;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
}

@media (max-width: 996px) {
    .about-items {
        flex-wrap: wrap;
    }

    .about-item {
        flex: 0 0 100%;
    }
}


/***********************************************
************************************************
            COUNTERS STYLES
************************************************
***********************************************/
.counters-section {
    background-color: var(--main-dark-opacity-color);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.counters-section::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--main-dark-opacity-color);
    z-index: 0;
}

.counter-item {
    text-align: center;
    color: #fff;
}

.counter-item .icon {
    font-size: 1.8rem;
}

.counter-item .count {
    font-size: 3.2rem;
    font-weight: bold;
}

.counter-item .count::after {
    content: '+';
    font-size: .8em;
}


.counter-item .title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 996px) {
    .counter-item {
        margin-bottom: 2rem;
    }
}


/***********************************************
************************************************
            SERVICES STYLES
************************************************
***********************************************/
.service-items .service-item.odd .service-item-content {
    padding-bottom: 5rem;
    margin-bottom: -4rem;
}

.service-items .service-item.even .service-item-content {
    padding-top: 5rem;
    margin-top: -4rem;
}

.service-item {
    text-align: center;
    margin-bottom: 3rem;
}

.service-item-content {
    background-color: #ddd;
    padding: 1rem 1rem 2rem;
}

.service-item img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 11rem;
    height: 11rem;
    border: .7rem solid #fff;
    background-color: #fff;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.service-item:hover img {
    border-color: var(--main-dark-color);
}

.service-item .title {
    color: var(--main-dark-color);
    padding: .5rem 1rem;
    font-size: 1.3rem;
}


.service-item .desc {
    padding: .7rem 0;
}

.service-item-list {
    list-style: none;
}

.service-item-list li {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* 
.service-item-list li::before {
    content: '';
    display: inline-block;
    width: .4rem;
    height: .4rem;
    background-color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
} */

.service-item-list li a {
    transition: .3s;
    padding-inline-start: 1rem;
}

.service-item-list li a:hover {
    transform: translateX(1rem);
    -webkit-transform: translateX(1rem);
    -moz-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    -o-transform: translateX(1rem);
}

@media (max-width: 996px) {
    .service-item {
        margin-bottom: 2rem;
    }
}

/***********************************************
************************************************
            SUBSERVICES STYLES
************************************************
***********************************************/
.subservice-item {
    min-height: 22rem;
    background-size: 50%;
    /* color: #fff; */
    position: relative;
    /* text-align: center; */
}

.subservice-item .overlay-box {
    /* background: linear-gradient(to right, #a83128bd 50%, transparent 50%, transparent); */
    z-index: 1;
    width: 50%;
}

.subservice-item.odd .overlay-box {
    /* background: linear-gradient(to left, #a83128bd 50%, transparent 50%, transparent); */
    right: 0;
    left: auto;
}

.subservice-item-content {
    padding: 4rem 5rem;
    position: relative;
    z-index: 2;
}

.subservice-item-content .title {
    margin-bottom: 1rem;
}

/* 
.subservice-item-content::before{
    content: '\f100';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14rem;
} */

.subservice-item .title {
    font-size: 1.5rem;
}


/***********************************************
************************************************
            PROJECTS STYLES
************************************************
***********************************************/

.projects-section {
    background: #ececec;
}

.project-item {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* flex-direction: column; */
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}


.project-item:hover a {
    color: var(--main-dark-color);
}

.project-img-wrapper {
    width: 22rem;
    height: 22rem;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: .3rem solid var(--main-dark-color);
    transition: .3s;
}

.project-item-text {
    padding: 3rem 0;
}

.project-item-text .title {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    /* padding: .2rem 0; */
}

.project-num {
    font-weight: 900;
    font-size: 13.7rem;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-align: center;
}


@media (max-width: 996px) {
    .project-item {
        text-align: center;
    }
}

/***********************************************
************************************************
            CLIENT STYLES
************************************************
***********************************************/

.clients-section .owl-item {
    height: 100%;
}

.clients-section img {
    border: 1px solid #ddd;
    padding: 1rem;
}

/***********************************************
************************************************
            CONTACT STYLES
************************************************
***********************************************/

.contact-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background: #000;
}

.contact-section .section-content {
    padding: 4rem;
    margin-top: -10rem;
    background-color: #fff;
    /* box-shadow: 0 0 10px 3px #0a0a0a; */
}

.form-contact {
    background-color: #f5f5f5;
    padding: 2rem 1.5rem;
}

.field-item {
    margin-bottom: 1.5rem;
}

.field-item label {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-bottom: .3rem;
}


.field-item .field-input {
    width: 100%;
    padding: .2rem .7rem;
    border: none;
    border-bottom: 0.3rem solid var(--main-dark-color);
    border-radius: .2rem;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
}

.contact-list {
    list-style: none;
    margin: 1rem 0;
    margin-top: 3rem;
}

.contact-list i {
    width: 3rem;
    font-size: 1.2rem;
}

.contact-list .contact-item {
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.quote-parag {
    position: relative;
    margin-top: 2rem;
}

.quote-parag::before {
    content: '';
    display: block;
    width: 4rem;
    height: .2rem;
    background-color: var(--main-dark-color);
    margin-bottom: 1rem;
}

.text-error {
    color: red;
}

.alert {
    padding: 0.7rem 1rem;
    background-color: #ffb6b6;
    border-radius: .7rem;
    margin-bottom: 1rem;
    border: 1px solid red;
    text-align: center;
}


@media (max-width: 996px) {
    .contact-desc {
        padding-top: 2rem;
    }

    .contact-section .section-content {
        padding: 3rem 1.5rem;
        margin-top: -9rem;
    }

    .contact-section .section-header {
        margin-bottom: 1rem;
    }

    .contact-section .section-title {
        /* margin-top: 2.4rem; */
        margin-bottom: 1rem;
    }
}

/***********************************************
************************************************
         PAGE FOOTER STYLES
************************************************
***********************************************/
.page-footer {
    color: #fff;
    background: #000;
    padding: 3rem 0;
    text-align: center;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-list-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 996px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .text-wrapper {
        order: 2;
    }
}


/***********************************************
************************************************
         SOCIAL LIST STYLES
************************************************
***********************************************/

.social-list-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}


.social-list {
    display: flex;
    gap: .7rem;
    list-style: none;
}

.social-item i {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-block;
}


@media (max-width: 996px) {

    .social-list-wrapper {
        order: 1;
        margin: 1.5rem 0;
    }
}


/***********************************************
************************************************
                    PAGE
************************************************
***********************************************/

.page-inner-header {
    background-image: linear-gradient(var(--main-dark-color), #fff);
    padding: 16rem 0 4rem;
    text-align: center;
}

.page-inner-header .overlay-box {
    background-image: linear-gradient(var(--main-dark-opacity-color), #fff);
    z-index: 1;
}

.page-title {
    padding: 1rem 0;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}


/***********************************************
************************************************
            CRUSHERS STYLES
************************************************
***********************************************/
.crusher-items {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.crusher-item {
    text-align: center;
    margin-bottom: 1rem;
    flex: 0 0 15%;
}

.crusher-item img {
    width: 5.5rem;
    height: 5.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: .2rem solid var(--main-dark-color);
}

.crusher-title {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.crusher-title span {
    background-color: var(--main-dark-color);
    padding: 0 2rem;
    color: #fff;
}

@media (max-width: 996px) {
    .crusher-item {
        flex: 0 0 45%;
    }
}

/***********************************************
************************************************
            SPARE PARTS STYLES
************************************************
***********************************************/
.spare_part-items {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.spare_part-item {
    text-align: center;
}

.spare_part-item img {
    width: 7rem;
    height: 7rem;
    margin-bottom: 1rem;
}

@media (max-width: 996px) {
    .spare_part-item {
        margin-bottom: 3rem;
    }
}


/***********************************************
************************************************
            MACHINES STYLES
************************************************
***********************************************/


.machine-item {
    display: flex;
    border: .1rem solid #ddd;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    height: 100%;
}

.machine-item-half {
    width: 50%;
    flex: 0 0 50%;
}

.machine-item-half img {
    max-width: 100%;
    min-height: 300px;
}

.machine-item-content {
    padding: 2rem 1rem 1rem 1.5rem;
}

.machine-item-title {
    margin-bottom: .3rem;
    font-size: 1.3rem;
}

.machine-item-content>p {
    margin-top: .3rem;
}

.machine-item img {
    height: 100%;
}

@media (max-width: 996px) {
    .machine-item {
        display: block;
    }

    .machine-item img {
        width: 100%;
    }

    .machine-item-half {
        width: 100%;
    }
}


/***********************************************
************************************************
            PRODUCT CATEGORY STYLES
************************************************
***********************************************/

.products-section {
    position: relative;
    background-image: url('../imgs/logo.webp');
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 150px;
    background-color: #0000007e;
}

.products-section::after {
    content: '';
    position: absolute;
    top: 150px;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 2;
}

.products-section .section-header {
    padding-top: 0;
    position: relative;
    z-index: 10;
}

.products-section .section-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 50px;
}

.products-section .container {
    position: relative;
    z-index: 10;

}

.category-item {
    text-align: center;
    margin-bottom: 3rem;
}

.category-item-content {
    background-color: #ddd;
    padding: 1rem 1rem 2rem;
}

.category-item img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 5rem;
    height: 5rem;
    border: .7rem solid #fff;
    background-color: #fff;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.category-item:hover img {
    border-color: var(--main-dark-color);
}

.category-item .title {
    color: var(--main-dark-color);
    padding: .5rem 1rem;
    font-size: 1.3rem;
}

.category-item .desc {
    padding: .7rem 0;
}

.category-item-list {
    list-style: none;
}

.category-item-list li {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

/* 
.service-item-list li::before {
    content: '';
    display: inline-block;
    width: .4rem;
    height: .4rem;
    background-color: #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
} */

.category-item-list li a {
    transition: .3s;
}

.category-item-list li a:hover {
    transform: translateX(1rem);
    -webkit-transform: translateX(1rem);
    -moz-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    -o-transform: translateX(1rem);
}

@media (max-width: 996px) {
    .category-item {
        margin-bottom: 2rem;
    }
}

.product_category-item {
    border: .1rem solid #ddd;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.product_category-item:hover {
    border-color: var(--main-dark-color);
}

.product_category-item a {
    display: block;
}

.product_category-item .title {
    font-size: 1.2rem;
    margin-bottom: .1rem;
}

.product_category-item img {
    max-height: 18rem;
    width: 100%;
    margin-bottom: 1rem;
}

/***********************************************
************************************************
        CATEGORY SPECIFICATION STYLES
************************************************
***********************************************/
.specification-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.specification-item .content {
    width: 100%;
}

.specification-item img {
    max-width: 100vw;
    width: 300px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.specification-item:nth-child(even) img {
    order: 2;
}

.specification-item .title {
    font-size: 1.5em;
    color: var(--main-dark-color);
    margin-bottom: 10px;
    position: relative;
}

.specification-item .title::before {
    display: block;
    content: '';
    width: 50px;
    height: 5px;
    background-color: var(--main-dark-color);
    margin-bottom: 5px;
}


@media (max-width: 996px) {
    .specification-item {
        display: block;
    }

    .specification-item img {
        width: 100%;
    }
}


/***********************************************
************************************************
            PRODUCTS STYLES
************************************************
***********************************************/
.product-items {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.product-item {
    text-align: center;
    margin-bottom: 3rem;
    flex: 0 0 15%;
}

.product-item img {
    width: 7.5rem;
    height: 7.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: .2rem solid var(--main-dark-color);
}

.product-item-lg {
    display: flex;
    text-align: start;
}

.product-item-lg .content {
    padding: 0 15px;
    flex: 0 0 55%;
}


.product-item-lg img {
    flex: 0 0 45%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: .2rem solid var(--main-dark-color);
}

.product-type-title {
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-type-title span {
    background-color: var(--main-dark-color);
    padding: .3rem 2rem;
    margin-bottom: 1rem;
}

.product-item .get-qoute-link,
.product_category-item .get-qoute-link {
    padding: .3rem 1.2rem;
    opacity: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    width: max-content;
    margin: auto;
    margin-top: 1rem;
}

.product-item:hover .get-qoute-link,
.product_category-item:hover .get-qoute-link {
    opacity: 1;
}

.products-quality-box {
    border: 1px solid #979797;
    text-align: center;
    max-width: 700px;
    margin: auto;
    padding: 1em;
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    -ms-border-radius: .5em;
    -o-border-radius: .5em;
}


@media (max-width: 996px) {
    .product-item-lg {
        display: block;
    }
 
    .product-item-lg img {
        width: 100%;
    }

    .product-item-lg .content {
        padding: 15px 0;
    }

}