@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url(../css/owl.carousel.min.css);
@import url(../css/owl.theme.default.min.css);
@import url(../css/animate.css);
@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@700&family=Noto+Sans+Arabic:wght@300;400;500&display=swap');
@import url(https://db.onlinewebfonts.com/c/ac20dadb811c9e3dbc05a6373b1fe6ce?family=ManifaPro2+Regular);



*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #00573F;
    --sub-color: #28323C;
    --sec-padding: 80px 0;
}

body {
    font-family: 'ManifaPro2 Regular', sans-serif;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lateef', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.hamburger, .is-closed {
    width: 35px;
    height: 35px;
    position: absolute;
    z-index: 9;
    left: 15px;
    top: 20px;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    margin-right: 0px;
    background-color: transparent;
}

.hamburger span, .is-closed span {
    width: 20px;
    height: 2px;
    border-radius: 0px;
    background-color: #fff;
    display: block;
    margin-bottom: 4px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.is-closed span:nth-child(1) {
    transform: rotate(45deg)
}

.is-closed span:nth-child(2) {
    display: none;
}

.is-closed span:nth-child(3) {
    transform: rotate(135deg);
    margin-top: -5px;
}

.hamburger {
    display: none;
}


/* Style Header */

#header {
    width: 100%;
    padding: 10px 0;
    position: relative;
    top: -54px;
    left: 0;
    z-index: 9;
}

#header .container {
    background: var(--main-color);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.50);
    box-shadow: 0px 1px 29px 0px rgba(69, 42, 124, 0.10);
    padding: 10px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 140px;
}

.main_menu {
    display: flex;
}

.main_menu > li {
    margin-left: 25px;
}

.main_menu > li:last-child {
    margin-left: 0;
}

.main_menu > li > a {
    display: block;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px;
    border-radius: 10px;
}

.main_menu > li.active a {
    background: rgb(255 255 255 / 10%);
    border-bottom: 1px solid #fff;
}

.main_menu > li.lang-site a {
    color: var(--main-color);
    font-weight: 500;
}

.dropdown-toggle::after {
    border: 0;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f107";
    font-size: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.main_menu > li.cl-lang a {
    background: var(--sub-color);
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    color: #fff;
}

.main_menu > li.cl-lang a.btn-site:before {
    background: var(--main-color);
}

.main_menu > li.btn-contact a img {
    margin-left: 10px;
}


.dropdown-menu {
    transition: all .8s ease-in-out;
    transform: translateY(100px) !important;
    box-shadow: none;
    background: #dae0e0;
    border: 0;
    border-radius: 0;
}

.dropdown-menu li {
    padding: 0 20px
}

.dropdown-menu li a {
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    text-align: center
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent;
    transform: translateX(10px);
}

.dropdown-menu.show {
    transform: translateY(64px) !important;
    right: 0 !important;
}

#header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 33;
}

#header.header-page {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--main-color);
}


/* Style Home Slide */

