@import url(styles.css);

/* Start Fonts */

@font-face {
    font-family: 'Bahij';
    src: url(../fonts/Bahij_TheSansArabic-Plain.ttf);
}

@font-face {
    font-family: 'BahijLight';
    src: url(../fonts/Bahij_TheSansArabic-Light.ttf);
}

@font-face {
    font-family: 'BahijMed';
    src: url(../fonts/Bahij_TheSansArabic-SemiBold.ttf);
}

@font-face {
    font-family: 'BahijBold';
    src: url(../fonts/Bahij_TheSansArabic-Bold.ttf);
}

/* End Fonts */

:root {
    --main-color: #FFFFFF;
    --sec-color: #5D5D5D;
    --bg-color: #000000;
    --dark-color: #1B1B1B;
    --gray-color: #9A9A9A;
    --card-color: #222222;
    --white-color: #FFFFFF;
    --thr-color: #a1a1a1;
    --header-cta-bg: #5D5D5D;
    --hero-overlay-from: rgba(0, 0, 0, 0.9);
    --hero-overlay-to: rgba(0, 0, 0, 0.45);
    --btn-radius: 8px;
    --font-body: "Bahij", sans-serif;
    --font-light: "BahijLight", sans-serif;
    --font-med: "BahijMed", sans-serif;
    --font-bold: "BahijBold", sans-serif;
    --height: 100%;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--white-color);
    -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 {
    -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: var(--bg-color);
    color: var(--white-color);
    text-align: start;
    direction: rtl;
}

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

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

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,
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: #000;
    z-index: -10;
    opacity: .8;
    transition: all .3s;
    backdrop-filter: blur(120px);
}

.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: 16px 0;
    position: relative;
    font-size: 20px;
    transition: all 0.6s;
    border-bottom: 1px #eaeaea14 solid;
    color: #ffffff;
}

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

body.mobile-menu-visible  .menu-backdrop {
    z-index: 9999;
}

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;
}

.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 input::placeholder,
.search-popup textarea::placeholder {
    color: #747474;
}

.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: 32px;
}

header.sticky {
    position: absolute;
    z-index: 8;
    left: 0;
    right: 0;
    top: 0;
    padding: 18px 0;
    display: flex;
    align-items: center;
    transition: all .4s;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.header-med {
    width: 100%;
}

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

.close-btn {
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
    color: var(--main-color);
    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 .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: 16px;
    line-height: 26px;
    color: #d9d9d9;
    align-items: center;
    -webkit-align-items: center;
    gap: 6px;
    font-family: var(--font-bold);
    font-weight: 400;
}

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

.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: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 16px;
    line-height: 38px;
    color: var(--white-color);
    padding: 0;
    font-family: var(--font-bold);
    opacity: 1;
}


.head-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    min-height: 53px;
}

.nav-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.logo-h {
    max-width: 313px;
    transition: all .4s;
    position: relative;
    z-index: 2;
    width: 100%;
}

.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 {
    /* color: var(--thr-color); */
    /* opacity: 0.85; */
}

.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; */
}

.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;
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
    height: 35px;
    align-content: center;
    text-align: center;
    background: var(--header-cta-bg);
    border-radius: var(--btn-radius);
}

.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 .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: 209px;
    font-family: var(--font-bold);
    background: var(--header-cta-bg);
    min-height: 48px;
    border-radius: var(--btn-radius);
    color: var(--white-color);
    text-transform: none;
    box-shadow: none !important;
    border: none;
    z-index: 1;
    gap: 7px;
    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: 0;
    width: 160px;
    min-width: 160px;
    background: var(--header-cta-bg);
    font-size: 16px;
    line-height: 26px;
    height: 53px;
    min-height: 53px;
    color: var(--white-color);
    border-radius: var(--btn-radius);
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.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 {
    border-bottom: 2px solid #fff;
    opacity: 1;
}

.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;
}

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

.btn.btn-white {
    background: var(--white-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--btn-radius);
}

.btn.btn-white span {
    color: inherit;
}

@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: #747474;
}

.iti {
    display: block;
}

.iti--separate-dial-code .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 {
    height: 72px;
    padding: 0;
    background: color-mix(in srgb, var(--bg-color) 75%, transparent);
    backdrop-filter: blur(8px);
    position: fixed;
}

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

.other-logo {
    max-width: 106px;
}

.lang-h a {
    display: inline-flex;
    gap: 4px;
    font-family: var(--font-bold);
    color: #d9d9d9;
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
}


/* End Header */

/* Start Banner-h */

.banner-h {
    position: relative;
}

.banner-block .row {
    min-height: 768px;
    height: 100vh;
    /* max-height: 900px; */
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
}

.banner-block .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--hero-overlay-from), var(--hero-overlay-to));
    opacity: 1;
    pointer-events: none;
}

.home-slider .banner-block .overlay-img img {
    transform: scale(1);
    transform-origin: center center;
    transition: transform 1.2s ease;
}

.home-slider .slick-current .banner-block .overlay-img img,
.home-slider .slick-active .banner-block .overlay-img img {
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

/* ÃƒËœÃ‚Â£Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã¢â‚¬Å¾ ÃƒËœÃ‚Â¸Ãƒâ„¢Ã¢â‚¬Â¡Ãƒâ„¢Ã‹â€ ÃƒËœÃ‚Â±: ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Å¾Ãƒâ„¢Ã†â€™Ãƒâ„¢Ã¢â‚¬Å¾ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Â¦ ÃƒËœÃ‚Â¸ÃƒËœÃ‚Â§Ãƒâ„¢Ã¢â‚¬Â¡ÃƒËœÃ‚Â± ÃƒËœÃ‚Â·ÃƒËœÃ‚Â¨Ãƒâ„¢Ã…Â ÃƒËœÃ‚Â¹Ãƒâ„¢Ã…Â  ÃƒËœÃ‚Â¨ÃƒËœÃ‚Â¯Ãƒâ„¢Ã‹â€ Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â£Ãƒâ„¢Ã¢â‚¬Â Ãƒâ„¢Ã…Â Ãƒâ„¢Ã¢â‚¬Â¦Ãƒâ„¢Ã…Â ÃƒËœÃ‚Â´Ãƒâ„¢Ã¢â‚¬Â  ÃƒËœÃ‚Â¥ÃƒËœÃ‚Â®Ãƒâ„¢Ã‚ÂÃƒËœÃ‚Â§ÃƒËœÃ‚Â¡ */
.home-slider:not(.hero-animated) .banner-text>span,
.home-slider:not(.hero-animated) .banner-text h1,
.home-slider:not(.hero-animated) .banner-text p,
.home-slider:not(.hero-animated) .banner-text .btn.btn-white {
    opacity: 1;
    transform: none;
}

.home-slider .slick-slide {
    transition: opacity 0.75s ease-in-out;
}

.home-slider.hero-animated .banner-text>span,
.home-slider.hero-animated .banner-text h1,
.home-slider.hero-animated .banner-text p,
.home-slider.hero-animated .banner-text .btn.btn-white {
    opacity: 0;
    transform: translateY(14px);
}

.banner-text.is-hero-in>span {
    animation: heroTextIn 0.55s ease-out 0.08s forwards;
}

.banner-text.is-hero-in h1 {
    animation: heroTextIn 0.6s ease-out 0.16s forwards;
}

.banner-text.is-hero-in p {
    animation: heroTextIn 0.55s ease-out 0.26s forwards;
}

.banner-text.is-hero-in .btn.btn-white {
    animation: heroTextIn 0.5s ease-out 0.36s forwards;
}

@keyframes heroTextIn {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-slider .banner-block .overlay-img img,
    .home-slider .slick-current .banner-block .overlay-img img,
    .home-slider .slick-active .banner-block .overlay-img img,
    .home-slider .slick-slide {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }

    .home-slider.hero-animated .banner-text>span,
    .home-slider.hero-animated .banner-text h1,
    .home-slider.hero-animated .banner-text p,
    .home-slider.hero-animated .banner-text .btn.btn-white,
    .banner-text.is-hero-in>span,
    .banner-text.is-hero-in h1,
    .banner-text.is-hero-in p,
    .banner-text.is-hero-in .btn.btn-white {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

.banner-text {
    max-width: 512px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.banner-text>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 189px;
    border: 1px solid var(--white-color);
    border-radius: 9999px;
    padding: 6px 16px;
    color: var(--white-color);
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 32px;
    white-space: nowrap;
}

.banner-text h1 {
    font-family: var(--font-bold);
    color: var(--white-color);
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 58px;
    max-width: 100%;
    width: 100%;
}

.banner-text p {
    font-family: var(--font-body);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 32px;
    max-width: 512px;
    width: 100%;
}

.banner-text .btn.btn-white {
    width: 200px;
    min-width: 200px;
    max-width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 0 57px;
    margin: 0;
    background: var(--white-color);
    color: #1b1b1b;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-bold);
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.banner-text .btn.btn-white span {
    display: inline;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    color: #1b1b1b;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    white-space: nowrap;
    background: transparent;
}

[dir='rtl'] .banner-h .slick-prev {
    left: 40px;
    right: auto;
}

.banner-h .slick-prev,
.banner-h .slick-next {
    z-index: 6;
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--white-color) 22%, transparent);
    border-radius: 50%;
}

[dir='rtl'] .banner-h .slick-next {
    right: 40px;
    left: auto;
}

.banner-h .slick-next {
    right: 40px;
}

.banner-h .slick-prev {
    right: auto;
    left: 40px;
}

.banner-h .slick-prev::before,
.banner-h .slick-next::before {
    font-family: 'Font Awesome 6 Sharp';
    font-weight: bold;
    font-size: 18px;
    color: var(--white-color);
    transition: all .3s;
    opacity: 1;
    line-height: 1;
}

.banner-h .slick-prev::before {
    content: "\f0d9";
}

[dir='rtl'] .banner-h .slick-prev::before {
    content: "\f0da";
}

[dir='rtl'] .banner-h .slick-next::before {
    content: "\f0d9";
}

.banner-h .slick-next::before {
    content: "\f0da";
}

/* End Banner-h */

/* Start About-h */

.about-h {
    padding-block: 162px 32px;
    background: var(--bg-color);
}

.about-h .title {
    margin-bottom: 32px;
    text-align: start;
}

.about-h .title h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
    display: inline-block;
}

.about-h .title h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: var(--white-color);
    border-radius: 9999px;
    margin-top: 8px;
}

