@import url(styles.css);

/* Start Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Vazirmatn:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@font-face {
    font-family: 'GE';
    src: url(../fonts/GE-DINAR-TWO-MEDIUM.OTF);
}

@font-face {
    font-family: 'GELight';
    src: url(../fonts/GE_Dinar_Two_Light.otf);
}

@font-face {
    font-family: 'araboto';
    src: url(../fonts/araboto-Normal.ttf);
}

@font-face {
    font-family: 'dinar';
    src: url(../fonts/dinar-One-Regular.otf);
}

/* End Fonts */

:root {
    --main-color: #D9D9D9;
    --sec-color: #4D5A6B;
    --bg-color: #4D5A6B;
    --dark-color: #000;
    --overlay: #2c3614;
    --thr-color: #143554;
    --font-body: "GE", sans-serif;
    --font-light: "GELight", sans-serif;
    --font-cairo: "Cairo", sans-serif;
    --font-arab: "araboto", sans-serif;
    --font-dinar: "dinar", sans-serif;
    --height: 100%;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: initial;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    background: #fff;
    text-align: start;
    direction: rtl;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
    text-align: justify !important;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: #fff;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    left: -100%;
    max-width: 350px;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 55%);
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    overflow: hidden;
    overflow-y: auto;
    max-height: 100%;
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-weight: 500;
    line-height: 27px;
    text-align: start;
    text-transform: capitalize;
    display: block;
    padding: 12px;
    position: relative;
    font-size: 20px;
    transition: all 0.6s;
    border-bottom: 1px #00000029 solid;
    color: #333;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    left: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: color-mix(in srgb, var(--dark-color) 90%, transparent);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--sec-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    border-radius: 10px;
    text-transform: capitalize;
    padding-inline-end: 60px;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/*** 

====================================================================
	End Search Popup
====================================================================

***/



/* Start circular-menu */

#circularMenu {
    position: relative;
    z-index: 9;
}

.circular-menu .floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    background: var(--sec-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    color: #fff !important;
}

.circular-menu .floating-btn i {
    font-size: 1.3em;
    transition: transform 0.2s;
}

.circular-menu.active .floating-btn i {
    transform: rotate(-45deg);
}

.circular-menu:after {
    display: block;
    content: " ";
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    background-color: rgba(27, 133, 190, 0);
    transition: all 0.3s ease;
}

.circular-menu.active:after {
    transform: scale3d(5.5, 5.5, 1);
    transition-timing-function: cubic-bezier(0.68, 1.55, 0.265, 1);
}

.circular-menu .items-wrapper {
    padding: 0;
    margin: 0;
}

.circular-menu .menu-item {
    position: absolute;
    top: 0.2em;
    right: 0.2em;
    z-index: -1;
    display: block;
    text-decoration: none;
    color: rgb(50 74 113);
    font-size: 1em;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    transition: transform 0.3s ease, background-color 0.2s ease;
    transition-timing-function: ease, ease;
    /* box-shadow: 0 0 22px 5px #f5f9fc6b; */
}

.circular-menu.active .menu-item {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
    transform: translate3d(-1em, -4.2em, 0);
}

.circular-menu.active .menu-item:nth-child(2) {
    transform: translate3d(-4em, -2em, 0);
}

.circular-menu.active .menu-item:nth-child(3) {
    transform: translate3d(-4em, 1.5em, 0);
}

.circular-menu .menu-item svg path {
    fill: var(--main-color);
}

.circular-menu .menu-item svg #envelope path {
    fill: transparent;
    stroke: var(--main-color);
}

.circular-menu .menu-item svg {
    width: 21px;
    height: 21px;
    line-height: 21px;
}

/* End circular-menu */

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 45px;
}

header.sticky {
    position: fixed;
    z-index: 8;
    left: 0;
    right: 0;
    padding: 23px 0 98px;
    /* overflow: hidden; */
    top: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    transition: all .4s;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
    color: #000;
    margin: 0px;
    padding: 0px;
    width: 38px;
    height: 38px;
    font-size: 25px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h a {
    display: flex;
    font-size: 16.04px;
    line-height: 19.48px;
    color: var(--sec-color);
    align-items: center;
    -webkit-align-items: center;
    gap: 6px;
    font-family: var(--font-cairo);
    font-weight: 400;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: calc(100vh - 252px); */
    overflow: hidden;
    overflow-y: auto;
    margin-top: 30px;
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
    padding: 0;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    /* overflow-y: auto; */
    /* overflow: hidden; */
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 15px;
    line-height: 18px;
    color: var(--sec-color);
    padding: 8px 0;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    /* background: color-mix(in srgb, var(--main-color) 50%, transparent); */
}

.logo-h {
    width: 85px;
    /* width: 100%; */
    /* margin-inline-end: 47px; */
    transition: all .4s;
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--thr-color);
    /* opacity: .8; */
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 9px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 198px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: var(--s, #FFFFFF);
    border: 1px solid #D7E0C2;
    box-shadow: 0px 8px 8px 0px #00000014;
    border-radius: 10px;
    padding: 20px 15px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    color: #000;
    padding: 16px 0;
    display: block;
    /* border-bottom: 1px solid #FFFFFF33; */
    font-family: var(--font-light);
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 31px;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
    height: 35px;
    align-content: center;
    text-align: center;
    background: var(--sec-color);
    /* border-radius: 6px; */
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3.5px auto;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .5s;
    top: 0;
    right: 0;
    left: 0;
}

.mobile-nav-toggler .lines ::after {
    /* transform: translateX(-50px); */
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    margin: 0 auto;
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    padding: 10px 24px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 217.99px;
    background: var(--main-color);
    min-height: 57.99px;
    border-radius: 0;
    color: #111111;
    text-transform: uppercase;
    box-shadow: none !important;
    border: none;
    z-index: 1;
    gap: 11px;
    font-size: 16px;
    line-height: 26px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

header .btn {
    margin-inline-start: 4px;
    min-width: 130.29px;
    background: var(--sec-color);
    font-size: 15px;
    min-height: 48px;
    color: #fff;
}

.search-box-btn.search-box-outer {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

.header-med .head-inner ul li.current-menu-item a {
    color: var(--thr-color);
    /* opacity: .8; */
    border-bottom: 1px var(--thr-color) solid;
}

.lang-menu {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.lang-menu>a {
    min-width: 130px;
    min-height: 48px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: #fff;
    gap: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--main-color);
    cursor: pointer;
}

.contact-menu>a {
    background: var(--main-color);
    color: #fff;
}

.lang-menu ul {
    display: block;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 130px;
    padding-inline-end: 6px;
}

.lang-menu ul li a {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #E5EEFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    gap: 6px;
    align-items: center;
    -webkit-align-items: center;
}

.lang-menu ul li:first-child a {
    padding-top: 0;
}

.lang-menu ul li:last-child a {
    border: none;
    padding-bottom: 0;
}

.btn:hover {
    color: #fff;
}

.logo-h a img {
    width: 100%;
}

.btn.btn-white {
    background: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

@media (min-width: 576px) {
    .orderModal .modal-dialog {
        max-width: 599px;
    }
}

.orderModal .modal-content {
    border-radius: 24px;
    overflow: visible;
    border: 1px solid #EDEAEA;
}

.orderModal .modal-content .modal-body {
    padding: 62px 55px;
}

.orderModal .btn-close {
    background: color-mix(in srgb, var(--dark-color) 90%, transparent);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    margin: -7px;
    color: #fff;
    font-size: 15px;
    padding: 0;
}

.title.title-modal {
    margin-bottom: 32px;
    text-align: center;
}

.title.title-modal h3 {
    font-family: var(--font-bold);
    font-size: 24px;
    color: var(--dark-color);
    line-height: 34px;
    margin: 0;
}

.form-modal .form-group {
    margin-bottom: 16px;
}

.form-modal .form-group:last-child {
    margin-bottom: 0;
}

.form-modal .form-group .form-control {
    background: #F7F6F9;
    height: 48px;
    border-radius: 8px;
    padding: 0 23px !important;
    font-weight: 300;
    color: #625F5F;
    font-size: 16px;
    border: none;
    line-height: 26px;
    align-content: center;
    transition: all .4s;
    border: 1px transparent solid;
    text-align: right;
}

.form-modal .form-group .form-control::placeholder {
    color: #625F5F;
}

.iti {
    display: block;
}

.iti--separate-dial-code .iti__selected-flag,
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background: transparent;
    direction: ltr;
    align-items: center;
}

.iti__arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid #949494;
    border: none;
    width: 16px;
    height: 14px;
    position: relative;
    line-height: 14px;
}

.iti__arrow::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-size: 22px;
    color: var(--main-color);
    font-weight: 300;
    line-height: 16px;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-family: Vazirmatn;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
}

.nice-select:after {
    top: 0;
    bottom: 0;
    align-content: center;
    font-weight: 300;
    font-size: 22px;
}

.form-modal .form-group .btn {
    width: 100%;
    margin-top: 16px;
    border-radius: 32px;
    min-height: 56px;
    font-size: 18px;
    line-height: 11.56px;
}

html[dir="rtl"] .iti__country {
    direction: ltr;
    text-align: right;
}

html[dir="rtl"] .iti__country-list {
    left: 0;
}

html[dir="ltr"] .iti__country-list {
    right: 0;
}

.lang-h a u {
    text-decoration: none;
    position: relative;
    top: 2px;
}

header.sticky.active {
    /* position: fixed; */
    /* z-index: 6; */
}

header.sticky.active,
header.sticky.header-single-project.active {
    padding: 10px 0;
    /* background: #ffffff66; */
    /* backdrop-filter: blur(8px); */
    position: fixed;
}

header.sticky.active .logo-h {
    width: 55px;
}


/* End Header */

/* Start Banner-h */

.banner-h .row {
    height: 100vh;
    align-items: end;
    -webkit-align-items: end;
}

.banner-h {
    overflow: hidden;
    background: transparent;
    z-index: 5;
}

.overlay-img video {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--overlay) 20%, transparent);
    opacity: 0;
}

