@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

@font-face {
    font-family: "segoeUI";
    src: url(../fonts/segoeUI.ttf);
}

/* End Fonts */

:root {
    --main-color: #A30000;
    --sec-color: #000;
    --dark-color: #1E1E1E;
    --bg-color: #F7F7F7;
}

* {
    box-sizing: border-box;
}

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

a:hover {
    text-decoration: none;
    color: var(--thr-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,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.avckc{border:1px solid #ddd;margin-bottom:15px;}
body {
    padding: 0;
    margin: 0;
    font-family: "segoeUI";
    background: #fff;
    text-align: start;
}

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,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

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

.owl-carousel {
    direction: ltr;
}

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

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

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

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

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 70px);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    /* margin: 0 0 20px; */
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    line-height: 27px;
    color: #333;
    padding: 10px 0;
    display: block;
    border-bottom: 1px #eee solid;
    text-align: start;
    text-transform: capitalize;
    position: relative;
}

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

body.mobile-menu-visible .mobile-menu {
    right: 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: rgba(0, 0, 0, 0.90);
    -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(--main-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;
    text-transform: capitalize;
}

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

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

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

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

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


/*** 

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

***/

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    /* margin-top: 27px; */
    gap: 20px;
}

header.sticky {
    position: relative;
    z-index: 99;
    left: 0;
    right: 0;
    padding: 40px 0;
    /* overflow: hidden; */
    top: 0;
    transition: all .4s;
    background: #fff;
}

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

.close-btn {
    color: var(--dark-color);
    display: table;
    margin: 0 0 20px;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid var(--dark-color);
    line-height: 40.37px;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.lang-h {
    color: #393838;
}

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

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

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

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

.mobile-menu .menu-box .navigation li a:hover {
    /* color: #fff; */
    /* text-decoration: underline; */
}

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

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

.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;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    /* text-align: center; */
    cursor: pointer;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 227px;
    width: 100%;
    /* margin-inline-end: 47px; */
}

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

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

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

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

.header-med .head-inner ul li .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: #fff;
    border-radius: 0;
    padding: 17px;
    /* visibility: hidden; */
    z-index: 99999;
    /* transform: scale(1, 0); */
    /* transform-origin: 0 0; */
    transition: none;
    margin: 0;
    height: 100vh;
    left: 0;
}

.header-med .head-inner ul li .sub-menu.mega-menu li a {
    color: var(--dark-color);
    display: block;
    margin: 16px 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
}

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

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

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

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

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

.lang-h:hover {
    /* color: #fff; */
}

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

.mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    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: var(--main-color);
    transition: all .5s;
    top: 0;
}

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

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

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

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

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

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

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

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

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

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

.btn {
    outline: none;
    position: relative;
    border: none !important;
    padding: 10px 12px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 141px;
    background: var(--main-color);
    min-height: 48px;
    border-radius: 2px;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 28px;
    box-shadow: none !important;
    z-index: 1;
    font-weight: 700;
    transition: all .4s;
    gap: 12px;
}

header .btn {
    font-size: 15px;
    line-height: 18.23px;
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
    /* height: 80px; */
}

.btn span::before,
.btn span::after {
    top: auto;
    bottom: 0;
}

.btn span::before {
    left: 25%;
}

.btn span::after {
    left: 75%;
}

.nav-inner {
    /* margin-inline-start: auto; */
}