.about-h .title p {
    font-family: var(--font-light);
    color: var(--gray-color);
    font-size: 18px;
    line-height: 26px;
    margin: 24px 0 0;
    max-width: 525px;
}

.about-text p {
    font-family: var(--font-light);
    color: var(--gray-color);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

.about-text {
    /* max-width: 535px; */
}

.btn-more {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 177.57px;
    min-height: 48px;
    box-shadow: 0px 3px 16px 0px #2D368F24;
    border-radius: 60px;
    gap: 10px;
    font-family: var(--font-bold);
    color: var(--main-color);
    font-size: 16px;
    line-height: 26px;
    text-box-trim: trim-both;
}

.btn-more .icon {
    width: 14.97px;
    height: 14.97px;
    line-height: 14.97px;
}

.btn-more span {
    position: relative;
    top: 3px;
}

.about-inner-blocka-img {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    margin-top: 8px;
}

.about-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-img .img {
    max-width: 100%;
    margin: 0;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.about-blocks .about-block {
    background: var(--card-color);
    border-radius: 12px;
    padding: 16px;
    min-height: 178px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.about-blocks .about-block .icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 34px;
    text-align: center;
}

.about-blocks .about-block .icon svg {
    width: 25px;
    height: 25px;
    display: block;
}

.about-blocks .about-block h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 18px;
    line-height: 28px;
    margin: 16px 0 8px;
}

.about-blocks .about-block p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.about-counters {
    /* display: grid; */
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    /* gap: 9px 16px; */
    /* height: 100%; */
    /* align-content: start; */
    max-width: calc(100% - 32px);
    margin-inline-start: auto;
}

.about-counters .item {
    /* height: calc(100% - 8px); */
    margin-bottom: 12px;
}

.about-counters .counter-block {
    border: 1px solid #C6C6C6;
    border-radius: 24px;
    min-height: 275px;
    height: 100%;
    padding: 16px 27px 22px;
    padding-inline-end: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    transition: all .4s;
}

.about-counters .counter-block .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--white-color) 45%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    flex-shrink: 0;
    transition: all .4s;
}

.about-counters .counter-block .icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.about-counters .counter-block .details {
    text-align: end;
}

.about-counters .counter-block .details .counter-item,
.about-counters .counter-block .details h3 {
    font-family: var(--font-bold);
    color: var(--gray-color);
    font-size: 34px;
    line-height: 44px;
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 4px;
}

.about-counters .counter-block .details h4 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.about-img .about-count {
    position: absolute;
    right: 0;
    bottom: 21px;
    min-width: 181.07px;
    background: #fff;
    box-shadow: 0px 5px 16px 0px #00669117;
    border-radius: 10px;
    text-align: center;
    padding: 7px;
}

.counter-item {
    direction: ltr;
}

.about-img .about-count .counter-item {
    font-family: var(--font-bold);
    color: var(--main-color);
    margin: 0 0 -10px;
    font-size: 31px;
    line-height: 36px;
}

.about-img .about-count h4 {
    font-family: var(--font-light);
    margin: 0;
    color: var(--main-color);
    font-size: 16px;
    line-height: 28px;
}

/* End About-h */

/* Start Services-h */

.services-h {
    padding-block: 64px;
    background: var(--bg-color);
}

.title-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.title-flex .title {
    margin-bottom: 0;
    flex: 1 1 auto;
    max-width: 672px;
    text-align: start;
}

.title-flex .title h2 {
    display: inline-block;
}

.title-flex .title h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    background: var(--white-color);
    border-radius: 9999px;
    margin-top: 8px;
}

.title-flex .title p {
    font-family: var(--font-light);
    color: var(--gray-color);
    font-size: 18px;
    line-height: 26px;
    margin: 16px 0 0;
}

.title-flex .title-btn {
    flex: 0 0 auto;
    padding-top: 0;
}

.btn.btn-border {
    background: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: var(--btn-radius);
    min-width: 200px;
    /* width: 200px; */
    /* min-height: 56px; */
    height: 56px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-bold);
    text-transform: none;
}

.btn.btn-border span {
    color: inherit;
}

