@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic&display=swap');

body {
    font-family: "Noto Sans Arabic", sans-serif;
}

img {
    max-width: 100%;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9;
}

.scrolled-50 header {
    background: #fff;
}

.banner-section {
    height: 1080px;
    display: flex;
    align-items: end;
    padding-bottom: 50px;
}

.banner-section-img {
    height: 800px;
    padding-bottom: 50px;
}

.two-img-section {
    padding: 1.5rem 0;
}

.two-img {
    position: relative;
    padding-top: 100%;
    padding-bottom: 50px;
}

.two-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.explore-content {
    position: sticky;
    bottom: 50px;
    width: 100%;
    text-align: center;
}

.explore-content h4 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.explore-content a {
    text-decoration: none;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo a {
    font-size: 150px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: "PT Serif", serif;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    letter-spacing: 40px;
    line-height: 300px;
}

.scrolled-50 .logo a {
    font-size: 50px;
    color: #000;
    letter-spacing: 5px;
    line-height: 80px;
}


.scrolled-50 span.logo-img img {
    height: 45px;
    position: relative;
    bottom: 5px;
}

.logo-img {
    display: none; /* Initially hidden */
}

.scrolled-50 .logo-text {
    display: none;
}

.scrolled-50 .logo-img {
    display: block;
}

.header-right-menu {
    position: absolute;
    top: 30px;
    right: 0;
}

.mobile-menu-left {
    position: absolute;
    top: 30px;
    left: 0;
}

.header-right-menu ul, .mobile-menu-left {
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px;
}

.header-right-menu ul li button, .mobile-menu-left button {
    background: transparent;
    border: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.scrolled-50 .header-right-menu ul li button, .scrolled-50 .mobile-menu-left button {
    color: #000;
}

.scrolled-50 .header-right-menu ul li svg, .scrolled-50 .mobile-menu-left svg {
    fill: #000;
}

.scrolled-50 .header-right-menu ul li svg path, .scrolled-50 .mobile-menu-left svg path {
    fill: #000;
}

.header-inner {
    position: relative;
}

.banner-section-02 .explore-content {
    position: unset;
}

.featured-section {
    padding: 100px 0;
}

.featured-section h3 {
    text-align: center;
    margin-bottom: 70px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
}

.featured-content {
    text-align: center;
    padding: 0 50px;
}

.featured-content h4 {
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
}

.featured-content p {
    font-size: 18px;
    max-width: 420px;
    margin: 0 auto 30px;
}

.read-more-link a {
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -300px; /* Initially hidden off-screen to the right */
    width: 300px;
    height: 100%;
    background-color: #040404;
    color: #000;
    overflow-y: auto;
    transition: right 0.3s ease-in-out; /* Smooth transition effect */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-menu-nav {
    padding: 20px;
	top: 50px;
    position: relative;
	
}

.mobile-menu-nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    color: #fff;
    display: block;
    float: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    padding: 10px 0;
    text-align: left;
    text-decoration: none;
    text-transform: capitalize !important;
    width: 100%;
}


.mobile-menu-container.active {
    right: 0; /* Show the menu by sliding in */
}

.mobile-menu-nav span.title {
    font-size: 16px;
}

button#menu-close-btn {
    float: right;
    padding: 10px;
    border-radius: 50%;
    background: #000;
    top: 10px;
    position: relative;
    left: -20px;
}

span.tp-product-count {
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    font-size: 12px;
    height: 15px;
    line-height: 15px;
    position: absolute;
    text-align: center;
    top: -4px;
    width: 15px;
}

a.banner-section, .container-fluid a {
    text-decoration: none !important;
}