/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
:root {
    --main-color:#000;
    --var-color: #C5AE80;
    --white-color:#fff;
    --text-color:#9A9A9A;
    --form-color:#F6F5F5;
     --cp-bg: #f6f8fb;
  --cp-card: #ffffff;
  --cp-muted: #6b7280;
  --cp-text: #0f172a;
  --cp-brand: #00b7c7; /* tweak to match your palette */
  --cp-radius-lg: 16px;
  --cp-radius-xl: 1.875rem;
  --cp-shadow: 0 8px 18px rgba(16,24,40,.08);
  --cp-gap: 24px;
    
}
.main_color{
    color:var(--main-color);
}
.main_back{
    background:var(--main-color);
}
.var_color{
    color:var(--var-color);
}
.var_back{
    background:var(--var-color);
}
.white_color{
    color:var(--white-color);
}
.white_back{
    background:var(--white-color);
}
.text_color{
    color:var(--text-color);
}
.text_back{
    background:var(--text-color);
}
.form_back{
    color:var(--form-color);
}

.colored svg path{
    stroke:var(--var-color);
}



html {
    font-size:1rem;
}
body {
    font-style: normal;
    font-weight: 300;
    overflow-x:hidden;
    font-family: 'Expo Arabic Book';
    background: #FFFBF6;
}
a:hover{
    text-decoration:none;
}
/* general */

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
.btn,
.btn-more {
   background:#141F1C;
   padding: 1rem 2rem;
   color:#fff;
   font-size:1.4rem;
   display:inline-block;
   border-radius:50rem;
   box-shadow: none;
}
.btn-default:hover, 
.btn-more:hover,
.btn:hover {
   color:#fff;
    background:#141F1C;
}
.btn-default:focus, 
.btn-more:focus,
.btn:focus ,
button {
    outline: none !important;
}
.topTitle {
    display: flex;
    align-items:  center;
    justify-content: space-between;
    width: 100%;
}
.companies .title h3{
    color:var(--var-color);
    padding-top:2rem
}
.title{
    flex:2;
}
.title h2{
    text-align:left;
    color: #000;
    font-size: 4rem;
    padding-bottom: 1rem;
}
.title h4{
    text-align:left;
    color: #000;
    font-size:2.2rem;
    padding-bottom: 1rem;
}
.desc{
    flex:1;
}
.desc p{
    color:#000;
    font-size: 1.7rem;
}
.nav-tabs{
    border:none;
    margin-bottom: 3rem;
}
.nav-tabs .nav-item .nav-link{
    background:#8d8d8d;
    border-color:#8d8d8d;
    border-radius:50px;
    padding:1rem 3rem;
    font-size:1.2rem;
    color:#fff;
    margin:5px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    background:#45695D;
    border-color:#45695D;
    border-radius:50px;
    padding:1rem 3rem;
    font-size:1.2rem;
    color:#fff;
}
.content p {
    color: #150300;
    font-size: 1.7rem;
    line-height: 1.5;
}
.main_title {
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--main-color);
    margin: 0 0 3rem;
}
/* header */ 
header {
    transition: all 0.5s ease-in-out;
    padding: 2rem 4rem;
    position: absolute;
    width: 100%;
    z-index: 99;
}  
header .menu {
    list-style: none;
    display: flex;
    flex-direction: row;
}
 header .menu li a {
    transition: all 0.5s ease-in-out;
    padding: 0 1.5rem;
    position: relative;
    color: #fff;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
header .menu li:hover > a {
    color: var(--var-color)
}
header .menu li:hover a:after {
    bottom: -1rem;
    opacity: 1;
}
header .wpml-ls-menu-item .wpml-ls-display {
    color: #fff;
    font-size: 1.7rem;
    font-weight: bold;
}
header .head_links a:nth-child(1){
    background:#303031;
    border-color:#303031;
}
header .head_links a:nth-child(2){
    color:#000;
    margin:0 0.6rem
}
header .head_links a:nth-child(3){
    background:#fff;
    color:#000;
    border-color:#fff;
}

header .menu ul li:hover > a {
    color: var(--var-color)
}
header .menu ul li:hover > a {
    color: var(--var-color)
}
header .menu li.menu-item-has-children:after {
  
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
header .menu li.menu-item-has-children:after {
    position: absolute;
    top: 30%;
    border-left: 3px solid #727171;
    border-bottom: 3px solid #727171;
    border-radius:2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0.85rem;
    height: 0.85rem;
    content: "";
    left: -0.1rem;
    z-index: 9999999999;
}
header .menu li ul {
    list-style: none;
    display: none;
    transition: all 0.5s ease-in-out;
    transform: scale(0);
    background: #fff;
    border-radius: 1rem;
    padding: 0;
}
header .menu li ul {
    list-style: none;
    display: none;
    transition: all 0.5s ease-in-out;
    transform: scale(0);
    background: #fff;
    border-radius: 1rem;
    padding: 0;
}
header .menu li.menu-item-has-children:hover ul {
    display: block;
    position: absolute;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    z-index: 99;
    top: 1.7rem;
    width: 27rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border: 1px solid var(--var-color);
    text-align: center
}
header .menu li.menu-item-has-children:hover ul {
    display: block;
    position: absolute;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    z-index: 99;
    top: 1.7rem;
    width: 27rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    border: 1px solid var(--var-color);
    text-align: center
}
header .menu li.menu-item-has-children {
    position: relative;
}
header .menu li ul li a {
    padding:1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid #DDDDDD;
    color: var(--main-color);
}
header .menu li ul li a {
    padding:1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid #DDDDDD;
    color: var(--main-color);
    
}
.lang,.lang *{
    height:100%;
    display: inline-flex;
}
.wpml-ls-legacy-list-horizontal{
    padding:0;
    margin-right:0.75rem;
}
.wpml-ls-legacy-list-horizontal a {color: #FFF;text-align: center;font-size: 1.5rem;font-style: normal;}
header .menu li ul li:last-of-type a {
    border: none
}
header.fixed-header .menu li a{
    color:#150300;
}
header.fixed-header .menu li.menu-item-has-children:after{
    border-color:#727171
}

header.fixed-header .header-bottom .search #searchform input,
header.fixed-header .wpml-ls-menu-item .wpml-ls-display{
    color:#A78D78;
}
header.fixed-header .header-bottom .search #searchform span svg path{
    fill:#A78D78;
}
header.fixed-header .header-bottom .search #searchform input::placeholder{
    color:#A78D78;
}
header.fixed-header .wpml-ls-menu-item .wpml-ls-display{
    
}
.header-bottom .menu li a {
    /*background: url(../images/n.png) no-repeat top right 10%*/
}
header .btn--search {
    background: transparent;
    border: 0;
}
 header .request a {
    background: #BD9F58;
    border-color: #BD9F58
} 
.about_section{
    padding: 4rem 0 25rem;
    background: url(../images/aboutLayer.png)no-repeat bottom,#FFFBF6;
}
.about_section .links a:hover{
    background:#141F1C;
    text-decoration:none;
    transition:all .5s;
}
/* statistics-items */
.statistics__section {
    background: #DEE9E4;
    padding: 6rem 0;
    position: relative;
} 
.statistics__section .btn, .btn-more{
    background:#45695D;
    padding:1rem 5rem;
}
.statistics__section .item {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #CEE1D9;
    position: relative;
    margin: 7rem 1rem 3rem;
    text-align: center;
    justify-content: center;
}
.statistics__section .item h2{
    font-size: 4rem;
    color: #000;
}
.statistics__section .item p{
    font-size:1.5rem;
    color:#7a7575;
}
.statistics__section .slick-dots li.slick-active button,
.services_section .slick-dots li.slick-active button,
.services_benfites .slick-dots li.slick-active button,
.projects_section .slick-dots li.slick-active button
,.proj_gallery .slick-dots li.slick-active button{
    width:9rem;
    height:.5rem;
    border-radius:1rem;
    background:#000;
}
.proj_gallery .slick-dots li.slick-active button{
    background:#ffff;
}
.statistics__section .slick-dots li button,
.services_section .slick-dots li button,
.services_benfites .slick-dots li button,
.services_section .slick-dots li button,
.proj_gallery .slick-dots li button{
    width:3rem;
    height:.5rem;
    border-radius:1rem;
    background:#b0afaf;
}
.dropdown-toggle {
    background-color: transparent;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-toggle span{
    font-size:2rem;
    font-weight:normal;
}
.arrow {
    font-size: 18px;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-menu .dropdown-item {
    cursor: pointer;
    font-size: 3.5rem;
    font-weight: normal;
    padding: 1rem 0 1rem 2rem;
}
.dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
}
.error-404 {
    background: transparent
}
.not-found .page-content a {
    border: 0.2rem solid var(--var-color) !important;
}
.ls-nav-next:after ,
.ls-nav-prev:after {
    display: none
}
.ls-nav-next {
    background: url(../images/Up.svg)center /100%;
    width: 4rem !important;
    height: 4rem !important;
    left: 8% !important;
    right:auto;
    bottom: 28% !important;
    top:auto !important;
    transform: rotate(0deg);
    background-size: 100% 100%;
}
.ls-nav-prev {
    background: url(../images/Up.svg)center /100%;
    width: 4rem !important;
    height: 4rem !important;
    left: 12% !important;
    bottom: 28% !important;
    top:auto !important;;
    right:auto !important;;
    transform: rotate(180deg);
}
.ls-v6 .ls-nav-next:hover{
   background: url(../images/Up.svg)center /100%;
    width: 4rem !important;
    height: 4rem !important;
    left: 8% !important;
    right:auto;
    bottom: 28% !important;
    top:auto !important;
    transform: rotate(0deg) !important;
    background-size: 100% 100%;
}
.ls-v6 .ls-nav-prev:hover{
    background: url(../images/Up.svg)center /100%;
    width: 4rem !important;
    height: 4rem !important;
    left: 12% !important;
    bottom: 28% !important;
    top:auto !important;;
    right:auto !important;;
    transform: rotate(180deg) !important;
}
.slick-dots {
    
    right: 0;
    width: 100%;
    bottom: -2.5rem;
}
.slick-dots li {
    margin: 4px;
    width: unset;
    height: unset;
}
.slick-dots li button {
    padding: 0; 
    border: none;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    margin: 0.1rem;
    width: 0.5rem;
    height: 0.5rem;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: all 0.5s ease-in-out;
}
.slick-dots li.slick-active button {
     width:.8rem;
     height:.8rem;
     flex-shrink: 0;
     aspect-ratio: 1/1;
     background: #b4a56f;
}
.slick-dots li button:before {
    display: none;
}
.banner__section{
    position:relative;
}
.banner__section .image{
    position:relative;
}
.banner__section .content{
    position:absolute;
    bottom: 25%;
    left:5rem;
    width: 43%;
}
.banner__section .content h2{
    color:#fff;
    font-size: 5rem;
    font-weight: bold;
}
.banner__section .content p{
    color:#fff;
    padding-bottom: 7px;
}
.banner__section .btn{
    background:#fff;
    color:#000;
}
.projects_section {
    padding: 3rem 3rem 8rem;
}
.projects_section .more{
    text-align:center;
}
.projects_section .more .btn{
    padding:.7rem 3rem;
    font-size:1.2rem;
}
.projects_section.Realestateoffers{
    background:#F6F1EB;
    padding-bottom: 11rem;
}
.projects_section.Realestateoffers .title h2{
    font-size:3rem;
    width: 47%;
    font-family: 'Expo Arabic Medium';
}
.projects_section.Realestateoffers .item .caption h4{
    font-size:1.7rem;
}
.projects_section .item{
    margin:1rem;
}
.projects_section .item .image{
    position:relative;
}
.projects_section .item .image p{
    position:absolute;
    color:#fff;
    background:#BF9B57;
    right: 2rem;
    top:2rem;
    padding: .5rem 2rem;
    border-radius: 5rem;
}
.projects_section .item .image p a{
    color:#fff;
}
.projects_section .item .image img{
    width:100%;
    border-radius: 2rem;
    border:1px solid #066434;
}
.projects_section .item .caption{
    padding:2rem 0;
}
.projects_section .item .caption ul li{
    display:flex;
    color:#04042D;
    font-size:1.1rem;
    padding:.3rem 0;
}
.projects_section .item .caption ul li p{
    margin:0;
    padding:0 .5rem;
}
.projects_section .item .caption h4{
    color: #000;
    font-size: 2rem;
}
/* projects_page */
.projects_page{
    background:#fff
}
.projects_page .item{
    padding:0;
    border:none;
}
.projects_page .custom-dropdown ul{
    margin-bottom:4rem;
    justify-content: center;
}
.projects_page .custom-dropdown{
    width:100%;
}
/* social__media */
.social__media {
    position: relative;
    right: 0;
    border-radius: 2rem 0 0 2rem;
    padding: 1rem 0;
}
.social__media ul {
    padding: 0;
}
.social__media ul li {
     
    margin: 0.7rem 0; 
}
.social__media ul li svg {
     
}
.social__media ul li svg path{
   fill: #fff;
}

#exampleModal .modal-dialog {
    max-width: 45%;
}
#exampleModal .modal-content {
    background: #012434;
    border-radius: 5rem;
    padding: 3rem;
    border: 0;
}
#exampleModal .modal-content .gform_title  {
    color: #fff;
    font-size: 2.4rem !important;;
}
#exampleModal .modal-content .close {
    opacity: 1;
}
#exampleModal .modal-content .close svg {
    width: 3rem;
}
#exampleModal .modal-content .gform_fields  {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
#exampleModal .modal-content .gfield  {
    background: #fff !important;
    width: 47% !important;
    padding: 1rem !important;
    border-radius: 0.4rem;
}
#exampleModal .modal-content .gform_fields .gfield:last-child {
    width: 100% !important;
}
#exampleModal .modal-content .gfield label {
    color: #C0C0C0;
}
#exampleModal .modal-content .gfield .ginput_container {
    margin: 0;
}
#exampleModal .modal-content .gfield input ,
#exampleModal .modal-content .gfield textarea {
    color: #C0C0C0;
    border: 0;
    margin: 0;
}
#exampleModal .modal-content .gfield textarea::placeholder ,
#exampleModal .modal-content .gfield input::placeholder {
    color: #C0C0C0;
    font-size: 1.5rem;
}
#exampleModal .modal-content .gform_button {
    width: 100%;
    background: #BD7303;
    border: 0;
    padding: 2rem;
    border-radius: 0.4rem;
    font-size: 1.5rem;
    
    display: flex;
    margin: 3rem 0 0;
    justify-content: center;
}
/* services page */
.services_section{
    position:relative;
    padding: 8rem 4rem 6rem;
}
.services_section .more{
    text-align:center;
}
.services_section .topTitle{
    padding-bottom:5rem;
}
.services_section .item{
    text-align:center;
    margin: 4rem 0;
    border-left: 1px solid #ccc;
}
.services_section .item .image img{
    margin:auto;
}
.services_section .col-lg-4:first-of-type .item,
.services_section .col-lg-4:nth-of-type(4) .item,
.services_section .col-lg-4:nth-of-type(7) .item{
    border:none;
}
.services_section .item h4{
    color:#000;
    font-size:1.5rem;
    padding:2rem 0 0;
    font-family: 'Expo Arabic Medium';
}
.certificate_section{
    background: url(../images/certShape.png)no-repeat left 200px center,#141F1C;
    background-size: 39%;
    color:#fff;
    padding: 8rem 3rem 18rem;
    position: relative;
}
.certificate_section:after{
    position:absolute;
    content:'';
    background:url(../images/shape.png)no-repeat center;
    width:100%;
    height:75px;
    left:0;
    right:0;
    text-align:center;
    margin:auto;
    bottom: 79px;
}
.certificate_section .row{
    align-items: anchor-center;
}
.certificate_section .title h2{
    color:#fff;
    font-size:2.5rem;
}
.certificate_section .title h4{
    color:#fff;
    font-size:2.5rem;
}
.certificate_section .content p{
    color:#fff;
    font-size: 1.2rem;
    line-height: 2;
}
.certificate_section .image{
    text-align:right;
}
.certificate_section .btn{
    background:#45695D;
    margin-top: 4rem;
}
/* contact_section */
.contact_section{ 
    padding: 4rem 0;
}
.contact_section .form{  
    padding-right:8rem;
}
.contact_section .main-image{
    padding-left:2rem;
}
.contact_section .form form{
    background: transparent !important;
    padding: 0;
}
.contact_section .form .text{
  padding-bottom: 1rem;
}
.contact_section .form .text h1{
  color: #222973;
text-align: left;
font-family: 'ITCHandelGothicArabic';
font-size: 2rem;
font-style: normal;
font-weight: bold;
line-height: 1.995rem; /* 99.75% */
}
.contact_section .form .text p{
  color:#00000070;
  font-weight:bold;
  font-size: 1.3rem;
  margin-bottom: 0;
}
.contact_section .form form ul li{
    border:none;
}
.contact_section .form form ul li h2{  
    font-size:1.5rem;
    font-weight:bold;
    color:#00000070;
}
.contact_section .contact_home_info{
    padding:2rem 3rem;
}
.contact_section .contact_home_info h1{
    font-size:3rem;
    font-weight:bold;
    padding-bottom: 1rem;
    width: 65%;
    line-height: 45px;
}
.contact_section .contact_home_info p{
    font-size:2rem;
    font-weight:bold;
    padding-bottom: 1rem;
}