.services-h .all-services {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.services-h .all-services>[class*="col-"] {
    display: flex;
}

.serv-block {
    background: var(--card-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 33px 43px;
    min-height: 212px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s linear;
    height: 100%;
}

.serv-block .icon {
    width: 33px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    line-height: 30px;
}

.serv-block .icon img {
    max-width: 33px;
    max-height: 30px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.serv-block .details {
    width: 100%;
    text-align: start;
}

.serv-block .details h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 18px;
    line-height: 28px;
    margin: 12px 0 12px;
}

.serv-block .details p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

/* End Services-h */

/* Start Projects-h */

.projects-h {
    padding-block: 34px;
    background: var(--bg-color);
}

.projects-h .all-projects {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.projects-h .all-projects>[class*="col-"] {
    display: flex;
}

.project-block {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-block .img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

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

.project-block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.project-block .link-block {
    z-index: 3;
}

.project-block .block-details {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 24px 25px;
    pointer-events: none;
}

.project-block .block-btn {
    display: flex;
    justify-content: flex-end;
    pointer-events: auto;
    position: relative;
    z-index: 4;
}

.project-block .btn-pro {
    width: 56px;
    height: 50px;
    border-radius: 80px;
    background: #fff;
    background-image: none;
    display: inline-flex;
    align-items: center;
    text-align: start;
    gap: 0;
    justify-content: space-between;
    padding: 8px;
    border: none;
    box-shadow: none;
    overflow: hidden;
    transition: all  .4s;
}

.project-block .btn-pro .icon {
    position: relative;
    /* width: 56px; */
    /* height: 50px; */
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip: auto;
    white-space: normal;
    border: 0;
    opacity: 1;
    pointer-events: none;
    flex-shrink: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
    transition:
        width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.45s ease,
        background-image 0.35s ease,
        background-size 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-block .btn-pro .icon svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    background: #000000;
    transition: all .4s;
}

.project-block .btn-pro span {
    position: static;
    display: block;
    width: 0;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip: auto;
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
    color: var(--dark-color);
    font-family: var(--font-med);
    font-size: 18px;
    line-height: 26px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:
        width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;
}

.project-block .details {
    text-align: start;
    pointer-events: none;
}

.project-block .details h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px;
}

.project-block .details p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* End Projects-h */

/* Start Projects-list Ã¢â‚¬â€ Figma 2106:4290 */

.projects-list {
    padding-block: 100px;
    background: var(--bg-color);
}

.projects-list .all-projects {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.projects-list .all-projects > [class*="col-"] {
    display: flex;
}

/* Figma 2106:4297 Ã¢â‚¬â€ Bootstrap pagination */
.projects-pagination {
    direction: ltr;
}

.projects-pagination .pagination {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.projects-pagination .page-item {
    margin: 0;
}

.projects-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50% !important;
    background: #2a2a2a;
    color: #fff;
    font-family: var(--font-bold);
    font-size: 20px;
    line-height: 32px;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.projects-pagination .page-item.active .page-link {
    background: #fff;
    color: #202824;
    z-index: 1;
}

.projects-pagination .page-item.disabled .page-link {
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* End Projects-list */

/* Start Clients-h */

.clients-h {
    padding-block: 64px 117px;
    background: var(--bg-color);
    overflow: hidden;
}

.clients-h .title {
    margin-bottom: 66px;
    text-align: center;
}

.clients-h .title h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.clients-h .title-without-line h2::after {
    display: none;
}

.all-clients {
    position: relative;
    /* padding-bottom: 40px; */
}

.all-clients::before,
.all-clients::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 40px;
    z-index: 2;
    pointer-events: none;
}

.all-clients::before {
    left: 0;
    width: min(244px, 16vw);
    background: linear-gradient(to left, rgba(0, 0, 0, 0), var(--bg-color));
}

.all-clients::after {
    right: 0;
    width: min(240px, 16vw);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), var(--bg-color));
}

.clients-slider .slick-slide {
    padding-inline: 13px;
}

.clients-slider .slick-track {
    display: flex;
    align-items: center;
}

.client-block {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 130px;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}

.client-block img {
    display: block;
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    transition: filter 0.35s ease;
}

.clients-h .slick-dots {
    position: relative;
    bottom: auto;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

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

.clients-h .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    border: 0;
    font-size: 0;
    line-height: 0;
    transition: background 0.3s ease;
}

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

.clients-h .slick-dots li.slick-active button {
    background: var(--white-color);
}

/* End Clients-h */

/* Start Products-h */

.products-h {
    padding-block: 100px;
    background: #F6FCFF;
}

.title {
    margin-bottom: 50px;
}

.title h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.products-block {
    margin-block: 15px;
    border-radius: 20px;
    overflow: hidden;
    height: 346.65px;
    transition: all .4s;
}

.products-block .img {
    width: 100%;
    height: 100%;
}

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

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

.products-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 54, 143, 0) 38.5%, var(--main-color) 100%);
    opacity: .9;
}

.products-block .product-title {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 23px 16px;
    text-align: center;
}

.products-block .product-title h3 {
    font-family: var(--font-bold);
    color: #fff;
    margin: 0;
    font-size: 22.81px;
    line-height: 36px;
}

.products-block .product-hover {
    position: absolute;
    inset: 0;
    transition: all .3s;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    background: linear-gradient(180deg, #7581F8 0%, #4851A9 110.04%);
    padding: 17px;
    opacity: 0;
}

.products-block .product-hover ul li {
    font-family: var(--font-bold);
    color: #fff;
    display: flex;
    font-size: 18px;
    align-items: center;
    line-height: 34px;
    -webkit-align-items: center;
    margin: 4px 0;
    gap: 22px;
}

.products-block .product-hover ul li::before {
    content: "-";
}

.btn-center {
    margin-top: 13px;
}

/* End Products-h */

/* Start Corporate-links-h */

.corporate-links-h {
    padding-block: 80px;
    background: linear-gradient(135deg, #505EE9 0%, #2633B2 100%);
}

.corporate-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    align-items: center;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(4px);
    padding: 25px 28px;
    border-radius: 12px;
    margin: 12px 0;
    height: calc(100% - 24px);
    gap: 24px;
}

.corporate-block .icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    background: #FFFFFF1A;
    border-radius: 12px;
    transition: all .4s;
}

.corporate-block .icon svg {
    width: 24.72px;
}

.corporate-block .details {
    width: calc(100% - 64px - 24px);
}

.corporate-block .details h3 {
    font-family: var(--font-bold);
    color: #FFFFFFF2;
    font-size: 20px;
    margin: 0;
    line-height: 33px;
    letter-spacing: 0.55px;
}

/* End Corporate-links-h */

/* Start Values-h */

.values-h {
    padding-block: 168px 100px;
}

.value-block {
    border-radius: 25.95px;
    margin-top: 70px;
    background: #F2F2F2;
    text-align: center;
    height: calc(100% - 70px);
    padding: 78px 27px 24px;
    position: relative;
}

.value-block .icon {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -44px;
    width: 88.97px;
    height: 88.97px;
    line-height: 88.97px;
    background: var(--main-color);
    border-radius: 50%;
    transition: all .4s;
}

.value-block .icon img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
}

.value-block .details h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin: 0 0 11px;
    font-size: 20.76px;
    line-height: 34px;
}

.value-block .details p {
    color: var(--gray-color);
    font-size: 12.61px;
    line-height: 26.99px;
}

/* End Values-h */

/* Start Cart-h */

.cart-h {
    padding-block: 100px;
    border-top: 1px solid #CFCFCF;
}

.all-cart .item {
    padding: 0 10px;
}

.all-cart .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.cart-block {
    background: #EFEFEF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px #00000040;
    height: 312px;
}

.cart-block .img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.cart-block .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: darken;
    max-height: 252.2px;
}

.all-cart .slick-prev,
.all-cart .slick-next {
    z-index: 6;
}

.all-cart {
    position: relative;
}

.slick-prev,
.slick-next {
    width: 32px;
    height: 56px;
    border-radius: 13px;
    background: var(--main-color);
}

.slick-prev::before,
.slick-next::before {
    font-family: 'Font Awesome 6 Sharp';
    font-size: 18px;
    color: #fff;
    opacity: 1;
    font-weight: bold;
}

.slick-prev::before {
    content: "\f0d9";
}

[dir='rtl'] .slick-prev:before {
    content: "\f0da";
}

.slick-next::before {
    content: "\f0da";
}

[dir='rtl'] .slick-next:before {
    content: "\f0d9";
}

.slick-prev:focus,
.slick-next:focus {
    background: var(--sec-color);
}

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

