:root 
{
    --primary-color: #0c1b24;
    --secondery-color: #1fab9f;
    --third-color: #444444;
    --text-color: var(--black-color);
    --black-color: #000000;
    --white-color: #ffffff;
    --body-bg: var(--white-color);
    /* --border-color:#ADADAD; */
    --border-raduis: 24px;
}
body
{
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-size: 14px;
    box-sizing: border-box;
    background-color: var(--body-bg);
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
::-webkit-scrollbar 
{
    width: 8px;
    height: 0;
}
::-webkit-scrollbar-track {
    background: var(--primary-color); 
    border-radius: 0px;
}
::-webkit-scrollbar-track-piece{
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--secondery-color);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 5px;
}
*,*::before,*::after
{
    box-sizing: border-box;
}
*:focus
{
    outline: none !important;
}
a,
button,
img,
input {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover
{
    color: var(--secondery-color);
}
img 
{
    max-width: 100%;
}
.img-effect {
	position: relative;
    overflow: hidden;
}
.img-effect > img
{
    transition: 0.5s ease;
}
.img-effect:hover > img
{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.img-effect::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.img-effect:hover::before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.fixall
{
    text-decoration: none;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
}

/*lazyload*/
.lazy-img 
{
    transition: 0.3s;
}
.loading-img 
{
    background-color: #ddd !important;
    position: relative;
    overflow: hidden;
}
.loading-img img 
{
    opacity: 0 !important;
    -webkit-filter: blur(40px);
    filter: blur(40px);
} 
.loaded-img img 
{
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.slide_primary,
.slide_secondery,
.slide_white
{
    position: relative;
    z-index: 1;
}
.slide_primary::before,
.slide_secondery::before,
.slide_white::before
{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
    transition: 0.3s ease;
    inset-inline-start: 50%;
    inset-inline-end: 50%;
}
.slide_primary::before
{
    background-color: var(--primary-color);
}
.slide_secondery::before
{
    background-color: var(--secondery-color);
}
.slide_white::before
{
    background-color: var(--white-color);
}
.slide_primary:hover::before,
.slide_secondery:hover::before,
.slide_white:hover::before
{
    width: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
}
.slide_primary:hover
{
    border-color: var(--primary-color)!important;
}
.slide_secondery:hover
{
    border-color: var(--secondery-color)!important;
}
.slide_white:hover
{
    border-color: var(--white-color)!important;
    color: var(--secondery-color)!important;
}
.header
{
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 99;
}
.header-content
{
    position: relative;
    padding: 8px 0;
}
.header-content::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    position: absolute;
    inset: 0;
    z-index: -1;
}
.nav-bar
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-content
{
    display: flex;
    align-items: center;
}
.logo
{
    max-width: 100px;
}
.nav-list
{
    display: flex;
    align-items: center;
}
.nav-list > li
{
    padding: 5px 16px;
}
.nav-list > li > a
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}
.nav-list > li > a:hover
{
    color: var(--secondery-color);
}
.nav-tools
{
    display: flex;
    align-items: center;
    margin-inline-start: 60px;
}
.nav-tools .language-cont
{
    margin-inline-end: 30px;
}
.language-cont .lang-anc 
{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
}
.language-cont .lang-anc .lang-name
{
    margin-inline-start: 5px;
}
.language-cont .lang-anc:hover
{
    color: var(--secondery-color);
}
.contact_us .contact_anc
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondery-color);
    color: var(--white-color);
    width: 142px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.contact_us .contact_anc > i
{
    transform: rotate(45deg);
    margin-inline-start: 5px;
    margin-bottom: 2px;
    font-size: 16px;
}
html[dir="rtl"] .contact_us .contact_anc > i
{
    transform: rotate(-45deg);
}
.cp_anc
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondery-color);
    color: var(--white-color);
    width: 163px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
}
.company_profile .cp_anc > i
{
    margin-inline-start: 2px;
    font-size: 18px;
    margin-bottom: 2px;
}