.banner-s-h {
    display: flex;
    position: absolute;
    left: calc(var(--bs-gutter-x) * .5);
    bottom: 44px;
    flex-direction: column;
    background: #FFFFFF1A;
    border-top: 1px solid #FFFFFF33;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 14px;
}

.banner-h .container>.row>.col-md-12 {
    position: relative;
}

.banner-s-h a {
    font-size: 19px;
    color: #fff;
    line-height: 19px;
}

.banner-text {
    display: flex;
    justify-content: end;
    padding-bottom: 207px;
}

.banner-text h1 {
    margin: 0;
    font-weight: 500;
    color: #fff;
    font-size: 93.1px;
    line-height: 102.9px;
    text-shadow: 0px 0px 24.5px #00000021;
}

section {
    background: #fff;
    z-index: 7;
}

.banner-h .overlay-img {
    position: fixed;
    z-index: -2;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    background: var(--bg-color);
    /* padding-block: 161px 157px; */
}

.about-text h3 {
    font-family: var(--font-light);
    color: #fff;
    font-size: 40px;
    line-height: 45.11px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-text span {
    max-width: 340.58px;
    display: inline-block;
    color: #fff;
    font-size: 22px;
    line-height: 40px;
}

.about-text p {
    max-width: 774.18px;
    color: #fff;
    font-size: 20px;
    line-height: 25px;
}

.about-h::before,
.about-h::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    border-top: 2px solid #5C6B7E;
}

.about-h::before {
    top: 49px;
}

.about-h::after {
    bottom: 34px;
}

.shapes-h {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.about-h .container {
    position: relative;
    z-index: 3;
}

.shapes-h::before,
.shapes-h::after,
.about-h .row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    border-right: 2px solid #5C6B7E;
    z-index: -6;
}

.shapes-h::before {
    right: 36px;
}

.shapes-h::after {
    left: 36px;
}

.shapes-h .shape-h {
    position: absolute;
}

.shapes-h .shape-h:nth-child(1) {
    margin: 36px 21px;
    right: 0;
    top: 0;
}

.shapes-h .shape-h:nth-child(2) {
    left: 0;
    margin: 36px 21px;
    top: 0;
    transform: scale(-1);
}

.shapes-h .shape-h:nth-child(3) {
    bottom: 0;
    margin: 21px;
    right: 0;
}

.shapes-h .shape-h:nth-child(4) {
    bottom: 0;
    margin: 21px;
    left: 0;
    transform: scale(-1);
}

.about-h .row::before {
    right: 31%;
}

.about-h .row {
    padding-block: 161px 157px;
}

/* End About-h */

/* Start Counter-h */

.counter-h {
    padding-block: 100px;
}

.counter-block {
    padding: 47px 0;
    position: relative;
    padding-inline-end: 24px;
    text-align: center;
    margin: 10px 0;
}

.counter-block::after,.counter-block::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    border-right: 2px solid #5C6B7E;
    height: 100%;
    opacity: 0.14;
}

.counter-h .col-md-4:nth-child(3) .counter-block::after,
.counter-h .col-md-3:nth-child(4) .counter-block::after ,
.counter-h .col-md-4:nth-child(6) .counter-block::after ,
.counter-h .col-md-6:nth-child(2) .counter-block::after ,
.counter-h .col-md-6:nth-child(4) .counter-block::after {
    display: none;
}

.counter-block .counter-title h3 {
    font-family: var(--font-arab);
    font-weight: bold;
    font-size: 26px;
    line-height: 26px;
    text-transform: capitalize;
    height: 26px;
    margin: 0;
    direction: ltr;
    display: inline-flex;
    color: var(--sec-color);
}
.counter-block .counter-title  b {
    font-family: var(--font-arab);
    font-weight: bold;
    font-size: 26px;
    line-height: 26px;
    text-transform: capitalize;
    height: 26px;
display:block;
}
.counter-block h4 {
    margin: 15px auto 0;
    font-weight: 500;
    color: #999999;
    font-size: 16.11px;
    line-height: 21.48px;
    max-width: 307.51px;
}

/* End Counter-h */

/* Start Projects-h */

.projects-h {
    padding-bottom: 80px;
}

.projects-text {
    padding-block: 27px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    -webkit-align-items: start;
}