.slick-prev {
    left: -50px;
}

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

.slick-next {
    right: -50px;
}

.cart-block .img::before,
.cart-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
}

.cart-block .img::before {
    background: color-mix(in srgb, var(--main-color) 56%, transparent);
    transition: all .4s;
    opacity: 0;
}

.cart-block .img::after {
    content: "\f00e";
    font-family: 'Font Awesome 6 Pro';
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    margin: auto;
    font-size: 46px;
    color: #fff;
    font-weight: 300;
    transition: all .4s;
    transform: scale(.5);
    opacity: 0;
    z-index: 2;
}

/* End Cart-h */

/* Start Footer */

footer {
    position: relative;
    background: var(--bg-color);
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../images/footer-bg.jpg") center / cover no-repeat;
    opacity: 0.3;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-block: 76px 64px;
    background: transparent;
}

.footer-top>.container>.row {
    align-items: flex-start;
}

.foot-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.logo-f {
    display: block;
    width: 370px;
    max-width: 100%;
    margin-bottom: 41px;
}

.logo-f img {
    display: block;
    width: 100%;
    height: auto;
}

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

.s-h span {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.5;
    white-space: nowrap;
}

.s-h a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 20px;
    min-width: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--white-color);
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.foot-block h3 {
    font-family: var(--font-bold);
    margin: 0;
    color: var(--white-color);
    font-size: 32px;
    line-height: 44px;
}

.links-f ul {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 40px;
    row-gap: 16px;
    justify-content: start;
}

.links-f ul li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.links-f ul li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.links-f ul li:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
}

.links-f ul li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.links-f ul li:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.links-f ul li a {
    display: inline-flex;
    font-family: var(--font-light);
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 18px;
    line-height: 28.8px;
    transition: opacity 0.3s ease;
}

.info-f {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.info-f .item a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--white-color);
    text-decoration: none;
}

.info-f .item .icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f6f6f6;
    font-size: 16px;
    line-height: 1;
}

.info-f .item .icon svg {
    width: 16px;
    height: 19px;
    display: block;
}

.info-f .item .icon i {
    font-size: 16px;
    line-height: 1;
}

.info-f .item .icon .fa-whatsapp-square {
    font-size: 19px;
}

.info-f .item span {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 18px;
    line-height: 28.8px;
}

.info-f .item span u {
    text-decoration: none;
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

.contact-block {
    gap: 15px;
    display: flex;
    margin-bottom: 7px;
    color: #fff;
}

.contact-block .icon {
    width: 22.85px;
    height: 22.85px;
    line-height: 20px;
    font-size: 22.85px;
    color: var(--thr-color);
}

.contact-block .details {
    width: calc(100% - 22.85px - 15px);
}

.contact-block .details h4 {
    font-family: var(--font-bold);
    color: #fff;
    margin-bottom: 4px;
    font-size: 16.85px;
    line-height: 28px;
}

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

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

.map-f {
    height: 239.76px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-bottom {
    /* padding-block: 0 72px; */
    background: transparent;
}

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

.copy-right p {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 18px;
    line-height: 28.8px;
    margin: 0;
}

.ryad-logo {
    float: left;
}

.icons-fixed {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icons-fixed .whats-icon {
    width: 47px;
    height: 47px;
    border-radius: 12px;
    background: transparent url("../images/whatsapp-float.svg") center / contain no-repeat;
    color: transparent;
    display: inline-block;
    font-size: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.icons-fixed .whats-icon i {
    display: none;
}

/* End Footer */

/* Start Page-banner */

.page-banner {
    position: relative;
    height: 400px;
    min-height: 400px;
    overflow: hidden;
    background: var(--bg-color);
}

.page-banner .overlay-img {
    z-index: 0;
}

.page-banner .overlay-img img {
    transform: scale(1);
    transform-origin: center center;
    animation: pageBannerZoom 8s ease-out forwards;
}

.page-banner .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45)),
        rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

@keyframes pageBannerZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-banner .overlay-img img {
        animation: none;
        transform: none;
    }
}

.page-banner > .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.page-banner .row {
    height: 100%;
    align-items: end;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 137px;
    padding-bottom: 117px;
}

.page-banner .breadcrumb-nav {
    position: relative;
    width: 100%;
    pointer-events: none;
    display: none;
}

.page-banner .breadcrumb-nav ul {
    pointer-events: auto;
}

.page-banner-content {
    max-width: 488px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.breadcrumb-nav {
    width: 100%;
}

.breadcrumb-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-nav ul li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-light);
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav ul li:not(:last-child)::after {
    content: "/";
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumb-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav ul li.active {
    color: var(--white-color);
}

.page-banner-content h1 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 48px;
    line-height: 58px;
    margin: 0;
    text-align: center;
}

.page-banner-content p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    text-align: center;
    max-width: 488px;
}

.page-banner-service {
    height: 400px;
    min-height: 400px;
}

.page-banner-service > .container {
    position: relative;
}

.page-banner-service .row {
    align-items: flex-start;
    justify-content: center;
    padding-top: 137px;
    padding-bottom: 55px;
}

.page-banner-service .breadcrumb-nav {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}

.page-banner-service .breadcrumb-nav ul {
    pointer-events: auto;
}

.page-banner-service .page-banner-content {
    gap: 0;
    max-width: 488px;
    width: 100%;
}

.page-banner-service .page-banner-content h1 {
    font-family: var(--font-bold);
    font-size: 48px;
    line-height: 58px;
    margin: 0 0 16px;
    white-space: nowrap;
}

.page-banner-service .page-banner-content p {
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 32px;
    max-width: 488px;
}

.page-banner-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

.page-banner-btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 50px;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    gap: 0;
    overflow: visible;
    box-shadow: none;
    text-transform: none;
}

.page-banner-btns .btn.btn-white {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
}

.page-banner-btns .btn.btn-white span {
    color: #000;
}

.page-banner-btns .btn.btn-border {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    min-width: 0;
    width: auto;
    height: 50px;
    min-height: 50px;
    padding: 13px 25px;
}

.page-banner-btns .btn.btn-border span {
    color: #fff;
}

.page-banner + .about-story {
    padding-block: 100px 64px;
}

/* Figma 2069:1310 / 2106:3776 Ã¢â‚¬â€ centered page heroes */
.page-banner-booking,
.page-banner-projects {
    height: 400px;
    min-height: 400px;
}

.page-banner-booking .breadcrumb-nav,
.page-banner-projects .breadcrumb-nav {
    display: none;
}

.page-banner-booking .row,
.page-banner-projects .row {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 137px;
    padding-bottom: 117px;
}

