/*
 Adamz Company / 2023.08
 By Eng. Hanan Al-Slaiman
=================================

    |
    |__ PUBLIC STYLES
    |__ CUSTOM STYLES
    |__ HEADER PAGE STYLES  
    |    |__ NAVBAR STYLES
    |__ HOME  
    |__ ABOUT
    |__ COUNTERS 
    |__ TESTIMONIALS
    |__ CONTACT
    |__ FOOTER


*/

/***********************************************
************************************************
                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 {
    width: 48px;
    height: 48px;
    border: 2px solid #000;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    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: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid;
    border-color: var(--main-color) transparent;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/***********************************************
************************************************
         OWL DOTS STYLES
************************************************
***********************************************/

.owl-dots {
    display: flex;
    gap: .7rem;
}

.owl-dot span {
    width: 1.1rem;
    height: 1.1rem;
    border: 1px solid #ddd;
    display: block;
    cursor: pointer;
}

.owl-dot.active span {
    border: none;
    background-color: var(--main-color);
}

.btn-totop {
    position: fixed;
    z-index: 999;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    padding: 0;
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 0 .1px .7px #9b9b9b70;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.btn-totop.show {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

/***********************************************
************************************************
         SOCIAL LIST STYLES
************************************************
***********************************************/
.social-list {
    display: flex;
    gap: .2rem;
    list-style: none;
    font-size: 1.2rem;
}

.social-item i {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    color: #000;
    display: inline-block;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}



/***********************************************
************************************************
         SOCIAL LIST STYLES
************************************************
***********************************************/
.search-form {
    position: relative;
}

.search-form input {
    padding: .2rem 1rem;
    border: none;
    background: var(--grey-light-color);
    padding-inline-end: 2.2rem;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.search-form input:focus {
    border-color: var(--grey-dark-color);
}

.search-form::after {
    content: '\f002';
    position: absolute;
    right: .7rem;
    top: 25%;
    z-index: 2;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
}


@media (min-width: 997px) {
    .search-form input {
        width: 20rem;
    }

}

@media (max-width: 996px) {
    .search-wrapper {
        position: fixed;
        top: 0;
        z-index: 99999;
        left: 0;
        right: 0;
        padding: 2rem 1rem 1rem;
        background-color: #000000c7;
        box-shadow: 0 0 1px 1px #ddd;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        -o-transition: .3s;
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
    }

    .search-wrapper.show {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    .search-wrapper button {
        color: #fff;
        font-size: 1.7rem;
    }

    .search-wrapper input {
        width: 100%;
        background-color: #fff;
    }
}

/***********************************************
************************************************
                HEADER PAGE STYLES
************************************************
***********************************************/

.page-header {
    z-index: 999;
    background-color: #ffffffa2;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.topbar {
    background: #fff;
    z-index: 10;
    position: relative;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: .1rem solid #d2d2d2;
    padding: .7rem 0;
}

.topbar .social-list {
    justify-content: end;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: .5rem 0;
}

.logo-img {
    width: 14rem;
    min-width: 14rem;
}

.topbar .social-item:hover i {
    color: var(--main-color);
}

@media (min-width: 996px) {
    .topbar .social-list {
        margin-bottom: 1rem;
    }
}

@media (max-width: 996px) {
    .topbar {
        position: static;
    }

    .logo-img {
        width: 10rem;
        min-width: 10rem;
    }

    .topbar-end {
        display: flex;
        justify-content: start;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

    .page-header {
        background-color: #fff;
    }
}

/***********************************************
                NAVBAR STYLES
***********************************************/
.navbar {
    position: relative;
    user-select: none;
}

.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;
    text-transform: uppercase;
}

.nav-item {
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.nav-item .nav-item-link {
    padding: .8rem 1rem;
    white-space: nowrap;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    display: block;
    text-align: center;
}

.nav-item:hover>.nav-item-link {
    color: #fff;
    background-color: var(--main-light-color);
}

.nav-item.active>.nav-item-link {
    color: #fff;
    background-color: var(--main-color);
}



.nav-item .nav-menu {
    list-style: none;
    background-color: #fff;
    position: absolute;
    min-width: 200px;
    display: none;
    box-shadow: 0 3px 4px .1px #b8b8b8;
    border-top: .3rem solid var(--main-color);
}

.nav-item .nav-menu .nav-item {
    font-size: 1.15rem;
}

.nav-item .nav-menu.menu-level-1 {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}


.nav-item .nav-menu.menu-level-2 {
    left: 100%;
    top: 0;
}

.has-menu-level-2>.nav-item-link::after {
    content: "\f105";
}

.toggle-nav-list {
    /* padding: 1rem; */
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
}

.nav-list-header {
    display: none;
}

@media (max-width: 996px) {
    .navbar-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .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;
    }

    .nav-item {
        /* padding: 1rem 1.5rem; */
    }


}

@media (min-width: 996px) {
    .has-menu-level-1>.nav-item-link::after {
        content: "\f107";
    }

    .has-menu>.nav-item-link::after {
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 14px;
        font-size: inherit;
        padding-inline-start: .3rem;
    }

    .nav-item:hover>.nav-menu {
        display: block;
    }

    .toggle-nav-list {
        display: none;
    }
}



/***********************************************
************************************************
            HOME STYLES
************************************************
***********************************************/



/*******************************
********* SLIDER STYLES ********
*******************************/
.slider-section {
    position: relative;
}

.home-single-slide {
    min-height: 220px;
    display: flex;
    position: relative;
    padding-bottom: 4.5rem;
}

.home-single-slide .single-slide-content {
    flex: 0 0 55%;
    position: relative;
    z-index: 20;
    color: #000;
    padding: 0 3.5rem 0 0;
    border-bottom-right-radius: 3rem;
    background-color: #fff;
}

.home-single-slide .title {
    font-size: 4.3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 500;
}

.home-single-slide .title::after {
    content: '';
    display: block;
    height: .13rem;
    width: 50%;
    background-color: #bdbdbd;
    margin-top: 1.5rem;
}

.home-single-slide .slide-btns {
    margin-top: 1rem;
}

.home-single-slide .img-slide {
    position: absolute;
    right: 0;
    top: 0;
    width: 55% !important;
    height: 100%;
}


.home-slides-dots-wrapper {
    position: absolute;
    bottom: 4rem;
    z-index: 2;
}


.slider-section .btn-next {
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
    padding: 0;
    line-height: 4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 44%;
    color: #fff;
    z-index: 5;
    background-color: var(--main-opacity-color);
}

@media (max-width: 768px) {
    .home-single-slide {
        flex-wrap: wrap;
        padding-bottom: 0.5rem;
    }

    .home-single-slide .single-slide-content {
        padding: 0 0 2rem 0;
        flex: 0 0 100%;
    }

    .home-single-slide .title {
        font-size: 3.3rem;
    }

    .home-single-slide .img-slide {
        width: 100% !important;
        position: relative;
        top: -30px;
    }

    .slider-section .btn-next {
        top: 70%;
        right: 9%;
    }
}

/***********************************************
************************************************
            CLIENTS STYLES
************************************************
***********************************************/

.clients-section {
    background-color: #f4f4f4;
}

/***********************************************
************************************************
            ABOUT ME STYLES
************************************************
***********************************************/


.about-item {
    text-align: center;
}

.about-item img {
    width: 5rem;
    height: 5rem;
    padding: .8rem;
    background-color: var(--grey-light-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}


.about-item:hover img {
    background-color: var(--grey-dark-color);
}

.about-item .title {
    font-size: 1.5rem;
    margin: 1rem 0 .5rem;
    transition: .3s;
}

.about-item .desc {
    color: #5e5e5e;
}

@media (max-width: 996px) {
    .about-item {
        margin-bottom: 3rem;
    }
}


/***********************************************
************************************************
            SERVICES STYLES
************************************************
***********************************************/

.services-section {
    background-color: #222;
    color: #f1f1f1;
    padding-bottom: 1rem;
}

.services-section .section-header .desc {
    color: #e7e7e7;
}

.services-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 22rem;
    width: 22rem;
    max-width: 100%;
    /* margin: auto; */
    color: #000;
    margin-bottom: 5rem;
}

.service-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--main-opacity-color);
    z-index: 2;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.service-item:hover::before {
    /* background-color: var(--main-dark-opacity-color); */
}

.service-item .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 2.8rem;
    display: flex;
    justify-content: end;
    flex-direction: column;
    color: #000;
}

.service-item img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    min-width: 100%;
    z-index: 1;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.service-item:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.service-item .title {
    font-size: 2.2rem;
    color: #000;
    text-shadow: 0 0 5px #fff;
}

@media (max-width: 996px) {
    .service-item {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .service-item {
        width: 100%;
    }
}


.subservice-item {
    position: relative;
    overflow: hidden;
    height: 18rem;
    width: 18rem;
    max-width: 100%;
    /* margin: auto; */
    color: #000;
    margin-bottom: 5rem;
}

.subservice-item .title {
    font-size: 1.7rem;
}

/***********************************************
************************************************
            TESTIMONIALS STYLES
************************************************
***********************************************/

.testimonial-item {
    background-color: var(--grey-dark-color);
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    -ms-border-radius: .5em;
    -o-border-radius: .5em;
    padding: 1.5em;
    position: relative;
    margin-bottom: 3.5rem;
}

.testimonial-item .person {
    display: flex;
    align-items: center;
    gap: 1em;
}

.testimonial-item .person img {
    width: 4em;
    height: 4em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial-item .person .job {
    font-size: .85em;
}

.testimonial-item .quote {
    margin: .3rem 0 1.7rem;
    position: relative;
    font-size: 1.2em;
}

.testimonial-item .quote::before {
    content: '\f10d';
    color: var(--main-color);
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 1.4em;
    display: block;
    margin: 1rem 0;
}

.testimonial-item::after {
    content: '\f10e';
    position: absolute;
    color: var(--main-color);
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 3em;
    display: block;
    right: 10%;
}

#testimonials-slides-dots {
    justify-content: center;
}

/***********************************************
************************************************
            COUNTERS STYLES
************************************************
***********************************************/

.counters-section {
    background: url('../imgs/numbers.jpg');
    background-attachment: fixed;
    position: relative;
    color: #fff;
}

.counters-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000de;
    z-index: 1;
}

.counters-section .section-content {
    position: relative;
    z-index: 3;
}

.counter-item {
    text-align: center;
}

.counter-item .icon {
    font-size: 1.2em;
}

.counter-item .count {
    font-size: 3.7em;
}

.counter-item .count::after {
    content: '+';
    font-size: .8em;
}

.counter-item .desc {
    font-size: 1.2em;
}

@media (max-width: 996px) {
    .counter-item {
        margin-bottom: 2.5rem;
    }
}

/***********************************************
************************************************
            BLOG STYLES
************************************************
***********************************************/

.blog-item .content {
    /* padding: .5rem 0; */
}

.blog-item img {
    height: 17em;
    width: 100%;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.blog-item:hover img {
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
}

.blog-item-head {
    display: flex;
    justify-content: space-between;
    margin: .3em 0 1em;
}

.blog-item-head .category {
    padding: 0 2em;
    background-color: var(--grey-dark-color);
}

.blog-item .title {
    color: var(--main-color);
    font-size: 1.3em;
    margin-bottom: .5em;
}

.blog-item .desc {
    color: #5e5e5e;
}

@media (max-width: 996px) {
    .blog-section {
        padding-bottom: 4rem;
    }

    .blog-item {
        margin-bottom: 3rem;
    }
}

/***********************************************
************************************************
            ENQUIRE STYLES
************************************************
***********************************************/
.enquire-section {
    padding-top: 3rem;
}

.form-field-wrapper {
    margin-bottom: 1em;
}

.form-field {
    position: relative;
}

.form-field .field-input {
    background-color: var(--grey-dark-color);
    width: 100%;
    padding: .3em .5em;
    border: none;
    border: .2em solid var(--grey-dark-color);
}

.form-field label {
    color: #424242;
    margin-bottom: .3rem;
    display: block;
}

.form-field .field-input:focus {
    /* border-color: var(--main-color); */
    background-color: var(--grey-light-color);
}

/* .form-field .field-input+label {
    position: absolute;
    left: .5em;
    top: -.8rem;
    font-size: .85em;
    color: #797979;
    padding: 0 .3em;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    background-color: #fff;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    user-select: none;
    pointer-events: none;
} */
/* 
.form-field .field-input:placeholder-shown+label,
.form-field .field-input:empty+label {
    top: 50%;
    font-size: 1em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: none;
    border-color: transparent;
} */


/* .form-field .field-input:focus+label {
    top: -.8rem;
    transform: none;
    background-color: #fff;
    font-size: .85em;
} */

.contact-items {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    gap: 2em;
    align-items: center;
    margin-bottom: 1em;
}

.contact-item .icon {
    width: 1.5em;
    height: 1.5em;
    min-width: 1.5em;
    text-align: center;
    font-size: 1.5em;
    line-height: 1.5em;
    display: block;
    background-color: var(--grey-dark-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.map-container iframe {
    height: 280px;
}

@media (max-width: 996px) {
    .contact-form {
        margin-bottom: 2.5rem;
    }

    .enquire-section {
        padding-top: 1.2rem;
    }
}

/***********************************************
************************************************
            FOOTER STYLES
************************************************
***********************************************/
.page-footer {
    background-color: #222;
}

.footer-top-wrapper {
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding: 2em 0;
}

.footer-top .links ul {
    display: flex;
    list-style: none;
    gap: 2em;
}

.footer-top .social-list i {
    color: var(--main-color);
}

.footer-bottom {
    text-align: center;
    background-color: #fff;
    padding: 1em 0;
}

@media (max-width: 768px) {
    .footer-top-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-top-wrapper .links {
        margin-bottom: 1.2rem;
    }
}



/***********************************************
************************************************
       ITEMS  PAGE
************************************************
***********************************************/
.page-inner-header-wrapper {
    background: var(--main-opacity-color);
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.page-menu-title {
    position: relative;
    width: max-content;
}

.page-menu-title::before {
    content: '';
    background-color: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 90%;
    height: 4px;
    z-index: 0;
}

.page-menu-title span {
    position: relative;
    z-index: 1;
}

.page-title {
    padding: 1rem 0 0;
    font-size: 2.35rem;
    text-shadow: 0 0 5px #fff;
}


/***********************************************
************************************************
       DETAILS  PAGE
************************************************
***********************************************/
.details-page {
    min-height: 450px;
}

.details-page img {
    float: right;
    max-height: 300px;
    margin-inline-start: 2rem;
    margin-bottom: 2rem;
}

.details-page .title {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.breadcrumbs {
    margin-bottom: .5rem;
}