
@font-face {
  font-family: "semiBold";
  src: url(../fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../fonts/tajawal/Tajawal-Bold.ttf);
}

h1,
h2,
h3 {
  font-family: "bold";
}

h4,
h5,
h6 {
  font-family: "semiBold";
}

p,
span {
  font-family: 'regular';
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.list-inline-item {
    margin-right: 5px !important;
}

.warp {
    overflow: hidden;
}

body {
    font-family: 'JFFlatregular';
    color: #969696;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'JFFlatmedium';
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a,
img {
    transition: all 0.5s linear;
}

img, iframe {
    max-width: 100%;
}

.no-padding {
    padding: 0;
}

.sec-tit {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 45px;
    color: #434343;
}

.sec-tit:before {
    content: '';
    width: 100px;
    height: 3px;
    background-color: #32a94b;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sec-tit:after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url("../images/secTit-icon.png");
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.sec-tit span:before {
    content: '';
    width: 34px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.main-btn {
    background: #34a949;
    color: #fff;
    border-radius: 5px;
    padding: 10px 55px;
    border: 1px solid transparent;
}

.main-btn:hover {
    background: transparent;
    color: #34a949;
    border: 1px solid #34a949;
}

.main-color {
    color: #34a949;
}

/******************************/
.head-top {
    background: #f5f5f5;
    padding: 30px 0;
    position: relative;
}

.head-top:before {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 0;*/
    /*width: 60%;*/
    /*height: 100%;*/
    /*background: #fff;*/
    /*clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);*/
}

.head-info {
    margin-bottom: 20px;
}

.head-contact-info,
.head-contact-info a {
    color: #606161;
}

.head-contact-info-item i {
    color: #34a949;
}

/* .lang-list */

.lang-list > .sub-menu-holder {
    position: relative;
}

.lang-list > .sub-menu-holder > a {
    color: #42435D;
    transition: all .3s;
}

.lang-list > .sub-menu-holder:hover > a {
    color: #000;
}

.lang-list > .sub-menu-holder > .sub-menu {
    position: absolute;
    top: 100%;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all .2s;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.3);
}

.lang:hover .sub-menu {
    max-height: 300px;
}


.lang-list > .sub-menu-holder > .sub-menu li a {
    text-align: center;
    padding: 6px 15px;
    display: block;
    color: #34a949;
}


nav {
    background-color: #34a949;
    transition: all 0.5s ease-in-out;
}

/* Start Nav Bar */


.menu > li > a {
    display: block;
    color: #fff;
    position: relative;
    padding: 25px 15px;
}

.menu > li > a:hover,
.menu > li.current-menu-item > a {
    background: #fff;
    color: #5ebb6e;
}

.menu > .sub-menu-holder {
    position: relative;
    transition: all .3s;
}

.menu .sub-menu > li:not(:last-child) {
    border-bottom: 5px solid #f6f5f1;
}

.menu-toggle {
    display: none;
}

.content-overlay {
    position: fixed;
    top: 0;
    width: 0;
    height: 100vh;
    background-color: rgba(66, 67, 93, .6);
    z-index: 5;
    transition: all .3s linear;
}

.content-overlay.open {
    width: 100%
}

.sub-menu-holder .sub-menu-toggle {
    position: absolute;
    top: 7px;
    color: #f6f5f1;
}

.menu .sub-menu > li {
    position: relative;
}

/* Start Media */


@media (min-width: 991px) {
    .menu {
        display: flex;
    }

    .menu > .sub-menu-holder:hover > .sub-menu {
        display: block;
        transition: all .5s;
    }

    .menu .sub-menu {
        position: absolute;
        top: 100%;
        min-width: 250px;
        background-color: #fff;
        display: none;
        box-shadow: 0 11px 21px 0 rgba(0, 0, 0, 0.3);
        transition: all .3s;
    }

    .menu .sub-menu > li > a:hover {
        background-color: #0095da;
        color: #fff;
    }

    .menu .sub-menu > li > a {
        display: block;
        text-align: center;
        padding: 6px 0;
        color: #0095da;
        transition: all .1s;
    }

    .sub-menu .sub-menu-holder .sub-menu-toggle {
        position: absolute;
        top: 15px;
    }

}

@media (max-width: 991px) {
    nav {
        padding: 5px 0;
    }

    .menu-toggle {
        display: block;
        font-size: 25px;
        margin: 0 !important;
        padding: 10px 0;
        color: #fff;
        width: 50px;
        height: 50px;
        line-height: 1;
        text-align: center;
        border: 2px solid #fff;
        border-radius: 100%;
        cursor: pointer;
    }

    .slid-nav {
        z-index: 777;
        position: fixed;
        top: 0;
        height: 100vh;
        overflow-y: auto;
        width: 280px;
        background-color: #34a949;
        padding: 20px 10px;
        transition: all .3s;
    }

    .slid-nav::-webkit-scrollbar {
        width: 0;
    }

    .slid-nav.open {
        transform: translateX(0);
    }

    .menu > li {
        display: block;
        padding: 0 !important;
        border-bottom: 2px solid #ebebeb;
        text-align: center;
    }

    .menu li a {
        padding: 10px 0;
        color: #fff;
    }

    nav .sub-menu {
        display: none;
    }

    nav .sub-menu li a {
        color: #000;
    }

    .menu > li.sub-menu-holder a {
        width: calc(100% - 36px);
        display: inline-block;
    }

    .menu > li.sub-menu-holder i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        background: #000;
    }

    .sub-menu-holder .sub-menu-toggle {
        top: 10px;
    }

    .menu-holder {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .lang-mobil,
    .lang-mobil a {
        color: #fff;
        font-size: 20px;
    }

    .menu-open {
        overflow: hidden;
    }
}


/******************************/
.main-slider .mainItem {
    position: relative;
    overflow: hidden;
}

.main-slider .slid-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff;
    text-transform: uppercase;
}

.slid-des {
    color: #fff;
}

.main-slider img {
    position: relative;
    transition: all 25s ease;
    transform-style: preserve-3d;
    width: 100%;
    height: 555px;
}

.main-slider .active img {
    transform: scale(1.3);
}


.main-slider .owl-nav div {
    transition: all 0.2s ease-in-out;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.main-slider .owl-nav .owl-prev {
    left: 0;
}

.main-slider .owl-nav .owl-next {
    right: 0;
}

.main-slider .owl-nav div:hover {
    color: #c4996b;
}

/******************************/
.about {
    padding: 120px 0 60px 0;
}

.about .sec-tit {
    display: inline-block;
}

.about-widget {
    margin-bottom: 50px;
}

.about-items li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.about-items li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #34a949;
}

.about-img {
    text-align: center;
    perspective: 1000px;
    position: relative;
    padding: 20px 30px 0 30px;
}

.about-img:after {
    content: '';
    position: absolute;
    top: -10px;
    height: 100%;
    width: 90%;
    border-width: 30px;
    border-style: solid;
    border-radius: 15px;
    transform: rotateY(0);
    z-index: -1;
    transition: all 1s ease;
    opacity: 1;
    visibility: visible;
    border-color: #34a949 !important;
}

.about-img:hover:after {
    opacity: 0;
    visibility: hidden;
}

/******************************/
.sers {
    padding: 60px 0;
}
.ser-item{
    margin-bottom: 30px;
}
.ser-item-thumb img{
    height: 245px;
    width: 100%;
}
.ser-item-body {
    margin-top: -30px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 15px;
    width: 95%;
}

.ser-item-tit a {
    color: #1c1c1c;
}

.ser-item-des {
    color: #717171;
}


/******************************/
.works {
    padding: 70px 0;
}

#filter-select {
    display: none;
}

.project-filter {
    margin-bottom: 45px;
}

.project-filter button {
    background: transparent;
    cursor: pointer;
    margin: 0 5px;
    color: #4c4c4c;
    font-size: 16px;
}

.project-filter button.mixitup-control-active {
    color: #84cb91;
}

.project-filter button:not(:last-child):after {
    content: ' / ';
}

.mixit_area {
    margin-bottom: 50px;
}

.work-item {
    position: relative;
}

.work-item-thumb img {
    width: 100%;
    height: 430px;
}

.work-item-body {
    padding: 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}

.work-item:hover .work-item-body {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.work-item-url {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    text-align: center;
    background-color: #32a94b;
    color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0) rotate(45deg);
    transition: all 0.5s ease-in-out;
}

.work-item-data {
    position: absolute;
    bottom: 20px;
}

.work-item-data {
    opacity: 0;
    visibility: hidden;
    transform: scale(0) rotate(45deg);
    transition: all 0.5s ease-in-out;
}

.work-item:hover .work-item-url {
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.work-item:hover .work-item-data {
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

.work-item-tit a {
    color: #339242;
}

.work-item-cat a {
    color: #cecdcc;
}

/******************************/
.news {
    padding: 70px 0;
}

.news-item-head {
    position: relative;
}

.news-item-thumb {
    margin-bottom: 25px;
}

.news-item-thumb img {
    height: 330px;
    width: 100%;
}

.news-item-publish {
    position: absolute;
    top: 30px;
    width: 85px;
    height: 95px;
    background: rgba(0, 0, 0, .7);
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.news-item-publish:before {
    content: '';
    width: 90%;
    height: 90%;
    border: 1px solid #328d44;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 5px;
    transform: translate(-50%, -50%);
}

.news-item-overlay {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    transition: all 0.5s ease-in-out;
}

.news-item-overlay a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 5px;
    text-align: center;
    background-color: #32a94b;
    color: #fff;
    margin: auto;
}

.news-item-tit {
    color: #1c1c1c;
    margin-bottom: 25px;
}

.news-item:hover .news-item-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/******************************/
.contact {
    padding: 70px 0;
}

.contact-area {
    position: relative;
}

.map iframe {
    width: 100%;
    height: 490px;
    display: block;
}

.contact-form {
    position: absolute;
    top: 60px;
    width: 45%;
    background: #fff;
    padding: 25px;
}

.contact-form:before {
    content: '';
    width: 300px;
    height: 20px;
    background: #34a949;
    position: absolute;
    top: -20px;
}

.contact-form:after {
    content: '';
    width: 20px;
    height: 300px;
    background: #34a949;
    position: absolute;
    top: -20px;
}

.contact-form .wpcf7-form div.form-group:last-child {
    margin-bottom: 0;
}

.contact-form .form-control {
    background-color: #f8f8f8;
    border-radius: 0;
    border: 0;
}

.contact-form textarea.form-control {
    height: 100px;
}

.contact-form input[type=submit] {
    width: 100%;
    display: block;
}

.form-control:focus {
    color: #1c1c1c;
    border-color: #34a949;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #34a949;
}

/******************************/
.partners {
    padding: 40px 0 70px 0;
}
.parItem{
    display: flex;
    align-items: center;
    height: 95px;
}
.parItem img {
    width: auto !important;
    margin: auto;
}

/******************************/
.foot-main {
    padding: 60px 0 40px 0;
    background: #242424;
}

.foot-logos {
    margin-bottom: 70px;
}

.foot-contact-info {
    margin-bottom: 30px;
}

.foot-contact-info-tit {
    color: #329944;
}

.foot-contact-info,
.foot-contact-info a {
    color: #fff;
}

.social-media a {
    font-size: 22px;
    color: #34a949;
    margin: 0 5px;
}

.copyright {
    padding: 30px 0;
    background: #34a949;
    color: #fff;
}

.copyright a {
    color: #fff;
}

/******************************/
.breadcrumb-area {
    padding: 10px 0;
    background: #242424;
    color: #fff;
}

.breadcrumb-area a {
    color: #34a949
}

.content {
    padding: 50px 0;
}

.page-thumb {
    margin-bottom: 15px;
}

/*.ser-single-icon {*/
/*    background: #34a949;*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*    display: block;*/
/*    margin: auto;*/
/*}*/

/*.ser-single-icon img {*/
/*    max-height: 35px;*/
/*    max-width: 35px;*/
/*}*/

.custom-file {
    margin-bottom: 16px;
}

.works-gallery-item {
    padding: 5px;
    border: 1px solid #ededed;
    margin-bottom: 30px;
}

.works-gallery-item img {
    height: 200px;
}

.custom-file-label::after {
    color: #fff;
    background-color: #34a949;
    border-color: #34a949
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #34a949;
    box-shadow: 0 0 0 0.2rem rgba(52, 169, 73, .6);
}

.wp-pagenavi {
    text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #242424;
    color: #242424;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: #34a949;
    color: #34a949;
}

.slid-nav-head {
    /*padding: 5px;*/
    /*background: #242424;*/
    color: #fff;
    margin-bottom: 20px;
}

.slid-nav-head,
.slid-nav-head a,
.slid-nav-head a i,
.slid-nav-head i {
    color: #fff;
}

.slid-nav-logo {
    /*background: #f5f5f5;*/
    margin-top: 10px
}

.slid-nav-logo img {
}

.back-to-top {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #34a949;
    color: #fff;
    border-radius: 100%;
    position: fixed;
    bottom: 80px;
    z-index: 3;
    display: none;
    border: 1px solid #e8e8e8;
}

nav.stick {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
}
.bgImg{
    background-position:center ;
    background-repeat: no-repeat;
    background-size: cover;
}

/******************************/

@media all and  (min-width: 992px) {
    .head-top:before {
        content: '';
        position: absolute;
        top: 0;
        width: 60%;
        height: 100%;
        background: #fff;
    }
}


@media all and (max-width: 992px) {


}

@media all and  (max-width: 768px) {
    .head-contact-info {
        justify-content: center;
        border-bottom: 1px solid #ededed;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .head-contact-info-item {
        margin-bottom: 15px;
    }

    .main-slider img {
        height: 300px;
    }

    .about-info {
        margin-bottom: 50px;
    }

    .about-items li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .project-filter {
        display: none;
    }

    #filter-select {
        display: block;
        width: 100%;
        margin-bottom: 30px;
        border: 1px solid;
        background: #f5f5f5;
        padding: 5px;
    }

    .work-item-thumb img {
        height: 260px;
    }

    .news-item {
        margin-bottom: 30px;
    }

    .contact-area {
        position: static;
    }

    .map {
        margin-bottom: 60px;
    }

    .map iframe {
        height: 300px
    }

    .contact-form {
        position: relative;
        width: 100%;
        top: 0;
        background: #f5f5f5;
    }

    .contact-form .form-control {
        background-color: #fff;
    }

    .foot-contact-info-tit {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .copyright {
        text-align: center;
    }

    .about,
    .sers,
    .works,
    .news,
    .contact,
    .partners {
        padding: 30px 0;
    }
}

.fly-icons{
    position: fixed;
    bottom: 30px;
    z-index: 2; 
}
.fly-icons a{ 
    padding:10px 25px;
    color:#fff;
    background-color: #34a949;
    margin:0 5px;
    border-radius: 15px;
}   
    
    
    
    
    
    
    
    
    
    
    
    