.contact_section .contact_home_info .binfites{
    
}
.contact_section .contact_home_info .binfites h5{
    color: #D56F20;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 3rem;
}
.contact_section .contact_home_info .binfites .item{
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}
.contact_section .contact_home_info .binfites .item .image{
    padding-right:2rem
}
.contact_section .contact_home_info .binfites .item .text h1{
    font-weight:bold;
    font-size:2rem;
    color:#000;
    padding: unset;
    line-height: 20px;
}
.contact_section .contact_home_info .binfites .item .text p{
    font-weight:bold;
    font-size: 1.8rem;
    color:#5E5D5B;
    padding: 0;
}
/* contact__section */
.contact__section {
    position: relative;
    padding: 10rem 0;
}
.contact__section:after {
    position: absolute;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
}
.contact__section .contact__details--title {
    color: #fff;
    font-size: 5.5rem;
    padding-right: 3rem;
    font-weight: 300;
}
.contact__details {
    z-index: 9;
    position: relative;
}
#searchform input {
    height: 4rem;
    border: none;
    border-right: 0;
    font-weight: 300;
    font-size: 1.4rem;
    background: transparent;
    border-radius: 30px;
    color: #000;
     
outline: none!important;
     border-color:transparent !important;
     box-shadow:none !important;
}
#searchform input:focus,
#searchform input:focus::placeholder{
  border: none !important; /* Disables the border when focused */
  outline: none !important;
  border-color:transparent !important;
  box-shadow:none !important;
}
.search .input-group span{
    display: flex;
    align-items: center;
    justify-content: center;
}
#searchform input::placeholder{
    color:#fff;
    font-weight:normal;
    font-size:1.125rem;
     
}
#searchform input::placeholder{
    color:var(--var-color);
    font-weight:normal;
    font-size:1.125rem;
     
}
#searchform .btn {
    margin: 0;
    padding: 0.9rem;
    border-radius: 0;
    background: transparent;
    border-color: transparent;
} 
#searchform .btn svg path{
    fill:#fff;
}
#searchform .btn svg path{
    fill:var(--var-color);
}
/* footer */
footer {
    position: relative;
    background: #141F1C;
    padding: 6.25rem 0 3.25rem 0;
    /*margin-top: 5rem;*/
}
 
