@font-face {
    font-family: 'Cairo-Regular';
    src: url('../font/Cairo-Regular.ttf');
}

@font-face {
    font-family: 'Cairo-SemiBold';
    src: url('../font/Cairo-SemiBold.ttf');
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
}

body {
    font-family: 'Cairo-Regular';
}

ul {
    list-style: none
}

li {
    list-style: none
}

a {
    text-decoration: none;
}


.s128.active {
    opacity: 1;
    visibility: visible;
}

.s128 {
    position: fixed;
    z-index: 5;
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transition: linear .8s;
    width: 100%;
    height: 100%;
    right: 0;
    left: 0;
    top: 0;
}

.s128 {
    z-index: 99999;
}

.s128 form .inner-form .row .input-field.first input {
    padding: 10px 50px 10px 60px;

}

.s128 form .inner-form .row .input-field.first .clear svg.inner-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}


@media (min-width: 992px) {

    .main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    background: #7b5e3f;
    margin:10px 0;
    }

    .nav-list {
    display: flex;
    margin: 0 auto;
    list-style: none;
    font-family: 'Cairo-Regular';


    }

    .nav-list > .link {
        display: flex;
        align-items: center;
        position: relative;
    }

    .has_sub_menu {
        width: calc(100% - 25px);
    }

    .has_sub_menu ~ i {
        width: 15px;
        display: inline-block;
        text-align: center;
        color: #c2a875;
        margin-left: 5px;
    }

    .nav-list > .link > a {
    display: block;
    color: #fff;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    padding: 20px;
    transition: linear .4s;
    }
    .nav-list > .link > a:hover
{
    color: #483737;
            background: #c2a875;
}
    .nav-list > .link:hover a,
    .nav-list > .link.active a {
        color: #000;
    }

    .sub-list {
        background-color: #fff;
        padding: 10px 20px 0;
        list-style: none;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        position: absolute;
        top: 100%;
        min-width: 230px;
        display: none;
        z-index: 4;
        border: 2px solid #867e61;
        border-radius: 3px;
    }

    .sub-list li {
        position: relative;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cacaca;
    }
    .sub-list li:last-of-type{
        margin-bottom: 0px;
    }

    .sub-list li a {
        display: block;
        width: 100%;
        position: relative;
        color: #000;
        text-align:center;
    }

    .sub-list li a.has_sub_menu {
        width: calc(100% - 30px);
        display: inline-block;
    }

    .sub-list li:hover {
        border-bottom: 1px solid #c2a875;
    }

    .sub-list li a:hover {
        color: #c2a875;
    }

    .sub-list li:last-child > a {
        margin-bottom: 0;
    }

    .sub-list .sub-link {
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        transition: all .5s linear;
    }

    .sub-list .sub-link:hover {
        background-color: #c2a875;
    }

    .sub-list .sub-link:last-child {
        border-bottom: 0;
    }

    .nav-list .link:hover > .sub-list {
        display: block;
    }

    .sub-list .sub-list {
        top: 0;
    }

    .nav-list .link .sub-list .sub-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list .link .sub-list .sub-link:hover > .sub-list {
        display: block;
    }

    .nav-btn,
    .mobile-nav-list {
        display: none;
    }

    /**/
    .nav-list > .link {
        text-transform: capitalize;
        margin-right: 30px;
        margin-left: 45px;
        font-size: 15px;
        font-weight: bolder;


    }

    .has_sub_menu {
        margin-right: 5px;
    }

    .sub-list {
        left: 0;
    }

    .sub-list li a.has_sub_menu {
        margin-left: 5px;
    }

    .sub-list .sub-list {
        left: 100%;
    }

}

