@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* End Fonts */

:root {
    --main-color: #9B6F44;
    --sec-color: #5D4329;
    --dark-color: #000;
    --bg-color: #F7F7F7;
    --white-color: #fff;
}

* {
    box-sizing: border-box;
}

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

a:hover {
    text-decoration: none;
    color: var(--sec-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;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Cairo", sans-serif;
    background: 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,
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: 0;
    /* padding-top: 30.1px; */
    /* padding-bottom: 53.1px; */
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--dark-color);
    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% - 18%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

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

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--white-color);
    border-bottom: 1px #f7f7f71f solid;
    display: block;
    padding: 15px 0;
}

.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;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

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

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

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

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


/*** 

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

***/

/* Start Header */

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

header.sticky {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 24px 0;
    /* background: var(--bg-color); */
    /* overflow: hidden; */
    top: 0;
}

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

.close-btn {
    color: var(--white-color);
    display: table;
    margin: 20px 20px 0;
    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;
    position: relative;
    z-index: 23;
}

.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: #9E9E9E;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px;
}

.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 {
    /* padding: 20px; */
    /* 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;
    padding: 20px 30px;
}

.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: #000000;
    font-size: 16px;
    line-height: 25.7px;
    font-weight: 600;
    position: relative;
}


.head-inner {
    display: flex;
    align-items: center;
    -wekit-align-items: c;
}

.logo-h {
    max-width: 206px;
    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,
.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: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 276px;
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 4.39px 39.47px 0px #4F4F4F1F;
    border-radius: 8px;
    padding: 17px;
    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 {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    padding: 11px 0;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #F2F2F2;
}

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

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

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

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

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 24px;
    margin-inline-start: 40px;
}

.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 {
    outline: none;
    position: relative;
    border: none !important;
    padding: 8px 24px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 160px;
    background: var(--main-color);
    min-height: 48px;
    border-radius: 8px;
    text-transform: capitalize;
    box-shadow: none !important;
    z-index: 1;
    font-weight: 700;
    color: var(--white-color);
    font-size: 16px;
    line-height: 24px;
    gap: 14px;
}

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

.btn:hover {
    color: #fff;
}

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

.header-med .head-inner ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    height: 1px;
    width: 100%;
    background: var(--main-color);
    transition: all .4s;
    margin: 0 auto;
    width: 0;
    left: 0;
}

.header-med .head-inner ul li.current-menu-item a::after,
.header-med .head-inner ul li a:hover::after {
    width: 100%;
}

/* End Header */

/* Start Banner-h */



.banner-h .row {
    min-height: 680px;
    align-items: center;
    -webkit-align-items: center;
    padding: 50px 0;
    justify-content: center;
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000A3;
}

.banner-text {
    max-width: 851px;
    margin: 0 auto;
    text-align: center;
}

.banner-text h1 {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 52px;
    padding: 10px 20px;
}

.banner-text h1 span {
    color: #D9E0E7;
    font-weight: 700;
}

.banner-text h1::before,
.banner-text h1::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
}

.banner-text h1::before {
    left: 0;
    top: 0;
    border-top: 4px solid var(--main-color);
    border-left: 4px solid var(--main-color);
}

.banner-text h1::after {
    right: 0;
    bottom: 0;
    border-bottom: 4px solid var(--main-color);
    border-right: 4px solid var(--main-color);
}

.btn-flex {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 24px;
}

.banner-text .btn-flex {
    margin-top: 8px;
    justify-content: flex-end;
    justify-content: center;
}

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

.btn.btn-border.btn-white {
    border-color: var(--white-color) !important;
    color: var(--white-color);
}

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


/* End Banner-h */

/* Start About-h */

.about-h {
    padding: 72px 0;
}

.about-text {
    max-width: 608px;
}

.title {
    margin-bottom: 8px;
}

.title .sub-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    position: relative;
    padding: 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.title .sub-title::before,
.title .sub-title::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
}

.title .sub-title::before {
    left: 0;
    top: 0;
    border-top: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
}

.title .sub-title::after {
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}

.title h3 {
    color: #000;
    font-weight: 700;
    font-size: 28px;
    line-height: 58px;
    margin: 0;
    max-width: 597px;
}

.about-text p {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
}

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

.about-img {
    height: 472px;
    position: relative;
    padding: 18px;
}