.main-slide
{
    position: relative;
}
.main-slide::after
{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right , rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.61));
    position: absolute;
    inset: 0;
    z-index: 1;
}
.main-slide .slide-img
{
    display: flex;
    width: 100%;
    aspect-ratio: 1440 / 822;
}
.main-slide .slide-img img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-slide .slide-text
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    text-align: center;
}
.text-cont
{
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-slide .slide-text .slide-title
{
    font-size: 45px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 26px;
}
.main-slide .slide-text .slide-desc
{
    font-size: 22px;
    font-weight: 300;
    color: var(--white-color);
    opacity: 0.95;
}
.main-slide .slide-text .slide-anc
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 158px;
    height: 56px;
    background-color: var(--secondery-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    margin-top: 44px;
    text-transform: uppercase;
}
.main-slide .slide-text .slide-anc > i
{
    transform: rotate(45deg);
    margin-inline-start: 5px;
    margin-bottom: 3px;
    font-size: 16px;
}
html[dir="rtl"] .slide-text .slide-anc > i
{
    transform: rotate(-45deg);
}
.about-us-sec
{
    margin: 120px 0;
    position: relative;
}
.about-us-sec::before
{
    content: url(../images/shape_1.png);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 15px;
    z-index: -1;
}
html[dir="rtl"] .about-us-sec::before
{
    transform: rotateY(180deg);
}
.about-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    align-items: center;
}
.sec-head .sec-title
{
    font-size: 20px;
    color: var(--secondery-color);
    font-weight: 500;
    padding-inline-start: 80px;
    position: relative;
    text-transform: uppercase;
    text-shadow: .2em .2em .2em rgba(31, 171, 159, 0.6);
}
html[dir="rtl"] .sec-head .sec-title
{
    text-shadow: -.2em .2em .2em rgba(31, 171, 159, 0.6);
}
.sec-head .sec-title::before
{
    content: "";
    width: 64px;
    height: 1px;
    background-color: var(--secondery-color);
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sec-head .sec-sub-title
{
    font-size: 50px;
    color: var(--primary-color);
    font-weight: 500;
    margin: 24px 0;
    text-transform: capitalize;
}
.about-us-sec .about-dsec
{
    font-size: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    color: var(--third-color);
    font-weight: 300;
}
.read-more .read-anc
{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--white-color);
  background-color: var(--secondery-color);
  font-weight: 500;
  width: 153px;
  height: 56px;
  text-transform: uppercase;
}
.read-more .read-anc > i
{
    transform: rotate(45deg);
    margin-inline-start: 3px;
    margin-bottom: 3px;
    font-size: 16px;
}
html[dir="rtl"] .read-more .read-anc > i
{
    transform: rotate(-45deg);
}
.about-row .about-img
{
    aspect-ratio: 592 / 560;
}
.our-services-sec
{
    background-color: var(--primary-color);
    padding-top: 80px;
    padding-bottom: 70px;
}
.our-services-sec .sec-head .sec-sub-title
{
    color: var(--white-color);
    width: 50%;
    margin-bottom: 80px;
}
.service-item .img-cont
{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 383 / 467;
    transition: 0.3s ease;
    height: 100%;
    width: 100%;
}
.img-cont > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-name
{
    text-align: center;
    height: 50px;
    padding: 0 10px;
    padding-top: 20px;
}
.service-name > a
{
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
.service-img-cont
{
    position: relative;
    overflow: hidden;
    border-radius: var(--border-raduis);
    border-end-start-radius: 0;
    border: 1px solid #D6D6D6;
    overflow: hidden;
    height: calc(100% - 50px);
    transition: 0.3s ease;
}
.service-info
{
    position: absolute;
    inset: 0;
    background-color: var(--white-color);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}
.service-info::before
{
    content: url(../images/shape_2.png);
    position: absolute;
    top: 15px;
    inset-inline-end: 15px;
    z-index: -1;
    width: 98px;
    height: 90px;
    overflow: hidden;
}
.service-info .service_title
{
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 25px;
}
.service-info .service_desc
{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    padding: 0 25px;
}
.service-item .read-more
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 72px;
    background-color: var(--secondery-color);
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    z-index: 3;
    transition: 0.4s ease;
}
.service-item .read-more .more_anc
{
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 16px;
}
.service-item .read-more .more_anc > i
{
    margin-bottom: 3px;
}
html[dir="rtl"] .service-item .read-more .more_anc > i::before
{
    content: "\f104";
}
.service-item .read-more .more_txt
{
    display: none;
    font-size: 18px;
    font-weight: 700;
    margin-inline-end: 30px;
}
.service-item
{
    height: 467px;
    overflow: hidden;
}
.service-item:hover
{
    cursor: pointer;
}
.service-item:hover .service-name
{
    opacity: 0;
    visibility: hidden;

}
.service-item:hover .service-img-cont,
.service-item:hover .service-info
{
    height: 100%;
}
.service-item:hover .read-more
{
    width: 75%;
}
.service-item:hover .read-more .more_txt
{
    display: block;
    white-space: nowrap;
}
.service-item:hover .service-name > a
{
    color: var(--secondery-color);
}
.default-slider .default-swiper::after
{
    display: none;
}
.default-slider .swiper-btns
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 56px;
}
.default-slider .default-swiper
{
    position: relative;
    color: #5C5C5C;
    transition: 0.3s ease;
    font-size: 30px;
    margin: 0 24px;
    transition: 0.3s ease;
    width: 60px;
    left: 0;
    right: 0;
}
.default-slider .default-swiper.swiper-button-next
{
    justify-content: flex-end;
}
html[dir="rtl"] .default-slider .default-swiper.swiper-button-next > i::before
{
    content: "\f104"
}
.default-slider .default-swiper.swiper-button-prev
{
    justify-content: flex-start;
}
html[dir="rtl"] .default-slider .default-swiper.swiper-button-prev > i::before
{
    content: "\f105"
}
.default-slider .default-swiper .line
{
    content: "";
    height: 2px;
    background-color: #5C5C5C;
    width: 52px;
    border-radius: 2px;
    position: absolute;
    transition: 0.3s ease;
}
.default-slider .default-swiper.swiper-button-next .line
{
    inset-inline-end: 8px;
}
.default-slider .default-swiper.swiper-button-prev .line
{
    inset-inline-start: 8px;
}
.default-slider .default-swiper:hover
{
    color: var(--secondery-color);
}
.default-slider .default-swiper:hover .line
{
   width: 80px;
   background-color: var(--secondery-color);
}
.projects-sec
{
    margin: 120px 0;
}
.projects-sec-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 68px;
    align-items: center;
}
.project-item .project-img .img-cont
{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 592 / 444;
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.projects-sec-row .sec-head .sec-sub-title
{
    margin-bottom: 72px;
}
.project-item .project-info
{
    margin-top: 24px;
}
.projects-sec-row .project-item .project-info
{
    margin-bottom: 32px;
}
.project-info .project-name
{
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
}
.project-info .project-name:hover
{
    color: var(--secondery-color);
}
.project-info .project-desc
{
    font-size: 15px;
    color: var(--third-color);
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
.show-all
{
    margin-top: 72px;
}
.show-all > .show-anc
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondery-color);
    width: 169px;
    height: 56px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.show-all > .show-anc > i
{
    transform: rotate(45deg);
    margin-inline-start: 5px;
    margin-bottom: 5px;
    font-size: 16px;
}
html[dir="rtl"] .show-all > .show-anc > i
{
    transform: rotate(-45deg);
}
.gallery-content
{
    position: relative;
}
.gallery-sec .sec-head .swiper-btns
{
    margin-top: 0;
}
.gallery-sec .sec-head .sec-sub-title
{
    font-size: 40px;
    width: 85%;
    margin-bottom: 30px;
}

.gallery-item
{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 350 / 350;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-raduis);
}
.gallery-item > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-icon
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--secondery-color);
    border-radius: 50%;
    font-size: 22px;
    color: var(--white-color);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
    overflow: hidden;
}
.gallery-item:hover .gallery-icon
{
    visibility: visible;
    opacity: 1;
}