@media (max-width: 992px) {
    .nav-list {
        display: none;
    }


    .main-nav {
        /*display: flex;*/
        /*flex-wrap: wrap;*/
        /*align-items: center;*/
        /*justify-content: space-between;*/
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: #c2a875;
        border-radius: 100%;
        color: #fff;
        font-size: 20px;
        display: block;
    }

    .mobile-nav-list {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        height: 100%;
        width: 300px;
        background-color: #f2f2f2;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        transform: translateX(100%);
        transition: all .5s linear;
    }

    .mobile-nav-list .link {
        font-size: 16px;
        padding: 10px 15px;
        position: relative;
    }

    .mobile-nav-list .link a {
        color: #000;
        display: block;
        width: 100%;
    }

    .mobile-nav-list .link a.has_sub_menu {
        display: inline-block;
        width: calc(100% - 40px);
    }

    .mobile-nav-list .link a:hover,
    .mobile-nav-list .link.active a {
        color: #fff;
    }

    .mobile-nav-list .link i {
        color: #fff;
        background-color: #c2a875;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .link i.open {
        transform: rotate(180deg);
    }

    .sub-list {
        box-shadow: none;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
    }

    .sub-list.open {
    }

    .sub-list a {
        display: block;
        position: relative;
    }

    .sub-list .sub-link {
        border: 0;
        padding: 5px 20px;
        font-size: 14px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        white-space: nowrap;
    }

    .sub-list .sub-list a {
        display: block;
        position: relative;
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 4;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .5s ease-in-out;
    }

    /**/
    .mobile-nav-list {
        right: 0;
    }

    .mobile-nav-list .link a.has_sub_menu {
        margin-left: 5px;
    }

    .sub-list .sub-list a {
        padding-right: 15px;
    }

    .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }
}


.top {
    padding-top: 25px;
}

.rtl-top {
    float: right;
    padding-top: 25px;
}

.rtl-top a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    border: 1px dotted #c2a875;
    background: #c2a875;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    display: inline-block;
    transition: all ease-in-out .5s;
}

.rtl-top a:hover {
    border: 1px dotted #56423a;
    background: #56423a;
    transition: all ease-in-out .5s;

}

.item-content {
    padding: 20px 60px 40px 25px;
    color: #000;
    background-color: rgba(110, 120, 131, .85);
    position: absolute;
    top: 165px;
    left: 140px;
    width: 500px;
    border-radius: 10px;
}

.item-content .slid-tit {
    direction: ltr;
    color: #fff;
    font-family: 'Cairo-SemiBold';
}

.item-content .slid-pra {
    direction: ltr;
    color: #fff;
    padding-top: 20px;
    text-align: justify;
    font-size: 13px;

}

.item-content .slid-link {
    direction: ltr;
    padding-top: 30px;

}

.item-content .slid-link a {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #56423a, #c2a875);
    padding: 5px 35px;
    border-radius: 25px;
    font-size: 12px;

}

.main-slide .item {
    position: relative;
}

.main-slide .item img {
    height: 500px;
}

.main-slide .owl-nav .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    background: #c2a875;
    font-size: 18px;
    color: #fff;
    top: 50%;
    left: 2%;
    transition: all ease-in .5s;

}

.main-slide .owl-nav .owl-prev {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    border-radius: 100%;
    background: #c2a875;
    color: #fff;
    top: 50%;
    right: 2%;
    transition: all ease-in .5s;

}

.main-slide .owl-nav .owl-next:hover {
    background: #56423a;
    transition: all ease-in .5s;

}

.main-slide .owl-nav .owl-prev:hover {
    background: #56423a;
    transition: all ease-in .5s;

}


.who-us {
    padding: 50px 0 100px 0;
    background-image: url("../img/background.png");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: 55px;
    margin-bottom: 100px;

}

.main-tittle h1 {
    color: #c2a875;
    margin-left: 35px;
    margin-bottom: 100px;
}

.main-tittle-2 span {
    color: #56423a;
}

.main-tittle {
    font-family: 'Cairo-SemiBold';
    position: relative;

}

.main-tittle:before {
    content: "";
    position: absolute;
    margin-right: 10px;
    border-bottom-right-radius: 45px;
    border-top-right-radius: 45px;
    height: 45px;
    width: 21px;
    background: #c2a875;
    display: inline-block;
    top: -10px;
}


.left-who-head {
    font-family: 'Cairo-SemiBold';
    margin-bottom: 15px;

}