.about-img .img {
    width: 360px;
    height: 280px;
    border: 8px solid #FFFFFF;
    position: absolute;
    margin: 18px;
}

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

.about-img .img.img-1 {
    left: 0;
    top: 0;
    z-index: 1;
}

.about-img .img.img-2 {
    right: 0;
    bottom: 0;
}

.about-img::before,
.about-img::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
}

.about-img::before {
    top: 0;
    left: 0;
    border-top: 8px var(--main-color) solid;
    border-left: 8px var(--main-color) solid;
}

.about-img::after {
    bottom: 0;
    right: 0;
    border-right: 8px var(--main-color) solid;
    border-bottom: 8px var(--main-color) solid;
}

/* End About-h */

/* Start Services-h */

.services-h {
    padding-bottom: 72px;
}

.serv-block {
    margin: 15px 0;
    height: calc(100% - 30px);
    border: 2px solid #F3F3F3;
    text-align: center;
    padding: 48px 16px;
    position: relative;
    transition: all .5s;
}

.services-h .title {
    margin-bottom: 12px;
}

.serv-block .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #F0E9E3;
}

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

.serv-block::before,
.serv-block::after {
    content: "";
    position: absolute;
    transition: all .4s;
    width: 50px;
    height: 50px;
}

.serv-block .details {
    padding-top: 16px;
}

.serv-block .details h3 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
    text-align: center;
}

.serv-block .details p {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: start;
    color: #9E9E9E;
}

.services-h .col-md-3:nth-child(2) .serv-block::before,
.services-h .col-md-3:nth-child(2) .serv-block::after,
.services-h .col-md-3:nth-child(6) .serv-block::before,
.services-h .col-md-3:nth-child(6) .serv-block::after {
    width: 50px;
    height: 50px;
    right: -1px;
    border-inline-start: 2px var(--main-color) solid;
}

.services-h .col-md-3:nth-child(2) .serv-block::after,
.services-h .col-md-3:nth-child(6) .serv-block::after {
    bottom: -1px;
    border-bottom: 2px var(--main-color) solid;
}

.services-h .col-md-3:nth-child(2) .serv-block::before,
.services-h .col-md-3:nth-child(6) .serv-block::before {
    top: -1px;
    border-top: 2px var(--main-color) solid;
}

.services-h .col-md-3:nth-child(3) .serv-block::before,
.services-h .col-md-3:nth-child(3) .serv-block::after,
.services-h .col-md-3:nth-child(4) .serv-block::before,
.services-h .col-md-3:nth-child(4) .serv-block::after,
.services-h .col-md-3:nth-child(7) .serv-block::before,
.services-h .col-md-3:nth-child(7) .serv-block::after,
.services-h .col-md-3:nth-child(8) .serv-block::before,
.services-h .col-md-3:nth-child(8) .serv-block::after {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 50px;
    height: 2px;
    background: var(--main-color);
}

.services-h .col-md-3:nth-child(3) .serv-block::before,
.services-h .col-md-3:nth-child(4) .serv-block::before,
.services-h .col-md-3:nth-child(7) .serv-block::before,
.services-h .col-md-3:nth-child(8) .serv-block::before {
    top: -1px;
}

.services-h .col-md-3:nth-child(3) .serv-block::after,
.services-h .col-md-3:nth-child(4) .serv-block::after,
.services-h .col-md-3:nth-child(7) .serv-block::after,
.services-h .col-md-3:nth-child(8) .serv-block::after {
    bottom: -1px;
}

.services-h .col-md-3:nth-child(5) .serv-block::before,
.services-h .col-md-3:nth-child(5) .serv-block::after,
.services-h .col-md-3:nth-child(10) .serv-block::before,
.services-h .col-md-3:nth-child(10) .serv-block::after {
    width: 50px;
    height: 50px;
    left: -1px;
    border-inline-end: 2px var(--main-color) solid;
}

.services-h .col-md-3:nth-child(5) .serv-block::before,
.services-h .col-md-3:nth-child(10) .serv-block::before {
    top: 0;
    border-top: 2px var(--main-color) solid;
}

.services-h .col-md-3:nth-child(5) .serv-block::after,
.services-h .col-md-3:nth-child(10) .serv-block::after {
    border-bottom: 2px var(--main-color) solid;
    bottom: 0;
}