.section_home {
    position: relative;
    background: #B2C3C1;
    padding-top: 30px;
    z-index: 1;
}
.cont-home {
    display: flex;
    align-items: center;
}
.thumb-home {
    width: 60%;
}
.thumb-home img {
    position: relative;
    bottom: -75px;
}
.home_txt {
    position: relative;
    width: 40%;
    height: max-content;
    padding-right: 60px;
}
.home_txt:before {
    content:"";
    background: url(../images/shape-txt-home.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 40px;
    position: absolute;
    right: 60px;
    bottom: -30px;
}
.home_txt h1 {
    background: linear-gradient(169deg, #B2AB67 0%, #97793D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 80px;
}
.home_txt h1 span {
    font-size: 120px;
    display: block;
}

/* Style Stac Site */

.sec_head {
    margin-bottom: 40px;
    position: relative;
}

.sec_head h2 {
    color: #333333;
    font-size: 42px;
    margin-bottom: 12px;
    height: 55px;
    position: relative;
    /*font-family: 'Noto Sans Arabic', sans-serif;*/
}
.sec_head h2:before {
    content: "";
    background: url(../images/shape.svg);
    background-size: 100% 100%;
    width: 60px;
    height: 15px;
    position: absolute;
    bottom: -5px;
    right: 0;
}
.sec_head p {
    font-size: 19px;
    color: #333333;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    margin: 30px auto 0;
    border-radius: 0;
    justify-content: center;
    background: var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
}
.btn-site:hover span {
    color: var(--main-color);
}

/* Style About */

.section_about {
    position: relative;
}
.sec-about {
    background: #E4EAEA;
    padding: 25px;
    position: relative;
    border-radius: 20px;
    height: calc(100% - 10px);
}
.sec-about h3 {
    font-size: 55px;
    color: #333;
    margin-bottom: 10px;
}
.sec-about:hover h3 {
    color: #C38F5D;
}
.sec-about h3 span {
    display: block;
    font-size: 25px;
    font-weight: 400;
}
.sec-about p {
    font-size: 18px;
}
.sec-about figure {
    position: absolute;
    top: 20px;
    left: 20px;
    margin-bottom: 0;
}
.sec-about figure img {
    width: 80px;
}

.cont-about {
    display: flex;
    flex-wrap: wrap;
}
.cont-about .col-6 {
    padding: 0 5px 10px;
}
.item-about {
    border-radius: 20px;
    border: 1px solid #E7DDD5;
    background: #F3ECE6;
    padding: 23px 15px;
    position: relative;
}
.item-about figure {
    border-radius: 100px;
    background: #899D96;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 10px;
}
.item-about figure img {
    width: 25px;
}
.item-about h4 {
    color: #C38F5D;
    font-size: 34px;
}
.item-about:hover h4 {
    color: #333;
}
.item-about p {
    color: #6E5741;
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 17px;
}


/* Style Services */

.section_services {
    position: relative;
    padding: 100px 0;
}
.item-services {
    border-radius: 20px;
    border: 1px solid #E4EAEA;
    background: #EFF2F2;
    padding: 20px;
    position: relative;
}
.item-services figure {
    height: 200px;
    margin-bottom: 45px;
    overflow: hidden;
    position: relative;
}
.item-services figure img {
    height: 100%;
    width: 100%;
    transition: .5s;
}
/*.item-services figure:before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: linear-gradient(180deg,#00573f,#f0ddcc);*/
/*  z-index: 1;*/
/*  opacity: 0;*/
/*  transition: 0.5s;*/
/*  mix-blend-mode: multiply;*/
/*}*/
.item-services:hover figure img {
    transform: scale(1.1);
}
.txt-services h4 {
    color: #333;
    font-size: 38px;
    margin-bottom: 20px;
    position: relative;
    line-height: 35px;
    height: 70px;
}
.item-services:hover .txt-services h4 {
    color: #C38F5D
}
.txt-services h4:before {
    content: "";
    background: url(../images/shape.svg);
    background-size: 100% 100%;
    width: 60px;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.txt-services p {
    margin-bottom: 30px;
    font-size: 19px;
    height: 100px;
    /*display: -webkit-box;*/
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.txt-services .dta-serv {
    color: #272727;
    display: inline-block;
}
.item-services:hover .txt-services .dta-serv {
    color: var(--main-color);
    transform: scale(1.6) rotate(270deg);
}

/* Style Features */

.cont-feat {
    position: relative;
    background: #898989;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}
.cont-feat:before {
    content: "";
    background: url(../images/bg-feat.svg);
    background-size: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 3%
}
.thumb-feat {
    width: 60%;
    position: relative;
}
.thumb-feat figure {
    margin-bottom: 0
}
.txt-feat {
    width: 40%;
    position: relative;
}
.txt-feat h3 {
    color: #fff;
    font-weight: 600;
    font-size: 100px;
    text-align: center;
}
.txt-feat h3 span {
    color: #333;
    font-size: 75px;
    display: block;
    font-weight: 500;
}

/* Style Our Work */

.section_our_works {
    position: relative;
    padding: 50px 0;
}
.item-work {
    position: relative;
    margin-bottom: 50px;
    display: block;
}
.item-work .img-work {
    background: #E4EAEA;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.item-work figure {
    margin-bottom: 0;
    border-radius: 20px;
    /*height: 350px;*/
    position: relative;
}
.item-work figure img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: .5s;
}
.item-work figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(180deg,#00573f,#f0ddcc);*/
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
  mix-blend-mode: multiply;
    border-radius: 20px;
}
.item-work:hover figure:before {
  opacity: 1;
}

.txt-work p {
    color: #333;
    font-size: 24px;
    display: inline-block;
    position: relative;
}
.item-work:hover p {
    color: #C38F5D;
}
.txt-work p svg {
    font-size: 17px;
    transform: rotate(30deg);
    position: absolute;
    left: -20px;
    top: 0;
}

#works-slider .owl-nav > button {
    position: absolute;
    top: -100px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgb(0 0 0 / 20%);
    color: rgb(0 0 0 / 20%);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}
#works-slider .owl-nav > button {
    left: 0;
}
#works-slider .owl-nav > button.owl-next {
    left: 50px;
}
#works-slider .owl-nav > button:hover {
    transform: scale(1.3);
    color: #000;
    border: 1px solid #000;
}