.page-banner-booking .page-banner-content,
.page-banner-projects .page-banner-content {
    max-width: 488px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.page-banner-booking .page-banner-content h1,
.page-banner-projects .page-banner-content h1 {
    font-family: var(--font-bold);
    font-size: 48px;
    line-height: normal;
    margin: 0;
    text-align: center;
    color: var(--white-color);
}

.page-banner-booking .page-banner-content p,
.page-banner-projects .page-banner-content p {
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    text-align: center;
    color: var(--white-color);
    max-width: 488px;
}

/* Figma 2107:2078 â€” single project hero */
.page-banner-project {
    height: auto;
    min-height: 400px;
}

.page-banner-project .breadcrumb-nav {
    display: none;
}

.page-banner-project .row {
    /* align-items: center; */
    /* justify-content: center; */
    /* text-align: center; */
    /* padding-top: 100px; */
    padding-bottom: 80px;
}

.page-banner-project .page-banner-content {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.page-banner-project .page-banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.page-banner-project .page-banner-content h1 {
    font-family: var(--font-bold);
    font-size: 48px;
    line-height: 58px;
    margin: 0;
    text-align: center;
    color: var(--white-color);
}

.page-banner-project .page-banner-content p {
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    text-align: center;
    color: var(--white-color);
    max-width: 488px;
}

.page-banner-project .project-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.page-banner-project .project-meta-item {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
    height: 35px;
    padding: 9px 17px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 9999px;
    color: #eeeeee;
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 16.8px;
    white-space: nowrap;
    /* direction: ltr; */
}

.page-banner-project .project-meta-item img {
    display: block;
    width: auto;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
}

/* End Page-banner */

/* Start Project-about â€” Figma 2107:2764 */

.project-about {
    padding-block: 100px;
    background: var(--bg-color);
}

.project-about .row {
    --bs-gutter-x: 64px;
    --bs-gutter-y: 40px;
}

.project-about-img {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    background: #222;
}

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

.project-about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    text-align: start;
    width: 100%;
}

.project-about-text > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 110px;
    border: 1px solid var(--white-color);
    border-radius: 9999px;
    padding: 6px 16px;
    color: var(--white-color);
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

.project-about-desc {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.project-about-desc p {
    font-family: var(--font-light);
    color: #eeeeee;
    font-size: 18px;
    line-height: 28.8px;
    margin: 0;
}

.project-about-text .btn.project-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    margin: 0;
    padding: 12px 24px;
    border-radius: 8px;
    background: #fff;
    border: none;
    box-shadow: none;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
}

.project-about-text .btn.project-about-btn span {
    color: #000;
}

/* End Project-about */

/* Start Project-quick-info â€” Figma 2107:2715 */

.project-quick-info {
    padding-block: 0;
    background: var(--bg-color);
}

.project-qi-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.project-qi-row > [class*="col-"] {
    display: flex;
}

.project-qi-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    min-height: 153px;
    padding: 25px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    text-align: start;
    box-sizing: border-box;
}

.project-qi-card .icon {
    width: 20px;
    height: 20px;
    margin: 0 0 8px;
    align-self: flex-end;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-qi-card .icon img {
    display: block;
    width: 20px;
    height: 20px;
    max-width: 20px;
    object-fit: contain;
    object-position: center;
}

.project-qi-card .label {
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 26px;
    color: #eeeeee;
    margin: 0;
}

.project-qi-card .value {
    font-family: var(--font-bold);
    font-size: 22px;
    line-height: 33px;
    color: var(--white-color);
    font-weight: normal;
    margin: 0;
}

/* End Project-quick-info */

/* Start Project-gallery â€” Figma 2107:2775 */

.project-gallery {
    padding-block: 100px 0;
    background: var(--bg-color);
}

.project-gallery-title {
    text-align: center;
    margin-bottom: 48px;
}

.project-gallery-title h2 {
    font-family: var(--font-bold);
    font-size: 32px;
    line-height: 42px;
    color: #eeeeee;
    margin: 0;
}

.project-gallery-grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.project-gallery-grid > [class*="col-"] {
    display: flex;
}

.project-gallery-item {
    display: block;
    width: 100%;
    height: 256px;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    background: #222;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* End Project-gallery */

/* Start Project-cta â€” Figma 2107:2785 */

.project-cta {
    padding-block: 100px;
    background: var(--bg-color);
}

.project-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23.4px;
    text-align: center;
    max-width: 672px;
    margin-inline: auto;
}

.project-cta-content h2 {
    font-family: var(--font-bold);
    color: #ffffff;
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.project-cta-content p {
    font-family: var(--font-light);
    color: #c4c7c8;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    max-width: 591px;
}

.project-cta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.project-cta .project-cta-btns a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 50px;
    min-height: 50px;
    margin: 0;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
    box-shadow: none;
    text-transform: none;
    gap: 0;
    overflow: visible;
}

.project-cta .project-cta-btns a.btn.btn-white {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
}

.project-cta .project-cta-btns a.btn.btn-white span {
    color: #000000;
}

.project-cta .project-cta-btns a.btn.btn-border {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    height: 50px;
    min-height: 50px;
    padding: 13px 25px;
    min-width: 0;
    width: auto;
}

.project-cta .project-cta-btns a.btn.btn-border span {
    /* color: #ffffff; */
}

/* End Project-cta */

/* Start Service-overview */

.service-overview {
    padding-block: 100px;
    background: var(--bg-color);
}

.service-overview .row {
    --bs-gutter-x: 64px;
    --bs-gutter-y: 40px;
}

.service-overview-img {
    width: 100%;
    height: 438px;
    overflow: hidden;
}

.service-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overview-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    text-align: start;
}

.service-overview-text > h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.service-overview-text > p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 32px;
    margin: 0;
}

.service-overview-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.service-overview-features .item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-overview-features .item .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #131313;
    border: 1px solid #333;
}

.service-overview-features .item .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.service-overview-features .item .details {
    text-align: start;
}

.service-overview-features .item .details h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 18px;
    line-height: 33px;
    margin: 0 0 3px;
}

.service-overview-features .item .details p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 25.6px;
    margin: 0;
}

/* End Service-overview */

/* Start Service-cta */

.service-cta {
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
    background: #000000;
}

.service-cta > .container {
    position: relative;
    z-index: 1;
}

.service-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23.4px;
    text-align: center;
    max-width: 672px;
    margin-inline: auto;
}

.service-cta-content h2 {
    font-family: var(--font-bold);
    color: #ffffff;
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.service-cta-content p {
    font-family: var(--font-light);
    color: #c4c7c8;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    max-width: 591px;
}

.service-cta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.service-cta .service-cta-btns a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 50px;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    gap: 0;
    overflow: visible;
    box-shadow: none !important;
    text-transform: none;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    text-decoration: none;
    white-space: nowrap;
}

.service-cta .service-cta-btns a.btn span {
    white-space: nowrap;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
}

.service-cta .service-cta-btns a.btn.btn-white {
    background: #ffffff;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 24px;
}

.service-cta .service-cta-btns a.btn.btn-white span {
    color: #000000;
}

.service-cta .service-cta-btns a.btn.btn-border {
    background: transparent;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    height: 50px;
    min-height: 50px;
    padding: 12px 24px;
    min-width: 0;
    width: auto;
}

.service-cta .service-cta-btns a.btn.btn-border span {
    color: #ffffff;
}

/* End Service-cta */

/* Start Careers-apply */

.careers-apply {
    padding-block: 100px;
    background: var(--bg-color);
    direction: rtl;
}

.careers-apply .row {
    --bs-gutter-x: 45px;
    --bs-gutter-y: 48px;
    direction: ltr;
    flex-direction: row;
}

.careers-apply .careers-form-col {
    order: 2;
}

.careers-apply .careers-jobs-col {
    order: 1;
}

.careers-jobs,
.careers-form-wrap {
    direction: rtl;
    text-align: start;
}

.careers-jobs h2,
.careers-form-wrap h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 24px;
    text-align: start;
}

.careers-form-wrap h2 {
    margin-bottom: 34px;
}

.careers-acc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    direction: rtl;
}

.careers-acc-item {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
}

.careers-acc-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 61px;
    padding: 16px 22px;
    background: #1a1a1a;
    border: none;
    color: var(--white-color);
    text-align: start;
    direction: rtl;
    cursor: pointer;
}

.careers-acc-title {
    font-family: var(--font-light);
    font-size: 18px;
    line-height: 28px;
    color: var(--white-color);
    flex: 1 1 auto;
    text-align: start;
}

.careers-acc-icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-inline-end: 0;
    margin-inline-start: auto;
}

.careers-acc-icon::before,
.careers-acc-icon::after {
    content: "";
    position: absolute;
    background: var(--white-color);
    border-radius: 1px;
}