.services-h .col-md-3:nth-child(3) .serv-block:hover::before,
.services-h .col-md-3:nth-child(3) .serv-block:hover::after,
.services-h .col-md-3:nth-child(4) .serv-block:hover::before,
.services-h .col-md-3:nth-child(4) .serv-block:hover::after,
.services-h .col-md-3:nth-child(7) .serv-block:hover::before,
.services-h .col-md-3:nth-child(7) .serv-block:hover::after,
.services-h .col-md-3:nth-child(8) .serv-block:hover::before,
.services-h .col-md-3:nth-child(8) .serv-block:hover::after {
    width: 100%;
}

.services-h .col-md-3:nth-child(3) .serv-block:hover,
.services-h .col-md-3:nth-child(4) .serv-block:hover,
.services-h .col-md-3:nth-child(7) .serv-block:hover .services-h .col-md-3:nth-child(8) .serv-block:hover {
    border-right-color: var(--main-color);
    border-left-color: var(--main-color);
}

.services-h .col-md-3:nth-child(2) .serv-block:hover::before,
.services-h .col-md-3:nth-child(2) .serv-block:hover::after,
.services-h .col-md-3:nth-child(6) .serv-block:hover::before,
.services-h .col-md-3:nth-child(6) .serv-block:hover::after,
.services-h .col-md-3:nth-child(5) .serv-block:hover::before,
.services-h .col-md-3:nth-child(5) .serv-block:hover::after,
.services-h .col-md-3:nth-child(10) .serv-block:hover::before,
.services-h .col-md-3:nth-child(10) .serv-block:hover::after {
    width: 100%;
    height: 100%;
}

.services-h .col-md-3:nth-child(2) .serv-block:hover,
.services-h .col-md-3:nth-child(6) .serv-block:hover {
    border-inline-end-color: var(--main-color);
}

.services-h .col-md-3:nth-child(5) .serv-block:hover,
.services-h .col-md-3:nth-child(10) .serv-block:hover {
    border-inline-start-color: var(--main-color);
}

/* End Services-h */

/* Start Counter-h */

.counter-h {
    padding: 55px 0;
}

.counter-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000B8;
}

.count-block {
    text-align: center;
    position: relative;
}

.counter-item {
    direction: ltr;
}

.count-block .counter-item {
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    line-height: 81px;
    margin: 0;
}

.count-block h4 {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 45px;
    margin: 0;
}

.counter-h .col-md-3:nth-child(1) .count-block::before,
.counter-h .col-md-3:nth-child(4) .count-block::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
}

.counter-h .col-md-3:nth-child(1) .count-block::before {
    right: 0;
    bottom: 0;
    border-right: 2px var(--main-color) solid;
    border-bottom: 2px var(--main-color) solid;
}

.counter-h .col-md-3:nth-child(4) .count-block::before {
    left: 0;
    top: 0;
    border-top: 2px var(--main-color) solid;
    border-left: 2px var(--main-color) solid;
}

/* End Counter-h */

/* Start Products-h */

.products-h {
    padding: 72px 0;
}

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

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

.showMore {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: var(--main-color);
    text-transform: capitalize;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
}

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

.product-block .img {
    height: 288px;
    /* margin-bottom: 40px; */
    overflow: hidden;
    border: 4px solid var(--main-color);
}

.product-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .4s;
}

.product-block .details {
    text-align: center;
    padding: 46px;
    background: #F7F7F7;
}

.product-block .details h3 {
    margin: 0;
    color: #000;
    font-weight: 700;
    font-size: 32px;
    line-height: 60px;
    transition: all .4s;
}

.products-h .col-md-4:nth-child(odd) .product-block {
    flex-direction: column-reverse;
}

.product-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-block:hover .img img {
    transform: scale(1.1) rotate(-3deg);
}

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

/* End Products-h */

/* Start Partners-h */

.part-block {
    height: 240px;
    background: #F7F7F7;
    text-align: center;
    max-width: 240px;
    margin: 0 auto;
}

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

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

.part-block::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    bottom: 0;
    right: 0;
    margin: -10px;
    z-index: -1;
    transition: all .4s;
}

.part-block:hover::after {
    margin: 0;
}

/* End Partners-h */

/* Start Why-h */

.why-h {
    padding: 72px 0;
}

.why-text .title {
    margin-bottom: 32px;
}

.why-text .items .item {
    margin-bottom: 24px;
}

.why-text .items .item:last-child {
    margin: 0;
}