.left-who-pra {
    font-family: 'Cairo-SemiBold';
    margin-bottom: 30px;
    text-align: justify;


}

.left-who-pra-link a {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #56423a, #c2a875);
    padding: 5px 40px;
    border-radius: 25px;
    font-size: 12px;

}

.rtl-who-img img {
    width: 590px;
    height: 370px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, .18);
    border-radius: 5px;
}


.services {
    background-image: url(../img/background-2.png); 
    width: 100%;
    height: auto;
    position: relative;
    padding: 70px 0;

}

.services .pic {
    position: absolute;
    top: 50%;
    left: 0;
    max-height: 420px;
    transform: translateY(-50%);

}

.ser-content h3 {
    display: table;
    font-size: 46px;
    padding: 100px 0;
    color: #fff;
}

.mid-ser {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 0;
    transition: all ease-in-out .5s;

}

.mid-ser img {
    height: 195px;
}

.proud {
    padding: 60px 0;
}

.mid-ser:hover {
    box-shadow: 3px 0 7px rgba(0, 0, 0, .2);
    transform: scale(1.03);
    transition: all ease-in-out .5s;
}

.mid-ser h5 {
    font-size: 17px;
    color: #c2a875;
    font-family: 'Cairo-SemiBold';
    transition: all ease-in-out .5s;


}

.mid-ser:hover h5 {
    transition: all ease-in-out .5s;
    color: #56423a;

}

.left-prod {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
}

.left-prod img {
    width: 350px;
    height: 520px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, .18);
    border-radius: 5px;
}

.rtl-prod {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
}

.rtl-prod img {
    width: 100%;
    height: 250px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, .18);
    border-radius: 5px;
}

.rtl-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    margin: 20px 0;
}

.rtl-2 img {
    width: 100%;
    height: 250px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, .18);
    border-radius: 5px;
}


.main-tittle-prod h1 {
    color: #c2a875;
    margin-left: 35px;

}

.main-tittle-prod-2 span {
    color: #56423a;
}

.main-tittle-prod {
    position: relative;
    font-family: 'Cairo-SemiBold';
    margin: 30px 0 80px;

}

.main-tittle-prod:before {
    content: "";
    position: absolute;
    margin-right: 10px;
    border-bottom-right-radius: 45px;
    border-top-right-radius: 45px;
    height: 45px;
    width: 21px;
    background: #c2a875;
    display: inline-block;
    top: -10px;
}


.main-tittle-clint h1 {
    color: #c2a875;
    margin-left: 35px;

}

.main-tittle-clint-2 span {
    color: #56423a;
}

.main-tittle-clint {
    position: relative;
    font-family: 'Cairo-SemiBold';
    margin: 70px 0;

}

.main-tittle-clint:before {
    content: "";
    position: absolute;
    margin-right: 10px;
    border-bottom-right-radius: 45px;
    border-top-right-radius: 45px;
    height: 45px;
    width: 21px;
    background: #c2a875;
    display: inline-block;
    top: -10px;
}

.clint {
    background-color: #f2f2f2;
    padding-bottom: 100px;
}

.sec-slider .item-img {
    background: #fff;
    width: 175px;
    height: 125px;
    text-align: center;
    display: table;
    margin: 0 auto;
    border-radius: 5px;

}

.sec-slider .item-img img {
    width: 90px;
    height: 90px;
    display: inline-block;
    margin-top: 20px;
}