.footer__top{
    padding: 4rem 0 2rem 0;
}
.header__logo img{width: auto;}
.header__logo h3{
    color: #000;
    font-weight: bold;
    font-size: 1.25rem;
    text-align: justify;
    line-height: 25px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom:2rem
}
.header__logo h3:before{
    position:absolute;
    content:"";
    bottom:0rem;
    left:0;
    width:30%;
    height:2px;
    background:#00000050
}
.footer__top .menus ul{
    padding: 0;
    list-style: none;
    gap: 5rem;
    margin: 0;
    position: relative;
}
.footer__top .menus ul{
    
}
.footer__top .menus ul li a {
    color: #ccc;
    text-align: left;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2; /* 1.5rem */
    transition: all 0.5s ease-in-out;
    position: relative;
    padding-top: 0;
    padding-bottom: 1rem;
}
.footer__top .menus ul.menu a:hover {
    color: #b4a564;
}

.footer__top .social__media ul {
    flex-direction: row !important; 
    margin:0;
    padding:0;
    gap:1rem;
}
.footer__top p a.contact {
    background: #000;
    width: 100%;
    display: block;
    padding: 1.3rem;
    margin: 2rem 0;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
}
footer  h2,.info_contact h2,.footer-widget-title{
    color: #B4A56F;
    text-align: left;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
     /* 2.25rem */
    margin-bottom:1rem;
    border:None;
    padding-top: 0;
    padding-bottom: 0;
}
.footer-widget-title:before{
    display:None;
}
.info  {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style:none;
    padding:0;
    margin:0;
}
.info li { 
    color:#ccc;
}
.info li a {
    color: #ccc;
    text-align: left;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2; /* 1.5rem */
    display: flex;
}
.footer__bottom { 
    position: relative;
    margin-top: 4rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom .footer__right{
 
}
.footer__bottom ul{
    list-style:none;
    padding:0;
    position: relative;
    padding-bottom:0.5rem;
    margin-bottom: 2rem;
}
.footer__bottom ul:before{
    
}
.footer__bottom ul li a:first-of-type{
    
    position:relative;
}
.footer__bottom ul li a:first-of-type:before{
     
}
.footer__bottom ul li a{
    width: 3rem;
    height: 3rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 0.5435rem;
    border: 0.507px solid #E5E5E5;
}
.footer__bottom:before{
    
}
.table{
    width:60%;
    margin-top: 4rem;
    overflow: hidden;
}
.table td, .table th,
.table td a{
    border:none;
    font-size: 1.3rem;
    font-weight: bold;
    color: #000000;
}
.table-striped tbody tr:nth-of-type(odd),
.table-striped tbody tr:nth-of-type(even){
    background:transparent;
    border: 1px solid #555555;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__bottom .to-top {
    position: unset;
    color: var(--var-color);
    font-weight: 300;
    background: transparent;
    height: 3.5rem;
    width: 4.5rem;
    font-size: 1.3rem;
    left: unset;
    top: unset;
    display: block;
    margin: auto;
}
.footer__bottom .to-top span {
    display: block;
    color: #A78D78;
}
.footer__bottom .to-top:hover {
    color: var(--var-color);
}
.footer__bottom .to-top svg {
    width: 4.5rem;
    height: 4.5rem;
}
.footer__bottom .to-top svg path {
    stroke: #A78D78;
}
.footer__bottom p.rights {
    color: #fff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.5rem */
    margin: 0;
}
.footer__bottom .rowaad{
    display: flex;
    align-items: center;
    position: relative;
}
.footer__bottom .rowaad:before{ 
}
.footer__bottom .rowaad span {
    padding-right: 1rem;
    color: #000
}
.footer__bottom .rowaad a {
   color: #fff;
   font-size: 1rem;
   font-style: normal;
   font-weight: 400;
   line-height: 150%; /* 1.5rem */
}
.newsletter  h3{
    color: #ccc;
    text-align: left;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 1.3125rem */
    margin-bottom:2rem
}
.newsletter form label{
  font-size:0;
  margin: 0;
}
.newsletter  form {
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-radius: 12.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;

background: #F5F5F5;
}
.newsletter .es-field-wrap{
    margin:0;
}
.newsletter  form input{
  background:url('../images/envelope.svg') 5% 50% no-repeat, transparent;
  background-size:12%;
  border:none; 
  display:inline-block !important;
  color: #989895;
text-align: left; 
font-size: 1rem; 
    padding-left:3rem;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 1.5rem */
}
.newsletter  form input::placeholder{
  color: #989895;
text-align: left; 
font-size: 1rem;
}
.newsletter  form .btn{
   background:url('../images/arrow-left.svg') no-repeat center,#93B5A8; 
    border-radius: 12.5rem; 
    display: flex;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0.71875rem 0.78113rem 0.8125rem 0.75013rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.footer__bottom .rowaad a svg{ }
/* breadcrumbs */
#breadcrumbs {
    padding: 0 0;
    position: relative;
    margin: 0;
    overflow: hidden;
}
#breadcrumbs:after{
    position:absolute;
    content:'';
    background:#000000c4;
    left:0;
    right:0;
    top: 0;
    text-align:center;
    width:100%;
    height:100%;
    opacity:.9;
}
#breadcrumbs #video{
    object-fit: cover;
    width: 100%;
    height: 366px;
}
#breadcrumbs .text{
    position:absolute;
    bottom: 16%;
    left: 0;
    padding: 0 4rem;
    z-index: 9;
    color:#fff;
    width: 100%;
}
#breadcrumbs .text ul{
    display:flex;
    margin:0;
    align-items: anchor-center;
}
#breadcrumbs .text ul li{
    color:#fff;
    font-size: 1.4rem;
    padding: 0 14px 0 0;
    font-weight: 100;
}
#breadcrumbs .text ul li:last-of-type{
    font-family: 'Expo Arabic Medium';
    font-size: 1.8rem;
}
#breadcrumbs .text ul li a{
    color:#fff;
    font-weight: 100;
    padding: 0;
}
#breadcrumbs .text ul li svg{
    width: 12px;
}
.pagedef .page_title {
    color:#000;
    width: 56%;
    line-height: 1.5;
}
.contact-page{
    padding: 7rem 0 10rem;
}
.contact-page .text h1{
    font-family: 'Expo Arabic Medium';
    color:#45695D;
}
.contact-page .text p{
    color:#45695D;
    font-size: 2rem;
    padding: 1rem 0 0;
}
.contact-page .row{
    align-items: anchor-center;
}
.contact-page .info_contact{
    padding-top:10rem;
}
.contact-page .info_contact h2{
    color:#45695D;
    font-size:1.6rem;
    padding-bottom:1rem;
}
.contact-page .info li{
    padding:.5rem 0;
}
.contact-page .info li a{
    color:#45695D;
    font-size:1.6rem;
}
.contact-page .info li a .icon{
    padding-right:1rem;
}
/* about_page */
.aboutPage{
    padding:5rem 0;
}
.aboutPage .about_page_title{
    width:45%;
    line-height:1.5;
}
.why_about_section{
    margin:5rem 0;
}
.why_about_section .title h2{
    font-size:2rem;
    width: 72%;
    color:#000;
    font-family: 'Expo Arabic Medium';
    line-height: 1.5;
}
.why_about_section .item{
    margin:.5rem 0;
    padding:2rem 1rem;
}
.why_about_section .item:nth-child(2n){
    background:#d9d9d980;
}
.why_about_section .item h4{
    font-size:1.6rem;
    color:#000;
    line-height: 1.5;
}
.why_about_section .image,
.why_about_section .image img{
    height:100%;
}
.vision_message{
    margin-bottom:5rem;
}
.vision_message .item{
    background:#E5FFF8;
    padding:2rem;
    margin:2rem 0;
    border-radius:1.5rem;
    transition:all .5s;
    min-height: 274px;
}
.vision_message .item:hover{
    background:#141F1C;
    color:#fff;
    transition:all .5s;
}
.vision_message .item h4{
    color:#141F1C;
    font-size:2.3rem;
    font-family: 'Expo Arabic Medium';
}
.vision_message .item p{
    font-size:1.2rem;
    line-height:2;
    color:#000;
}
.vision_message .item:hover h4,
.vision_message .item:hover p{
    color:#fff;
    transition:all .5s;
}
.projects_section_single{
    padding: 5rem 10rem 6rem 42px;
}
.projects_section_single .proj_info{
    display:flex;
    justify-content:space-between;
    align-items: start;
    padding:1rem 0 2rem;
}
.projects_section_single .proj_info h2{
    font-family: 'Expo Arabic Medium';
    width:60%;
    font-size:3rem;
    padding-bottom: 2rem;
}
.projects_section_single .proj_info .projects_type{
    background:#45695D;
    color:#fff;
    font-size:1rem;
    width:fit-content;
    padding:1rem 3rem;
    border-radius:50px;
}
.projects_section_single .proj_info p{
    font-size: 1.7rem;
    /* width: 50%; */
}
.projects_section_single .proj_info div{
    /* flex: 1; */
}
.projects_section_single .proj_info div:last-of-type{
    /* flex: 1; */
    width: 33%;
}
.projects_section_single .proj_gallery{
    padding-bottom:2rem;
    position: relative;
}
.projects_section_single .proj_gallery .project-stat{
    position:absolute;
    right:3rem;
    top:2rem;
    z-index:99;
    background:#BF9B57;
    color:#fff;
    padding:1rem 2rem;
    border-radius:50px;
}
.projects_section_single .proj_gallery img{
    border-radius:2rem;
    border:1px solid #066434;
}
.proj_gallery .slick-dots{
    bottom: 21px;
}
.projects_section_single .proj_info.lastDetails div:last-of-type{
    width: 55%;
}
.projects_section_single .proj_info .caption ul li{
    display:flex;
    color:#04042D;
    font-size: 1.4rem;
    padding:.3rem 0;
    width: 62%;
}
.projects_section_single .proj_info  .caption ul li p{
    margin:0;
    padding:0 .5rem;
    font-size: 1.5rem;
}
.projects_section_single .proj_info  .caption h4{
    color: #000;
    font-size: 2rem;
}
.projects_section_single .proj_info .details p{
    font-size:1.5rem;
}
.projects_section_single .proj_info .details ul{
    display:flex;
    justify-content:center;
}
.projects_section_single .proj_info .details ul li a{
    background:#45695D;
    color:#fff;
    padding:1rem 2rem;
    margin:1rem;
    display:block;
    border-radius:50px;
    font-size:1.4rem;
    transition:all .5s;
}
.projects_section_single .proj_info .details ul li a:hover{
    background:#000;
    transition:all .5s;
}
/* services_single */
.services_single{
    padding: 6rem 0;
}
.services_single .image h1{
    color: #000;
    font-size:3rem;
    padding-bottom: 4rem;
    text-align: left;
}
.services_single .image img{
    /* width:100%; */
}
.services_single .text p{
    color: #04042D;
    font-size:1.4rem;
    line-height: 2;
}
.services_single .text .btn{
    background:#45695d;
    padding:1rem 5rem;
}
.services_benfites{
    padding:0 0 5rem;
}
 .services_benfites .item{
    background: #E5FFF8;
    border-radius:3rem;
    text-align:center;
    padding: 3rem 0;
    margin: 1rem;
}
 .services_benfites .item:hover{
     background:#45695D;
     color:#fff;
     transition:all .5s;
 }