/* Style Blogs */

.section_blogs {
    position: relative;
    padding: 100px 0;
    border-bottom: 1px solid #F2F4F7;
    background: #F0DDCC;
}
.section_blogs:before {
    content: "";
    background: url(../images/bg-blogs.svg);
    background-size: 100% 100%;
    background-position: 0px -110px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.section_blogs .sec_head h2:before {
    display: none
}
.item-blog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    display: block;
}
.item-blog figure {
    overflow: hidden;
    position: relative;
}
/*.item-blog figure:before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: linear-gradient(180deg,#00573f,#f0ddcc);*/
/*  z-index: 1;*/
/*  opacity: 0;*/
/*  transition: 0.5s;*/
/*  mix-blend-mode: multiply;*/
/*}*/
.item-blog:hover figure img {
    transform: scale(1.1);
}
.item-blog figure img {
    transition: .5s;
}

.txt-blog {
    position: relative;
}
.txt-blog p {
    font-size: 22px;
    font-weight: 500;
    position: relative;
    color: #333;
    height: 99px;
    padding-left: 20px;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.item-blog:hover .txt-blog p {
    color: #C38F5D
}
.txt-blog:before {
    content: "";
    background: url(../images/shape.svg);
    background-size: 100% 100%;
    width: 60px;
    height: 15px;
    position: absolute;
    top: 110px;
    left: 0;
}
.txt-blog small {
    font-size: 17px;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(40deg)
}
.txt-blog span {
    display: block;
    color: #333
}
#blogs-slider .owl-dots {
    display: block !important;
    padding-top: 30px;
    text-align: center;
}
.owl-dots .owl-dot {
    margin: 0 5px;
}
.owl-dots .owl-dot span {
    display: block;
    border: 2px solid var(--main-color);
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}
.owl-dots .owl-dot.active span {
    border: 2px solid var(--main-color);
    background: var(--main-color);
}


/* Style Contact */

.section_contact {
    padding: 250px 0 30px;
    background: #A9917F;
}
.section_contact .container {
    position: relative;
}
.section_contact .container:before {
    content: "";
    background: url(../images/shape-contact.svg);
    background-size: 100% 100%;
    width: 110px;
    height: 250px;
    position: absolute;
    top: -330px;
    right: 10px;
}
.section_contact .row {
    align-items: center;
}

.txt-contact {
    position: relative;
    top: -220px;
    right: 200px;
    width: calc(100% - 200px);
}
.txt-contact h2 a {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Noto Sans Arabic', sans-serif;
}
.txt-contact p {
    color: #fff;
    font-size: 25px;

}
.form-contact {
    position: relative;
    background: #fff;
    padding: 60px 20px 30px;
    border-radius: 15px;
}
.form-contact:before {
    content: "";
    background: url(../images/shape.svg);
    background-size: 100% 100%;
    width: 60px;
    height: 15px;
    position: absolute;
    top: 30px;
    left: 20px;
}
.form-contact .form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-contact .form-group:last-child {
    margin-bottom: 0;
}
.form-contact .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans Arabic', sans-serif;
}
.form-contact .form-group .form-control {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: #333
}
.form-contact .form-group textarea.form-control {
    height: 120px
}
.form-contact .form-group .form-control::placeholder {
    font-size: 14px;
    color: #B8B8B8
}
.form-contact .form-group .btn-site {
    border-radius: 8px;
    width: 100%;
    margin-bottom: 0;
}

.contact_page .container:before {
    top: -130px;
}
.txt-contact h3 {
    color: #fff;
    font-size: 40px;
}

/* Style Fotter */

footer {
    position: relative;
    background: #90735C;
    padding: 25px 0;
}

.cont-ft {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-ft {
    display: block;
    text-align: center
}
.logo-ft img {
    width: 100px;
    max-width: 100%;
}

.menu-ft li {
    display: inline-block;
    position: relative;
    margin-left: 30px;
}
.menu-ft li:nth-child(1):before,
.menu-ft li:nth-child(2):before {
    content: "";
    background: #fff;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
}

.menu-ft li a {
    color: #fff;
}
.soical-md li:before {
    display: none;
}
.soical-md li {
    margin-left: 10px;
}

.copyRight {
    color: #fff;
    font-size: 14px;
}