.careers-acc-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.careers-acc-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.careers-acc-item.is-open .careers-acc-btn {
    background: #505050;
    min-height: 103px;
    padding: 29px 22px;
    border-radius: 20px 20px 0 0;
}

.careers-acc-item.is-open .careers-acc-icon::after {
    display: none;
}

.careers-acc-body {
    display: none;
    padding: 8px 32px 26px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    direction: rtl;
    text-align: start;
}

.careers-acc-item.is-open .careers-acc-body {
    display: block;
}

.careers-acc-body p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 36px;
    margin: 0;
    text-align: start;
}

.careers-acc-body p strong {
    font-family: var(--font-bold);
    font-size: 18px;
    font-weight: 400;
}

.careers-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    direction: rtl;
}

.careers-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    margin: 0;
    width: 100%;
    direction: rtl;
}

.careers-form .form-group label {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    text-align: start;
}

.careers-form .form-control {
    width: 100%;
    height: 52px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 7px;
    padding: 10px 20px;
    color: var(--white-color);
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    box-shadow: none;
    outline: none;
    text-align: start;
    direction: rtl;
}

.careers-form .form-control::placeholder {
    color: #747474;
    text-align: start;
}

.careers-form textarea.form-control {
    height: 130px;
    min-height: 130px;
    resize: vertical;
    padding-block: 21px;
}

.careers-form .nice-select {
    width: 100%;
    height: 52px;
    line-height: 50px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 7px;
    padding: 0 20px;
    padding-inline-start: 20px;
    padding-inline-end: 48px;
    color: rgba(255, 255, 255, 0.54);
    font-family: var(--font-light);
    font-size: 16px;
    float: none;
    direction: rtl;
    text-align: start;
}

.careers-form .nice-select .current {
    color: rgba(255, 255, 255, 0.54);
    display: block;
    text-align: start;
}

.careers-form .nice-select.open .current,
.careers-form .nice-select .option.selected {
    color: var(--white-color);
}

.careers-form .nice-select:after {
    border: none;
    width: 13px;
    content: "";
    height: 8px;
    background: url("../images/icon-caret-down.svg") center / contain no-repeat;
    margin: 0;
    right: auto;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.careers-form .nice-select.open:after {
    transform: translateY(-50%) rotate(180deg);
}

.careers-form .nice-select .list {
    background: #1a1a1a;
    border: 1px solid #424145;
    border-radius: 7px;
    margin-top: 4px;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    direction: rtl;
    text-align: start;
}

.careers-form .nice-select .option {
    color: var(--white-color);
    font-family: var(--font-light);
    min-height: 40px;
    line-height: 40px;
    text-align: start;
    background: var(--bg-color);
}

.careers-form .nice-select .option:hover,
.careers-form .nice-select .option.focus,
.careers-form .nice-select .option.selected.focus {
    background: #505050;
}

.careers-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 129px;
    background: #1a1a1a;
    border: 1px dashed #424145;
    border-radius: 8px;
    cursor: pointer;
    margin: 0;
    padding: 20px;
    text-align: center;
    direction: rtl;
}

.careers-upload img {
    width: 58px;
    height: 45px;
    display: block;
    object-fit: contain;
}

.careers-upload-text {
    font-family: var(--font-bold);
    color: #eeeeee;
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-inline: 8px;
}

.careers-upload.has-file .careers-upload-text {
    color: var(--white-color);
}

.careers-form .btn.careers-submit {
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    margin: 0;
    padding: 11px 37px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    border: none;
    font-family: var(--font-bold);
    font-size: 17px;
    line-height: 27px;
    margin-top: 18px;
}

.careers-form .btn.careers-submit span {
    color: #000;
}

/* End Careers-apply */

/* Start Contact-section */

.contact-section {
    padding-block: 200px 100px;
    background: var(--bg-color);
    /* direction: rtl; */
}

.contact-section .row {
    /* --bs-gutter-x: 64px; */
    /* --bs-gutter-y: 48px; */
    /* direction: ltr; */
    /* flex-direction: row; */
    /* align-items: flex-start; */
}

.contact-section .contact-info-col {
    /* order: 1; */
}

.contact-section .contact-form-col {
    /* order: 2; */
}

.contact-info-wrap,
.contact-form-wrap {
    /* direction: rtl; */
    text-align: start;
    width: 100%;
}

/* Figma 2068:1492 Ã¢â‚¬â€ info + map column: 526 Ãƒâ€” 555, gap 64 */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 64px; */
    /* max-width: 526px; */
}

.contact-info-wrap h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 30.64px;
    line-height: 48.14px;
    letter-spacing: -0.61px;
    margin: 0 0 18px;
    text-align: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin: 0;
    width: 100%;
}

.contact-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    text-decoration: none;
    /* direction: rtl; */
    min-height: 29px;
    width: 100%;
}

.contact-info-item span:not(.contact-info-icon) {
    font-family: var(--font-light);
    font-size: 18px;
    line-height: 28.8px;
    color: var(--white-color);
    width: calc(100% - 24px - 8px);
}

.contact-info-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f6f6f6;
}

.contact-info-icon img {
    max-width: 16px;
    max-height: 24px;
    /* display: block; */
    height: auto;
    object-fit: contain;
}

.contact-info-icon i {
    font-size: 16px;
    line-height: 1;
    color: #f6f6f6;
}

.contact-info-icon-wa {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: #fff;
    border-radius: 2px;
    padding: 3px;
    box-sizing: border-box;
}

.contact-info-icon-wa i {
    font-size: 12px;
    line-height: 1;
    color: #000;
}

.contact-map {
    width: 100%;
    max-width: 526px;
    height: 273px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 70px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    direction: rtl;
    width: 100%;
    max-width: calc();
    /* margin-inline-start: auto; */
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    width: 100%;
    direction: rtl;
}

.contact-form .form-group label {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 16px;
    line-height: 37px;
    margin: 0;
    text-align: start;
}

.contact-form .form-group label[for="contact-message"] {
    line-height: 26px;
}

.contact-form .form-control {
    width: 100%;
    height: 55px;
    background: #1a1a1a;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--white-color);
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    box-shadow: none;
    outline: none;
    text-align: start;
    direction: rtl;
}

.contact-form #contact-name.form-control {
    height: 55px;
    border-radius: 8px;
    padding: 15px 13px;
    font-family: var(--font-light);
    line-height: 26px;
}

.contact-form .form-control::placeholder {
    color: #747474;
    opacity: 1;
}

.contact-form textarea.form-control {
    height: 94px;
    min-height: 94px;
    resize: vertical;
    border-radius: 12px;
    padding: 16px;
}

.contact-form .contact-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 55px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0 16px;
    direction: rtl;
    box-sizing: border-box;
}

.contact-form .contact-phone-code {
    flex: 0 0 auto;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 37px;
    color: var(--white-color);
    white-space: nowrap;
    direction: ltr;
}

.contact-form .contact-phone-sep {
    flex: 0 0 auto;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 37px;
    color: var(--white-color);
    letter-spacing: -0.32px;
}

.contact-form .contact-phone .form-control {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    /* direction: ltr; */
    text-align: start;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 37px;
}

.contact-form .contact-phone .form-control::placeholder {
    color: #747474;
}

.contact-form .btn.contact-submit {
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    margin: 10px 0 0;
    padding: 11px 37px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    border: none;
    font-family: var(--font-bold);
    font-size: 17px;
    line-height: 27px;
}

.contact-form .btn.contact-submit span {
    color: #000;
}

/* End Contact-section */

/* Start Book-appointment-form Ã¢â‚¬â€ Figma 2069:1353 */

.book-appointment-form {
    padding-block: 100px;
    background: var(--bg-color);
}