.services_benfites .item h1{
    font-size:1.5rem;
}
/* 404 */
.error-message {
    color: #000;
    font-size: 15rem;
    padding: 0;
    margin: 0;
}
.error-message:before {
    color: #000;
}
.error-message + p ,
.error-message + p +p {
    font-size: 2rem;
}
.pro-gallery,.pro-gallery a{
    position:relative
}
.pro-gallery a:before{
    position: absolute;
    content:"";
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../images/single_project.png') no-repeat;
    background-size:100% 100%;
}
.single-page p {
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 2;
    color: #6F6F6E;
    text-align: justify;
}
 
.single-page a {
    /*background: #BD9F58;*/
    /*border-color: #BD9F58*/
}

.search-page.media_section {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 2rem;
}
.search-page.media_section .search-title {
    margin: 0  0
 2rem 0}
.search-page.media_section .item {
    margin: 1rem;
}
.search-page.media_section .item .image img {
    height: 45rem;
}
.post-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 4rem 0 0;
}
.post-nav .pager {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.post-nav .pager li span ,
.post-nav .pager li a {
    padding: 1rem;
    color: #000;
    background: #E6E6E6;
    margin: 1rem;
    font-size: 1.4rem;
}
.post-nav .pager li.active span ,
.post-nav .pager li.active a {
    background: var(--var-color);;
    color: #fff;
}
.post-nav .pager li a.arr.prev span svg {
    transform: rotate(-90deg)
}
.post-nav .pager li a.arr[title="Next"] span svg {
    transform: rotate(180deg)
}
.gform_legacy_markup_wrapper .validation_message {
    font-size: 1.2rem !important;
    padding: 1rem 0 !important;
}
.iti__flag-container {
    left: unset !important;
    right: 0 !important;
    direction: rtl !important;
    color: #707070;
    font-size: 1.3rem;
}
.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
}
.iti__flag-container .iti__arrow {
    display: none;
}
.upload__file {
    position: relative;
}
.upload__file .ginput_container {
    /* border-radius:1rem; */
    /* padding: 1.7rem; */
    position: relative;
    /* background: #F7F7F8; */
}
.gform_wrapper.gravity-theme .ginput_preview {
    margin: 28px 0 0 !important;
}
.page .gform_wrapper .gform_fields .gfield.upload__file .ginput_container input {
    /*padding: 0 !important;*/
    /*z-index: 9999999;*/
    /*position: relative;*/
}
.upload__file  .gfield_description {
    position: absolute;
    top: 2rem;
    color: #C0C0C0;
}
.upload__file .validation_message {
    top: unset;
    bottom: 1rem;
    font-size: 1.2rem !important;
}
.upload__file  input{
    opacity: 0;
    width: 100% !important;
    height: 66px !important;
    position: absolute;
    z-index: 999;
    top: -25px;
}
.gform_fileupload_rules {
    display: none !important;
}
.gform_legacy_markup_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_legacy_markup_wrapper li.gfield_error textarea {
    border: none !important;
}
/* contact-page */
.page .gform_wrapper,
.contact-page .gform_wrapper {
    margin: auto;
}
.page-id-3424 .gform_wrapper,
.contact-page .gform_wrapper {
}
.page-id-3424 .gform_wrapper .gform_heading,
.contact-page .gform_wrapper .gform_heading {
    display: flex;
    justify-content: center;
    display: none;
}
.page .gform_wrapper .gform_fields,
.contact-page .gform_wrapper .gform_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0rem;
    justify-content: center;
}