.title {
    margin-bottom: 25px;
}

.title h3 {
    font-weight: bold;
    color: #4D5A6B;
    font-size: 40px;
    line-height: 45.11px;
    margin: 0;
    text-transform: uppercase;
}

.projects-text p {
    margin-top: auto;
    font-family: var(--font-light);
    color: #575757;
    font-size: 22px;
    line-height: 36px;
}

.project-block {
    margin-bottom: 30px;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.project-block .img {
    height: 462.66px;
    position: relative;
}

.project-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-block .details,
.project-block.with-hover .details-hover {
    display: flex;
    align-items: baseline;
    -webkit-align-items: baseline;
    justify-content: space-between;
    padding-top: 23px;
}

.project-block .details h3,
.project-block.with-hover .details-hover h3 {
    color: #000;
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    line-height: 22.5px;
    max-width: calc(100% - 85px);
}

.location-block,
.project-block.with-hover .location-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 4px;
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #000;
    opacity: .8;
}

.project-block.with-hover {
    height: 499.05px;
}

.project-block.with-hover .img {
    height: 100%;
}

.project-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(33, 33, 33, 0) 68%, rgb(255 255 255 / 60%) 100%);
    transition: all .4s;
    opacity: 0;
    background: linear-gradient(180deg, rgba(33, 33, 33, 0) 0%, #242424 100%);
}

.project-block.with-hover .details-hover {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    padding: 30px 24px;
    transition: all .4s;
    opacity: 0;
}

.project-block.with-hover .location-block .icon {
    /* filter: brightness(0) invert(1); */
}

.shapes-h2 {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.shapes-h2::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    border-top: 2px solid #E9E9E9;
    z-index: -1;
}

/* End Projects-h */

/* Start Services-h */

.services-h {
    padding-block: 125px 90px;
    overflow: hidden;
}

.services-h .shapes-h2 {
    bottom: auto;
    top: 52px;
}

.services-text .title {
    margin-bottom: 33px;
}

.services-text p {
    font-family: var(--font-light);
    color: #4E4E4E;
    font-size: 22px;
    line-height: 32px;
}

.services-text .btn {
    margin-top: 38px;
}

.serv-block {
    display: flex;
    transition: all .4s;
    padding: 20px;
    /* border-bottom: 1px #D9D9D9 solid; */
}

.all-services {
    max-height: 792px;
    overflow: hidden;
    /* overflow-y: scroll; */
    scrollbar-width: none;
    /* overscroll-behavior: contain; */
}

.serv-block .img {
    width: 376.09px;
    height: 265.84px;
    /* height: 100%; */
}

.serv-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.serv-block .details {
    width: calc(100% - 376.09px);
    padding-inline-end: 30px;
}

.serv-block .details h3 {
    font-family: var(--font-bold);
    color: #4D5A6B;
    margin-bottom: 5px;
    transition: all .4s;
    font-size: 27.59px;
    line-height: 45.11px;
}

.serv-block .details p {
    max-width: 280px;
    font-family: var(--font-light);
    color: #636363;
    font-size: 22px;
    line-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Change this number to your maximum lines */
    line-clamp: 3;
    overflow: hidden;
    /* min-height: 106px; */
}

.serv-block .details .btn-readMore {
    margin-top: 63px;
    position: relative;
    z-index: 4;
}

.btn-readMore {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 152.45px;
    min-height: 44.75px;
    border: 1px solid #BEBEBE;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    background: transparent;
}

.img-h {
    overflow: hidden;
    position: relative;
}

.img-h::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--sec-color);
    transform: scaleY(var(--overlay, 1));
    transform-origin: bottom;
    z-index: 2;
    /* opacity: 0; */
    background: linear-gradient(180deg, rgba(33, 33, 33, 0) 68%, rgb(255 255 255 / 60%) 100%);
}

/* End Services-h */

/* Start Footer */

footer {
    position: relative;
    z-index: 7;
    background: var(--sec-color);
}

footer::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    border-top: 2px solid #5C6B7E;
    top: 40px;
    z-index: -10;
}

footer::before {
    top: 40px;
}

footer .shapes-h .shape-h:nth-child(1) {
    margin: 27px 11px;
}

footer .shapes-h::after {
    left: 26px;
}

footer .shapes-h::before {
    right: 26px;
}

footer .shapes-h .shape-h:nth-child(2) {
    margin: 27px 11px;
    transform: scale(-1);
}

.contact-info {
    padding-block: 98px 55px;
    z-index: 4;
}

.contact-info .shapes-h2::after {
    border: none;
    border-top: 2px solid #5C6B7E;
}

footer .shapes-h {
    z-index: 3;
}

.contact-info .shapes-h2 {
    padding: 0 11px;
}

.contact-info .shapes-h2 .shape-h:nth-child(2) {
    transform: scaleX(-1);
}

.footer-top {
    z-index: 3;
    padding-block: 40px 70px;
}

.contact-block {
    text-align: center;
}

.contact-block .icon {
    width: 57.28px;
    height: 57.28px;
    margin: 0 auto 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #697788;
    font-size: 20.13px;
    color: #fff;
    transition: all .4s;
}

.contact-block a {
    font-family: var(--font-light);
    color: #fff;
    font-size: 17.62px;
    line-height: 37.45px;
    display: inline-block;
}

.contact-block a u {
    text-decoration: none;
    display: inline-block;
    direction: ltr;
}

.foot-block h3 {
    font-family: var(--font-light);
    color: #fff;
    margin-bottom: 25px;
    font-size: 23px;
    line-height: 34px;
}

.links-f ul li a {
    display: inline-block;
    padding-inline-start: 20px;
    margin-bottom: 11px;
    font-size: 16px;
    color: #fff;
    line-height: 22.5px;
    position: relative;
}

.links-f ul li a::before {
    content: "\f104";
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 0;
    font-size: 12px;
    top: 0px;
}

.subscribe-f {
    margin-block: 40px 28px;
    max-width: 382px;
}

.subscribe-f form {
    position: relative;
}

.subscribe-f form input {
    width: 100%;
    height: 47px;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 20px;
    font-family: var(--font-cairo);
    font-weight: 400;
    font-size: 14px;
    line-height: 22.5px;
}

.subscribe-f form input::placeholder {
    color: #4C4C4C;
}

.subscribe-f form button {
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px 6px;
    border: none;
    height: 38.98px;
    width: 59.67px;
    background: var(--sec-color);
    box-shadow: none;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    -webkit-align-items: center;
}

.s-h span {
    color: #fff;
    font-size: 20px;
    line-height: 34px;
    margin-inline-end: 8px;
}

.s-h a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    position: relative;
}

.s-h a::before,
.s-h a::after {
    content: "";
    position: absolute;
    background: linear-gradient(94.51deg, rgba(255, 255, 255, 0.4) 0.79%, rgba(153, 153, 153, 0.3) 99.21%);
    inset: 0;
    border-radius: 50%;
    transition: all .4s;
    z-index: -1;
    margin: auto;
    transition: all .4s;
}

.s-h a::after {
    background: var(--sec-color);
    max-width: 97%;
    max-height: 97%;
}