.book-appointment-form .row {
    justify-content: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: 100%;
    max-width: 488px;
    margin-inline: auto;
    direction: rtl;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    width: 100%;
    direction: rtl;
}

.booking-form .form-group label {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    text-align: start;
}

.booking-form .form-control {
    width: 100%;
    height: 55px;
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white-color);
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    box-shadow: none;
    outline: none;
    text-align: right;
    direction: rtl;
    box-sizing: border-box;
}

.booking-form .form-control::placeholder {
    color: #747474;
    opacity: 1;
}

.booking-form textarea.form-control {
    height: 94px;
    min-height: 94px;
    resize: vertical;
    padding: 16px;
}

.booking-form .booking-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 55px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 0 16px;
    direction: rtl;
    box-sizing: border-box;
}

.booking-form .booking-phone-code {
    flex: 0 0 auto;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    white-space: nowrap;
    direction: ltr;
}

.booking-form .booking-phone-sep {
    flex: 0 0 auto;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    letter-spacing: -0.32px;
}

.booking-form .booking-phone .form-control {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: right;
    font-family: var(--font-light);
    font-size: 16px;
    line-height: 26px;
}

.booking-form .booking-phone .form-control::placeholder {
    color: #747474;
}

.booking-form .btn.booking-submit {
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    margin: 20px 0 0;
    padding: 11px 37px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    border: none;
    font-family: var(--font-bold);
    font-size: 17px;
    line-height: 27px;
}

.booking-form .btn.booking-submit span {
    color: #000;
}

/* End Book-appointment-form */

/* Start Services-list */

.services-list {
    padding-block: 100px;
    background: var(--bg-color);
}

.services-list .service-item {
    --bs-gutter-x: 64px;
    --bs-gutter-y: 40px;
    margin-bottom: 128px;
}

.services-list .service-item:last-child {
    margin-bottom: 0;
}

.service-item-img {
    width: 100%;
    height: 438px;
    border-radius: 16px;
    border: 1px solid rgba(68, 71, 72, 0.3);
    overflow: hidden;
}

.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}

.service-item-text h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 24px;
}

.service-item-text > p {
    font-family: var(--font-light);
    color: #c4c7c8;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 32px;
}

.service-item-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    width: 100%;
}

.service-item-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-light);
    color: #e2e2e2;
    font-size: 16px;
    line-height: 25.6px;
}

.service-item-list li img {
    width: 16.67px;
    height: 16.67px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.service-item-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 16px;
}

.service-item-btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 50px;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    gap: 0;
    overflow: visible;
    box-shadow: none;
    text-transform: none;
}

.service-item-btns .btn.btn-white {
    background: #fff;
    color: #000;
    border: none;
}

.service-item-btns .btn.btn-white span {
    color: #000;
}

.service-item-btns .btn.btn-border {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    min-width: 0;
    width: auto;
    height: 50px;
    min-height: 50px;
    padding: 13px 25px;
}

.service-item-btns .btn.btn-border span {
    color: #fff;
}

/* End Services-list */

/* Start About-story */

.about-story {
    padding-block: 100px 64px;
    background: var(--bg-color);
}

.about-story .row {
    --bs-gutter-x: 64px;
    --bs-gutter-y: 40px;
}

.about-story-img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    border: 1px solid #353535;
    overflow: hidden;
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: start;
}

.about-story-text > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* min-width: 128px; */
    /* border: 1px solid var(--white-color); */
    border-radius: 9999px;
    /* padding: 6px 16px; */
    color: var(--white-color);
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
}

.about-story-text h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 40px;
    line-height: 52px;
    margin: 0;
}

.about-story-desc {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.about-story-desc p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 18px;
    line-height: 29.25px;
    margin: 0;
}

/* End About-story */

/* Start About-mission */

.about-mission {
    padding-block: 0 100px;
    background: var(--bg-color);
}

.about-mission .row {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 24px;
}

.mission-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    padding: 41px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    text-align: start;
}

.mission-card .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.mission-card h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 28px;
    line-height: 34px;
    margin: 16px 0 0;
}

.mission-card p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

/* End About-mission */

/* Start About-values */

.about-values {
    padding-bottom: 100px;
    background: var(--bg-color);
}

.about-values .title {
    margin-bottom: 64px;
    text-align: start;
}

.about-values .title h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
    display: inline-block;
}

.about-values .title h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    background: var(--white-color);
    border-radius: 9999px;
    margin-top: 8px;
}

.about-values .title p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 18px;
    line-height: 26px;
    margin: 16px 0 0;
}

.about-values .row:last-child {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: 100%;
    padding: 33px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    text-align: start;
}

.value-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.value-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.value-card h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 22px;
    line-height: 33px;
    margin: 8px 0 0;
}

.value-card p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 16px;
    line-height: 25.6px;
    margin: 0;
}

/* End About-values */

/* Start About-stats */

.about-stats {
    padding-bottom: 100px;
    background: var(--bg-color);
}

.about-stats .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.stat-card {
    border: 1px solid #C6C6C6;
    border-radius: 24px;
    min-height: 235px;
    height: 100%;
    padding: 23px 15px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
}

.stat-card .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    align-self: flex-start;
}

.stat-card .icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.stat-card .details {
    text-align: end;
}

.stat-card .details .counter-item,
.stat-card .details h3 {
    font-family: var(--font-bold);
    color: var(--gray-color);
    font-size: 34px;
    line-height: 44px;
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stat-card .details h4 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

/* End About-stats */

/* Start About-method */

.about-method {
    padding-bottom: 100px;
    background: var(--bg-color);
}

.about-method .title {
    margin-bottom: 64px;
    text-align: start;
}

.about-method .title h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.about-method .title p {
    font-family: var(--font-light);
    color: var(--white-color);
    font-size: 18px;
    line-height: 26px;
    margin: 16px 0 0;
}

.method-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    position: relative;
    width: 100%;
}

.method-timeline::before {
    content: "";
    position: absolute;
    top: 23px;
    left: calc((100% - 160px) / 12);
    right: calc((100% - 160px) / 12);
    height: 2.4px;
    background-image: repeating-linear-gradient(
        to left,
        #333 0,
        #333 2px,
        transparent 2px,
        transparent 6px
    );
    pointer-events: none;
    z-index: 0;
}

.method-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    padding-bottom: 8px;
}

.method-step .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: #1a1a1a;
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.method-step h3 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 22px;
    line-height: 33px;
    margin: 0;
}

/* End About-method */

/* Start About-cta */

.about-cta {
    padding-bottom: 100px;
    background: var(--bg-color);
}

.about-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.about-cta-content h2 {
    font-family: var(--font-bold);
    color: var(--white-color);
    font-size: 32px;
    line-height: 42px;
    margin: 0;
}

.about-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-cta-btns .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 56px;
    padding: 0 57px;
    border-radius: 8px;
    font-family: var(--font-bold);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.about-cta-btns .btn.btn-white {
    background: var(--white-color);
    color: #000;
    border: none;
}

.about-cta-btns .btn.btn-white span {
    color: inherit;
}