.gform_confirmation_message {
    font-size: 2rem;
    font-weight: 400;
    text-align: center !important;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    color: #66C371;
}
.page .gform_wrapper .gform_fields .gfield:last-child ,
.contact-page .gform_wrapper .gform_fields .gfield:last-child {
    width: 100% !important;
}
.gform_wrapper .gform_fields .gfield textarea ,
.gform_wrapper .gform_fields .gfield select ,
.gform_wrapper .gform_fields .gfield input ,
.contact-page .gform_wrapper .gform_fields .gfield textarea ,
.contact-page .gform_wrapper .gform_fields .gfield input,
.contact-page li .ginput_container_phone input,
.contact-page li select,
.upload__file .ginput_container{
    border: 0; 
    margin: 0 !important; 
    border: transparent !important;  
    color: #000;
    text-align: left; 
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex; 
    height: 6rem;
    padding: 1.49375rem 1.75rem 1.40625rem 1.75rem !important;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 1.2rem;
    background: #fff;
}

.contact-page .gform_wrapper .gform_fields .gfield select option,
.contact-page .gform_wrapper .gform_fields .gfield select{
     color: #45695d;
     font-size: 1.4rem;
}
.contact-page .gform_wrapper .gform_fields .gfield textarea, .gform_wrapper .gform_fields .gfield textarea{
    padding:1rem 0 0 2rem !important;
}
.contact-page .gform_wrapper .gform_fields .gfield select {
    -webkit-appearance: none; 
    appearance: none
}

.contact-page .gform_wrapper .gform_fields .gfield .ginput_container_select {
    position: relative;
}
.contact-page .gform_wrapper .gform_fields .gfield .ginput_container_select::after,.gform_wrapper .gform_fields .gfield .ginput_container_select::after {
    position: absolute;
    content: "";
    top: 14px;
    right: 20px; 
width: 2.125rem;
height: 2.125rem;
    background: url(../images/arrow-down.svg) no-repeat center/ 0%;
}

body .gform_wrapper .gfield .iti__country-container {
    right: 0 !important;
    left: auto !important;
}
.page .gform_button {
    background: #BD9F58;
    border: #BD9F58;
    font-size: 1.5rem !important;;
    padding: 1rem 3rem;
}
.page .gform_wrapper .gform_fields .gfield textarea ,
.contact-page .gform_wrapper .gform_fields .gfield textarea,.gform_wrapper .gform_fields .gfield textarea {
    height: 8.5rem;
padding: 1.09375rem 0.75rem 6.09375rem 0.75rem;
justify-content: center;
align-items: center;
flex-shrink: 0;
display:flex;
}
.page .gform_wrapper .gform_fields .gfield:last-of-type ,
.contact-page .gform_wrapper .gform_fields .gfield:last-of-type {
    margin: 10px 0 !important;
}
.page .gform_wrapper .gform_fields .gfield input::placeholder ,
.page .gform_wrapper .gform_fields .gfield textarea::placeholder ,
.contact-page .gform_wrapper .gform_fields .gfield input::placeholder ,
.contact-page .gform_wrapper .gform_fields .gfield textarea::placeholder,
.contact-page li select,
.gform_wrapper .gform_fields .gfield input::placeholder ,
.gform_wrapper .gform_fields .gfield textarea::placeholder{
    color: #45695d;
    text-align: left; 
    font-size: 1.525rem;
}
.gfield_required_text,
.gfield_required_asterisk {
    display: none !important;
}
html[dir=rtl] .gform_legacy_markup_wrapper h3.gform_title,
body.rtl .gform_legacy_markup_wrapper h3.gform_title,
.contact-page .gform_title {
    font-size: 4rem !important;
    font-weight: 500 !important;
    color: var(--main-color);
}
.gform_legacy_markup_wrapper .gform_footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.contact-page .gform_footer .btn,
body.rtl .contact-page .gform_legacy_markup_wrapper input[type=submit],body.rtl .gform_legacy_markup_wrapper input[type=submit]{
    font-size: 1.5rem !important; 
    width: 13.25rem !important;
    height: 5rem;
    border-radius: 1rem;
    background: #45695d; 
    border: none;
    margin: 2.5rem 0 !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center; 
    color: #fff;
    text-align: center !important;
    font-size: 1.3rem;
    font-style: normal;
    line-height: 150%; /* 2.0625rem */
}
body .gform_wrapper .gfield button.iti__selected-country {
    direction: rtl !important;
}
.forms_pages .gform_footer .btn{
}
.contact-page .gform_footer .btn:hover {
    background: #000;
    color: #fff;
}
.fullPageMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #141F1C;
    transition: 0.5s;
    z-index: 99999999;
}