.footer-bottom {
    position: relative;
    z-index: 4;
    border-top: 2px solid #5C6B7E;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

.copy-right p {
    font-family: var(--font-light);
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.copy-right p span {
    font-family: var(--font-body);
}

.ryad-logo {
    float: left;
}

.fixed-icons {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 7;
    margin: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    gap: 10px;
}

.upTop {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    background: var(--sec-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    color: #fff !important;
    transform: scale(.5);
    opacity: 0;
}

.upTop.active {
    transform: none;
    opacity: 1;
}

.flex-f-h {
    gap: 19px;
}

.logos-bf {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    justify-content: center;
}

.logos-bf img {
    max-width: 52.84px;
    max-height: 52.84px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding-block: 191px 87px;
    /* z-index: 8; */
}

.breadcrumb-h .overlay-img::before,
.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
}

.bread-text h1 {
    color: #4d5a6b;
    font-weight: 500;
    font-size: 93.1px;
    line-height: 102.9px;
    margin: 0;
    text-transform: uppercase;
}

.breadcrumb-h .overlay-img::after {
    background: url(../images/bread-after.png);
    height: 168%;
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: .4;
}

/* End Breadcrumb-h */

/* Start Breadcrumb-single-project */

.breadcrumb-single-project {
    position: relative;
    isolation: isolate;
    min-height: 696px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 229px;
    overflow: hidden;
}

.breadcrumb-single-project .overlay-img {
    z-index: 0;
}

.breadcrumb-single-project .overlay-img img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breadcrumb-single-project .overlay-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 53, 88, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.breadcrumb-single-project .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb-single-project .bread-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-single-project .bread-details h1 {
    color: #fff;
    font-weight: 500;
    font-size: 52px;
    line-height: 72px;
    letter-spacing: -1.8px;
    margin: 0;
}

.breadcrumb-single-project .single-top-details-card {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 24px 0;
    background: #FFFFFF1A;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #FFFFFF33;
    border-radius: 20px;
    max-width: 100%;
    margin-top: 44px;
}

.breadcrumb-single-project .single-top-details .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 48px;
    min-width: 160px;
    position: relative;
}

.breadcrumb-single-project .single-top-details .item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 1px;
    height: 100%;
    background: #FFFFFF1A;
}

.breadcrumb-single-project .single-top-details .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 10px; */
    min-height: 20px;
}

.breadcrumb-single-project .single-top-details .item .icon svg {
    display: block;
}

.breadcrumb-single-project .single-top-details .item h4 {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin: 8px 0;
}

.breadcrumb-single-project .single-top-details .item span {
    color: #fff;
    font-family: var(--font-light);
    font-size: 12px;
    line-height: 16px;
    opacity: .7;
}

/* End Breadcrumb-single-project */

/* Start About-page */

.about-page {
    padding-block: 165px 65px;
    background: transparent;
}

.about-page .container {
    position: relative;
    z-index: 8;
}

.about-text .about-title {
    max-width: 341.23px;
    margin-bottom: 24px;
}

.about-text .about-title h3 {
    color: #4d5a6b;
    font-weight: bold;
    font-family: var(--font-body);
}

.about-text .about-title h4 {
    font-family: var(--font-light);
    color: #999;
    font-size: 18px;
    line-height: 29px;
}

.about-page .about-text p {
    color: #000;
    max-width: 1000px;
    font-size: 18px;
}

.about-more {
    margin-top: 52px;
}

.about-block {
    height: calc(100% - 20px);
    margin: 10px 0;
    box-shadow: 0px 0px 164px 0px #0000001A;
    background: #fff;
    padding: 43px 40px 36px;
}

.about-block span {
    color: #999;
    font-size: 20px;
    display: inline-block;
    line-height: 34.9px;
}

.about-block h3 {
    color: var(--sec-color);
    margin-bottom: 30px;
    font-size: 43px;
    line-height: 34.9px;
}

.about-block p {
    max-width: 475px;
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

.msg-h::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 50%;
    background: var(--sec-color);
    z-index: -1;
}

.msg-h .row {
    min-height: 545.29px;
    padding: 100px 0;
}

.msg-h {
    /* padding-block: 100px 127px; */
}

.msg-h .about-block {
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: #fff;
    margin: 0;
    height: auto;
}

.msg-h .about-block span,
.msg-h .about-block h3,
.msg-h .about-block p {
    color: inherit;
}

.about-video {
    position: absolute;
    inset: 0;
    width: 50%;
    right: auto;
    /* height: 545px; */
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-h {
    padding-block: 100px 70px;
}

.title.title-sec {
    margin-bottom: 54px;
}

.title .sub-title {
    color: var(--sec-color);
    display: inline-block;
    font-size: 20px;
    line-height: 34.9px;
}

.title.title-sec h3 {
    font-family: var(--font-body);
    color: var(--sec-color);
    font-size: 43px;
    line-height: 34.9px;
}

.team-block {
    margin-block: 10px 0;
    height: calc(100% - 20px);
    border: 1.04px solid #C4C4C4;
    padding: 16px;
}

.team-block .img {
    height: 411.4px;
    overflow: hidden;
}

.team-block .img img {
    object-fit: cover;
    object-position: top center;
    height: 100%;
    width: 100%;
    filter: grayscale(1);
}

.team-block .details {
    padding-block: 48px 39px;
}

.team-block .details h3 {
    color: #4D5A6B;
    font-size: 30.33px;
    line-height: 38.32px;
    margin: 0;
    font-weight: bold;
}

.team-block .details>span {
    display: inline-block;
    color: #999999;
    font-size: 25px;
    line-height: 35px;
    background: #E9ECEF;
    padding: 5px 20px;
    margin-top: 10px;
}

.team-block .details p {
    color: #222;
    max-width: 539.45px;
    font-size: 16px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-block: 17px;
}

.team-more {
    padding-block: 152px 230px;
}

.team-more .shapes-h2 {
    bottom: auto;
    top: 52px;
}

.all-team .item {
    padding: 0 8px;
}

.all-team .slick-list {
    margin-left: -8px;
    margin-right: -8px;
}

.all-team .team-block {
    padding: 10px;
}

.all-team .team-block .img {
    height: 328.24px;
}

.all-team .team-block .details {
    padding-block: 36px;
}

.all-team .team-block .details h3 {
    font-size: 21.99px;
    margin-bottom: 15px;
    line-height: 25.25px;
}

.team-block .details .position-style-1 {
    background: #E0E0E0;
    padding: 10px;
    border-radius: 0;
    font-size: 13.9px;
    line-height: 17.56px;
    color: #000;
    margin: 0;
}

.all-team .team-block .details p {
    margin-block: 12px 15px;
}

.slick-prev,
.slick-next {
    z-index: 5;
    border: 1.54px solid #3B5C7C1F;
    width: 74.06px;
    height: 74.06px;
    border-radius: 50%;
    top: auto;
    bottom: -150px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    color: #3B5C7C;
    font-size: 24px;
}

[dir='rtl'] .slick-prev {
    left: auto;
    right: 43%;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: 43%;
}

.slick-prev {
    left: 43%;
}

.slick-next {
    right: 43%;
}

/* End About-page */

/* Start Services-page */

.body-inner {
    background: transparent;
    padding-block: 180px 100px;
}

.serv-block-inner {
    margin: 10px 0;
    height: calc(100% - 20px);
    border: 1px solid #CFCFCF;
    text-align: center;
    padding: 40px;
    transition: all .4s;
}

.serv-block-inner .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 16px;
    /* border: 1px solid #CFCFCF; */
    align-content: center;
    transition: all .4s;
}