.default-slider .default-swiper.swiper-button-next.swiper-button-disabled,.default-slider .default-swiper.swiper-button-prev.swiper-button-disabled
{
    opacity: 1;
}
.contact-sec
{
    margin: 120px 0;
    background-color: #FAF9F9;
    position: relative;
}
.contact-sec::before
{
    content: url(../images/shape_3.png);
    position: absolute;
    inset-inline-end:60px;
    bottom: 30px;
}
.contact-sec .contact-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 96px;
    align-items: center;
}
.contact-sec .contact-row .img-cont
{
    aspect-ratio: 751 / 621;
}
.contact-sec .contact-text
{
    width: 84%;
}
.contact-sec .contact-text .title
{
    font-size: 48px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: capitalize;
}
.contact-sec .contact-text .desc
{
    font-size: 16px;
    color: var(--third-color);
    margin-bottom: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
}
footer
{
    background-color: var(--primary-color);
    padding-top: 58px;
}
.footer-logo 
{
    max-width: 100px;
}
.footer .foot-title
{
    font-size: 16px;
    color: #CACACA;
    margin-bottom: 25px;
    font-weight: 400;
}
.foot-list > li
{
    display: flex;
    margin-bottom: 16px;
}
.foot-list > li > a
{
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
    text-decoration: none;
}