.why-text .items .item h3 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 24px;
    line-height: 45px;
    color: var(--main-color);
}

.why-text .items .item p {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

.why-text {
    /* max-width: 622px; */
}

.why-img {
    max-width: 512px;
    margin-inline-start: auto;
    height: 504px;
    position: relative;
    padding: 16px;
}

.why-img::before,
.why-img::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
}

.why-img .img {
    height: 472px;
    overflow: hidden;
    position: relative;
}

.why-img .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000033;
}

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

.why-img::before {
    left: 0;
    top: 0;
    border-top: 8px solid var(--main-color);
    border-left: 8px solid var(--main-color);
}

.why-img::after {
    right: 0;
    bottom: 0;
    border-right: 8px solid var(--main-color);
    border-bottom: 8px solid var(--main-color);
}

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

.contact-h .overlay-img {
    max-width: 28%;
    right: auto;
}

.contact-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000B8;
}

.contact-img {
    max-width: 545px;
    margin-inline-start: auto;
    box-shadow: 4px 4px 4px 1px #00000026;
    height: 700px;
}

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

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

.title-contact h3 {
    color: #000;
    font-weight: 700;
    font-size: 40px;
    line-height: 75px;
    margin: 0;
}

.title-contact h3 span {
    color: var(--main-color);
}

.title-contact p {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

.contact-inner {
    max-width: 531px;
}

.contact-inner .form-group {
    margin-bottom: 32px;
    border-bottom: 1px solid #B0B0B0;
    position: relative;
}

.contact-inner .form-group .form-control {
    padding: 16px 8px;
    border: none;
    box-shadow: none !important;
    text-align: right;
}

.contact-inner .form-group::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 83px;
    height: 1px;
    background: var(--main-color);
    transition: all .4s;
}

.contact-inner .form-group:focus::after,
.contact-inner .form-group:hover::after {
    width: 100%;
}

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

.contact-inner .form-group:last-child::after {
    display: none;
}

.contact-inner .form-group .btn {
    width: 100%;
    margin-top: 8px;
}

.contact-info {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
}

.contact-info .item {
    width: 33.33%;
    flex: 0 auto;
    display: flex;
    padding-inline-end: 16px;
    align-items: normal;
}

.contact-info .item .icon {
    font-size: 16.5px;
    color: var(--main-color);
    width: 16.5px;
    padding-top: 2px;
}

.contact-info .item .details {
    max-width: calc(100% - 16.5px);
    padding-inline-start: 7px;
}

.contact-info .item .details a {
    display: block;
    color: var(--sec-color);
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
}

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

/* End Why-h */

/* Start Footer */

footer {
    background: #000000;
    border: 4px solid var(--main-color);
}

.footer-top {
    padding: 40px 0 24px;
}

.logo-f {
    max-width: 235px;
    display: block;
    margin: 0 auto;
}

.footer-top p {
    max-width: 235px;
    margin: 16px auto;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 26px;
    color: #B0B0B0;
}

.s-h {
    max-width: 235px;
    margin: 16px auto;
    gap: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.s-h a {
    width: 17.33px;
    color: var(--main-color);
}

.s-h a:hover {
    color: #fff;
}

.foot-block h3 {
    margin-bottom: 16px;
    padding-bottom: 8px;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 37px;
}

.foot-block h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    border-bottom: 1px solid #9B6F44;
}

.links-f ul li a {
    display: inline-block;
    margin-bottom: 8px;
    color: #B0B0B0;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    transition: all .4s;
}

.links-f ul li a:hover {
    color: #fff;
}

.subscribe-f p {
    margin: 0 0 16px;
    max-width: 100%;
    text-align: start;
}

.subscribe-f form input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    background: #F3F3F3;
    padding: 10px 12px;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 16px;
}

.subscribe-f form button.btn.btn-form {
    width: 100%;
}

.copy-right {
    border-top: 1px solid #E7E7E7;
    padding: 8px 0;
}

.copy-right p {
    color: #B0B0B0;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}

form {
    direction: rtl;
}

.search-box-btn.search-box-outer {
    cursor: pointer;
}

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding: 123px 0;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000A3;
}

.bread-text {
    text-align: center;
}

.bread-text h1 {
    display: inline-block;
    margin: 0;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 40px;
    line-height: 75px;
    position: relative;
}

.bread-text h1::before,
.bread-text h1::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
}