.fullPageMenu.active {
    top: -100%;
}

.fullPageMenu .nav {
    display: block;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* padding: 4rem 0; */
}
.fullPageMenu .nav .header__logo {
    text-align: center;
    padding: 4rem;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 2rem;
    background: #141F1C;
}
.fullPageMenu .nav img {
    width: auto;
    margin: auto;
}
.fullPageMenu .nav ul li img{
    width:auto;
}

.fullPageMenu .nav ul {
    position: relative;
    padding: 0 2rem;
    height:auto;
}

.fullPageMenu .nav ul li {
    position: relative;
    list-style: none;
    padding: 0 20px;
    margin: 5px 0;
    overflow: hidden;
}


.fullPageMenu .nav ul li:hover {
    transition: transform 0.5s ease-in-out;
    color: #BD7303
}

.fullPageMenu .nav ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    line-height: 2;
    display: block;
    text-transform: uppercase;
    transition: 0.5s ease-in-out;
}

.fullPageMenu .nav ul ul {
    display: none;
}
.fullPageMenu .nav ul li:hover > ul.sub-menu {
    display: block;
}
.menuclose {
    position: absolute;
    right: 3rem;
    top: 2rem
}
.menuclose svg path {
    stroke: #fff
}
.acf-map {
    width: 100%;
    height: 700px;
    border: #ccc solid 1px;
    margin: 20px 0;
}
.iti__country-list {
    right:0;
}
.dropdown-toggle::after{
    display:none !important;
}
@keyframes animloader {
  0% {
    height: 40px;
    transform: translateY(0);
  }
  100% {
    height: 10px;
    transform: translateY(30px);
  }
}
.navs-slider .image{
    position:relative;
    margin:0 0.5rem;
}
.navs-slider  .image:before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background: rgb(84,84,84);
     background: linear-gradient(0deg, rgba(84,84,84,1) 100%, rgba(46,46,46,1) 50%, rgba(0,0,0,1) 100%);
     right:0;
    top:0;
    opacity:0.3;
}

body .gform_legacy_markup_wrapper ul > li.gfield  {
    width: 100% !important;
    padding: 0rem 0 0 !important;
    border-radius: 0.4rem;
}
.gform_legacy_markup_wrapper .validation_message {
    font-size: 1.2rem !important;
    padding: 1rem 0 !important;
}
body.rtl .project-single .gform_legacy_markup_wrapper ul > li.gfield:last-child,
.project-single .gfield:last-child {
    width: 100% !important;
}
.page-id-3424 .gform_legacy_markup_wrapper ul > li.gfield:nth-of-type(5),
body.rtl .job-page .gform_legacy_markup_wrapper ul > li.gfield:nth-of-type(5) {
    width: 98% !important;
}
.gfield .iti.iti--allow-dropdown input{
    color: #C0C0C0;
    border: 0 !important;
    margin: 0;
    padding-left: 1rem !important;
}
html[dir=rtl] .project-single .register-form .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding: 1rem 0 0 0 !important;
}
.main{
    position:relative;
}
ls-slide-backgrounds{
    position:relative;
}
.ls-slide-backgrounds:before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background:#000000;
    opacity:0.7;
}
#projects-filters{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  padding: 2rem 1rem;
  border-radius: 0;
  background: #93B5A8;
}
#projects-filters label{
  color: #120300;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  text-align: left;
}

#projects-filters .select-wrap{
  position:relative;
  display:inline-block; 
}

#projects-filters select{
  appearance:none;          /* ÃƒËœÃ‚Â¥ÃƒËœÃ‚Â®Ãƒâ„¢Ã‚ÂÃƒËœÃ‚Â§ÃƒËœÃ‚Â¡ ÃƒËœÃ‚Â´Ãƒâ„¢Ã†â€™Ãƒâ„¢Ã¢â‚¬Å¾ ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚ÂªÃƒËœÃ‚ÂµÃƒâ„¢Ã‚ÂÃƒËœÃ‚Â­ */
  -webkit-appearance:none;
  -moz-appearance:none;
  width:100%;
  padding:12px 44px 12px 0;  /* Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â³ÃƒËœÃ‚Â§ÃƒËœÃ‚Â­ÃƒËœÃ‚Â© Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â³Ãƒâ„¢Ã¢â‚¬Â¡Ãƒâ„¢Ã¢â‚¬Â¦ Ãƒâ„¢Ã…Â ÃƒËœÃ‚Â³ÃƒËœÃ‚Â§ÃƒËœÃ‚Â±/Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Â¦Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â­ÃƒËœÃ‚Â³ÃƒËœÃ‚Â¨ RTL */
  border:none;
  background: transparent;
  font-size:0.875rem;
  line-height:1.2;
  outline: none;
  cursor:pointer;
}

/* Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â ÃƒËœÃ‚Âµ ÃƒËœÃ‚Â¹Ãƒâ„¢Ã¢â‚¬Â ÃƒËœÃ‚Â¯ ÃƒËœÃ‚Â§ÃƒËœÃ‚Â®ÃƒËœÃ‚ÂªÃƒâ„¢Ã…Â ÃƒËœÃ‚Â§ÃƒËœÃ‚Â± Ãƒâ„¢Ã¢â‚¬Å¡Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚Â© */
#projects-filters select:focus,
#projects-filters select:not([value=""]){
  color:var(--text);
}
#projects-filters .select-wrap::after{
  content:"";
  position:absolute;
  top:50%;
  transform: translateY(-50%) rotate(316deg);
  width:8px;
  height:8px;
  border-left:2px solid #0A0A0A;
  border-bottom:2px solid #0A0A0A;
  pointer-events:none;
  /* Ãƒâ„¢Ã‚ÂÃƒâ„¢Ã…Â  RTL Ãƒâ„¢Ã…Â Ãƒâ„¢Ã†â€™Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â³Ãƒâ„¢Ã¢â‚¬Â¡Ãƒâ„¢Ã¢â‚¬Â¦ ÃƒËœÃ‚Â¹Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã¢â‚¬Â° ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã…Â ÃƒËœÃ‚Â³ÃƒËœÃ‚Â§ÃƒËœÃ‚Â± */
  inset-inline-end:14px;
}
.bordered_form{
    border-left:1px solid #E9E3D8;
    padding-left: 1.5rem;
    margin-left:1.5rem;
}
.bordered_form:first-of-type{
    border:None;
    margin:none;
    padding:0;
}
/* Ãƒâ„¢Ã‚ÂÃƒâ„¢Ã‹â€ Ãƒâ„¢Ã†â€™ÃƒËœÃ‚Â³ Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã¢â‚¬Â¡Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã‚ÂÃƒËœÃ‚Â± */
#projects-filters select:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 20%, white);
}
#projects-filters select:hover{
  border-color:#d6d6d6;
}

/* ÃƒËœÃ‚Â²ÃƒËœÃ‚Â± "ÃƒËœÃ‚Â§Ãƒâ„¢Ã†â€™ÃƒËœÃ‚ÂªÃƒËœÃ‚Â´Ãƒâ„¢Ã‚Â" */
#projects-filters button[type="submit"]{
  display: flex;
  width: 9rem;
  height: 4rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  background: #141F1C;
  border-radius: 0;
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  
   /* 1.5rem */
  cursor:pointer;
}
#projects-filters button[type="submit"]:hover{
  filter:brightness(.95);
  box-shadow: 0 8px 24px rgba(196,160,102,.35);
}
#projects-filters button[type="submit"]:active{
  transform: translateY(1px);
}