.search-box-btn.search-box-outer {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

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

.lang-h img {
    max-width: 32px;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container {
    gap: 0;
    flex-wrap: wrap;
    align-items: start;
    -webkit-align-items: start;
    transition: all .4s;
    /* transition-property: transform; */
    /* transition-timing-function: cubic-bezier(.5,.01,.19,.99); */
    transition-duration: .75s;
    will-change: transform;
    opacity: 0;
    transform: translateY(22px);
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(1) {
    width: 30%;
    padding: 0 10px;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) {
    width: 70%;
    padding: 0 10px;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li ul {
    display: block;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(1) ul li {
    min-width: 100%;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul {
    display: flex;
    gap: 0;
    align-items: start;
    -webkit-align-items: start;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li:nth-child(1) {
    width: 45%;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li:nth-child(2) {
    width: 55%;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li .img {
    height: 225px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(251.91deg, rgba(0, 0, 0, 0) -7.99%, #000000 99.4%);
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li .img:nth-child(2)::after {
    background: linear-gradient(120.22deg, rgba(0, 0, 0, 0) -15.19%, #000000 100%);
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li:nth-child(2) .img::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li:nth-child(2) .img {
    height: 540px;
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(2) ul li .img:nth-child(2) {
    height: 294px;
}

.header-med .head-inner ul li.open .sub-menu.mega-menu .container {
    opacity: 1;
    transform: none;
}

.header-med .head-inner .nav-inner.active ul li a {
    color: #cbcccc;
}

.header-med .head-inner .nav-inner.active ul li.open a {
    color: var(--dark-color);
}

.header-med .head-inner ul li .sub-menu.mega-menu .container li:nth-child(1) li {
    padding: 0;
}

/* End Header */

/* Start Banner-h */
.banner-h,
.banner-h .banner-slider .item {
    height: 602px;
}

video#video-h {
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.video-controls {
    display: flex;
    justify-content: end;
    margin: 48px;
    gap: 16px;
    flex-direction: row-reverse;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 8;
}

.video-controls button {
    font-size: 24px;
    color: #fff;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    cursor: pointer;
}

.banner-h::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(176.45deg, rgba(0, 0, 0, 0) -3.4%, #000000 97.08%);
    opacity: .10;
    z-index: -1;
}

.banner-h .banner-slider {
    z-index: 5;
    height: 100%;
    margin: 0;
}

.banner-h .banner-slider .banner-block {
    height: 100%;
}

.banner-h .banner-slider .banner-block .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(176.45deg, rgba(0, 0, 0, 0) -3.4%, #000000 97.08%);
}

.banner-block .overlay-img {
    z-index: 3;
    aspect-ratio: 16/9;
}

.video-controls button i {
    font-weight: 500;
}

.banner-h .banner-slider .slick-dots {
    position: absolute;
    left: auto;
    right: 0;
    width: auto;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 7;
    margin: 0 48px;
}

.banner-h .banner-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 15px 0;
}

.banner-h .banner-slider .slick-dots li button {
    width: 40px;
    position: relative;
    margin: 0;
    height: auto;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    opacity: .5;
    padding: 0;
    text-align: end;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.banner-h .banner-slider .slick-dots li button::before {
    /* display: none; */
}

.banner-h .banner-slider .slick-dots li.slick-active button {
    opacity: 1;
    font-size: 24px;
    line-height: 34px;
    transform: none;
    border: none;
}

.banner-h .banner-slider .slick-dots li.slick-active button::before {
    opacity: 1;
    transform: none;
}

.banner-h .banner-slider .slick-dots li button::before {
    content: "-";
    display: block;
    width: auto;
    height: auto;
    color: inherit;
    font-size: inherit;
    position: relative;
    transform: translateX(-10px);
    transition: all .4s;
    opacity: 0;
    top: -3px;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    padding: 100px 0 90px;
}

.about-text {
    padding-top: 56px;
    padding-inline-end: 34px;
}

.about-text h3 {
    color: #1E1E1E;
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
    margin-bottom: 32px;
}

.about-text p {
    color: #1E1E1E;
    font-weight: 400;
    font-size: 18px;
    line-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.about-text .btn {
    margin-top: 32px;
}

.btn.btn-border {
    background: transparent;
    border: 2px var(--dark-color) solid !important;
    color: var(--dark-color);
}

.btn i {
    font-size: 14.5px;
    position: relative;
    top: 1px;
}

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

.about-img {
    position: relative;
    height: 481px;
}

.about-img .img {
    max-width: 498px;
    margin-inline-start: auto;
    height: 388px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-img .about-logos {
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0px 20px 60px 0px #34255E1F;
    margin-inline-end: 124px;
    margin-inline-start: -124px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
}

.about-img .about-logos .about-logo {
    max-width: 166px;
    border-radius: 6px;
    overflow: hidden;
}

.about-img .about-logos .about-logo {
    border-radius: 8px;
    height: 128px;
    line-height: 128px;
}

.about-img .about-logos .about-logo img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* End About-h */

/* Start Products-h */

.title {
    margin-bottom: 33px;
}

.title h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
    margin: 0;
}

.product-box .img {
    height: 150px;
    line-height: 150px;
    text-align: center;
}

.product-box .img img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    margin: auto;
}

.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 24px;
}

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

.slick-dots li button {
    width: 28px;
    border: 4px solid #1616161A;
    padding: 0;
    margin: 0 8px;
    height: auto;
    border-radius: 50px;
}

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

.slick-dots li.slick-active button {
    width: 34px;
    border-color: var(--sec-color);
}

.products-slider {
    margin: 0;
    direction: rtl;
}

/* End Products-h */

/* Start Events-h */

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 33px;
}

.title-flex .title {
    margin: 0;
}

.title-flex .btn {
    min-width: 105px;
    min-height: 45px;
    border-radius: 6px;
    padding: 6px 12px;
    border-width: 3px !important;
}

.event-block {
    margin: 24px 0;
    height: calc(100% - 24px);
}

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

.event-block .img {
    height: 242px;
    overflow: hidden;
}

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

.event-block .details {
    padding: 24px 0 0;
}

.date-h {
    color: #a7a7a7;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 16px;
}

.event-block .details h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    transition: all .3s;
}

.all-events .col-md-4:nth-child(2) {
    width: 66.66666666%;
}

.event-block:hover .details h3 {
    color: var(--main-color);
}

.events-h {
    padding: 90px 0;
}

/* End Events-h */

/* Start Sust-h */

.imgs-sust {
    display: flex;
    gap: 20px;
    justify-content: end;
    height: 435px;
}

.imgs-sust .img-in {
    width: 184px;
}

.imgs-sust .img-in2 {
    width: 292px;
}

.imgs-sust .img-in .img {
    height: 203px;
    border-radius: 5px;
    overflow: hidden;
}

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

.imgs-sust .img-in .img:nth-child(2) {
    height: 212px;
    margin-top: 20px;
}

.imgs-sust .img-in2 .img {
    height: 100% !important;
}

.sust-h {
    padding-bottom: 90px;
}

/* End Sust-h */

/* Start Follow-h */

.follow-inner {
    text-align: center;
    padding: 40px;
    background: var(--bg-color);
}

.follow-inner h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
    margin-bottom: 24px;
}

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

.s-h a img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    object-position: center;
}

.s-h a {
    display: block;
}

/* End Follow-h */

/* Start Contact-h */

.contact-h {
    padding: 80px 0;
}

.contact-info {
    position: relative;
    max-width: 571px;
    margin-inline-start: auto;
    height: 100%;
    padding: 72px 40px 185px;
}

.contact-h .row {
    box-shadow: 0px 20px 60px 0px #34255E1F;
    margin: 0;
}

.contact-h .contact-form {
    padding: 40px;
    padding-inline-end: 20px;
}

.contact-h .row .col-md-6 {
    padding: 0;
}

.contact-title {
    margin-bottom: 24px;
}

.contact-title h3 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.contact-title p {
    color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-group .form-control {
    border: none;
    height: 57px;
    border-bottom: 1px solid #E5E5EA;
    padding: 0 44px;
    border-radius: 0;
    box-shadow: none !important;
    transition: all .3s;
    text-align: left;
}

.contact-form .form-group .icon {
    position: absolute;
    left: 13px;
    right: 13px;
    top: 17px;
    width: 21.5px;
    height: 19.5px;
    line-height: 19.5px;
}

.contact-form .form-group .form-control:focus {
    border-color: var(--main-color);
}

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

.contact-form .form-group .btn {
    margin-top: 4px;
    border-width: 3px !important;
    border-radius: 6px;
    min-width: 187px;
    min-height: 56px;
}

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

.contact-info .overlay-img::before {
    background: linear-gradient(358.93deg, rgba(197, 34, 31, 0.6) -73.71%, #1E1E1E 66.94%);
    backdrop-filter: blur(14px);
}

.contact-info .overlay-img::after {}

.info-inner .contact-title {
    margin-bottom: 32px;
}

.info-inner .contact-title h3,
.info-inner .contact-title p {
    color: #FFFFFF;
}

.info-inner .item {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 24px;
}

.info-inner .item .icon {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: var(--sec-color);
    border-radius: 6px;
}

.info-inner .item .icon img {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
    object-position: center;
}

.info-inner .item .details {
    width: calc(100% - 24px);
    padding-inline-start: 16px;
}

.info-inner .item .details h4 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
}

.info-inner .item .details .links-in {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #fff;
}

.info-inner .item .details .links-in a {
    margin: 0 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    display: inline-block;
    color: #fff;
}

.info-inner .item .details .links-in a u {
    display: block;
    direction: ltr;
    text-decoration: none;
}

.info-inner .item .details .links-in a:first-child {
    margin-inline-start: 0;
}

.info-inner .item .details .links-in a:last-child {
    margin-inline-end: 0;
}

.contact-logo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 268px;
    margin: 24px 40px;
}

/* End Contact-h */

/* Start Footer */

.footer-bottom {
    background: #F7F7F7;
}

footer {
    padding-top: 20px;
}

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

.btn-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 7;
    margin: 42px;
    animation: 2s infinite pulse;
}

.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #fff;
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background-color: var(--main-color);
    transition: all 0.3s ease;
}

header.sticky.active {
    position: fixed;
    top: 0;
    background: #fff;
    padding: 30px 0;
}

header.scrolled {
    position: fixed;
    top: 0;
    /* transform: translateY(-100%); */
    background: #fff;
    padding: 30px 0;
}

header.sticky.active {
    transform: none;
}

.menu-search .form-group {
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
}

.menu-search .form-group input {
    width: calc(100% - 60px);
    height: 50px;
    border: 1px #eee solid;
    padding: 0 16px;
    border-radius: 8px;
    outline: none !important;
    box-shadow: none !important;
}

.menu-search .form-group button {
    width: 50px;
    height: 50px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: var(--main-color);
    color: #fff;
    font-size: 20px;
    border-radius: 8px;
}

.contact-form .form-group textarea.form-control {
    height: 87px;
    padding: 15px 44px 10px;
}

form {
    direction: ltr;
}

/* End Footer */

/* Start Loader */

#page-loader {
    position: fixed;
    top: -100%;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    z-index: 9999;
    transition: top 0.6s ease;
}

#page-loader.show {
    top: 0;
}

.page-loaded.loaded #page-loader {
    top: 100%;
}

.loaded #page-loader {
    top: 0;
}

.page-loaded.loading #page-loader {
    top: 100%;
}

/* End Loader */

/* Start Who-page  */

.about-page.body-inner {
    padding: 29px 0 90px;
}

.btn-back {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 28px;
    gap: 8px;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.btn-back i {
    font-weight: 300;
    font-size: 16.41px;
    position: relative;
    top: 2px;
}

.about-title {
    margin-bottom: 40px;
}

.about-title h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 40px;
    line-height: 57px;
    margin: 0;
    vertical-align: middle;
}

.about-inner .img {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.about-content p {
    color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 40px;
}

.about-content p:last-child {
    margin: 0;
}

/* End Who-page  */

/* Start Mission-page */

.mission-content {
    max-width: 900px;
    margin: 90px 0;
    /* text-align: center; */
}

.mission-content h3 {
    color: #000;
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
    margin-bottom: 24px;
}

.mission-content p {
    color: #000;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
}

.mission-content .text-inner {
    position: relative;
    padding: 0 19px;
    padding: 0;
}

.mission-content .text-inner blockquote::before, .mission-content .text-inner blockquote::after {
    content: "";
    background: url(../images/elements.png) no-repeat center;
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 6px;
    margin: 0 10px;
}

.mission-content .text-inner blockquote::before {
    left: 0;
    top: 6px;
    margin: 0;
    transform: scale(-1);
}

.mission-content .text-inner blockquote::after {
    bottom: 0;
    right: 0;
}

.team-bock .img {
    height: 435px;
}

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

/* End Mission-page */

/* Start Services-page */

.about-content h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.services-page .about-inner .img {
    margin-bottom: 20px;
}

.serv-spcial-block {
    margin: 90px 0;
    position: relative;
    padding: 127px 0;
}

.serv-spcial-block .img {
    position: absolute;
    top: 0;
    bottom: 0;
    max-width: calc(100% - 301px);
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

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

.serv-spcial-block .details {
    position: relative;
    margin-inline-start: auto;
    max-width: 593px;
    background: #fff;
    box-shadow: 0px 20px 60px 0px #34255E1F;
    padding: 32px;
    border-radius: 10px;
}

.serv-spcial-block .details h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 57px;
    margin-bottom: 24px;
}

.serv-spcial-block .details ul li {
    padding-inline-start: 20px;
    position: relative;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    margin: 5px 0;
}

.serv-spcial-block .details ul li::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    background: var(--dark-color);
    border-radius: 50%;
}

.services-all-inner .accordion-item {
    border-radius: 0 !important;
    border: none;
}

.services-all-inner .accordion-item .accordion-button {
    border: none;
    border-top: 1px solid #CCCCCC;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 44px;
    background: transparent;
    box-shadow: none;
    text-align: start;
}

.services-all-inner .accordion-item .accordion-button::after {
    margin: 0;
    background: transparent;
    content: "\f175";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    font-size: 22.73px;
    width: auto;
    height: auto;
}

.services-all-inner .accordion-item .accordion-button:not(.collapsed) {
    display: none;
}

.services-all-inner .accordion-item .accordion-body {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px 0px #34255E1F;
    padding: 24px;
}

.services-all-inner .accordion-item .accord-inner .accord-text .accordion-button:not(.collapsed) {
    display: block;
}

.services-all-inner .accordion-item .accord-inner .accord-text .accordion-button {
    border: none;
    padding: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 44px;
    margin-bottom: 16px;
}

.accord-text {
    padding-inline-start: 56px;
}

.services-all-inner .accordion-item .accord-inner .accord-text .accordion-button::before {
    margin: 0;
    background: transparent;
    content: "\f178";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    font-size: 22.73px;
    margin-inline-start: -50px;
    margin-inline-end: 20px;
}

.services-all-inner .accordion-item .accord-inner .accord-text .accordion-button::after {
    display: none;
}

.accord-text p {
    color: var(--dark-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
}

.btn.btn-gray {
    margin-top: 40px;
    background: #F7F7F7;
    min-width: 187px;
    color: var(--dark-color);
    min-height: 56px;
    border-radius: 3px;
    gap: 6px;
    flex-direction: row-reverse;
}

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

.accord-img {
    height: 622px;
    max-width: 600px;
    margin-inline-start: auto;
}

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

.services-more {
    padding: 10px 0;
}


/* End Services-page */

/* Start Single-service */

.body-inner {
    padding-top: 90px;
}

.service-single-in {
    padding: 90px 0;
}

.single-text.serv-spcial-block {
    padding: 0;
    margin: 0;
}

.single-text h3 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 24px;
}

.single-text .details {
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.single-text .details ul li {
    font-weight: 400;
    font-size: 18px;
    line-height: 37px;
}

.service-single-in .row {
    justify-content: space-between;
}

.single-img {
    max-width: 498px;
    margin-inline-start: auto;
    height: 495px;
}

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

.service-comm .single-img {
    margin: 0;
    max-width: 100%;
    padding: 31px 20px;
    position: relative;
    height: 717px;
}

.service-comm .single-img img {
    border-radius: 16px;
    /* height: 717px; */
}

.service-comm .single-img::after {
    content: "";
    position: absolute;
    right: 0;
    top: 160px;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
}

.service-comm .single-text {
    max-width: 459px;
    margin-inline-start: auto;
}

.single-title {
    margin-bottom: 56px;
}

.single-title .sub-title {
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 24px;
}

.single-title h3 {
    color: #000;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    margin: 0;
}

.comm-all-inner {}

.comm-all-inner .accordion-item {
    margin: 0 0 40px;
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.comm-all-inner .accordion-item:last-child {
    margin: 0;
}

.comm-all-inner .accordion-item .accordion-button {
    padding: 16px;
    border-radius: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    -webkit-align-items: center;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
}

.comm-all-inner .accordion-item .accordion-button::after {
    margin: 0;
    margin-inline-start: auto;
    filter: brightness(0);
}

.comm-all-inner .accordion-item .accordion-button .num {
    width: 43px;
    height: 43px;
    line-height: 43px;
    text-align: center;
    background: #000000;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.09px;
    border-radius: 50%;
}

.comm-all-inner .accordion-item .accordion-button span {
    max-width: calc(100% - 43px - 16px);
}

.comm-all-inner .accordion-item .accordion-body {
    padding: 0 16px 16px;
    padding-inline-start: 57px;
}

.comm-text-in.serv-spcial-block {
    padding: 0;
    margin: 0;
}

.comm-text-in.serv-spcial-block .details ul li {
    font-size: 18px;
    line-height: 32px;
}

.comm-text-in.serv-spcial-block .details ul li::before {
    top: 13px;
    width: 7px;
    height: 7px;
}

.comm-all-inner .accordion-item.active {
    box-shadow: 0px 4px 30px 0px #00000014;
}

.service-comm {
    padding-bottom: 200px;
}

/* End Single-service */

/* Start Events-page */

.body-inner .event-block {
    margin-bottom: 40px;
    height: calc(100% - 40px);
}

.events-inner .col-md-4:nth-child(2),
.events-inner .col-md-4:nth-child(10) {
    width: 66.6666666%;
}

/* End Events-page */

/* Start Event-single */

.event-title {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.shareNow {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.shareNow span {
    color: var(--dark-color);
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    display: inline-block;
    margin-inline-end: 2px;
}

.shareNow a {
    width: 52px;
    height: 52px;
    background: #E6E6E6;
    border-radius: 50%;
    font-size: 20px;
}

.shareNow a i {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.event-title .date-h {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

/* End Event-single */

/* Start Modal */

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

.requestModal .modal-content {
    border: 1px solid #E9EEEF;
    border-radius: 12px;
    padding: 40px 32px;
}

.requestModal .modal-content .modal-header {
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    padding: 0;
    margin-bottom: 24px;
}

.requestModal .modal-content .modal-header .modal-title {
    color: #000;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.requestModal .btn-close {
    margin: 0;
    background: transparent;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 17.5px;
    opacity: 1;
    color: var(--dark-color);
}

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

.form-modal .form-group .form-control {
    border: 1px solid #E6E8E9;
    border-radius: 8px;
    padding: 0 16px;
    font-family: IBM Plex Sans Arabic;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    height: 55px;
    line-height: 55px;
}

.form-modal .form-group .form-control::placeholder {
    color: #9AA1A3;
}

.form-modal .form-group .form-control .current {
    color: #9AA1A3;
}

.form-modal .form-group .form-control::after {
    left: auto;
    right: 16px;
    top: 0;
    color: #161616;
    font-weight: 300;
}

.form-modal .form-group .icon {
    left: auto;
    right: 16px;
}

.form-modal .form-group textarea.form-control {
    height: 108px;
    padding: 12px 16px;
    line-height: normal;
}

.form-modal .form-group .btn.btn-form {
    width: 100%;
    margin-top: 16px;
    font-family: IBM Plex Sans Arabic;
    font-weight: 400;
    font-size: 16px;
}

/* End Modal */

/* Start Projects-page */

.nav.nav-tabs {
    border: none;
    margin: 0;
    gap: 29px;
}

.nav.nav-tabs .nav-item .nav-link {
    border: none;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-color);
}

.nav.nav-tabs .nav-item .nav-link.active {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: 600;
}

.about-inner.title-flex {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: start;
    -webkit-align-items: start;
    gap: 20px 0;
}

.about-inner.title-flex .about-title {
    margin: 0;
}

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

.project-block .img {
    height: 293px;
    border-radius: 5px;
    overflow: hidden;
}

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

.project-block .details {
    padding: 20px 0 0;
}

.project-block .details h3 {
    margin: 0;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

.tab-inner .col-md-8 .row .col-md-6:nth-child(1),
.tab-inner .col-md-8 .row .col-md-6:nth-child(4),
.tab-inner .col-md-8 .row .col-md-6:nth-child(9),
.tab-inner .col-md-8 .row .col-md-6:nth-child(12) {
    width: 100%;
}

.tab-inner .col-md-8 .row .col-md-6:nth-child(1) .project-block .img,
.tab-inner .col-md-8 .row .col-md-6:nth-child(4) .project-block .img,
.tab-inner .col-md-8 .row .col-md-6:nth-child(9) .project-block .img,
.tab-inner .col-md-8 .row .col-md-6:nth-child(12) .project-block .img {
    height: 665px;
}

.projects-inner {
    max-height: 2671px;
    overflow: hidden;
    overflow-y: scroll;
}

.projects-inner::-webkit-scrollbar {
    width: 0;
}


/* End Projects-page */

/* Start Project-single */

.projects-imgs>.img a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.projects-imgs>.img a .img-in {
    width: 100%;
    height: 100%;
}

.projects-imgs>.img a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(183.73deg, rgba(0, 0, 0, 0) -13.42%, rgba(0, 0, 0, 0.6) 96.94%);
}

.projects-imgs>.img .icon {
    margin: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: #FFFFFF4D;
    border-radius: 5px;
}

.projects-imgs>.img .icon svg {
    width: 40px;
    height: 40px;
}

.projects-imgs .imgs-small .img {
    height: 267px;
}

.projects-imgs .imgs-small .img a,
.projects-imgs .imgs-small .img a .img-in {
    width: 100%;
    display: block;
    height: 100%;
}

.project-content {
    justify-content: space-between;
}

.table-h table {
    width: 100%;
}

.table-h table th,
.table-h table td {
    padding: 16px 0;
    border-bottom: 1px solid #CCCCCC;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.table-h table tr:nth-child(1) th,
.table-h table tr:nth-child(1) td {
    padding-top: 0;
}

.table-h table tr:last-child th,
.table-h table tr:last-child td {
    border: none;
}

.table-h table tr td {
    text-align: end;
}

.table-h table tr th {
    font-weight: 600;
}

.project-text p {
    color: var(--dark-color);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0%;
    line-height: 42px;
}

.project-content+.project-content.row {
    padding: 90px 0;
}

.project-content .img {
    height: 373px;
}

.project-text.big-text p {
    font-weight: 400;
    font-size: 22px;
}

/* End Project-single */

/* Start Partners-page */

.body-inner .product-box {
    margin-bottom: 40px;
}

.body-inner .product-box {
    margin-bottom: 20px;
}

/* End Partners-page */

/* Start Products-page */

.pro-block-in {
    margin-bottom: 40px;
}

.pro-block-in .img {
    height: 436px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

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

.pro-block-in .details {
    padding-top: 20px;
}

.pro-block-in .details h3 {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
    border-bottom: 2px #000 solid;
    padding-bottom: 15px;
}

.pro-block-in .img .hover-box {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
}

.pro-block-in .img .hover-box ul {
    width: 100%;
}

.pro-block-in .img .hover-box ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    border-bottom: 1px solid #CCCCCC;
    padding: 16px 0;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.pro-block-in .img .hover-box ul li:first-child {
    padding-top: 0;
}

.pro-block-in .img .hover-box ul li:last-child {
    border: none;
    padding-bottom: 0;
}

.pro-block-in .img .hover-box ul li strong {
    font-weight: 600;
    font-size: 16px;
}

.pro-block-in:hover .img .hover-box {
    opacity: 1;
    visibility: visible;
}

/* End Products-page */

/* Start Single-product */

.product-inner .about-title h3 {
    font-weight: 600;
}

.single-product-img {
    height: 629px;
    overflow: hidden;
    border-radius: 5px;
}

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

.single-product-text h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    color: var(--dark-color);
}

.single-product-text p {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    color: var(--dark-color);
}

.btns-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.single-product-text .btns-flex {
    margin-top: 20px;
}

.single-product-text .btns-flex .btn {
    border-radius: 6px;
    border-width: 3px !important;
    min-width: 187px;
    min-height: 56px;
    justify-content: center;
}

.single-product-text .btns-flex .btn .icon {
    margin-inline-start: -10px;
}

.more-range {
    padding-top: 90px;
}

.more-range .about-title h3 {
    font-weight: 600;
}

.mobile-menu .menu-box .navigation li .container>li:nth-child(n + 2) {
    display: none;
}

.mobile-menu .menu-box .navigation li.menu-item-has-children>a::after {
    content: "";
    position: absolute;
    right: 4px;
    width: 10px;
    height: 10px;
    border-top: 1px #484848 solid;
    border-left: 1px #484848 solid;
    transform: rotate(-133deg);
    top: 12px;
}

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

/* End Single-product */
/*************************************************/
.wpcf7 p {
  margin: 0;
  display: block;
  width: 100%;
}

.wpcf7 br {
  display: none;
}

.wpcf7-file {
  display: none;
}
.sfsiplus_footerLnk{
    display: none; 
}



.not-found .not-found-pro {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.not-found .not-found-pro img {
    max-height: 400px;
}

.not-found .not-found-pro h2 {
    font-size: 30px;
    color: var(--sec-color);
    font-weight: bold;
}

.not-found .not-found-pro h4 {
    margin: 15px 0;
    font-size: 20px;
    color: #777;
}

c {
    /* position: relative; */
}

.not-found .not-found-pro p {
    margin: 25px 0 15px;
    font-size: 14px;
    color: #777;
    /* font-weight: bold; */
    position: relative;
}

.not-found .not-found-pro .btn.go-home {
    padding: 0;
    line-height: normal;
    min-height: auto;
    background: transparent;
    color: var(--sec-color);
    font-size: 20px;
    text-decoration: underline;
}

.not-found .not-found-pro p::after {content: "";position: absolute;right: 0;left: 0;top: 0;border-bottom: 1px #f1f1f1 solid;margin: auto;width: 100%;bottom: 0;height: 1px;z-index: -2;}

.not-found .not-found-pro p::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    border: 1px #f1f1f1 solid;
}

.not-found.not-found-404 .not-found-pro h2 {
    margin: 20px 0;
}

.pagination {
    gap: 0 10px;
}

.pagination .page-link {
    width: auto;
    height: auto;
    line-height: 40px;
    padding: 0 5px;
    text-align: center;
    border-radius: 0 !important;
    border: none !important;
    color: var(--dark-color);
}

.pagination .active .page-link {
    background: transparent;
    color: var(--main-color);
    border: none;
    font-weight: bold;
}

.pagination .next.page-link , .pagination .prev.page-link {
    border: 1px var(--main-color) solid !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    background: var(--main-color);
    color: #fff;
}

.pagination .next.page-link span span, .pagination .prev.page-link span span {
    display: none;
}

.pagination .next.page-link {
    margin-inline-start: 10px;
}

.pagination .prev.page-link {
    margin-inline-end: 10px;
}

.header-med .head-inner ul li.products-dropdown, .header-med .head-inner ul li.services-dropdown, .header-med .head-inner ul li.about-dropdown {
    position: inherit;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 160px;
    box-shadow: 0 0 20px rgb(0 0 0 / 12%);
    border-radius: 5px;
    top: 117%;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 18px;
    line-height: 28px;
}

.header-med .head-inner ul li .sub-menu.mega-menu {
    top: 100%;
    box-shadow: none;
}

.text-sust .about-text {
    padding-top: 0;
}

.text-sust .about-text p {
    -webkit-line-clamp: 6;
    line-clamp: 6;
    margin: 24px 0 0;
}

.text-sust .btn {
    min-height: 56px;
    min-width: 187px;
    margin-top: 43px;
}

.page-loader {
    position: fixed;
    z-index: 99999;
    background: #fff;
    inset: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.page-loader .logo-load {
    animation: pulse 2s infinite;
    max-width: 350px;
}
.page-loader .logo-load img{
    width:340px;
}

.cart-in-slider .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.cart-in-slider .item {
    padding: 0 5px;
}

.cart-in-slider .cart-in-block {
    display: block;
    height: 200px;
  
    overflow: hidden;
    border-radius: 10px;
}

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

.whatsappIcon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: 2s infinite bounceIn;
    align-content: center;
}

.cart-in-block {
    height: 180px;
    display: block;
    border-radius: 10px;
    overflow: hidden;  margin-bottom:15px;
    border:1px solid #ddd;
    position: relative;
}

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

.cart-in-block::before {
    background: var(--main-color);
    transition: all .4s;
    opacity: 0;
}

.cart-in-block:hover::before, .cart-in-block:hover::after {
    opacity: 1;
}

.cart-in-block:after {
    content: "\f002";
    font-family: 'Font Awesome 6 Pro';
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin: auto;
    color: #fff;
    font-size: 20px;
    align-content: center;
    transition: all .4s;
    opacity: 0;
}

.cart-in-block:hover::before {
    opacity: .6;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

.mobile-menu .logo-menu {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.mobile-menu .menu-box .navigation li .sub-menu {
    padding: 0 20px;
}

.mobile-menu .menu-box .navigation li .sub-menu a {
    font-weight: 500;
}

@media (min-width: 991px){
.projects-page .tab-inner .col-md-4:nth-child(1), .projects-page .tab-inner .col-md-4:nth-child(6), .projects-page .tab-inner .col-md-4:nth-child(14) {
    width: 66.66%;
}

.projects-page .tab-inner .col-md-4:nth-child(1) .project-block .img, .projects-page .tab-inner .col-md-4:nth-child(6) .project-block .img, .projects-page .tab-inner .col-md-4:nth-child(14) .project-block .img {
    height: 665px;
}


.projects-page .tab-inner .col-md-4:nth-child(5), .projects-page .tab-inner .col-md-4:nth-child(7) {
    margin-top: -25.5%;
}

.projects-page .tab-inner .col-md-4:nth-child(10) {
    margin-top: -51%;
}

.projects-page .tab-inner .col-md-4:nth-child(13) {
    margin-top: -51%;
}

section.projects-page.body-inner {
    padding-bottom: 500px;
}

.projects-page .tab-inner .col-md-4:nth-child(15) {
    margin-top: -51%;
}

.projects-page .tab-inner .col-md-4:nth-child(18), .projects-page .tab-inner .col-md-4:nth-child(21) {
    margin-top: -77%;
}

.about-inner.title-flex .nav.nav-tabs {
    /* max-width: 70%; */
}

.partners-page .product-box .img img {
    max-width: 240px;
}

.about-page .about-inner {
    max-width: 80%;
}

.single-page .about-inner .about-content {
    max-width: 80%;
}


}