*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #faf9f9;
}
.project-unit ::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #949494;
    border-radius:4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Cairo Bold */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Cairo ExtraBold */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Cairo ExtraLight */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Cairo Light */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Cairo Medium */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Cairo Regular */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Cairo SemiBold */
@font-face {
    font-family: 'Cairo';
    src: url('../fonts2/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


body {
    font-family: 'Cairo', sans-serif;
    font-weight: normal;
    background-color: #F9F9F9;
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
}

input, select, textarea, label, button {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

svg{
    width:60px;
}

a{
    text-decoration: none;
}

header{
    width:100%;
    position: relative;
    overflow: hidden;
}
header .hbg{
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
header .hbg:before{
    content: '';
    position: absolute;
    width:100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    top:0;
    right: 0;
}

.header{
    height: 85vh;
}

.hheader{
    height: 45vh;
}

.pheader{
    height: 65vh;
}

.nav-container{
    position: absolute;
    width:100%;
    top:30px;
    left: 0;
    z-index: 999;

}
.nav-fixed{
    position: fixed;
}
nav{
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    padding: 5px;
    height: 70px;
    position: relative;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.logo{
    display: block;
    margin: 12px;
    line-height: 0;
}
.logo img{
    width:110px;
    height: auto;
}

.navbar ul{
    margin: 0;
    list-style: none;
    padding: 0;
}
.navbar ul li{
    display: inline-block;
    padding: 15px;
}
.navbar ul li a{
    text-decoration: none;
    color:#000;
    position: relative;
    font-weight: 500;
    transition: all .5s;
}
.navbar ul li a:not(.search-icon):after{
    content: '';
    height: 2px;
    width:0%;
    margin: auto;
    background-color: #234B44;
    position: absolute;
    right:0;
    left: 0;
    bottom: -8px;
    transition: all .5s;
}
.navbar ul li a:hover:after,
.navbar ul li a.active:after{
    width:100%;
}
.navbar ul li a:hover,
.navbar ul li a.active{
    color: #234B44;
}

.headers-btns{
    text-align: center;
}
.headers-btns a{
    text-decoration: none;
    border:1px solid #ddd;
    display: inline-block;
    font-size: 14px;
    padding: 7px 25px;
    border-radius: 5px;
    color:#234B44;
    margin: 8px 2px 0;
    font-weight: 700;
    transition: all .5s ease-out;
}
.headers-btns a:hover{
    box-shadow:inset 0px 100px 0px 0px #234B44;
    color:#fff;
}
.headers-btns a:nth-child(2){
    background-color:#234B44;
    color:#fff;
}
.headers-btns a:nth-child(2):hover{
    box-shadow:inset 0px 100px 0px 0px #fff;
    color:#234B44;
}
.head-text {
    position: absolute;
    margin: 13% 0 0;
    width:100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.head-text h2,
.head-text h1{
    color: #fff;
    font-size: 43px;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.head-text p {
    color: #fff;
    width: 60%;
    margin: auto;
    line-height: 28px;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.search-form{
    position: relative;
    width:55%;
    margin: auto;
}
.search-form input{
    width:100%;
    padding: 20px;
    border: none;
    border-radius: 10px;
}
.search-form button{
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    border: none;
    background-color: #234B44;
    color:#fff;
    padding: 0 20px;
    border-radius: 10px 0 0 10px;
    font-weight: 700;
}
.vision-sa{
    position: absolute;
    bottom: 30px;
    left: 0;
    width:100%;
    text-align: center;
}
.vision-sa img{
    width:150px;
    height: auto;
}


.projects-list{
    padding: 50px 0;
    min-height: 600px;
    position: relative;
}
.projects-list h2{
    text-align: center;
    color:#234B44;
    font-size: 33px;
    font-weight: 700;
    margin-bottom: 30px;
}
.projects-nav-filter{
    text-align: center;
    margin-bottom: 70px;
    overflow: hidden;
}
.projects-nav-filter a{
    text-decoration: none;
    display: inline-block;
    margin: 0 3px;
    font-size: 16px;
    font-weight: 600;
    color:#234B44;
    padding: 0px 15px 3px;
    transition: all .5s;
}
.projects-nav-filter a:hover,
.projects-nav-filter a.active{
    background: #234B44;
    color:#fff;
    border-radius: 5px;
}
.project-item{
    background-color: #fff;
    margin-bottom: 20px;
    border: 1px solid #ececec;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.01);
    position: relative;
    top:0;
    transition: all .5s;
}
.project-item:hover{
    top:-5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.project-item h3{
    color:#234B44;
    margin: 0 10px;
    font-size: 16px;
    margin-bottom: 10px;
}
.project-img{
    display: inline-block;
    overflow: hidden;
    position: relative;
    width:100%;
    height: 230px;
}
.project-img img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.project-stats{
    display: flex;
    justify-content: flex-start;
    padding-right: 12px;
}
.project-stats-item {
    margin-left: 20px;
}
.project-stats a {
    background: #e6e6e6;
    color: #666;
    font-size: 14px;
    padding: 4px 24px;
    border-radius: 5px;
    margin-right: 30px;
    transition: all .5s ;
}
.project-stats a:hover{
    background-color: #234B44;
    color:#fff;
}
.project-stats-item svg{
    width:14px;
    fill:#999;
    position: relative;
    top:2px;
}
.project-stats-item span{
    font-size: 13px;
    display: inline-block;
}
.project-stats-item span i{
    font-style: normal;
    margin-right: 10px;
    display: inline-block;
}

.project-img span{
    position: absolute;
    background: #fff;
    bottom: 10px;
    right:10px;
    color:#000;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;;
    padding: 5px 12px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.project-label{
    position: absolute;
    top: 10px;
    right:10px;
}
.project-label i{
    font-style: normal;
    display: inline-block;
    color:#fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    padding: 2px 10px 4px;
    border-radius: 5px;
}

.project-item p{
    display: flex;
    margin: 0 10px;
}

.project-item p svg{
    width:14px;
    margin-left: 5px;
    fill:#999;
}
.project-item p a{
    font-size: 13px;
    margin-left: 10px;
    position: relative;
    color:#666;
}
.project-item p a:before{
    content:',';
}
.project-item p a:first-of-type:before{
    content:'';
}
.project-item p a:empty{
    display: none;
}


.loadmore{
    display: block;
    width:180px;
    margin: 30px auto;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    background:#234B44;
    color:#fff;
    padding: 6px 0px 9px;
    cursor: pointer;
    border:none;
    transition: all .5s;
}
.loadmore:hover{
    box-shadow:inset 0px 100px 0px 0px #55ae9b;
    letter-spacing: 1px;
}
.loadmore:disabled{
    background: #999;
    cursor: not-allowed;
}

.register-forms{
    overflow: hidden;
    background: #fff;
    overflow: hidden;
    padding: 100px 0;
}
.register-form-info{
    background: #F9F9F9;
    padding: 50px;
    height: 300px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}
.register-form-img{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;

}
.register-form-img svg{
    width:100px;
    height: auto;
    fill:#234B44;
}
.register-form-info h3{
    font-size: 26px;
    color:#000;
    margin-bottom: 10px;
}
.register-form-info p{
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 23px;
}
.register-form-info a{
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    background:#234B44;
    padding: 5px 20px 8px;
    color:#fff;
    border-radius: 5px;
    transition: all .5s;
}
.register-form-info a:hover{
    background-color: #102224;
}

.projects-map{
    background: #ddd;
    height: 400px;
}
header .projects-map{
    height: 100%;
}
.projects-map iframe{
    width:100%;
    height: 100%;
}

.sticky-icons{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 20;

}
.sticky-icons  a {
    border-radius: 50px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 8px;
    transition: all 0.2s ease-out;
}
.sticky-icons  a:hover svg{
    transform: scale(1.2);
}
.sticky-wapp {
    background-color: #25d366;
}
.sticky-wapp svg {
    margin: auto;
    fill: #fff;
    width: 35px;
    height: 35px;
    transition: all 0.2s ease-out;
}
.sticky-phone {
    background-color: #0125db;
}
.sticky-phone svg {
    margin: auto;
    fill: #fff;
    width: 25px;
    height: 25px;
    transition: all 0.2s ease-out;
}

.project-info-co{
    padding-bottom: 50px;
    background: #fff;
}
.project-stat{
    padding:  20px;;
}


.project-stat-item{
    margin-bottom: 10px;
}
.project-stat svg{
    width: 32px;
}
.fsvg{
    fill:#55AE9B;
}
.ssvg{
    stroke:#55AE9B;
}
.project-stat span{
    font-size: 14px;
    position: relative;
    top:-3px;
}
.project-stat i{
    font-style: normal;
    margin-right: 12px;
}
.stats-item{
    text-align: center;
    margin-top: 50px;
}
.stats-item strong{
    display: block;
    font-size: 43px;
}
.stats-item span{
    font-weight: 700;
    font-size: 16px;
    color:#444;
}
.project-desc {
    padding: 0 20px 20px;
}

.project-desc h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-desc p {
    font-size: 14px;
    text-align: justify;
}
.project-map{
    padding: 0 20px 20px;
    margin-top: 30px;
}

.project-map h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.project-map .location-map{
    height: 300px;
}
.location-map{
    background: #ddd;
    height: 400px;
    width:100%;
    overflow: hidden;
    border-radius: 10px;
}
.location-map iframe{
    width:100%;
    height: 100%;
}
.projects-models{
    margin-top: 30px;
    padding: 0 20px 20px;
}

.projects-models h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.projects-models-list{
    background: #f1f1f142;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding-top: 40px;
}
.mitem{
    width:100%;
    height: 300px;
    display: inline-block;
}
.mitem img{
    width:100%;
    height: 100%;
    object-fit: contain;
}

.models-slider .owl-nav button{
    position: absolute;
    top:40%;
    width:50px;
    height: 50px;
    background: #f1f1f190 !important;
    transition: all .5s;
}
.models-slider .owl-nav button:hover{
    background-color: #234B44 !important;
}
.models-slider .owl-nav button:hover span{
    color:#fff;
}
.models-slider .owl-next{
    left:10px;
}
.models-slider .owl-prev{
    right:10px;
}
.models-slider .owl-nav button span{
    font-size: 32px;
    line-height: 30px;
    color:#999;
}

.project-sidebar{
    padding: 20px;
}











footer svg{
    width:22px;
}
footer{
    background-color: #102224;
    overflow: hidden;
}
.top-footer{
    border-bottom: 1px solid rgba(221,221,221,0.15);
    padding: 20px 0 25px;
}
.flogo img{
    width:140px;
}

.social{
    display: flex;
    position: relative;
    top:5px;
    justify-content: flex-end;
}
.social strong{
    color:#fff;
    margin-left: 10px;
    font-size: 14px;
    line-height: 35px;
}
.social a{
    background: #224B44;
    width:35px;
    height: 35px;
    border-radius: 50%;
    margin: 0 5px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    transition: all .5s;
}
.social a:hover{
    transform:scale(1.1);
}
.social a svg{
    width:18px;
    fill:#fff;
    transition: all .5s;
}
.social a:hover svg{
    transform:scale(.8);
}
.social .fb svg{
    width:12px;
}
.footer-item{
    margin: 20px 0 50px;
}
.footer-item h3{
    color:#fff;
    font-size: 16px;
    margin-bottom: 10px;
}
.copyright{
    border-top: 1px solid rgba(221,221,221,0.09);
    padding: 10px 0 20px;
}

.copyright span{
    color:#fff;
    font-size: 13px;
}
.copyright a{
    color:#fff;
    font-size: 13px;
    text-decoration: none;
    margin-left: 10px;
    transition: all .5s;
}
.copyright a:hover{
    color:#c1bfbf;
}
.fmenu{
    list-style: none;
}
.fmenu a{
    text-decoration: none;
    display: block;
    font-size: 15px;
    color:#c1bfbf;
    transition: all .5s;
}
.fmenu a:hover{
    text-indent: 5px;
}
.address-info{
    width:90%;
    margin-top: 25px;
}
.address-info a{
    display: flex;
    align-items: stretch;
    margin-bottom: 13px;
    text-decoration: none;
    color:#c1bfbf;
}
.address-info svg{
    fill:#fff;
    width:14px;
    margin-left: 10px;
}
.address-info span{
    display: inline-block;
    line-height: 22px;
    font-size: 16px;
}

.newsletter-form{
    position: relative;
}
.newsletter-form input{
    width:100%;
    background: transparent;
    border:none;
    border-bottom: 1px solid rgba(213,213,213,0.13);
    padding: 10px;
    text-indent: 14px;
    color:#fff;
}
.newsletter-form > svg{
    position: absolute;
    top:15px;
    right:0;
    fill:#566162;
    width:16px;
}
.newsletter-form button{
    position: absolute;
    top:17px;
    left:5px;
    cursor: pointer;
    border:none;
    background: transparent;
}
.newsletter-form button svg{
    fill:#fff;
    width:16px;
    transition: all .5s;
}
.newsletter-form button:hover svg{
    transform: scale(1.3);
}
.newsletter-form p{
    color:#ddd;
    font-size: 12px;
    margin-top: 10px;
}

.newsl-p{
    color:#C9D2D4;
    font-size: 16px;
}
.no-result{
    text-align: center;
    background: #f3f3f3;
    padding: 50px 0;
    border-radius: 5px;
    color:#666;
}

.mission-area{
    padding: 80px 0;
}
.mission-area h2{
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}
.mission-area p{
    font-size: 14px;
    width:70%;
    margin: auto;
    text-align: center;
    line-height: 26px;
    margin-bottom: 40px;
}
.mission-item{
    background: #fff;
    min-height: 100px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 25px 0 5px;
    margin-bottom: 20px;
    text-align: center;
}

.mission-item p{
    width:85%;
    line-height: 24px;
}
.mission-item img{
    width:90px;
    margin-bottom: 10px;
}

.mission-item h3{
    font-size: 22px;
    margin-bottom: 20px;
    color: #444;
    line-height: 25px;
}
.about-area{
    background: #fff;
    padding: 80px 0;
}
.about-area h1 {
    font-size: 45px;
    line-height: 57px;
    color: #444;
    position: relative;
    top: 0px;
}
.about-area p{
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}
.about-video{
    width:100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    position: relative;
    margin: 30px 0;
}
.about-video img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.about-video i{
    position: absolute;
    width:80px;
    height: 80px;
    background-color: #FF0034;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z'/%3E%3C/svg%3E");
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 22px;
    background-position:  center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: all .5s;
}
.about-video i:hover{
    background-size: 28px;
}
.about-video iframe{
    width:100%;
    height: 100%;
}

.stats-item{
    text-align: center;
    margin-top: 50px;
}
.stats-item strong{
    display: block;
    font-size: 43px;
}
.stats-item span{
    font-weight: 700;
    font-size: 16px;
    color:#444;
}
.contact-area{
    overflow: hidden;
    margin: 50px 0;
}

.contact-form h2{
    margin-bottom: 20px;
    font-size: 26px;
    color:#222;
}
.contact-item{
    margin-bottom: 10px;
}
.contact-item label{
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    color:#777;
}
.contact-item input,
.contact-item select,
.contact-item textarea{
    width:100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color:#fcfcfc;
}
.contact-item select{
    appearance: none;
    background-color:#efeeee;
}
.phone-holder{
    background-image: url('../images/saudi-flag.svg');
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: 15px;
    direction: ltr;
    text-indent: 35px;
}
.contact-item textarea{
    resize: none;
    height: 150px;
}
.contact-item.has-error input,
.contact-item.has-error select,
.contact-item.has-error textarea{
    border-color: #f00;
}
.contact-item button{
    background-color: #234B44;
    color: #fff;
    border: none;
    padding: 5px 20px 7px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: all .5s;
}
.contact-item button:hover{
    background-color: #102224;
}
.contact-item span{
    font-size: 12px;
    color:#f00;
}

.project-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width:100%;
}
.project-title-co{
    background: #fff;
    height: 95px;
    border-radius: 15px 15px 0 0;
    position: relative;

}
.project-title-co:before{
    content: '';
    width: 98%;
    height:1px;
    background: #ddd;
    position: absolute;
    right:0;
    left:0;
    bottom: 0px;
    margin: auto;
}
.project-title-co h1{
    line-height: 28px;
    margin: 0 15px;
    font-size: 22px;
    color:#172226;
}
.project-title-co .ptype{
    display: inline-block;
    margin: 10px 15px 5px;
    color: #4DB6A0;
    font-weight: 600;
}
.project-location-address svg{
    width: 12px;
    position: relative;
    top:3px;
}
.project-location-address span{
    font-size: 14px;
}
.project-location{
    display: flex;
    margin-top: 20px;
    padding-left: 38px;
    justify-content: flex-end;
}
.project-title .project-label{
    text-align: left;
    padding-left: 45px;
    position: relative;
    top:10px;
}

.header-slider{
    direction: ltr !important;
    position: absolute;
    background-color: #fff;
    top:0;
    left: 0;
    height: 100%;
    width:100%;
}
.hoitem{
    height: 65vh;
    display: inline-block;
    background: #fff;
    position: relative;
}
.hoitem:after {
    content: '';
    background: rgba(0, 0, 0, .4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hoitem img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.header-slider .owl-nav button{
    position: absolute;
    opacity: 0;
    top:40%;
    width:50px;
    height: 50px;
    background: #fff !important;
    transition: all .5s;
}
.header-slider:hover .owl-nav button{
    opacity: 1;
}
.header-slider .owl-nav button:hover{
    background-color: #234B44 !important;
}
.header-slider .owl-nav button:hover span{
    color:#fff;
}
.header-slider .owl-next{
    left:10px;
}
.header-slider .owl-prev{
    right:10px;
}
.header-slider .owl-nav button span{
    font-size: 32px;
    line-height: 30px;
    color:#999;
}

.project-gurantee  h3{
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}
.project-gurantee-list h4{
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
}
.project-gurantee-list span{
    width:40px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    transition: all .5s;
}
.project-gurantee-list span:hover{
    background: #ddd;
}
.project-gurantee-list span svg{
    height: 24px;
    stroke:#777;
    stroke: #777;
}
.project-gurantee-list span img{
    width: 32px;
    height: 32px;
}

.popup{
    position: fixed;
    width:100vw;
    height: 100vh;
    top:0;
    right:0;
    z-index: 1023;
}
.popup .overlay{
    position: absolute;
    background: rgba(0,0,0,.6);
    width:100%;
    height: 100%;
}
.popup-co{
    position: absolute;
    background: #fff;
    width:50%;
    max-height:80%;
    top: 10%;
    left: 0;
    right:0;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: scroll;
}
.thank-co{
    width: 500px;
    border-radius: 10px;
    overflow: hidden;
}
.thank-form{
    padding: 30px 0;
    text-align: center
}
.thank-form a{
    display: block;
    text-decoration: none;
    color:#000;
    font-weight: bold;
    margin-bottom: 5px;
    transition: all.5s;
}
.thank-form a:hover{
    color:#999;
}
.thank-form a.phone{
    font-size: 24px;
    direction: ltr;
    color:gray;
}
.thank-form a.email{
    font-weight: 500;
}
.thank-form p {
    color: gray;
    margin: 15px 0 22px;
    font-size: 19px;
    line-height: 27px;
}
.thank-form h3 {
    font-size: 24px;
    line-height: 30px;
    color: #666;
}
.thank-form h4{
    margin-bottom: 20px;
    font-size: 22px;
}
.thank-form span{
    font-size: 18px;
    color:gray;
    display: block;
    margin-bottom: 10px;
}
.lng-en .thank-form h4{
    font-size: 18px;
}
.thank-form svg {
    height: 45px;
    margin-bottom: 15px;
    fill: var(--bgc);
    margin-top: 35px;
}
.pform{
    width:40%;
    border-radius: 5px;
    min-height: 100px;
    padding: 10px;
}
.tform{
    width:300px;
    border-radius: 5px;
    min-height: 100px;
}
.formco{
    padding: 30px;
}
.formco h3{
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
}
.formco h5 {
    text-align: center;
    color: #555;
    position: relative;
    top: -11px;
}


@media(max-width:1400px)
{
    .headers-btns a{
        padding: 7px 14px;
    }
}
@media(max-width:1200px)
{
    .nav-btn {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-menu-2'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 6l16 0' /%3E%3Cpath d='M4 12l16 0' /%3E%3Cpath d='M4 18l16 0' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        display: inline-block;
        cursor: pointer;
        width: 32px;
        height: 32px;
        position: absolute;
        top: 20px;
        left: 25px;
    }
    .logo{
        display: inline-block;
    }
    header{
        padding-top: 200px;
    }
    .searchbar h2 {
        color: #fff;
        font-size: 38px;
        margin-bottom: 10px;
    }
    .searchbar p {
        width: 83%;
        font-size: 14px;
    }
    .search-btn {
        border-radius: 0 0 10px 10px;
        padding: 5px;
        font-size: 16px;
    }
    .vision2030 svg, .vision2030 img {
        width: 100px;
    }
    .search-cbtn {
        height: 50px;
    }
    .navbar {
        position: fixed;
        background: #fff;
        width: 90%;
        top: 0;
        right: 0;
        height: 100vh;
        z-index: 9;
        display: none;
    }
    .nav-overlay{
        position: fixed;
        background: rgba(0,0,0,.5);
        width:100vw;
        height: 100vh;
        left: 0;
        top:0;
        z-index: 1;
        display: none;
    }
    .navbar ul li a {
        display: block;
        border-bottom: 1px solid #ddd;
        padding-bottom: 11px;
    }
    .navbar ul li a:not(.search-icon):after{
        bottom: -2px;
    }
    .nav-close{
        display: inline-block;
        width:50px;
        height: 50px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-x'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M18 6l-12 12' /%3E%3Cpath d='M6 6l12 12' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        margin: 30px 30px 0;
    }

    .navbar ul li {
        display: block;
    }


    .nav-btns{
        display: block;
    }

    .headers-btns.nav-btns {
        display: flex;
        justify-content: flex-start;
        padding-right: 10px;
    }
    .headers-btns.nav-btns a{
        padding: 15px;
        width: 28%;
        text-align: center;
    }

    .social{
        justify-content: center;
        padding-bottom: 40px;
    }
    .social strong{
        display: none;
    }
    .footer-item {
        margin: 20px;
    }
    .copyright{
        text-align: center;
    }
    .register-form-info{
        padding: 30px 40px;
        height: auto;
    }
    .register-forms{
        padding: 50px 0;
    }
    .register-form-info h3 {
        font-size: 20px;
    }
    .projects-nav-filter a {
        padding: 0px 10px 3px;
    }

    .projects-list h2 {
        font-size: 27px;
    }

    .projects-nav-filter {
        margin-bottom: 35px;
    }
    .projects-list{
        padding: 30px 0 20px;
    }
    .about-area h1 {
        font-size: 40px;
    }
    .contact-info{
        width:100%;
    }
    .contact-form {
        margin-top: 20px;
    }
    .searchbar-fly .search-btn{
        right:0;
    }
    .project-title-co{
        height: auto;
    }
    .project-title  .project-label {
        display: inline-block;
        top: 0;
    }

    .project-location {
        display: inline-block;
    }

    .project-location-map {
        display: none;
    }
    .project-title-co h1 {
        line-height: 56px;
        font-size: 19px;
        display: inline-block;
    }
    .project-title-co .ptype {
        margin-left: 0;
    }
    .project-location-address {
        margin-right: 17px;
    }
    .headers-btns{
        display: none;
        text-align: right;
    }
    .pform{
        width:50%;
    }
}

@media(max-width:769px)
{
    .flogo {
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }

    .pform{
        width:70%;
    }
    .project-img{
        height: 180px;
    }
    .project-label i{
        font-size: 14px;
        padding: 1px 6px 2px;
    }
    .head-text{
        margin: -5% 0 0;
    }
    .head-text p{
        width:100%;
        font-size: 14px;
        line-height: 22px;
    }
    .search-form{
        width:95%;
    }
    .vision-sa img {
        width: 120px;
    }
    .headers-btns.nav-btns a {
        padding: 8px;
        width: 45%;
        text-align: center;
    }
    .about-area h1{
        top:-15px;
    }
    .mission-area p{
        width: 95%;
    }
}

@media(max-width:575px)
{
    .navbar {
        width:80%;
    }
    .project-stats a{
        font-size: 12px;
        padding: 4px 11px;
        border-radius: 5px;
    }
    .formco {
        padding: 15px;
    }

    .register-form-img img {
        width: 90px;
    }
    .head-text h2, .head-text h1{
        font-size: 32px;
    }
    .head-text p{
        width:92%;
    }
    .search-form input {
        padding: 15px 20px;
        border-radius: 6px;
    }
    .search-form button {
        padding: 15px 20px;
        border-radius: 6px 0 0 6px;
    }
    .search-form {
        width: 85%;
    }
    .header {
        height: 78vh;
    }
    .project-img {
        height: 145px;
    }
    .project-item h3{
        font-size: 14px;
    }
    .project-item p svg {
        width: 12px;
    }
    .project-item p a {
        font-size: 12px;
    }
    .pform {
        width: 90%;
    }
}