/* ÃƒËœÃ‚Â­ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â© ÃƒËœÃ‚ÂªÃƒËœÃ‚Â¹ÃƒËœÃ‚Â·Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Å¾ ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â²ÃƒËœÃ‚Â± (Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã‹â€  ÃƒËœÃ‚Â§ÃƒËœÃ‚Â³ÃƒËœÃ‚ÂªÃƒËœÃ‚Â®ÃƒËœÃ‚Â¯Ãƒâ„¢Ã¢â‚¬Â¦ÃƒËœÃ‚ÂªÃƒâ„¢Ã‚Â ÃƒËœÃ‚ÂªÃƒËœÃ‚Â¹ÃƒËœÃ‚Â·Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Å¾ JS) */
#projects-filters button[disabled]{
  opacity:.6;
  cursor:not-allowed;
}

/* ÃƒËœÃ‚ÂªÃƒËœÃ‚Â¬ÃƒËœÃ‚Â§Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â¨Ãƒâ„¢Ã…Â ÃƒËœÃ‚Â© */
@media (max-width: 768px){
  #projects-filters{
    gap:0;
  }
  #projects-filters .select-wrap{
    min-width:min(100%, 360px);
    flex:1 1 100%;
  }
  .bordered_form {
    border-left: 1px solid #E9E3D8;
    padding-left: 1rem;
    margin-left: 1rem;
}

    #projects-filters select { 
        padding: 5px 44px 5px 0;
    }
    #projects-filters .select-wrap::after { 
        width: 5px;
        height: 5px;
        border-left: 1px solid #0A0A0A;
        border-bottom: 1px solid #0A0A0A;
        pointer-events: none;
        inset-inline-end: 14px;
    }
}
.search-section form{
  border-radius: 0.75rem;
   background: #FFF;
  display: flex;
    width: 54.25rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;

}
.search-section #searchform .btn {
    margin: 0;
    padding: 0.9rem 2rem;
    border-radius: 0;
    background: #C5AE80;
    border-color: #C5AE80;
    color:#fff;
    font-size:1.5rem;
}
#searchform input {
    padding: 0 1rem;
    height: 4rem;
    border: none;
    border-right: 0;
    font-weight: bold;
    font-size: 2rem;
    
    background: url(../images/search-icon.png) no-repeat 94% center, #E1C89715;
    background-size: 2rem;
    border-radius: 0px;
    color: #707070;
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.search-section  #searchform input::placeholder{
    color:#707070;
    font-weight:bold;
    font-size:2rem;
}
.search-section  #searchform label{
    color:#707070;
    font-weight:bold;
    font-size:2rem;
    display:inline-flex;
    align-items:center;
    gap:1rem;
}
.search-section  #searchform  select{
    color:#707070;
    font-weight:bold;
    font-size:2rem;
    border:none;
    min-width:150px;
}
.search-section{
      text-align: center;
      position: absolute;
      top: 69%;
      width: 100%;
      direction: ltr;
      z-index: 111111;
      display: flex;
      align-items: center;
      justify-content: center;
}
.search-section #searchform .btn {
    margin: 0;
    padding: 0.9rem 2rem;
    border-radius: 0;
    background: #C5AE80;
    border-color: #C5AE80;
    color:#fff;
    font-size:1.5rem;
}
#searchform input {
    padding: 0 1rem;
    height: 4rem;
    border: none;
    border-right: 0;
    font-weight: bold;
    font-size: 2rem;
    
    background: url(../images/search-icon.png) no-repeat 94% center, #E1C89715;
    background-size: 2rem;
    border-radius: 0px;
    color: #707070;
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.search-section  #searchform input::placeholder{
    color:#707070;
    font-weight:bold;
    font-size:2rem;
}
.search-section  #searchform label{
    color:#707070;
    font-weight:bold;
    font-size:2rem;
    display:inline-flex;
    align-items:center;
    gap:1rem;
}
.search-section  #searchform  select{
    color:#707070;
    font-weight:bold;
    font-size:2rem;
    border:none;
    min-width:150px;
}
.services_benfites .image{
    background:#C5AE80;
    width:60px;
    height:60px;
    padding:1.5rem;
    border-radius:50%;
    margin:auto;
    margin-bottom:2rem
}

.guarantees{
	background:#E1C897;
	padding:5rem 0;
}
.related{
    /*padding-left:20%;*/
}
.related .item{
    margin:2rem 1rem;
}
.guarantees .title_g h2,.related .title h2{
	color:#251603;
	font-weight:900;
	font-size:2.5rem;
	margin-bottom:2rem;
}
.guarantees .item h2{
	color:#251603;
	font-weight:900;
	font-size:1.5rem; 
	margin-top:1rem;
}
.guarantees .item p{
	color:#251603;
	font-weight:900;
	font-size:1rem; 
 }
.guarantees .item{
	margin:2rem 0;
}
.acf-rating{
  display:flex;
  align-items:center;
  gap:8px;
  position:relative;
}

.acf-rating .rating-badge{
  background:#ff4d36;       /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â± ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:4px 8px;
  border-radius:4px;
  line-height:1;
  display:inline-block;
}

.acf-rating .stars{
  display:flex;
  gap:2px;
}