.serv-block-inner .icon img,
.serv-block-inner .icon svg {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    object-position: center;
    transition: all .4s;
}

.serv-block-inner .details h3 {
    color: #4d5a6b;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    transition: all .4s;
}

/* End Services-page */

/* Start Projects-page */

.counter-h.counter-inner {
    background: transparent;
    padding-bottom: 0;
}

.projects-page.body-inner {
    padding-top: 100px;
}

.projects-page .serv-block .details {
    padding: 20px;
    padding-inline-start: 40px;
}

.projects-page .serv-block .details h3 {
    font-size: 26.97px;
    line-height: 30px;
    margin-bottom: 7px;
}

.projects-page .serv-block .details .location-block {
    gap: 10px;
    color: #000000CC;
    font-size: 11.73px;
    line-height: 15.64px;
}

.projects-page .serv-block .details .location-block .icon svg {
    width: 11.12px;
}

.projects-page .serv-block .details .btn-readMore {
    margin-top: 17px;
}

/* End Projects-page */

/* Start Pagination */

.all-pages {
    margin-top: 75px;
    text-align: center;
}

.all-pages .pagination {
    display: inline-flex;
    direction: ltr;
}

.all-pages .pagination .page-item .page-link {
    width: 29px;
    height: 27px;
    border: 1px solid #E8E8E8;
    margin-inline: 2.5px;
    padding: 0;
    line-height: 27px;
    text-align: center;
    align-content: center;
    font-family: 'Line Awesome Free';
    font-weight: 400;
    color: #131313;
    font-size: 12.82px;
    line-height: 15.74px;
    letter-spacing: -2%;
    border-radius: 0 !important;
}

.all-pages .pagination .page-item.active .page-link {
    background: transparent;
    border: 1px solid #103857;
    color: #103857;
}

/* End Pagination */

/* Start Single-Service */

.single-service .col-md-9 {
    position: relative;
}

.services-innwe {
    padding-top: 361.84px;
}

.services-innwe>.img {
    position: absolute;
    top: 0;
    width: 71vw;
    height: 362px;
    /* overflow: hidden; */
}

.services-innwe .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-inner-content {
    padding-top: 83px;
    padding-inline-end: 0;
}

.services-inner-content p {
    font-size: 16px;
    line-height: 27px;
    color: #4A4A4A;
}


.services-inner-content h3 {
    color: var(--sec-color);
    margin-bottom: 26px;
    font-size: 40.98px;
    line-height: 55px;
}

.services-innwe>.img::after {
    content: "";
    background: url(../images/serv-img-after.png);
    height: 162%;
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    /* opacity: .4; */
    position: absolute;
    inset: 0;
    width: 50%;
}

.sidebar-single .bread-text h1 {
    color: var(--sec-color);
    margin-bottom: 16px;
    font-size: 40.98px;
    line-height: 55px;
    font-weight: bold;
}

.sidebar-single .bread-text ul {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.sidebar-single .bread-text ul li a,
.sidebar-single .bread-text ul li span {
    color: #4A4A4A;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.sidebar-single .bread-text ul li a::after {
    content: "|";
    margin: 0 10px;
}

.sidebar-single .bread-text {
    margin-bottom: 73px;
}

.sidebar-single-inner ul {
    padding-inline-start: 20px;
}

.sidebar-single-inner ul li {
    display: list-item;
    list-style: square;
}

.sidebar-single-inner ul li::marker {
    font-size: 11px;
}

.sidebar-single-inner ul li a {
    color: #4d5a6b;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    margin-bottom: 26px;
}

/* End Single-Service */

/* Start Single-Project */

.single-project.body-inner {
    padding-top: 0;
    margin-top: -112px;
}

.single-project .row {
    align-items: flex-start;
}

.project-gallery {
    margin-bottom: 40px;
}

.project-main-slider-wrap {
    position: relative;
    margin-bottom: 8px;
}

.project-main-slider {
    /* border-radius: 16px; */
    overflow: hidden;
}

.project-main-slider .slick-slide {
    height: auto;
}

.project-main-slider .slick-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.project-main-slider .slick-list,
.project-main-slider .slick-track {
    /* border-radius: 16px; */
}

.project-gallery-actions {
    position: absolute;
    bottom: 20px;
    inset-inline-start: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s linear;
}

.gallery-action-btn:hover {
    background: var(--sec-color);
}

.gallery-action-btn:hover svg path {
    fill: #fff;
}

.project-thumbs {
    margin: 0 -4px;
}

.project-thumbs .slick-slide {
    margin: 0 4px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    /* opacity: 0.6; */
    transition: opacity 0.3s linear;
    position: relative;
    /* height: 100px; */
}

.project-thumbs .slick-slide.slick-current {
    opacity: 1;
}

.project-thumbs .slick-slide img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    display: block;
}

.thumb-more-slide .thumb-more {
    position: absolute;
    inset: 0;
    background: #00000080;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    font-family: 'Cairo';
    direction: ltr;
}

.project-description h3 {
    color: var(--sec-color);
    font-size: 27.59px;
    line-height: 45.11px;
    margin-bottom: 24px;
    padding-inline-start: 18px;
    border-inline-start: 8px solid var(--sec-color);
}

.project-description p {
    font-size: 16px;
    line-height: 26px;
    color: #434343;
    margin-bottom: 20px;
    font-family: var(--font-light);
}

.project-description p:last-child {
    margin-bottom: 0;
}

.project-sidebar-card {
    background: #fff;
    padding: 33px;
    position: sticky;
    top: 120px;
    box-shadow: 0px 8px 10px -6px #0000001A;
    box-shadow: 0px 20px 25px -5px #0000001A;
}

.project-sidebar-card .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    min-height: 23px;
    padding: 4px 14px;
    border-radius: 50px;
    background: #E0EEFF;
    color: #4D5A6B;
    font-size: 10px;
    line-height: 22px;
}