.about-cta-btns .btn.btn-border {
    background: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.about-cta-btns .btn.btn-border span {
    color: inherit;
}

/* End About-cta */

/* Start Contact-page */

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

.contact-form-wrap {
    max-width: calc(100% - 90px);
}

.contact-form .contact-phone .form-control, .contact-form .form-control {
    text-align: right;
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
    direction: rtl;
}

.contact-form .contact-phone .wpcf7-not-valid-tip {
    position: absolute;
    top: 43px;
    margin: 0;
    margin-inline-start: -69px;
}

.wpcf7-not-valid-tip {
    top: 10px;
    position: relative;
}

.contact-form .contact-phone .wpcf7-form-control-wrap {
    align-content: center;
}

.contact-form .wpcf7-not-valid-tip {
    position: absolute;
    top: 59px;
    font-size: 12px;
}

.page-banner-booking .page-banner-content, .page-banner-projects .page-banner-content {
    max-width: 600px;
}

.mobile-menu .menu-box .navigation li.current-menu-item a {
    color: var(--sec-color);
}

.booking-form .form-group .wpcf7-not-valid-tip {
    position: absolute;
    top: 56px;
    font-size: 12px;
}

.booking-form .booking-phone .wpcf7-not-valid-tip {
    top: 40px;
    margin-inline-start: -72px;
}

.icons-fixed .upTop {
    width: 47px;
    height: 47px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: var(--sec-color);
    font-size: 20px;
    opacity: 0;
    transform: scale(.5);
}

.icons-fixed .upTop.active {
    opacity: 1;
    transform: none;
}

.careers-form .form-group label.careers-upload .wpcf7-form-control-wrap {
    position: absolute;
    bottom: 9px;
}

.careers-form .form-group label.careers-upload {
    position: relative;
}

.services-list .service-item:nth-last-child(2) {
    margin-bottom: 0;
}



/* End Contact-page */

/* Start Hover */
@media (min-width: 991px) {
    a:hover {
        text-decoration: none;
        color: initial;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }

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

    .header-med .head-inner ul li a:hover,
    .header-med .head-inner ul li .sub-menu li a:hover {
        color: var(--thr-color);
    }

    .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);
    }

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

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

    .btn:hover {
        background: var(--sec-color);
        color: var(--white-color);
        opacity: 0.9;
    }

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

    .btn.btn-white:hover {
        color: var(--dark-color) !important;
        opacity: 0.92 !important;
    }

    .btn.btn-white:hover span {
        color: var(--dark-color);
    }

    .banner-text .btn.btn-white:hover,
    .banner-text .btn.btn-white:hover span {
        color: #1b1b1b;
        opacity: 0.92;
    }

    .banner-h .slick-prev:hover,
    .banner-h .slick-next:hover {
        background: var(--header-cta-bg);
    }

    .banner-h .slick-prev:hover::before,
    .banner-h .slick-next:hover::before {
        color: var(--white-color);
        opacity: 1;
    }

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

    .btn-more:hover .icon {
        filter: brightness(0) invert(1);
    }

    .btn.btn-border:hover {
        background: var(--white-color) !important;
        color: var(--dark-color) !important;
        opacity: 1;
    }

    .btn.btn-border:hover span {
        color: var(--dark-color);
    }

    .service-item-btns .btn.btn-white:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .service-item-btns .btn.btn-white:hover span {
        color: #000;
    }

    .service-item-btns .btn.btn-border:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    .service-item-btns .btn.btn-border:hover span {
        color: #000;
    }

    .page-banner-btns .btn.btn-white:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .page-banner-btns .btn.btn-white:hover span {
        color: #000;
    }

    .project-about-text .btn.project-about-btn:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .project-about-text .btn.project-about-btn:hover span {
        color: #000;
    }

    .page-banner-btns .btn.btn-border:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    .page-banner-btns .btn.btn-border:hover span {
        color: #000;
    }

    .service-cta-btns .btn.btn-white:hover,
    .service-cta .service-cta-btns a.btn.btn-white:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .service-cta-btns .btn.btn-white:hover span,
    .service-cta .service-cta-btns a.btn.btn-white:hover span {
        color: #000;
    }

    .service-cta-btns .btn.btn-border:hover,
    .service-cta .service-cta-btns a.btn.btn-border:hover {
        background: #fff;
        color: #000;
        border-color: #fff;
    }

    .service-cta-btns .btn.btn-border:hover span,
    .service-cta .service-cta-btns a.btn.btn-border:hover span {
        color: #000;
    }

    .careers-form .btn.careers-submit:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .careers-form .btn.careers-submit:hover span {
        color: #000;
    }

    .contact-form .btn.contact-submit:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .contact-form .btn.contact-submit:hover span {
        color: #000;
    }

    .booking-form .btn.booking-submit:hover {
        background: #fff;
        color: #000;
        opacity: 0.92;
    }

    .booking-form .btn.booking-submit:hover span {
        color: #000;
    }

    .contact-info-item:hover span:not(.contact-info-icon) {
        color: #fff;
        opacity: 0.85;
    }

    .careers-upload:hover {
        border-color: rgba(255, 255, 255, 0.55);
    }

    .careers-acc-btn:hover .careers-acc-title {
        color: #fff;
    }

    .serv-block:hover {
        border-color: color-mix(in srgb, var(--white-color) 25%, transparent);
    }

    .project-block:hover .btn-pro {
        background: var(--white-color);
        /* padding: 5px 16px 5px 8px; */
        padding-inline-start: 16px;
        gap: 16px;
        /* min-width: 0; */
        height: 50px;
        min-height: 50px;
        width: 162px;
    }

    .project-block:hover .btn-pro .icon {
    }

    .project-block:hover .btn-pro .icon svg {
        /* width: 0; */
        /* height: 0; */
        /* opacity: 0; */
        transform: rotate(-28deg);
    }

    .project-block:hover .btn-pro span {
        width: 108px;
        opacity: 1;
        transition:
            width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.35s ease 0.12s;
    }

    .project-block .btn-pro:hover {
        background: var(--white-color);
        opacity: 1;
    }

    .project-gallery-item:hover img {
        transform: scale(1.04);
    }

    .projects-pagination .page-link:hover {
        background: #fff;
        color: #202824;
    }

    .projects-pagination .page-item.active .page-link:hover {
        background: #fff;
        color: #202824;
    }

    .client-block:hover img {
        filter: grayscale(0);
    }

    .products-block:hover {
        box-shadow: 0px 9.12px 18.24px 0px #00000029;
    }

    .products-block:hover .product-hover {
        opacity: 1;
    }

    .corporate-block:hover .icon {
        transform: scale(1.1);
    }

    .value-block:hover .icon {
        transform: scale(1.1);
    }

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

    .cart-block:hover .img::before {
        opacity: .3;
    }

    .cart-block:hover .img::after {
        opacity: 1;
        transform: none;
    }

    .lang-h a:hover {
        color: var(--white-color);
    }

    .s-h a:hover {
        background: transparent;
        color: var(--white-color);
        opacity: 0.7;
    }

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

    .info-f .item a:hover {
        opacity: 0.7;
    }

    .contact-block .details a:hover {
        color: var(--thr-color);
    }

    .icons-fixed .whats-icon:hover {
        color: transparent;
        transform: scale(1.06);
    }

    .breadcrumb-nav ul li a:hover {
        color: var(--white-color);
    }

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

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

    .about-inner-blocka-img {
        transition: all .8s;
        transform: translateX(100%);
        opacity: 0;
        transition-delay: 1s;
    }

    .about-h .title {
        transition: all .8s;
        transform: translateX(100%);
        opacity: 0;
        transition-delay: 1s;
    }

    .about-h .title.animH,
    .about-inner-blocka-img.animH {
        opacity: 1;
        transform: none;
    }

    .about-counters .col-md-6:nth-child(1) {
        transition: all .8s;
        transform: translateY(-150%);
        opacity: 0;
        transition-delay: 1s;
    }

    .about-counters .col-md-6:nth-child(2) {
        transition: all .8s;
        transform: translateY(150%);
        opacity: 0;
        transition-delay: 1s;
    }

    .about-counters .col-md-6.animH {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .about-blocks .about-block {
        height: 100%;
    }
    
    .about-counters .counter-block:hover {
        border-color: #fff;
    }
    
    .about-counters .counter-block:hover .icon {
        border-color: #fff;
    }
}

/* End Hover */