.acf-rating .star svg{
  display:block;
  fill:#ddd;                /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© */
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© */
.acf-rating .star.full svg{
  fill:#c79c35;             /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  */
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©: ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ SVG ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ ::after ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂªÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ */
.acf-rating .star.half{
  position:relative;
}
.acf-rating .star.half svg{
  fill:#ddd;
}
.acf-rating .star.half::after{
  content:"";
  position:absolute;
  inset:0;
  width:50%;
  pointer-events:none;
  background:#c79c35;       /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  */
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox=&#34;0 0 24 24&#34;><path d=&#34;M12 2.5l3.09 6.26 6.91 1.01-5 4.87 1.18 6.88L12 18.77 5.82 21.52 7 14.64 2 9.77l6.91-1.01L12 2.5z&#34;/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox=&#34;0 0 24 24&#34;><path d=&#34;M12 2.5l3.09 6.26 6.91 1.01-5 4.87 1.18 6.88L12 18.77 5.82 21.52 7 14.64 2 9.77l6.91-1.01L12 2.5z&#34;/></svg>') center/contain no-repeat;
}
.reviews_section .item .image{
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    overflow:hidden;
}
.reviews_section{
    padding: 5rem 0 3rem 0rem;
    background: #DEE9E4;
}
.reviews_section .title{
    margin-bottom:3rem;
}
.reviews_section .title h2{
    color: #150300;
    font-size: 3rem;
    margin: 0;
    padding: 0;
}
.reviews_section .title p{
    color: #150300; 
    font-size: 1rem;
}
.reviews_section .item{
    border-radius: 1.875rem;
     border: 3px solid rgba(255, 255, 255, 0.40);
     background: rgba(255, 255, 255, 0.60);
    display: flex; 
    padding: 2.5rem 4.5rem 3rem 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1 0 0;
    margin:1rem;
}
.reviews_section .item .content p{
    color: #8b8080;
    font-size: 1.3rem;
    line-height: 1.5;
}
.reviews_section .item .top{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0.75rem;
}
.reviews_section .item .top h1{
    color: #150300;
    text-align: left;
    font-size: 1.4rem;
    font-style: normal;
     /* 1.1rem */
}
.reviews_section .item .top p{
    color: rgba(29, 29, 29, 0.70);
    text-align: left;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 1.3125rem */
    margin:0;
}
.partners_section{
    padding:5rem 0;
    background: #fff;
}
.partners_section .title h2{
    font-size:3rem;
}
.partners_section .content p{
    width:40%;
    font-size:1.3rem
}
.partners_section .title{
    align-items:flex-start;
    justify-content:flex-start;
    text-align:left;
    margin-bottom:3rem;
} 
.partners_section .item{
    display: flex;
    margin:1rem;
    height: 9.9375rem;
    padding: 0 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.75rem;
    flex-shrink: 0;
    border-radius: 1.875rem;
    background: rgba(255, 255, 255, 0.60);
    border: 1px solid #cccccc29;
}


 
.serv_request{
    display: flex;
width: 30.625rem;
height: 4.875rem;
padding: 0.75rem 1rem;
justify-content: center;
align-items: center;
gap: 0.5rem;
flex-shrink: 0;
color: #FFF;
text-align: center;
font-family: 'ITCHandelGothicArabic';
font-size: 1.625rem;
font-style: normal;
font-weight: bold;
line-height: 150%; /* 2.4375rem */
border-radius: 62.5rem;
background: #BF9B57;
}
@media(max-width: 1500px) and (min-width: 1366px) {

}

@media(max-width:768px) {
    html {
        font-size: 8px;
    }
    header{
        position:initial;
        background:#0d1808;
    }
    .search-section{
        position:initial;
        overflow: hidden;
    }
    .projects_section.Realestateoffers{
        padding: 4rem 1rem;
    }
    .projects_section.Realestateoffers .title h2{
        width:70%;
    }
    .banner__section .content h2{
        font-size:2rem;
    }
    .banner__section .content{
        bottom:15%;
        width: auto;
    }
    .banner__section .content p{
        display:none;
    }
    .services_section{
        padding:2rem;
    }
    .services_section .item{
        border:none;
    }
    .topTitle{
        display:block;
    }
    .title h2{
        font-size:3rem;
    }
    html[dir=rtl] .gform_legacy_markup_wrapper h3.gform_title, body.rtl .gform_legacy_markup_wrapper h3.gform_title, .contact-page .gform_title {
        font-size: 2rem !important
    }
   
    .search-page.services_section .item {
        margin: 1rem  0;
    }
    #exampleModal .modal-dialog {
        max-width: 100% !important;
    }
    #exampleModal .modal-content .gfield {
        width: 100% !important
    }
    header .menu li.menu-item-has-children {
        position: relative;
    }
    header .menu li.menu-item-has-children:hover ul {
        position: relative;
        top: 0;
        width: 100%;
        border-radius: 0;
    }
    header .menu li.menu-item-has-children:after {
        left: unset;
        right: 3rem;
        top: 15px;
    }
    header .menu {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    body.rtl .gform_legacy_markup_wrapper ul li, .project-single .gfield{
        width: 100% !important
    }
    .statistics__section .statistics-items {
        flex-wrap: wrap;
    }
    .statistics__section .statistics-items .item {
        width: 50%;
        flex: unset;
    }
    body.rtl .gform_legacy_markup_wrapper ul > li.gfield, .project-single .gfield {
        width: 100% !important;
        
    }
   
   
    .title h3 {
        font-size: 2rem
    }
 .btn, .btn-more {
    padding: 1rem;
 }

    .page .gform_wrapper .gform_fields .gfield:last-of-type, .contact-page .gform_wrapper .gform_fields .gfield:last-of-type {
        margin: 0 !important
    }
    #breadcrumbs a, #breadcrumbs h3 {
        font-size: 1.5rem;
    }
    #breadcrumbs h3 span {
        margin: 1rem;
    }
    .page .gform_wrapper .gform_fields .gfield {
        width: 100% !important;
        /* padding: 0 !important; */
    }
    html[dir=rtl] .page .gform_footer, html[dir=rtl] .page .gform_page_footer {
        padding: 0 !important
    }
    html[dir=rtl] .gform_legacy_markup_wrapper {
        /* padding-right: 0 !important; */
    }
    
.search-section #searchform .btn {
    margin: 0;
    padding: 0.9rem 2rem; 
    font-size:1.5rem;
}
#searchform input {
    padding: 0 1rem; 
    font-size: 1.2rem;
    background: url(../images/search-icon.png) no-repeat 94% center, #E1C89715;
    background-size: 2rem; 
}
.search-section  #searchform input::placeholder{ 
    font-size:1.2rem;
}
.search-section  #searchform label{ 
    font-size:1.2rem; 
    gap:1rem;
}
.search-section  #searchform  select{ 
    font-size:1.2rem; 
    min-width:auto;
}
    .newsletter form{
        width:70%;
    }
    .menuicon svg path{
        fill:#fff;
    }
    #breadcrumbs #video{
        height:150px;
    }
    .aboutPage .about_page_title{
        width:auto;
        font-size:3rem !important;
    }
    .aboutPage p{
        font-size:2rem !important;
    }
    .vision_message .item{
        min-height:auto;
    }
    #breadcrumbs .text ul{
        flex-wrap:wrap;
    }
    .projects_section_single{
        padding:1rem;
    }
    .projects_section_single .proj_info{
        display:block;
    }
    .projects_section_single .proj_info h2{
        width:auto;
    }
    .projects_section_single .proj_info div:last-of-type{
        width:auto;
    }
    .projects_section_single .proj_info.lastDetails div:last-of-type{
        width:auto;
    }
    .pagedef{
        padding:3rem;
    }
    .pagedef p,
    .pagedef ul li{
        font-size:2rem !important;
    }
    .pagedef .page_title{
        width:auto;
        font-size:2.5rem !important;;
    }

}
@media(max-width: 768px ) and (min-width: 500px) {
    html {
        font-size: 8px;
    }
    
}
@media(max-width: 991px) and (min-width: 768px) {
    html {
        font-size: 8px;
    }
   
}
@media(max-width: 1191px) and (min-width: 992px) {
    html {
        font-size: 8px;
    }
   
}
@media(max-width: 1367px) and (min-width: 1191px) {
    html {
         font-size: 12px; 
    }
}
@media(max-width: 1366px) and (min-width: 1200px) {
    html {
        font-size: 14px;
    }
}


/* Layout for search container */
.search__wraper {
	padding: 20rem;
}
  #btn-search-close svg{
         max-width:100%;
    width: 24px;
    height: 22px;
     }
.js .search__wraper {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 100%;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: #fff;
}

.js .search__wraper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--search-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	right: 1.25em;
	box-shadow:none
}

.search__input {
	font-family: inherit;
	font-size: 4rem;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	padding: 0.05em 0;
	color: #000;
	border: none;
	border-bottom: 4px solid #C5AE80;
	background: transparent
}

.search__input::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #C5AE80;
}

.search__input::-moz-placeholder {
	opacity: 1;
	/* Mozilla Firefox 19+ */
	color: #C5AE80;
}

.search__input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #C5AE80;
}

.search__input::-webkit-search-cancel-button,
.search__input::-webkit-search-decoration {
	-webkit-appearance: none;
}

.search__input::-ms-clear {
	display: none;
}

.search__info {
	font-size: 1.5rem;
	font-weight: 400;
	display: block;
	width: 50%;
	padding: 0.85em 0;
	color: #000;
}

.search__related {
	display: flex;
	width: 35%;
	padding: 4em 0 0 0;
	pointer-events: none;
}

.search__suggestion h3 {
	font-size: 1.35em;
	margin: 0;
}

.search__suggestion h3::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}

.search__suggestion p {
	font-size: 1.15em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
	color: #C5AE80;
}

@media screen and (max-width: 40em) {
}

    #searchform input:-internal-autofill-selected {
    border-color: #fff !important;
    background: #fff !important;
}
@keyframes opacity {
    from {
         opacity:0.2; 
    }
    to {
         opacity:1;
    }
}
body.rtl .gform_legacy_markup_wrapper input[type=submit]{
        text-align: center !important;
}
.whatslink {
    position: fixed;
    right: 2rem;
    top: 80%;
    z-index: 99999;
}
.whatslink a{
  display:flex;
  align-items:center;
}