.bread-text h1::before {
    top: 0;
    left: 0;
    border-top: 4px var(--main-color) solid;
    border-left: 4px var(--main-color) solid;
}

.bread-text h1::after {
    right: 0;
    bottom: 0;
    border-bottom: 4px var(--main-color) solid;
    border-right: 4px var(--main-color) solid;
}

/* End Breadcrumb-h */

/* Start About-page */



.about-more {
    padding-bottom: 75px;
}

.about-more .serv-block {
    background: #F7F7F7;
    display: flex;
    text-align: start;
}

.about-more .serv-block .details {
    max-width: calc(100% - 100px);
    padding: 0;
    padding-inline-start: 24px;
        width: 100%;

}

.about-more .serv-block h3,
.about-more .serv-block p {
    text-align: start;
}

.about-more .serv-block::before {
    width: 50px;
    height: 50px;
}

.about-more .col-md-12:nth-child(1) .serv-block::before,
.about-more .col-md-12:last-child .serv-block::before {
    border-top: 2px solid var(--main-color);
    border-inline-start: 2px solid var(--main-color);
    top: 0;
    right: 0;
    margin: -1px;
}

.about-more .col-md-12:nth-child(2) .serv-block::before,
.about-more .col-md-12:nth-child(2) .serv-block::after,
.about-more .col-md-12:nth-child(3) .serv-block::before,
.about-more .col-md-12:nth-child(3) .serv-block::after {
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.about-more .serv-block::before {
    right: -1px;
    border-inline-start: 2px var(--main-color) solid;
}

.about-more .col-md-12 .serv-block::after {
    left: -1px;
    border-inline-end: 2px var(--main-color) solid;
}

.about-more .col-md-12:nth-child(1) .serv-block::after {
    display: none;
}

.about-more .col-md-12:last-child .serv-block::after {
    display: none;
}

.about-more .col-md-12:last-child .serv-block::before {
    right: auto;
    left: 0;
    bottom: 0;
    top: auto;
    transform: scale(-1);
}

/* End About-page */

/* Start products-page */

.body-inner {
    padding: 75px 0;
}

.title p {
    max-width: 783px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

.body-inner .title {
    margin-bottom: 80px;
}

.product-item {
    margin-bottom: 100px;
    align-items: center;
    -webkit-align-items: center;
}

.all-products .product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-item .img-block {
    position: relative;
    height: 450px;
    /* overflow: hidden; */
}

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

.product-item .img-block .img {
    border: 2px var(--main-color) solid;
    box-shadow: -4px 4px 8px 1px #00000026;
}

.product-item .img-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: var(--main-color);
    right: -95%;
    height: 56px;
    margin: auto 0;
}

.product-item .text-block {
    padding-inline-start: 20px;
}

.product-item .text-block .title-block h3 {
    display: inline-block;
    font-weight: 700;
    font-size: 24px;
    line-height: 45px;
    border-bottom: 2px var(--main-color) solid;
    margin-bottom: 4px;
}

.product-item .text-block .title-block p {
    color: #8D8D8D;
    font-weight: 500;
    font-size: 16px;
    line-height: 35px;
}

.all-products .product-item:nth-child(even) .img-block::before {
    right: auto;
    left: -95%;
}

.all-products .product-item:nth-child(even) .text-block {
    padding: 0;
    padding-inline-end: 20px;
}

/* End products-page */

/* Start Services-page */

.all-services .serv-block::before {
    top: 0;
    right: 0;
    border-top: 2px var(--main-color) solid;
    border-inline-start: 2px var(--main-color) solid;
}

.all-services .serv-block::before,
.all-services .serv-block::after {
    width: 24px;
    height: 24px;
}

.all-services .serv-block::after {
    left: 0;
    bottom: 0;
    border-bottom: 2px var(--main-color) solid;
    border-inline-end: 2px var(--main-color) solid;
}

/* End Services-page */

/* Start Contact-page */

.contact-page .row {
    position: relative;
    padding: 100px 0;
    padding-inline-start: 41px;
}

.contact-page .row::after {
    background: #F7F7F7;
    content: "";
    position: absolute;
    inset: 0;
    max-width: 80%;
    z-index: -1;
}

.contact-page .contact-img {
    border: 4px solid var(--main-color);
    box-shadow: -4px 4px 8px 1px #00000033;
}

/* End Contact-page */