.foot-list > li > a:hover
{
    color: var(--secondery-color);
}
.social-list 
{
    display: flex;
    align-items: center;
}
.social-list > li
{
    margin-inline-end: 30px;
}
.social-list > li > a
{
    font-size: 16px;
    color: var(--white-color);
}
.social-list > li > a:hover
{
    color: var(--secondery-color);
}
footer .contact-methods
{
    width: 70%;
}
.contact-methods .icon
{
    display: flex;
    width: 26px;
    min-width: 26px;
    color: var(--white-color);
    font-size: 20px;
    margin-inline-end: 18px;
}
footer .method-value
{
    display: flex;
    flex-direction: column;
}
footer .method-value .value-txt
{
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
    
    transition: 0.3s ease;
}
footer .method-value .value-txt.num
{
    direction: ltr;
    margin-bottom: 3px;
}
footer .method-value .value-txt:hover
{
    color: var(--secondery-color);
}
.copy-rights
{
    border-top: 1px solid #353535;
    margin-top: 60px;
    text-align: center;
    color: #C8C8C880;
    opacity: 0.5;
    font-size: 12px;
    padding: 24px 0;
}
.footer-content
{
    position: relative;
}
.arrow-up
{
    position: absolute;
    width: 120px;
    height: 120px;
    inset-inline-end: 85px;
    bottom: 110px;
    background-image: url(../images/shape_4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 26px;
    color: var(--secondery-color);
}
.arrow-up > span
{
    font-size: 11px;
    color: var(--white-color);
    opacity: 0.7;
    display: inline-block;
    margin-top: 3px;
}
/**************************breadcrumb************************/
.breadcrumb-content
{
    position: relative;
}
.breadcrumb-img
{
    aspect-ratio: 1440 / 432;
}
.breadcrumb-img > img
{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.breadcrumb-img::after
{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right , rgba(20, 20, 20, 0.7), rgba(20, 20, 20, 0.51));
    position: absolute;
    inset: 0;
    z-index: 1;
}
.breadcrumb-title
{
    position: absolute;
    background-color: var(--secondery-color);
    width: 50%;
    top: 100%;
    transform: translateY(-50%);
    inset-inline-end: 0;
    color: var(--white-color);
    font-size: 26px;
    font-weight: var(--font-bold);
    border-start-start-radius: 15px;
    border-end-start-radius: 15px;
    padding: 15px 30px;
    z-index: 2;
}
.breadcrumb-text
{
    position: absolute;
    width: 100%;
    bottom: 100px;
    z-index: 3;
}
.breadcrumb-list
{   
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb-li
{
    padding: 1px 0;
    position: relative;
}
.breadcrumb-li:not(:first-child)::before
{
    content: "\f104";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 16px;
    color: var(--white-color);
    padding: 0 5px;
    opacity: 0.52;
}
html[dir="ltr"] .breadcrumb-li:not(:first-child)::before
{
    content: "\f105";
}
.breadcrumb-li > a
{
    font-size: 22px;
    color: var(--white-color);
    opacity: 0.52;
    text-decoration: none;
    text-transform: uppercase;
}
html[dir="ltr"] .breadcrumb-li > a
{
    letter-spacing: 4px;
}
.breadcrumb-li.active > a,
.breadcrumb-li.not-found,
.breadcrumb-li.search
{
    color: var(--white-color);
    opacity: 1;
    font-size: 22px;
}
/****************pagination*****************/
.pagination-cont
{
    display: flex;
    justify-content: center;
}
.pagination-cont .page-numbers
{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    text-decoration: none;
    border-radius: var(--border-raduis);
    margin-top: 60px;
}
.pagination-cont .page-numbers:hover
{
    color: var(--secondery-color);
}
.page-numbers.current
{
  background-color: var(--secondery-color);
  color: var(--white-color);
}
.page-numbers.current:hover
{
    color: var(--white-color);
}
.pagination-cont .next.page-numbers,
.pagination-cont .prev.page-numbers
{
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondery-color);
}
.pagination-cont .next.page-numbers:hover,
.pagination-cont .prev.page-numbers:hover
{
    background-color: var(--third-color);
    border-color: var(--third-color);
    color: var(--white-color);
}
html[dir="ltr"] .pagination-cont .next.page-numbers i::before
{
    content: "\f105";
}
html[dir="ltr"] .pagination-cont .prev.page-numbers i::before
{
    content: "\f104";
}
/**********************contact us page***************/
.contact-us-page .contact-us
{
    position: relative;
}
.contact-us-page .contact-us::after
{
    content: url(../images/shape_5.png);
    position: absolute;
    inset-inline-start: 15px;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
    width: 240px;
    height: 178px;
}
.contact-us-page .contact-row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 70px;
}
.contact-us-page .info-head
{
    margin-bottom: 64px;
}
.contact-us-page .info-title
{
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 20px;
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .contact-us-page .info-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.contact-us-page .info-desc
{
    font-size: 15px;
    color: var(--third-color);
}
.contact-us-page .method-cont
{
    display: flex;
    width: 55%;
}
.contact-us-page .method-cont:not(:last-of-type)
{
    margin-bottom: 20px;
}
.contact-us-page .method-icon
{
    display: flex;
    font-size: 20px;
    color: var(--secondery-color);
    margin-inline-end: 15px;
    width: 21px;
    min-width: 21px;
}
.contact-us-page .method-type
{
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 3px;
}
.contact-us-page .method-type > a
{
    display: flex;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}
.contact-us-page .method-type .value-txt:not(:last-child)
{
    margin-bottom: 4px;
}
.contact-form .form-group:not(:last-child)
{
    margin-bottom: 32px;
}
.form-label
{
    font-size: 16px;
    color: #000000;
    margin-bottom: 4px;
}
.form-input
{
    font-size: 14px;
    color: #212121;
    padding: 10px 16px;
    border: none;
    border-bottom: 2px solid #979797;
    background-color: #F9F9F9;
    border-radius: 0;
    -webkit-text-fill-color: #212121 !important;
    height: 40px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    box-shadow: none;
}
textarea.form-input
{
    height: auto;
    border-radius: 0;
}
.form-input:focus,.form-input:active
{
    box-shadow: none;
    background-color: #FAFAFA;
    border-color: var(--secondery-color);
}
html[dir="rtl"] [type=email],
html[dir="rtl"] [type=number],
html[dir="rtl"] [type=tel],
html[dir="rtl"] [type=url]
{
    direction: rtl;
}
.submit_btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 56px;
    background-color: var(--secondery-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
}
.submit_btn > i,
.get_location > .get_anc > i
{
    transform: rotate(45deg);
    margin-inline-start: 5px;
    font-size: 14px;
}
html[dir="rtl"] .submit_btn > i,
html[dir="rtl"] .get_location > .get_anc > i
{
    transform: rotate(-45deg);
}
.response
{
  font-size: 16px;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.success-message {
  color: #00c900;
  margin-top: 10px;
  font-size: 14px;
}
.error-message
{
    color: #a94442;
    margin-top: 8px;
    font-size: 14px;
}
.form-input.error 
{
    border-color:#a94442;
}
.map-row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 96px;
    align-items: center;
    background-color: #FAF9F9;
    margin-top: 96px;
}
.map
{
    height : 621px;
}
.map > iframe
{
    height: 100%;
}
.map-row .map-text
{
    width: 81%;
}
.map-row .loc-title
{
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .map-row .loc-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.map-row .loc-desc
{
    font-size: 16px;
    color: var(--third-color);
    margin-top: 20px;
    margin-bottom: 56px;
    text-align: justify;
}
.get_location > .get_anc
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 56px;
    background-color: var(--secondery-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
/***********************Not Found Page ************/
.search-box
{
    width: 50%;
    margin-bottom: 40px;
}
.search-label
{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.search-box .search-content
{
    display: flex;
    align-items: center;
    position: relative;
}
.search-box .search-icon
{
    position: absolute;
    font-size: 20px;
    color: var(--primary-color);
    inset-inline-start: 20px;
    top: 8px;
}
.search-box .form-input
{
    padding-inline-start: 50px;
}
.search-box .search-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    background-color: var(--secondery-color);
    color: var(--white-color);
    border-radius: 0;
    font-size: 18px;
    font-weight: 500;
    margin-inline-start: 8px;
}
.not-found-content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.not-found-content .error-icon
{
    font-size: 100px;
    color: var(--secondery-color)
}
.not-found-content .error-text
{
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}
.page_404_error .title
{
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.page_404_error .search-box
{
    margin: auto;
}
/***********************************saerch page ***************/
.results-content,.category-row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(3,1fr);
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.no-results-found
{
    grid-column: 1 / -1;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
}
#searchform
{
    grid-column: 1 / -1;
}
.search-head-page
{
    margin-bottom: 40px;
}
.default-item .img-cont
{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 352 / 352;
    overflow: hidden;
    border-radius: var(--border-raduis);
}
.default-item .default-details
{
    text-align: center;
    margin-top: 16px;
    padding: 0 20px;
}
.default-item .default-name
{
    font-size: 21px;
    color: var(--primary-color);
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    text-transform: capitalize;
}
/*************************deafault page************************/
.default-page .page-img
{
    aspect-ratio: 1170 / 560;
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.default-page .page-title
{
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.default-page .page-text
{
    font-size: 18px;
    color: var(--third-color);
}
/****************************************galleries page archive*****************************************/
#content
{
    margin-top: 60px;
    margin-bottom: 60px;
}
.galleries-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(3,1fr);
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.gallery-archive-page .section-title
{
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .gallery-archive-page .section-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.gallery-archive-page .our-galleries.videos-gallery
{
    margin-top: 60px;
}
/*************************archive page services*************/
.archive-services-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(3,1fr);
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.archive-services-row .service-info
{
    background-color: var(--primary-color);
}
.archive-services-row .service-info .service_title,
.archive-services-row .service-info .service_desc
{
    color: var(--white-color);
}
.archive-services-row .service-name > a
{
    color: var(--primary-color);
}
/***********************default single page *********************/
.default-single-img
{
    aspect-ratio: 1170 / 560;
    overflow: hidden;
    border-radius: var(--border-raduis);
}
.default-single-title
{
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 500;
    margin: 30px 0;
    text-transform: capitalize;
}
.default-single-desc
{
    font-size: 18px;
    color: var(--third-color);
}
/***********************archive single page *********************/

.single-img
{
    float: right;
    width: 45%;
    margin-inline-end: 40px;
    aspect-ratio: 546 / 633;
    border-radius: var(--border-raduis);
    overflow: hidden;
    margin-bottom: 20px;
}
html[dir="ltr"] .single-img 
{
    float: left;
}
.single-page-service .single-img
{
    aspect-ratio: 546 / 633;
}
.single-img > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-title
{
    font-size: 48px;
    font-weight: 500;
    color: var(--primary-color);
    padding-top: 50px;
    margin-bottom: 30px;
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.5);
}
html[dir="rtl"] .single-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.5);
}
.single-desc
{
    font-size: 20px;
    color: var(--third-color);
}
.single-content::after
{   
    content: "";
    clear: both;
    display: block;
}
.service-gallery
{
    margin-top: 48px;
}
.single-page-service .sec-title
{
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 32px;
}
.single-desc > ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}
.single-desc > ul > li
{
    display: flex;
    margin-bottom: 5px;
}
.single-desc > ul > li::before
{
    content: "";
    width: 11px;
    height: 11px;
    min-width: 11px;
    background-color: var(--secondery-color);
    position: relative;
    border-radius: 50%;
    display: flex;
    top: 10px;
    margin-inline-end: 12px;
}
li::marker {
    color: var(--secondery-color);
}
.service-gallery-row
{
    display: -ms-grid;
    display: grid;
  -ms-grid-template-columns: repeat(8,1fr);
    grid-template-columns: repeat(8,1fr);
    gap: 30px;
}
.service-gallery-row .service-gallery-item
{
    aspect-ratio: 152 / 160;
    border: 1px solid #E4E4E4;
    position: relative;
    overflow: hidden;
}
.service-gallery-item > img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-gallery-item .gallery-icon
{
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.service-gallery-item:hover .gallery-icon
{
    visibility: visible;
    opacity: 1;
}
/***********************about page *********************/
.about-page .container-fluid
{
    padding: 0 57px;
}
.about-page .page-img
{
    aspect-ratio: 1328 / 588;
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.about-page .page-title
{
    font-size: 56px;
    font-weight: 500;
    color: var(--primary-color);
    width: 60%;
    margin-bottom: 80px;
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .about-page .page-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.about-page .page-content
{
    width: 55%;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    padding: 64px;
    margin-top: -230px;
    position: relative;
    z-index: 1;
}
.vision_mission
{
    margin: 120px 0;
    position: relative;
}
.about-page .vision_mission::before
{
    content: url(../images/shape_5.png);
    position: absolute;
    inset-inline-end: 5px;
    bottom: calc(100% + 22px);
    z-index: -1;
}
.about-page .VM_row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}
.about-page .VM_row .VM_item
{
    background-color: #F8F7F7;
    padding: 48px 40px;
}
.VM_row .VM_item .item-title
{
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .VM_row .VM_item .item-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.VM_row .VM_item .item-desc
{
    font-size: 18px;
    color: var(--third-color);
}
.QAS_row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: 30% 70%;
    grid-template-columns: 30% 70%;
    margin-bottom: 80px;
}
.QAS_row .qas-title
{
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-color);
    margin-inline-end: 48px;
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .QAS_row .qas-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.QAS_row .qas-desc
{
    font-size: 18px;
    color: var(--third-color);
}
.qas-image
{
    aspect-ratio: 560 / 320;
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.QAS_elements
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin: 80px 0;
    align-items: center;
}
html[dir="rtl"] .QAS_elements .elements-img
{
    transform: rotate(180deg);
}
.QAS_elements .element_item:not(:last-of-type)
{
    margin-bottom: 48px;
}
.QAS_elements .elem-title
{
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.QAS_elements .elem-desc
{
    font-size: 18px;
    color: var(--third-color);
}
.profiles-title
{
    font-size: 44px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-shadow: .2em .2em .2em rgba(23, 23, 23, 0.6);
}
html[dir="rtl"] .profiles-title
{
    text-shadow: -.2em .2em .2em rgba(23, 23, 23, 0.6);
}
.profile-image
{
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.profile-image .img-cont
{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    transition: 0.3s ease;
}
.profile-info
{
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
}
.profile-info .profile_name
{
    display: inline-block;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: capitalize;
    
    margin-bottom: 10px;
}
.profile-info .profile_name:hover
{
    color: var(--secondery-color);
}
.profile-info .profile_job
{
    font-size: 18px;
    color: var(--third-color);
    text-transform: capitalize;
}
.our_clients_sec
{
    background-color: var(--primary-color);
    padding: 88px 0;
    margin-top: 120px;
}
.clients-title
{
    font-size: 44px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 88px;
    text-align: center;
}
.our_clients_sec .swiper-grid > .swiper-wrapper
{
    align-items: center;
}
.client_item
{
    aspect-ratio: 245 / 150;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company_profile_sec
{
    margin-top: 200px;
}
.company_profile_row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.company_profile_row
{
    border: 1px solid #D6D6D6;
    padding: 48px 68px;
}
.company_profile_row .desc
{
    font-size: 20px;
    color: var(--primary-color);
    margin: 22px 0;
}
.company_profile_sec .company_profile .cp_anc:hover
{
    color: var(--white-color);
}
.company_profile_img
{
    aspect-ratio: 461 / 330;
    margin-top: -150px;
    max-height: 330px;
}
/*************************project archive page***************************/
.archive-projects-row
{
    display: -ms-grid;
    display: grid;
    -ms-grid-template-columns: repeat(2,1fr);
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
/***************************project single page***********************/
.project-gallery
{
    margin-top: 100px;
}
.project-gallery-title
{
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}
.project-gallery-item
{
    aspect-ratio: 592 / 444;
    border-radius: var(--border-raduis);
    overflow: hidden;
}
.project-gallery-item:hover
{
    cursor: pointer;
}
.project-gallery-item:hover .gallery-icon
{
    visibility: visible;
    opacity: 1;
}
.post-Navigate
{
    margin-top: 40px;
}
.post-Navigate .nav-links
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--secondery-color);
    border-bottom: 1px solid var(--secondery-color);
    padding: 20px 0;
}
.post-Navigate .nav-links a
{
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    background-color: transparent;
    color: var(--third-color);
    text-decoration: none;
}
.post-Navigate .nav-links .nav-previous a:before
{
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    transition: all 0.5s ease-out;
    padding-inline-end: 5px;
    margin-top: 5px;
}
html[dir="ltr"] .post-Navigate .nav-links .nav-previous a:before
{
    content: "\f100";
}
.post-Navigate .nav-links .nav-next a:after
{
    content: "\f100";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    transition: all 0.5s ease-out;
    padding-inline-start: 5px;
    margin-top: 5px;
}
html[dir="ltr"] .post-Navigate .nav-links .nav-next a:after
{
    content: "\f101";
}
.post-Navigate .nav-links a:hover
{
    color: var(--secondery-color);
}






@media (min-width:1300px)
{
    .gallery-row .swiper-slide
    {
        
        transition: 0.3s ease;
    }
    .gallery-row .swiper-slide-active + .swiper-slide-next {
        width: 445px!important;
        height: 606px;
    }
    .gallery-row .swiper-slide-active + .swiper-slide .gallery-item
    {
        aspect-ratio: 445 / 606;
        width: 100%;
        height: 606px;
    }
    .gallery-row .swiper-btns
    {
        display: none;
    }
    .gallery-sec .sec-head
    {
        position: absolute;
        inset-inline-end: 0;
        width: 35%;
    }
    .gallery-row .swiper-wrapper
    {
        align-items: flex-end;
    }
    .gallery-sec .sec-head .sec-sub-title
    {
        font-size: 30px;
    }
    .gallery-sec .container
    {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .gallery-sec .sec-head .swiper-btns
    {
        justify-content: flex-start;
    }
    .gallery-sec .sec-head .default-swiper.swiper-button-prev
    {
        margin-inline-start: 0;
    }
}

@media (min-width:1600px)
{
.gallery-sec .container
    {
        max-width: 1600px;
    }
}

@media (max-width:1299px)
{
    .gallery-sec .sec-head .swiper-btns
    {
        display: none;
    }
    .gallery-sec .sec-head .sec-sub-title
    {
        width: 50%;
    }
}




@media (min-width:992px) and (max-width:1199px)
{
    .main-slide .slide-img
    {
        height: 100vh;
    }
    .main-slide .slide-text .slide-title
    {
        font-size: 70px;
    }
    .sec-head .sec-sub-title
    {
        font-size: 40px;
    }
    .service-info::before
    {
        width: 78px;
        height: 70px;
    }
    
    /*************************about page************************/
    .about-page .page-title
    {
        width: 70%;
    }
    .about-page .page-content
    {
        font-size: 16px;
        padding: 50px;
    }
    .QAS_row .qas-title
    {
        font-size: 26px;
    }
}

@media (min-width:992px)
{
    .header .container-fluid
    {
        padding-right: calc(var(--bs-gutter-x)* 1);
        padding-left: calc(var(--bs-gutter-x)* 1);
    }
    .main-nav .language-cont
    {
        display: none;
    }
    .contact-us-page #content
    {
        margin-bottom: 0;
    }
    .main-nav .social,
    .main-nav .logo
     {
         display: none;
     }
}

@media (min-width:768px)
{
    .projects-sec .show-all.sm
    {
        display: none;
    }
    .contact-sec .container
    {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .main-nav .company_profile .cp_anc
    {
        display: none;
    }
}

@media (min-width:768px) and (max-width:991px)
{
    .main-slide .slide-text .slide-title
    {
        font-size: 50px;
    }
    .main-slide .slide-text .slide-desc
    {
        font-size: 18px;
    }
    .show-all > .show-anc
    {
        width: 155px;
        height: 50px;
    }
    .projects-sec-row
    {
        gap: 30px;
    }
    .projects-sec .show-all.lg
    {
        margin-top: 30px;
    }
    .gallery-sec .sec-head .sec-sub-title
    {
        width: 50%;
    }
   
    .contact-methods .icon
    {
        margin-inline-end: 0;
    }
    .arrow-up
    {
        width: 100px;
        height: 100px;
        right: 20px;
        bottom: 90px;
    }
    .arrow-up > span
    {
        font-size: 10px;
    }
    /*************************breadcrumb*******************************/
    .breadcrumb-li.active > a, .breadcrumb-li.not-found, .breadcrumb-li.search,
    .breadcrumb-li > a
    {
        font-size: 16px;
    }
    .breadcrumb-li:not(:first-child)::before
    {
        font-size: 12px;
    }
    /*************************archive page galleries*************/
    .galleries-row
    {
        gap: 20px;
    }
    /*************************archive page services*************/
    .archive-services-row
    {
    -ms-grid-template-columns: repeat(2,1fr);
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
    /************************single service page ***************/
    .single-title
    {
        font-size: 24px;
    }
    .service-gallery-row
    {
        -ms-grid-template-columns: repeat(6, 1fr);
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }
    /***************************about page**********************/
    .about-page .page-title
    {
        font-size: 35px;
        margin-bottom: 30px;
    }
    .about-page .page-content
    {
        padding: 30px;
        font-size: 14px;
        width: 70%;
        margin-top: -150px;
    }
    .about-page .page-img
    {
        aspect-ratio: 1328 / 688;
    }
    
    .VM_row .VM_item .item-desc
    {
        font-size: 16px;
    }
    .QAS_row .qas-title
    {
        margin-inline-end: 20px;
    }
    /**********************saearch page***************/
    .results-content
    {
        -ms-grid-template-columns: repeat(2,1fr);
        grid-template-columns: repeat(2,1fr);
    }
    /*************************deafault page************************/
    .default-page .page-img
    {
        aspect-ratio: 1170 / 650;
    }
    /*******************contact us********************************/
    .contact-us-page .method-cont
    {
        width: 80%;
    }
}

@media (max-width:991px)
{
    .logo
    {
        max-width: 70px;
    }
    .active-sidenav
    {
        overflow: hidden;
    }
    .menu-bar
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background-color: var(--secondery-color);
        cursor: pointer;
        z-index: 9999;
        margin-inline-start: 10px;
        transition: 0.3s ease;
    }
    .menu-bar.nav_btn
    {
        background-color: transparent;
    }
    .bar1, .bar2, .bar3 
    {
        display: inline-block;
        width: 25px;
        height: 2px;
        background-color: var(--white-color);
        margin: 2px 0;
        transition: 0.4s;
    }
    /*.nav_btn .bar1, */
    /*.nav_btn .bar2, */
    /*.nav_btn .bar3 */
    /*{*/
    /*    background-color: var(--primary-color);*/
    /*}*/
    .nav_btn .bar1 
    {
        transform: translate(0, 7px) rotate(-45deg);
    }
    .nav_btn .bar2 
    {
        opacity: 0;
    }
    .nav_btn .bar3 
    {
        transform: translate(0, -5px) rotate(45deg);
    }
    .main-nav
    {
        height: 100%;
        width: 0px;
        position: fixed;
        z-index: 999;
        top: 0;
        inset-inline-start: 0;
        background-color: var(--primary-color);
        overflow: hidden;
        -webkit-transition: 0.5s ease;
        -o-transition: 0.5s ease;
        transition: 0.3s ease;
        padding-top: 90px;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
    }
    .main-nav.open-nav
    {
        width: 100%;
        opacity: 1;
        visibility: visible;
    }
    .nav-list
    {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list > li
    {
      padding: 7px 20px;
    }
    .nav-list > li > a
    {
        color: var(--white-color);
        font-weight: 500;
        font-size: 20px;
    }
    .nav-tools .language-cont
    {
        display: none;
    }
    .main-nav .language-cont
    {
        position: absolute;
        top: 20px;
        inset-inline-start: 20px;
    }
    .language-cont .lang-anc
    {
        color: var(--white-color);
    }
     .main-nav .social
     {
         margin-top: 60px;
         margin-bottom: 40px;
     }
     .main-nav .social-list > li
     {
        margin-inline-end: 0;
        margin: 0 15px;
     }
     .main-nav .social-list
     {
        justify-content: center;
     }
     .main-nav .logo
     {
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
     }
    .main-nav .logo img
    {
        filter: brightness(0) invert(1);
    }
    .main-slide .slide-img
    {
        height: 100vh;
    }
    .main-slide .slide-text .slide-anc
    {
        margin-top: 30px;
    }
    .sec-head .sec-sub-title
    {
        font-size: 25px;
    }
    .about-us-sec
    {
        margin: 60px 0;
    }
    .about-us-sec .about-dsec
    {
        font-size: 14px;
        margin-inline-end: 0;
    }
    .read-more .read-anc
    {
        width: 140px;
        height: 48px;
    }
    .about-us-sec::before
    {
        display: none;
    }
    .service-name > a
    {
        font-size: 16px;
    }
    .our-services-sec
    {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .our-services-sec .sec-head .sec-sub-title
    {
        margin-bottom: 30px;
    }
    .default-slider .swiper-btns
    {
        margin-top: 30px;
    }
    .default-slider .default-swiper
    {
        font-size: 24px;
        width: 40px;
    }
    .default-slider .default-swiper .line
    {
        width: 40px;
    }
    .default-slider .default-swiper:hover .line
    {
        width: 60px;
    }
    .projects-sec-row .sec-head .sec-sub-title
    {
        margin-bottom: 30px;
    }
    .projects-sec
    {
        margin: 60px 0;
    }
    .project-info .project-name
    {
        font-size: 16px;
    }
    .project-info .project-desc
    {
        font-size: 14px;
    }
    .gallery-sec .sec-head .sec-sub-title
    {
        font-size: 25px;
    }
    .gallery-sec
    {
        padding: 0 15px;
    }
    .contact-sec
    {
        margin: 60px 0;
    }
    .contact-sec .contact-row
    {
        gap: 30px;
    }
    .contact-sec .contact-text .title
    {
        font-size: 30px;
    }
    .contact-sec .contact-text .desc
    {
        margin-bottom: 30px;
    }
    .contact-sec::before
    {
        display: none;
    }
    footer .contact-methods
    {
        width: 100%;
    }
    /************************single service page ***************/
    .single-title
    {
        margin-bottom: 20px;
    }
    .single-desc
    {
        font-size: 16px;
    }
    .single-desc > ul > li::before
    {
        top: 5px;
    }
    .single-img
    {
        margin-inline-end: 20px;
    }
    /***************************about page**********************/
    .about-page .container-fluid
    {
        padding: 0 15px;
    }
    .vision_mission
    {
        margin: 60px 0;
    }
    .about-page .VM_row .VM_item
    {
        padding: 33px 25px;
    }
    .QAS_row
    {
        margin-bottom: 30px;
    }
    .QAS_row .qas-title
    {
        font-size: 20px;
    }
    .QAS_row .qas-desc
    {
        font-size: 14px;
    }
    .QAS_elements
    {
        margin: 40px 0;
    }
    .QAS_elements .elem-title
    {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .QAS_elements .elem-desc
    {
        font-size: 14px;
    }
    .profiles-title
    {
        font-size: 24px;
    }
    .engineering_Profiles
    {
        margin-top: 60px;
    }
    .company_profile_row
    {
        padding: 30px 20px;
    }
    .company_profile_img
    {
        margin-top: 0;
    }
    .our_clients_sec
    {
        margin-top: 60px;
    }
    .company_profile_sec
    {
        margin-top: 60px;
    }
    /***********************project sigle page*****************/
    .project-gallery
    {
        margin-top: 60px;
    }
    .project-gallery-title
    {
        font-size: 24px;
    }
    .single-title
    {
        font-size: 24px;
        padding-top: 10px;
    }
    /***********************default single page *********************/
    .default-single-img
    {
        aspect-ratio: 1170 / 850;
    }
    .default-single-title
    {
        font-size: 24px;
    }
    .default-single-desc
    {
        font-size: 16px;
    }
    /***********************Not Found Page ************/
    .not-found-content .error-icon
    {
        font-size: 70px;
    }
    .search-box {
        width: 100%;
    }
    .not-found-content .error-text
    {
        font-size: 20px;
    }
    .page_404_error .title
    {
        font-size: 22px;
    }
    /**********************saearch page***************/
    .no-results-found
    {
        font-size: 30px;
    }
    /*************************deafault page************************/
    .default-page .page-title
    {
        font-size: 22px;
    }
    .default-page .page-text
    {
        font-size: 16px;
    }
    /*******************contact us********************************/
    .contact-us-page .contact-row,
    .map-row
    {
        gap: 30px;
    }
    .contact-us-page .info-title,
    .map-row .loc-title
    {
        font-size: 30px;
    }
    .map-row .loc-desc
    {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .contact-us-page .method-cont
    {
        width: 80%;
    }
}





@media (max-width:767px)
{
    .company_profile
    {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        
    }
    .main-nav .company_profile .cp_anc
    {
        margin-inline-end: 0;
        background-color: var(--secondery-color);
        width: calc(100% - 40px);
    }
    .main-slide .slide-text .slide-title
    {
        font-size: 28px;
    }
    .main-slide .slide-text .slide-desc
    {
        font-size: 13px;
    }
    .nav-tools .company_profile
    {
        display: none;
    }
    .about-row,
    .projects-sec-row,
    .contact-sec .contact-row
    {
        -ms-grid-template-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }
    .about-us-sec .about-info
    {
        order: 2;
    }
    .our-services-sec .sec-head .sec-sub-title
    {
        width: 100%;
    }
    .show-all > .show-anc
    {
        width: 145px;
        height: 45px;
    }
    .projects-sec-row
    {
        gap: 0;
    }
    .projects-sec .show-all.lg
    {
        display: none;
    }
    .projects-sec .show-all.sm
    {
        margin-top: 0;
    }
    .contact-sec
    {
        background-color: transparent;
    }
   
    .contact-sec .contact-text
    {
        width: 100%;
    }
    .footer .foot-title
    {
        text-align: center;
    }
    .footer-logo 
    {
        text-align: center;
        margin-bottom: 30px;
    }
    .foot-links .foot-list 
    {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .foot-list > li 
    {
        margin: 5px 10px;
    }
    footer .contact-methods
    {
        margin-top: 30px;
    }
    footer .contact-methods .foot-list > li 
    {
        margin: 20px 10px;
    }
    .socials
    {
        margin-top: 30px;
    }
    .social-list
    {
        justify-content: center;
    }
    .social-list > li
    {
        margin-inline-end: 0;
        margin: 5px 15px;
    }
    .arrow-up
    {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 8px;
    }
    .arrow-up > span
    {
        display: none;
    }
    .copy-rights
    {
        margin-top: 40px;
    }
    .contact-methods .foot-title
    {
        display: none;
    }
    /***************************************breadcrumb********************/
    .breadcrumb-text
    {
        display: none;
    }
    .breadcrumb-img 
    {
        aspect-ratio: 1200 / 432;
    }
    /*************************archive page galleries*************/
    .galleries-row
    {
        -ms-grid-template-columns: repeat(1,1fr);
            grid-template-columns: repeat(1,1fr);
    }
    /*************************archive page services*************/
    .archive-services-row
    {
        -ms-grid-template-columns: repeat(1,1fr);
            grid-template-columns: repeat(1,1fr);
    }
    /************************single service page ***************/
    .single-img
    {
        float: none;
        width: auto;
        margin-inline-end: 0;
    }
    html[dir="ltr"] .single-img 
    {
        float: none;
    }
    .single-desc
    {
        font-size: 14px;
    }
    .service-gallery-row
    {
        -ms-grid-template-columns: repeat(4, 1fr);
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    /***************************about page**********************/
    .about-page .page-title
    {
        font-size: 20px;
        width: 100%;
        margin-bottom: 30px;
    }
    .about-page .page-content
    {
        padding: 30px 0px;
        font-size: 14px;
        width: 100%;
        margin-top: 0px;
        background-color: transparent;
        color: var(--primary-color);
    }
    .about-page .page-img
    {
        aspect-ratio: 1328 / 788;
        border-radius: 0;
    }
    .about-page .VM_row
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
        gap: 18px;
    }
    .about-page .vision_mission::before
    {
        display: none;
    }
    .VM_row .VM_item .item-title
    {
        font-size: 18px;
    }
    .VM_row .VM_item .item-desc
    {
        font-size: 16px;
    }
    .QAS_row
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
    .QAS_row .qas-title
    {
        margin-inline-end: 0;
    }
    .QAS_elements
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
        gap: 40px;
    }
    .profile-info .profile_name,
    .profile-info .profile_job
    {
        font-size: 14px;
    }
    .company_profile_row
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
    }
    .company_profile_row .company_profile_cont
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        order: 2;
    }
    /*************************project archive page************************/
    .archive-projects-row
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
    }
    /**********************saearch page***************/
    .results-content
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
    }
    .default-item .default-name
    {
        font-size: 18px;
    }
    /*************************deafault page************************/
    .default-page .page-img
    {
        aspect-ratio: 1170 / 850;
    }
    /*******************contact us********************************/
    .contact-us-page .contact-row
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
    }
    .contact-us-page .info-head
    {
        margin-bottom: 30px;
    }
    .contact-us-page .method-cont
    {
        width: 100%;
    }
    .map-row
    {
        -ms-grid-template-columns: repeat(1,1fr);
        grid-template-columns: repeat(1,1fr);
        padding: 0 15px;
        margin-top: 40px;
        background-color: transparent;
    }
    .map
    {
        height: 350px;
    }
    .map-row .map-text
    {
        width: 100%;
    }
    .contact-us-page .contact-us::after
    {
        display: none;
    }
    .gallery-sec .sec-head .sec-sub-title
    {
        width: 100%;
    }
}