.footer {
    background-color: #c2a875;
    background-image: url("../img/bg-footer.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    padding-bottom: 40px;
            position:relative;
}
.left-footer{
    padding: 100px 0 0 0 ;
}
.left-footer img {

}

.footer-content {
    padding-top: 50px;
}

.footer-content i {
    font-size: 50px;
    color: #56423a;
}

.footer-content h5 {
    color: #7b5e3f;
    font-weight: bold;

}

.footer-content a {
    color: #4a4033;
    font-size: 16px;
    font-weight: bold;

}

.footer-content .phone {
    transform: rotate(315deg);
}

.footer-all-content-2 {
    border-bottom: 1px solid #857752;
    padding-top: 190px;
    width: 90%;

}

.social {
    margin-top: 40px;
}

.social a i {
    background: #af8f5e;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    transition: all ease-in-out .5s;

    margin-right: 10px;
}

.social a:hover i {
    background: #56423a;
    transition: all ease-in-out .5s;

}

.end-footer {
    margin-top: 40px;
    float: right;

}

.end-footer h4 {
    color: #000;
}

.end-footer a {
    color: #56423a;
    transition: all ease-in-out .5s;

}

.end-footer a:hover {
    color: #7b5e3f;
    transition: all ease-in-out .5s;

}

.footer-back {
    display: none;
}


@media (max-width: 1024px) {
    .nav-list > .link {
        margin-left: 28px;
        font-size: 14px;
    }

    .mid-ser {

        margin: 120px 0;

    }

    .mid-ser img {
        width: 170px;
        height: 170px;

    }

    .ser-content h1 {
        margin: 195px auto;
        font-size: 40px;
    }

    .left-prod img {
        height: 375px;
        width: 260px;

    }

    .rtl-prod img {
        height: 160px;

    }

    .rtl-2 img {
        height: 195px;

    }

    .prod-content {
        padding-bottom: 35px;
    }

    .sec-slider .item-img {
        width: 135px;

    }

    .sec-slider .item-img img {
        width: 85px;
        height: 85px;
    }

    .clint {
        padding-bottom: 75px;
    }

    .main-tittle-clint {
        margin: 50px 0;

    }

    .left-footer img {
        height: 315px;

    }

    .who-us {
        margin-bottom: 75px;
        padding: 50px 0 50px 0;
        background-position-y: 45px;

    }

    .rtl-who-img img {
        width: 550px;
        height: 378px;
    }

    .services {
        padding: 5px 0;

    }

    .services .pic {
        max-height: 300px;
    }

    .ser-content h3 {
        display: table;
        font-size: 36px;
        color: #fff;
        padding: 175px 0;

    }
}

@media (max-width: 768px) {
    .wawawa i {
    position: fixed !important;
    top: 20% !important;
    left: 20px !important;
    z-index: 99999;
    font-size: 30px !important;
    color: #fff;
    background: linear-gradient(to right, #56423a, #857752);
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
    padding: 4px 0 0 0;
}
    .nummm_in a{
        text-align:left !important;
    }

    .nav-btn {
        background-color: #c2a875;
        margin: 20px 0;
    }

    .text-center {
        display: table;
        margin: 35px auto;
    }

    .mob-rtl-top {
        float: right;
        padding-top: 25px;
    }

    .mob-rtl-top a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 100%;
        border: 1px dotted #c2a875;
        background: #c2a875;
        text-align: center;
        color: #fff;
        margin-right: 10px;
        display: inline-block;
        transition: all ease-in-out .5s;
    }

    .main-slide .item img {
        height: 450px;
    }

    .item-content {
        padding: 20px 50px 30px 25px;
        width: 450px;
        top: 145px;

    }

    .who-us {
        background-image: none;
        padding: 0;

    }

    .main-tittle {
        padding-bottom: 50px;

    }

    .rtl-who-img img {
        width: 480px;
        height: 380px;
    }

    .rtl-who {
        display: table;
        margin: 35px auto;
    }

    .ser-content h1 {
        margin: 140px auto;
        font-size: 37px;
    }

    .mid-ser img {
        width: 135px;
        height: 135px;
    }

    .mid-ser {

        margin: 70px 0;
    }


    .social a i {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .footer {
        display: none;
    }

    .footer-back {
        display: block;
        position:relative;
    }

    .footer-back {
        background-color: #c2a875;
    }

    .left-footer-back img {
        display: table;
        margin: 40px auto;
        background-color: #fff;
        border-radius: 5px;
        padding: 30px;
    }

    .footer-back-content .social a i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        margin-right: 12px;
    }

    .footer-back .end-footer {
        display: table;
        margin: 10px auto;
        float: none;
    }

    .footer-back .footer-content {
        padding-top: 0;
        display: table;
        margin: 0 auto;
        text-align: center;

    }

    .footer-back .footer-content i {
        font-size: 25px;
    }

    .footer-content h5 {
        display: none;
    }

    .footer-content a {
        font-size: 10px;
        display: block;
        margin-top: 15px;
    }

    .footer-back .end-footer {
        text-align: center;
    }

    .footer-back .end-footer h4 {
        font-size: 14px;
    }

    .services .pic {
        max-height: 230px;
    }

    .ser-content h3 {
        display: table;
        font-size: 32px;
        color: #fff;
        padding: 130px 0;

    }
}

@media (max-width: 460px) {
    .rtl-top a {
        width: 33px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    .top-logo {
        margin-top: 10px;
    }

    .rtl-top {
        padding-top: 20px;

    }

    .nav-btn {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 12px;
    }

    .main-slide .item img {
        height: 275px;
    }

    .item-content .slid-tit {
        font-size: 18px;
    }

    .item-content .slid-pra {
        font-size: 8px;
    }

    .item-content .slid-link a {
        padding: 3px 20px;
        font-size: 8px;


    }

    .item-content {
        padding: 15px 30px 20px 10px;
        width: 220px;
        top: 75px;
        left: 75px;

    }

    .text-center img {
        width: 160px;
        height: 80px;
    }

    .main-slide .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .mobile-nav-list {
        width: 230px;

    }

    .main-slide .owl-nav .owl-prev {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .item-content .slid-link {
        direction: ltr;
        padding-top: 14px;
    }


    .ser-content h1 {
        margin: 76px auto;
        font-size: 25px;
    }

    .mid-ser img {
        width: 80px;
        height: 80px;
    }

    .rtl-prod img {
        height: 100px;
    }

    .rtl-2 img {
        height: 165px;
    }

    .left-prod img {
        height: 286px;
        width: 260px;
    }

    .footer-back-content {
        display: table;
        margin: 0 auto;
    }

    .left-prod img {
        width: 100%;
    }

    .social a i {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 10px;
        margin-right: 0px;

    }

    .left-footer img {
        height: 135px;
    }

    .footer-content {
        padding-top: 25px;
    }

    .footer-content i {
        font-size: 35px;
    }

    .footer-content h5 {
        font-size: 12px;
    }

    .footer-content a {
        font-size: 10px;

    }

    .footer-all-content-2 {
        padding-top: 153px;
        width: 95%;
    }

    .end-footer h4 {
        font-size: 10px;
    }

    .s128 form .inner-form .row .input-field.first input.isFocus {
        width: 80%;
    }

    .services .pic {
        display: none
    }

    .ser-content h3 {
        color: #7b5e3f;
        margin: 0 auto;
        font-size: 25px;
    }

    .mid-ser {
        margin: 20px 0;
        padding: 10px 0;
    }

    .mid-ser img {
        height: 75px;
    }

    .ser-content h3 {
        padding: 10px 0;
        font-size: 30px;
        text-align: center;

    }

    .mid-ser h5 {
        font-size: 12px;
        color: #c2a875;
    }

    .main-tittle-prod {
        margin: 30px 0 50px;

    }

    .proud {
        padding: 60px 0 30PX;

    }

    .rtl-prod img {
        margin-top: 25px;
    }
}





.loader {
    background: #74787e;
    background: radial-gradient(#74787e, #74787e);
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    animation:
            spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}
.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}
.loader-line-wrap:nth-child(1) { animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { animation-delay: -250ms; }

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes spin {
    0%, 15% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.img-1{
    width: 350px;
    height: 630px;
}
.img-2{
    width: 730px;
    height: 300px;
}
.img-3{
    width: 350px;
    height: 300px;
}
.img-4{
    width: 350px;
    height: 300px;
}
.prod-content img{
    display: inline-block;
    box-shadow: 0px 0px 8px 3px #d4d4d4;
    margin: 15px 0;
    border-radius: 5px;
}
.single-pages{
    padding: 70px 0;
}
.single-pages .top-side img{
    margin: 0 auto;
}
.single-pages p{
    margin: 20px 0;
    text-align: justify;
    line-height: 30px;
    color: #777777;
}
 .main-header{
    color: #c2a874;
    border-left: 3px solid #af8f5d;
    display: table;
    margin: 20px auto;
    padding: 10px;
}

.single-pages input[type=text]
{
    width: 100%;
    padding:10px;

    border: 1px solid #3e5054;
    margin:10px 0 ;
}
.single-pages textarea
{
    width: 100%;
    padding:5px;
    height: 150px;
    border: 1px solid #3e5054;
    margin:10px 0 ;
    transition: linear .4s;
}
.single-pages textarea:hover,.single-pages input[type=text]:hover
{
    border: 1px solid #c2a874;
    transition: linear .4s;
}

.single-pages input[type=submit]
{
    background: #3e4f53;
    color: #fff;
    padding: 10px 40px;
    margin: 5px 0 0 0;
    display: inline-block;
    transition: linear .4s;
}
.single-pages input[type=submit]:hover
{
    background-color: #c2a874;
    transition: linear .4s;

}


.fbc-page .fbc-wrap .fbc-items {
    font-family: csb !important;
    margin: 0 0 0px 0 !important;
    padding: 0;
    width: 100% !important;
    display: block;
    float: right !important;
    font-size: 16px;
}

.fbc-page .fbc-wrap .fbc-items li{
    margin: 0 2px !important;
}
.single-pages .item-img img{
    width: 77px;
    height: 77px;
    box-shadow: 0px 0px 5px 2px #000;
    margin: 10px auto;
}
.fbc-page .fbc-wrap .fbc-items {
    background-color: #c2a874 !important;
    border-radius: 0 !important;
    font-family: 'Cairo-SemiBold' !important;
}
#qtranslate-chooser li.active{
    display: none;
}
#qtranslate-chooser{
    display: inline-block;
}
.fbc-page .fbc-wrap .fbc-items li.active span, .fbc-page .fbc-wrap .fbc-items li .fbc-end-text ,.fbc-page .fbc-wrap .fbc-items li a{
    color: #ffffff !important;
}






.project-box .img:hover .on-img{
        opacity:1;
    transition:linear .4s;
}

.project-box .img:hover .on-img:before{
    width:100%;
    height:100%;
    
        opacity:.5;
    transition:linear .4s;
}

.project-box .img:hover img{
        transform:scale(1.2,1.2);
    transition:linear .4s;
}


.mix-cont button{
        background: #c2a874;
    margin: 20px;
    color: #fff;
    padding: 10px;
    font-size: 18px;
}


.project-box .img{
    position:relative;
    margin:20px 0;
            border: 1px solid #d6d1d1;
    overflow:hidden;
}
.project-box .img img
{
        width: 100%;
    height: 300px;
    transition:linear .4s;
}
.project-box .img .on-img{
    position:absolute;
    top:0;
    right:0;
    width:100%;

    height:100%; 
    opacity:0;
    transition:linear .4s;
}
.project-box .img .on-img:before{
    content: " ";
    position:absolute;
    top:0;
    right:0;
    width:50%;
    height:50%;
    background:#c2a874;
    opacity:0;
    transition:linear .4s;
}
.project-box .img h2{
    text-align:center;
        z-index: 999;
        margin: 35% 0px;
    position: relative;
}







.wawawa i {
    position: absolute;
    top: 53px;
    right: 60px;
    z-index: 99999;
    font-size: 40px;
    color: #fff;
    background: linear-gradient(to right, #56423a, #857752);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 4px 0 0 0;
}


.all-contact iframe{
    width: 100%;
    display:block;
}
.nummm_in .main-header{
        margin: 20px;
}

.nummm_in a{
    display: inline-block;
    color: #55413a;
    margin: 10px 30px;
    font-size: 30px;
    font-weight: bold;
    width: 40%;
    text-align:right;
    
}
.nummm_in a:nth-child(2n+2){
    text-align:left;
}
.nummm_in
{
    display: table;
    border-top: 2px solid #857752;
    margin: 20px auto;
}


.sshea{
    display:block;
}



.eded img{
    width:100%;
    height:250px;
}