.project-share-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.project-sidebar-card h2 {
    color: #000;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

.project-sidebar-location {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 32px;
}

.project-sidebar-location span {
    color: #94A3B8;
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 24px;
}

.project-sidebar-card .btn {
    width: 100%;
    min-width: 100%;
    border-radius: 16px;
    margin-bottom: 12px;
    text-transform: none;
}

.project-sidebar-card .btn:last-child {
    margin-bottom: 0;
}

.btn-project-primary {
    background: var(--sec-color);
    color: #fff;
    min-height: 56px;
    font-size: 16px;
}

.btn-project-primary:hover {
    background: var(--thr-color);
    color: #fff;
}

.btn-project-outline {
    background: #fff;
    color: var(--sec-color);
    border: 1px solid var(--sec-color);
    min-height: 56px;
    font-size: 16px;
}

.btn-project-outline:hover {
    background: #f5f7fa;
    color: var(--sec-color);
}

/* End Single-Project */

/* Start Similar-projects */

.similar-projects {
    background: #F4F4F4;
    padding-block: 100px;
}

.similar-projects-head {
    margin-bottom: 64px;
}

.similar-projects-head h3 {
    color: var(--sec-color);
    font-size: 27.59px;
    line-height: 45.11px;
    margin: 0;
    padding-inline-start: 18px;
    border-inline-start: 8px solid var(--sec-color);
}

.similar-projects-slider {
    margin-bottom: 64px;
}

.similar-projects-slider .slick-list {
    margin: 0 -12px;
}

.similar-projects-slider .slick-slide {
    margin: 0 12px;
    height: auto;
}

.similar-projects-slider .slick-slide>div {
    height: 100%;
}

.similar-projects .similar-project-block {
    flex-direction: column;
    margin-bottom: 0;
    height: 100%;
}

.similar-projects .similar-project-block .img {
    width: 100%;
    height: 462.66px;
}

.similar-projects .similar-project-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-projects .similar-details {
    width: 100%;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.similar-projects .similar-details h3 {
    font-size: 18px;
    line-height: 22.5px;
    color: #000;
    margin: 0;
    flex: 1;
    min-width: 140px;
}

.similar-projects .similar-details .location-block {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.similar-projects .similar-details .location-block span {
    color: #000000CC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.similar-projects .similar-details .location-block .icon svg {
    width: 11px;
    height: auto;
    display: block;
}

.similar-projects-action {
    text-align: center;
}

.similar-projects .btn-similar-all {
    font-family: var(--font-light);
    gap: 11px;
}

.similar-projects .btn-similar-all .icon {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 1;
}

.similar-projects .btn-similar-all:hover {
    background: var(--sec-color);
    color: #fff;
}

header.sticky.header-single-project {
    position: relative;
    padding-block: 23px 15px;
}

.project-description {
    border: 1px solid #F0F7FF;
    padding: 32px 32px 8px;
    border-radius: 10px;
}

/* End Similar-projects */

/* Start Partners-page */

.part-block {
    margin: 12px 0;
    border: 1px solid #C7C7C7;
    height: 188.4px;
    line-height: 188.4px;
    align-content: center;
    text-align: center;
}

.part-block img {
    max-height: 137.07px;
    object-fit: contain;
    object-position: center;
    max-width: 213.56px;
}

/* End Partners-page */

/* Start Contact-page */

.contact-page.body-inner {
    /* padding: 80px 0 100px; */
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.contact-support-card {
    position: relative;
    overflow: hidden;
    height: 438.01px;
    box-shadow: 0px 25px 50px -12px #00000040;
}

.contact-support-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.contact-support-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 31px;
    text-align: start;
    z-index: 2;
}

.contact-support-overlay h4 {
    color: #fff;
    margin: 0 0 7px;
    font-size: 24px;
    line-height: 34px;
}

.contact-support-overlay p {
    color: #fff;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 24px;
}

.contact-methods-block h3 {
    color: var(--sec-color);
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 21px;
}

.contact-methods-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 16px 23px;
}

.contact-methods-icon {
    flex-shrink: 0;
    width: 47.99px;
    height: 47.99px;
    border-radius: 14px;
    background: var(--sec-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-methods-icon img {
    width: 36px;
    height: auto;
    filter: brightness(0) invert(1);
}

.contact-methods-content h4 {
    color: #222;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 5px;
}

.contact-methods-content ul li {
    margin-bottom: 10px;
}

.contact-methods-content ul li:last-child {
    margin-bottom: 0;
}

.contact-methods-content ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7B7B7B;
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 20px;
}

.contact-methods-content ul li a i {
    color: var(--sec-color);
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.contact-social-box {
    background: linear-gradient(135deg, rgba(213, 203, 190, 0.1) 0%, rgba(181, 164, 145, 0.1) 100%);
    padding: 31.99px;
    margin-top: auto;
}

.contact-social-box h4 {
    color: var(--sec-color);
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 14px;
}

.contact-social-box p {
    color: #4C4C4C;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 24px;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.contact-social-links a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border-top: 0.83px solid #E5E7EB;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4A5565;
    font-size: 20px;
    box-shadow: 0px 1px 3px 0px #0000001A;
}

.contact-form-box {
    background: #fff;
    padding: 31.99px;
    box-shadow: 0px 20px 25px -5px #0000001A;
    height: 100%;
}

.contact-form-head {
    margin-bottom: 24px;
}

.contact-form-head h3 {
    color: var(--sec-color);
    margin: 0;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.4px;
}

.contact-form-head p {
    color: #4A5565;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form .form-group label {
    display: block;
    color: var(--sec-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 9px;
}

.contact-form .form-group label span {
    /* color: #c0392b; */
}

.contact-form .form-control {
    width: 100%;
    min-height: 59.3px;
    padding: 12px 16px;
    border: 1.67px solid #E5E7EB;
    border-radius: 16px;
    background: #fff;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 24px;
    color: #333;
    transition: border-color 0.3s linear;
    text-align: right;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--sec-color);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 195px;
    /* resize: vertical; */
}

.contact-input-wrap {
    position: relative;
}

.contact-input-wrap .field-icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 22px;
    /* transform: translateY(-50%); */
    color: #9E9E9E;
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.contact-input-wrap .form-control {
    padding-inline: 48px;
}

.contact-input-wrap .phone {
    /* padding-inline-start: 90px !important; */
}

.contact-form .btn-contact-submit {
    width: 100%;
    min-width: 100%;
    min-height: 56px;
    margin-top: 8px;
    background: var(--sec-color);
    color: #fff;
    border: none;
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
    gap: 10px;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
    margin-top: 20px;
}

.contact-page .contact-form .iti {
    width: 100%;
}

.contact-page .contact-form .iti .form-control {
    padding-inline-start: 48px;
    direction: rtl;
}

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

.contact-support-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.contact-methods-block {
    padding: 31px 31px 43px;
    box-shadow: 0px 20px 25px -5px #0000001A;
    background: #fff;
    position: relative;
}

.contact-methods-content ul li a u {
    text-decoration: none;
    direction: ltr;
    display: inline-block;
}

form {
    direction: rtl;
}

/* End Contact-page */

/* Start Privacy-page */

.privacy-page.body-inner {
    /* padding: 80px 0 100px; */
}

.privacy-toc {
    position: sticky;
    top: 120px;
    background: #0000000B;
    /* border-radius: 12px; */
    padding: 33px;
}

.privacy-toc h3 {
    color: var(--sec-color);
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #4D5A6B33;
}

.privacy-toc ul li {
    margin-bottom: 16px;
}

.privacy-toc ul li:last-child {
    margin-bottom: 0;
}

.privacy-toc ul li a {
    color: #4B5563;
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 22px;
    display: block;
    /* padding: 4px 0; */
    transition: all .4s;
}

.privacy-toc ul li a:hover,
.privacy-toc ul li a.active {
    color: var(--thr-color);
    font-weight: 600;
}

.privacy-block {
    background: #0000000B;
    border-radius: 0;
    padding: 32px;
    margin-bottom: 30px;
    scroll-margin-top: 120px;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block-head {
    display: flex;
    /* align-items: center; */
    gap: 24px;
    margin-bottom: 16px;
    flex-direction: column;
}

.privacy-block-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #4D5A6B1A;
    /* border: 1px solid #E0E0E0; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sec-color);
    font-size: 24px;
}

.privacy-block-head h3 {
    color: var(--sec-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}

.privacy-block-body p {
    color: #4B5563;
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 22.75px;
    max-width: 823px;
}

.privacy-block-body p:last-child {
    margin-bottom: 0;
}

.privacy-block-body ul {
    padding-inline-start: 20px;
    margin: 30px 0;
}

.privacy-block-body ul li {
    display: list-item;
    list-style: disc;
    color: #4A4A4A;
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 22.75px;
    margin-bottom: 2px;
}

.privacy-block-body ul li:last-child {
    margin-bottom: 0;
}

.privacy-block-body ul li strong {
    color: #000;
    font-weight: 600;
}

.privacy-block-body a {
    color: var(--thr-color);
    text-decoration: underline;
}

.privacy-block-body ul li::marker {
    font-size: 9px;
}

.privacy-block-body ul:last-child {
    margin-bottom: 0;
}

/* End Privacy-page */

/* Start News-page */

.news-block {
    margin-block: 10px;
    height: calc(100% - 20px);
    border: 0.77px solid #EBEBEB;
    transition: all .4s;
}

.news-block .img-h {
    height: 211.69px;
}

.news-block .img-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-block .text-h {
    padding: 28px 28px 17px;
}

.news-block .text-h h3 {
    margin: 0;
    color: #4D5A6B;
    font-size: 23.96px;
    margin: 0;
    line-height: 35.1px;
    transition: all .4s;
}

/* End News-page */

/* Start Single-news */

.single-news-inner {
    max-width: 1014.92px;
    margin: 0 auto;
}

.single-news-inner .img {
    height: 361.84px;
    position: relative;
    margin-bottom: 83px;
}

.single-news-inner .img::after {
    content: "";
    background: url(../images/serv-img-after.png);
    height: 162%;
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    /* opacity: .4; */
    position: absolute;
    inset: 0;
    width: 50%;
}

.single-news-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-news-inner .single-content h3 {
    color: #4D5A6B;
    margin-bottom: 26px;
    font-size: 40.98px;
    line-height: 55px;
}

.single-news-inner .single-content p {
    color: #4A4A4A;
    font-size: 16px;
    line-height: 27px;
    max-width: 908.73px;
}

/* End Single-news */

/* Start Gallery-page */

.gallery-block {
    display: flex;
    background: #F2F5F9;
    margin-bottom: 30px;
    padding: 22px;
}

.gallery-block .video-img {
    width: 556.21px;
    height: 350px;
}

.gallery-block .video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-block .video-details {
    width: calc(100% - 556.21px);
    padding: 0 83px;
    padding-inline-end: 30px;
    align-content: center;
}

.gallery-block .video-details h3 {
    max-width: 367.42px;
    color: var(--sec-color);
    margin-bottom: 14px;
    font-size: 36.77px;
    line-height: 51.48px;
    letter-spacing: -0.88px;
}

.gallery-block .video-details p {
    max-width: 367.42px;
    color: #000;
    font-family: var(--fa-font-light);
    font-size: 16px;
    line-height: 28px;
}

.gallery-block .video-img .link-block::after {
    content: "\f04b";
    font-family: 'Font Awesome 6 Sharp';
    font-weight: bold;
    width: 103.54px;
    height: 103.54px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    margin: auto;
    inset: 0;
    position: absolute;
    background: #FFFFFF;
    font-size: 44px;
    border-radius: 50%;
    color: var(--sec-color);
}

.all-gallery .gallery-block:nth-child(even) {
    flex-direction: row-reverse;
}

/* End Gallery-page */

/* Start Pagination2 */

.all-pages .pagination2 {
    border: 1px solid rgb(103 103 103 / 40%);
    display: inline-flex;
    direction: ltr;
    padding: 22px;
    align-items: center;
    -webkit-align-items: center;
}

.all-pages .pagination2 .page-item .page-link {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-family: var(--font-cairo);
    color: #2C2C2C;
    opacity: .2;
    font-size: 16px;
    line-height: 26px;
    display: flex;
    transition: all .4s;
    box-shadow: none !important;
    outline: none !important;
}

.all-pages .pagination2 .page-item.active .page-link {
    width: 32px;
    height: 32px;
    opacity: 1;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    margin: 0 14px;
    background: #4F5A6C;
    color: #fff;
}

.all-pages .pagination2 .page-item .page-link.prev-btn,
.all-pages .pagination2 .page-item .page-link.next-btn {
    margin: 0;
    border: 1px solid #4F5A6C;
    min-width: 86px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    justify-content: center;
    color: #4F5A6C;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    opacity: .3;
    border-radius: 0;
    transition: all .4s;
}

.all-pages .pagination2 .page-item .page-link.next-btn {
    flex-direction: row-reverse;
    margin-inline-start: 26px;
}

.all-pages .pagination2 .page-item .page-link span {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 5px;
}

.all-pages .pagination2 .page-item .page-link.next-btn span {
    flex-direction: row-reverse;
}

.all-pages .pagination2 .page-item .page-link.prev-btn {
    margin-inline-end: 26px;
}

/* End Pagination2 */

/* Start Join-page */

.all-join {
    max-width: 852.66px;
    margin: 0 auto;
}

.all-join .accordion-item {
    overflow: hidden;
    margin-bottom: 15.5px;
    border-radius: 10px !important;
    border: 0.74px solid #EBF6E9 !important;
    transition: all .4s;
}

.all-join .accordion-item .accordion-button {
    background: #EAEAEA;
    padding: 18px 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    color: #353535;
    font-size: 17.71px;
    line-height: 32.47px;
    padding-inline-end: 28px;
    border-radius: 10px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-weight: bold;
    text-transform: uppercase;
}

.all-join .accordion-item .accordion-button::after {
    content: "+";
    background: transparent !important;
    margin: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 34.74px;
    color: var(--sec-color);
}

.all-join .accordion-item.active {
    border: 1px solid #EAEAEA;
    box-shadow: 0px 8px 52px 0px #00000017;
}

.accordion-body {
    padding: 23px 38px 34px;
}

.accordion-body p {
    max-width: 731.9px;
    margin: 0 auto;
    font-family: var(--font-light);
    color: #2F2F2F;
    font-size: 16px;
    line-height: 28px;
}

.accordion-body .btn {
    width: 100%;
    background: #999999;
    margin-top: 14px;
    color: #fff;
    min-height: 56px;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.all-join .accordion-item .accordion-button:not(.collapsed)::after {
    content: "-";
}

/* End Join-page */

/* Start Single-join */

.single-join-inner {
    max-width: 622px;
    margin: 0 auto;
}

.single-join-inner .contact-form-box {
    box-shadow: 0px 0px 52px 0px #0000001A;
    border-radius: 20px;
    padding: 45px;
}

.single-join-inner .contact-form-box .contact-form-head {
    margin-bottom: 29px;
}

.single-join-inner .contact-form-box .contact-form-head h3 {
    color: #090909;
    font-size: 34.24px;
    line-height: 44px;
}

.single-join-inner .contact-form .form-group label {
    margin-bottom: 19px;
    color: #151515;
}

.single-join-inner .contact-form .form-group {
    margin-bottom: 26px;
}

.single-join-inner .contact-form .form-group .form-control {
    padding: 0 17px !important;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.single-join-inner .contact-form .form-group .file-upload-group.form-control {
    position: relative;
}

.single-join-inner .contact-form .form-group .file-upload-group.form-control .file-uploadH {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
}

.single-join-inner .contact-form .form-group .form-control label {
    margin: 0;
}

.services-text {
    max-width: 340.58px;
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    text-align: right;
}

.header-med .head-inner ul li .sub-menu li a::before {
    content: "\f104";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-end: 8px;
    font-size: 12px;
}

.single-team-page .team-block {
    margin: 0;
    border: none;
}

.all-pages .pagination .page-item .page-link i {
    transform: scale(-1);
}


.shapes-h3 {
    position: absolute;
    left: 41px;
    top: 0;
    bottom: 0;
    display: flex;
    gap: 23px;
}

.shapes-h3 .shape-h::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 2px;
    margin-inline: auto;
    background: #E9E9E9;
    z-index: -1;
    left: -1px;
}

.shapes-h3 .shape-h {
    position: relative;
    padding-block: 27px;
}

.about-text ul {
    padding-inline-start: 20px;
}

.about-text ul li {
    display: list-item;
    list-style: initial;
    margin: 10px 0px;
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

section.about-page.single-team-page .about-text .about-title {
    max-width: 100%;
}


body .project-sidebar-card .card-top .addtoany_content {
    margin: 0;
    margin-inline-start: auto !important;
}

section.services-page.body-inner .row {
    justify-content: center;
}

.services-inner-content ul {
    padding-inline-start: 20px;
}

.services-inner-content ul li {display: list-item;list-style: inherit;font-size: 15px;line-height: 26px;color: #4A4A4A;margin: 5px 0;}

.item .part-block {
    margin: 12px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.clients-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 126px;
}

.clients-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.clients-slider .slick-dots li button {
    margin: 0 4.5px;
    width: 15.12px;
    height: 15.12px;
    border-radius: 50%;
    background: #D9D9D9;
}

.clients-slider .slick-dots li button::before {
    display: none;
}

.clients-slider .slick-dots li.slick-active button {
    background: #4D5A6B;
}

.projects-text .title h3 {
    color: #4D5A6B;
}

section.about-page.single-team-page .about-text .about-title span {
    color: #999;
    max-width: max-content;
}

section.about-page.single-team-page .about-text .about-title h3 {
    font-size: 30px;
    line-height: 40px;
}

.links-f ul li.current-menu-item a {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 6px;
}

.counter-block::before {
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    top: auto;
    bottom: -6px;
    border: none;
    background: #5C6B7E;
    width: 96%;
}

.counter-h .col-md-6:nth-last-child(1) .counter-block::before ,
.counter-h .col-md-6:nth-last-child(2) .counter-block::before {
    display: none;
}

.btn .icon {
    display: none;
}

.all-join .title-flex ,
.single-join-inner .title-flex {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.all-join .title-flex h3 ,
.single-join-inner .title-flex h3 {
    color: #4d5a6b;
    font-weight: bold;
    font-size: 32px;
    line-height: 42px;
    margin: 0;
    text-transform: uppercase;
}

.btn-back {
    background: #999;
    display: inline-flex;
    padding: 5px 20px;
    color: #fff !important;
}

.subscribe-f {
    margin-block: 32px 28px;
}



.projects-text .btn {
    order: 3;
    margin-top: 25px;
}

.projects-text p {
    order: 2;
    margin: 0;
}

.all-services .serv-block:first-child {
    padding-top: 0;
}

.single-team-page .team-block img {
    object-fit: contain;
}

.about-text .about-title .btn-back {
    margin-bottom: 20px;
}

.project-block.with-hover .details-hover {
    opacity: 1;
}

/* End Single-join */

/* Start Hover */
@media (min-width: 991px) {

    .btn:hover {
        background: var(--sec-color);
        color: #fff;
    }

    header .btn:hover {
        background: var(--main-color);
        color: var(--sec-color);
    }

    .banner-text {
        padding-bottom: 28.048780487804876vh;
    }

    .project-block:hover .img::after,
    .project-block.with-hover:hover .details-hover {
        opacity: 1;
    }

    .btn-readMore:hover {
        background: var(--sec-color);
        color: #fff;
    }

    .links-f ul li a:hover {
        color: var(--main-color);
    }

    .s-h a:hover::after {
        background: #697788;
    }

    .contact-block:hover .icon {
        background: var(--main-color);
        color: var(--sec-color);
    }

    .slick-prev:hover,
    .slick-next:hover {
        background: var(--bg-color);
    }

    .slick-prev:hover::before,
    .slick-next:hover::before {
        color: #fff;
    }

    .contact-methods-content ul li a:hover {
        color: var(--thr-color);
    }

    .contact-social-links a:hover {
        background: var(--sec-color);
        border-color: var(--sec-color);
        color: #fff;
    }

    .contact-form .btn-contact-submit:hover {
        background: var(--thr-color);
        color: #fff;
    }

    .privacy-block-body a:hover {
        color: var(--sec-color);
    }

    .news-block:hover {
        border-color: #4F5A6C;
    }

    .news-block:hover .text-h h3 {
        color: #4F5A6C;
    }

    .all-pages .pagination2 .page-item .page-link.prev-btn:hover,
    .all-pages .pagination2 .page-item .page-link.next-btn:hover {
        color: #4F5A6C;
        border-color: #4F5A6C;
        opacity: 1;
    }

    .all-pages .pagination2 .page-item .page-link:hover {
        opacity: 1;
    }

    .accordion-body .btn:hover {
        background: var(--sec-color);
    }
    
    .project-sidebar-card .btn:hover {
        background: var(--thr-color);
    }

    .btn:hover svg {
        filter: brightness(0) invert(1);
    }
    
    .serv-block-inner:hover {
        background: var(--sec-color);
        border-color: var(--sec-color);
    }
    
    .serv-block-inner:hover .icon img {
        filter: brightness(0) invert(1);
    }
    
    .sidebar-single-inner ul li a:hover {
        text-decoration: underline;
    }
    
    .projects-page .serv-block:hover .details h3 {
        color: #4D5A6B;
    }
    
    .serv-block:hover {
        box-shadow: 0 0px 34px #26195226;
    }
    
    .projects-text {
        max-width: 90%;
    }
    
    .all-services .serv-block:hover {
        box-shadow: none;
    }
    
    .serv-block-inner:hover .details h3 {
        color: #fff;
    }

    .btn-back:hover {
        background: var(--sec-color);
    }
    
    .similar-projects-slider .slick-list .slick-track {
        display: flex;
    }

    .project-block.with-hover:hover .details-hover h3, .project-block.with-hover:hover .location-block {
        color: #fff;
    }
    
    .project-block.with-hover:hover .img::before {
        opacity: 0;
    }
    
    
}

/* End Hover */