@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    font-family: "Montserrat", sans-serif;
    direction: rtl;
}

html {
    overflow-x: hidden !important;

}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

p {
    margin-bottom: 0;
}


.primary_btn {
    background: var(--secondary);
    padding: 10px 30px;
    /* border-radius: 5px; */
    color: #fff;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}


.primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);

    transition: all 0.3s ease;

}

.primary_btn:hover::before {
    height: 100%;
    z-index: -1;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--secondary);
    /* background: linear-gradient(to left bottom, var(--primary), var(--secondary)); */
    background-clip: text;
}

h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4d4c4c;
}

:root {
    --primary: rgb(19, 174, 75);
    --secondary: rgb(238, 29, 48);
    --margin: 3rem;
    --padding: 3rem;
}


/* HEADER START */

.navbar-toggler{
    box-shadow: unset !important;
    outline: none !important;
    border-radius: unset !important;
    background-color: var(--primary) !important;
    color: #fff !important;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    /* Must add */
    transition: top 0.4s ease;
    box-shadow: 0 0 5px #ccc;

}


.topStrip {
    background: var(--primary);
    position: relative;
    z-index: 9;
    transition: top 0.4s ease;

}



.topStrip,
.topStrip a {
    color: #ffffff;
}

.topStrip i {
    margin-right: 0.3rem;
    font-size: 18px;
}

.topLeft {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 100%;
}

.topLeft a:hover {
    text-decoration: underline;
}

.topLeft>div:first-child {
    border-left: 1px solid #ffffff;
    padding-left: 10px;
    padding-block: 8px;
}


.topRight {
    display: flex;
    align-items: center;
    height: 100%;
}

.topRight a {
    display: inline-block;
    height: 100%;
    transition: all 0.3s ease;
}

.topRight i {
    font-size: 22px;
    height: 100%;
    width: 50px;
    border-right: 1px solid #ffffff;
    border-color: #fff !important;
    text-align: center;
    /* border-radius: 50%;
    border: 1px solid #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.topRight a:hover {
    background-color: var(--secondary);
    color: #fff;
}


.visitStore {
    text-align: end;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.visitStore img {
    width: 180px;
    background-color: #fff;
    padding: 0.7rem;
}

.visitStore a {
    font-weight: 500;
}

.visitStore a:hover {
    text-decoration: underline;
}

.carouselSec .owl-nav {
    display: none !important;
}


/* Navbar */

.navbar {
    height: 120px;

}

.navbar .collapse>ul {
    display: flex;
    align-items: center;
}

.companyLogo {
    position: relative;
}

.companyLogo img {
    width: 120px;
    position: relative;
    transform: translateY(20px);
    z-index: 99;

}

.companyLogo::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 100px;
    background-color: #fff;
    z-index: 9;
    transform: translateY(20px) translateX(-55%);
    border-radius: 50%;

}

.navbar .navbar-brand img {
    width: 190px;
}


.nav-item>a {
    color: #000;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    padding: 0 !important;
    padding-bottom: 4px !important;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.nav-item>a::before {
    content: '';
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-item>a:hover::before {
    width: 100%;
}

.homeLink::before {
    display: none;
}

.homeLink i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.homeLink.active i {
    background-color: var(--primary);
    color: #fff;
}

nav a.active::before,
nav a:focus::before {

    width: 100%;
    color: var(--primary);
}

nav a.active,
nav a:focus {
    color: var(--primary) !important;

}

.nav-item>a:hover {
    color: var(--primary);
}

.nav-item .nav-link img {
    width: 30px;
}

nav .dropdown-menu {
    width: 300px;
    border-radius: unset;
    padding: 0;
}

nav .dropdown-menu a {
    padding: 10px;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.3s ease;
    font-size: 15px;
}

nav .dropdown-menu a:hover {
    padding-left: 15px;
    background-color: var(--primary);
    color: #fff;
}

.subDropdown a {
    display: block;
}

/* Carousel */

.carousel-caption {
    top: 35%;
    color: #fff;
    bottom: unset;
}

.carousel-caption * {
    color: #fff;
}



.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #fff;
}


.carousel-caption h2 {
    font-size: 50px;
}

/* Video */

.heroSection {
    height: 650px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 140px;
}

.heroSection video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heroSection::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}


/* HEADER END */

/* RETAIL REVOLUTION BY ANDALUS  START */

.revolution_by_andalus {
    padding-block: var(--padding);
}

.revolution_by_andalus img {
    width: 100%;
    /* border: 1px solid #ccc; */
}

/* RETAIL REVOLUTION BY ANDALUS  END */


/* ABOUT US START */

.about_Sec {
    padding-block: var(--padding);
    /* background: rgba(238, 64, 71, 0.1); */
    /* background: rgba(19, 174, 75, 0.1); */

}

.ab_img {
    width: 100%;
    height: 400px;
    /* border-radius: 10px; */
    overflow: hidden;
    /* border: 1px solid var(--primary); */
    background-color: #fff;
    position: relative;

}

.ab_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* ABOUT US END */

/* OUR VISION & MISSION START */

.vision_mission {
    background-color: #eee;
    background: url('../imgs/white-bg.jpg') center no-repeat;
    background-size: cover;
    padding-block: var(--padding);
}

.vis_mis_boxes {
    width: 95%;
    height: 400px;
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
}

.vis_mis_boxes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.vis_mis_boxes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.vis_mis_boxes:hover img {
    transform: scale(1.1);
}

.vis_mis_boxes>h5 {
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
    width: 70%;
    font-size: 22px;
    font-weight: 600;
    z-index: 2;
}

.vis_mis_content {
    background-color: var(--secondary);
    color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 0%;
    width: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    transition: all 0.3s ease;
    /* border-radius: 8px; */
    z-index: 2;

}

.vis_mis_content h5 {
    width: 95%;
    font-size: 22px;
    font-weight: 600;
}

.vis_mis_boxes:hover .vis_mis_content {
    transform: translateX(-50%) translateY(0%);
    bottom: 5%;


}

.vis_mis_content a {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
}

.vis_mis_content a:hover {
    text-decoration: underline;
}

.vis_mis_content a i {
    transition: all 0.3s ease;
    transform: translateX(10px) rotate(180deg);
    opacity: 0;
}

.vis_mis_content a:hover i {
    transform: translateX(-5px) rotate(180deg);

    opacity: 1;
}

/* OUR VISION & MISSION END*/

/* COUNTER START */

.fact-counter {
    position: relative;
    width: 100%;
    padding-block: var(--padding);
    background: linear-gradient(to right bottom, rgba(19, 174, 75, 0.6), rgba(19, 174, 75, 0.6)), url(../imgs/gallery-img4.jpg) center no-repeat fixed !important;
    background-size: cover !important;

}



.countHeading {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #fff;

}

.fact-counter img {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 120px;
    object-fit: cover;
    border: 2px solid #fff;
    display: none;
}

.count ul {
    margin: 0;
    list-style: none;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
}

.count ul li {
    /* padding: 0 50px; */
    margin: 0;
    list-style: none;
    /* width: 24.7%; */
    text-align: center;
    display: inline-block;
}

.count ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.count .num {
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 44px;
}

.count .num span {
    display: inline-block;
    margin-left: 5px;
}

.count .sub-text {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 0 !important;
}


/* COUNTER END */

/* Subsidiaries Start */

.subsidiaries {
    padding-block: var(--padding);
    background: url('../imgs/white-bg.jpg') center no-repeat;
    background-size: cover;

}

.subsidiaries .owl-nav {
    display: none;
}

.subsidiaries .owl-dots {
    margin-top: 1rem;
}

.businessImg {
    width: 100%;
    height: 250px;
}

.businessImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.business_box {
    position: relative;
    /* border-radius: 10px; */
    overflow: hidden;
    /* border: 4px solid var(--secondary); */
}

.business_box::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1);
    transition: all 0.6s ease;
    /* border-radius: 6px; */

}

/* .business_box:hover::before {
    transform: scale(1);
} */



.businessContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.4s ease;
    color: #fff;
    width: 100%;
    text-align: center;
    z-index: 2;

}

.business_box:hover {
    backdrop-filter: brightness(50%);
}

.business_box:hover .businessContent {
    transform: translate(-50%, -50%) scale(1);

}

.businessContent a {
    color: #fff;
}

.businessContent a:hover {
    text-decoration: underline;
}

/* Subsidiaries End */


/* Client Start */


.partnerSection {
    padding-block: 2rem;
    /* background: linear-gradient(to right bottom, var(--primary), var(--secondary)); */
    /* background-color: var(--secondary); */
}

/* .partnerSection h2 {
    color: #fff;
}

.partnerSection .underline {
    background-color: #fff;
} */


.partnerSection h2 {
    text-align: center;
    /* color: #fff; */
}

.partnerSection .underline {
    background-color: #fff;
}


/* Extra Slider */

.slider {
    margin: auto;
    padding-bottom: 1rem;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.E-btn {
    position: absolute;
    bottom: 30px;
}


.slide-track {
    display: flex;
    width: 100%;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40%)
    }
}

.E-slide {
    height: 100px;
    width: 200px;
    margin-left: 0.6rem;
    display: flex;
    align-items: center;
    perspective: 100px;
    margin-left: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid #ccc;
    overflow: hidden;
}

.E-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s;
    /* border-radius: 0.5rem; */
    cursor: pointer;
    background-color: #fff;
    padding: 1rem;

}

.E-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #fff;
}



/* Client End */



/* OUR GALLERY START */

.gallery,
.our_gallery {
    background: url('../imgs/white-bg.jpg') center no-repeat;
    background-size: cover;
    padding-block: var(--padding);
}

.gallery_box {
    width: 97%;
    height: 230px;
    overflow: hidden;
    /* border: 4px solid var(--secondary); */
    /* border-radius: 10px; */


}

.gallery_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;

}

.gallery_box:hover img {
    transform: scale(1.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}


.gallery-img:hover {
    transform: scale(1.05);
}

.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
    max-width: 50%;
}

.modal-body {
    text-align: center;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    border: 5px solid #fff;
}


.modal i::before {
    font-size: 18px !important;
    height: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
}

.btn-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
}






#categories {
    background-color: #fff;
    border: 1px solid var(--primary);
    border-bottom: none;
    /* border-radius: 8px; */

    overflow: hidden;
}

#categories ul {
    padding: 0 !important;
    list-style: none;

}

#categories ul li {
    margin: 0;
    padding: 0;
}

#categories ul li:last-child {
    border-bottom: none;
}

#categories ul li a {
    width: 100%;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding: 15px;
    border-bottom: 1px dashed var(--primary);
}



#categories ul li a:hover {
    color: #fff;
    background: var(--primary);
    border-radius: 0;
}

.pro_active {
    background-color: var(--primary);
    color: #fff;
}





.blog-post {
    display: none;
    margin-bottom: 20px;
}

.blog-post img {
    width: 100%;
    height: 230px !important;
    object-fit: cover;
    /* border: 3px solid var(--secondary); */
    /* border-radius: 8px; */
}




/* .alb_img {
    height: 230px !important;
} */

.blog-post a {
    display: block;
    width: max-content;
    margin-inline: auto;
}


.blog-post:nth-child(1) {
    display: block;
}

[data-category]:hover {
    cursor: pointer;
}


.andalus-carousel img {
    width: 100%;
}

.owl-nav button {
    background: #00000080 !important;
    color: #fff !important;
    padding: 5px 12px !important;
    border-radius: 6px !important;
    font-size: 22px !important;
    display: none;
}

.owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Blog Section */

.blog_section {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../imgs/demo2.jpg) center;
    padding-block: 3rem;
    padding-top: 2rem;
    position: relative;
}

.blog_section .container-fluid {
    margin-top: 2rem;
}

.blog_box {
    box-shadow: 0 0 25px #ccc;
    /* border-radius: 1rem; */
    padding: 1.5rem;
    height: 280px;
    position: relative;
    cursor: pointer;
    transition: all 1s ease;
    background-color: rgba(255, 255, 255, 0.7);

}

.blog_box img {
    width: 100%;
    height: 230px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    object-fit: cover;
    transition: all 1s ease;
}

.blog_box:hover .imgBig {
    transform: scale(1.1);
}

/* .blog_box:hover{
    box-shadow: 0 0 10px var(--primary);

} */


.blog_content a {
    position: absolute;
    bottom: 30px;
    border: unset !important;
}

.blog_btn {
    text-align: center;
    margin-top: 3rem;
}

.blog_btn a {
    transition: all 0.3s ease !important;
}

.owl-nav {
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);

}

.owl-prev,
.owl-next {
    background-color: var(--secondary);
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
}

.owl-prev {
    left: 0%;
}

.owl-next {
    right: 0%;
}


/* OUR GALLERY END */

.testimonials_sec {
    padding-block: var(--padding);
}

.test_head {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

/* ARTICLE START */

.news_Sec {
    padding-block: var(--padding);
    background: rgba(59, 168, 106, 0.2);
    /* background: url(../imgs/white-bg.jpg); */
}




.newsBox {
    /* border-radius: 10px; */
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px transparent;

}


.newsBox h6 {
    font-size: 16px;
}


.newsImg {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    height: 250px;
    transition: all 0.5s ease;
}

.newsImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease !important;
    object-position: left;
}

.newsBox:hover img {
    transform: scale(1.05);
}




.newsContent {
    padding: 25px;
    background-color: #eee;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsContent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to left bottom, var(--primary), var(--secondary));
    background: var(--primary);
    width: 0;
    height: 0;
    transition: all 0.4s ease;
    z-index: -1;

}

.newsContent span {
    color: var(--secondary);
}


.newsBox:hover .newsContent::before {
    width: 100%;
    height: 100%;
}

.newsBox:hover * {
    color: #fff;
}

.newsBox .primary_btn {
    border: none;
    border: 2px solid #fff;

}

.newsBox:hover .primary_btn {
    background: #fff;
    color: var(--primary);
}

.newsBox:hover .primary_btn::before {
    display: none;

}

.newsBox .primary_btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* .newsContent h4 {
    font-size: 22px;
} */

.newsContent h4 a {
    transition: all 0.3s ease;
}

.newsContent h4:hover a {
    text-decoration: underline;
    /* color: var(--secondary); */
}

.newsContent p {
    margin-block: 1rem;
}

.gallery_btn {
    display: block;
    margin: 0 auto;
    width: max-content;
}

/* ARTICLE END */

/* SOME BLOG START */
.some_blogs {
    padding-block: var(--padding);
    background-color: rgb(245, 245, 245);
}

.some_blogs img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: -1;

    filter: brightness(60%);
}

.some_blog_box {
    position: relative;
    overflow: hidden;
}

.some_blog_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: none;
}

.some_blog_box p {
    /* height: 0; */
    overflow: hidden;
    transition: all 0.4s ease;
}

.some_blog_box:hover img {
    transform: scale(1.1);
}

.some_blog_content {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 15px;
    color: #fff;
    z-index: 1;
}

.some_blog_content h5 a {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;

}

.some_blog_content h5 a:hover {
    text-decoration: underline;
}


.some_blog_content p {
    font-weight: 500;
    font-size: 15px;
    color: #ccc;
}

/* BLOG DETAILS */
.blog-detail-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.blog-detail h1 {
    font-size: 32px;
    font-weight: 600;
}

.blog-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* OWL DOTS FIX */
.blog-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 20px;
}

.blog-carousel .owl-dot {
    display: inline-block;
}

.blog-carousel .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 5px;
    background: #dddcdc;
    /* gold color */
    display: block;
    border-radius: 50%;
}

.blog-carousel .owl-dot.active span {
    background: #b3b3b3;
    /* active dot color */
}


/* SOME BLOG END */

/* TESTIMONIAL START */

.testimonial_box {
    width: 98%;
    margin: 0 auto;
    text-align: center;
    margin-block: 1rem;
    box-shadow: 0 0 15px #ccc;
    padding: 20px;
    height: 350px;
    position: relative;
}

.testimonial_box img {
    width: 85px !important;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 1px solid var(--secondary); */
    margin: 0 auto;
    margin-bottom: 1rem;
}

.testimonial_box p {
    /* font-style: italic; */
    margin-block: 1rem;
}

.testimonial_box i {
    color: rgb(226, 226, 31);
    font-size: 20px;
}

.testimonial_box h4 {
    font-size: 20px;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
}

.testimonial_box h6 {
    color: var(--secondary);
    font-weight: 500;
    font-size: 18px;
}

.testimonials_sec .owl-nav button {
    display: none !important;
}

/* TESTIMONIAL END */



/* 3 BOXES */

.three_boxes_sec {
    padding-block: var(--padding);
    /* background-color: rgba(238, 64, 71, 0.2);
    background: rgba(59, 168, 106, 0.2);
     */



}

.three_boxes_sec .boxes {
    text-align: center;
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
    /* border-radius: 10px; */
    height: 170px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    /* outline: 2px solid var(--secondary); */
    box-shadow: 0 0 20px #ccc;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* background: linear-gradient(to left bottom, var(--primary), var(--secondary)); */
    background-color: #fff;

}

.three_boxes_sec .boxes * {
    color: var(--secondary);
    transition: all 0.2s ease;
}

.three_boxes_sec .boxes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: linear-gradient(to left bottom, var(--primary), var(--secondary)); */
    background: #fff;
    width: 0;
    height: 0;
    transition: all 0.4s ease;
    z-index: -1;


}

.three_boxes_sec .boxes:hover {
    outline-color: var(--primary);
}


.three_boxes_sec .boxes:hover * {
    color: var(--primary);
    transition: all 0.2s ease;

}

.three_boxes_sec .boxes:hover::before {
    width: 100%;
    height: 100%;
}



.three_boxes_sec .boxes h5 {
    margin: 0;
    font-weight: 600;
}

.three_boxes_sec .boxes i {
    font-size: 40px;
}

.three_boxes_sec .boxes a:hover {
    text-decoration: underline;
}



.our_presence {
    padding-block: var(--padding);
    text-align: center;
    background: url('../imgs/white-bg.jpg') center no-repeat;
    background-size: cover;
}



.location_boxes {
    /* box-shadow: 0 0 15px #ccc; */
    border: 1px solid #ccc;
    box-shadow: 0 0 20px #ccc;


    width: 100%;
    overflow: hidden;
}

.location_boxes h5 {
    text-align: center;
    background-color: var(--secondary);
    color: #fff;
    padding: 10px;
    margin-bottom: 0;
    height: 92px;
}

.location_boxes span:first-child {
    text-transform: uppercase;


}

.location_boxes span:last-child {
    display: block;
    font-size: 16px;
    margin-top: 5px;

}


/* Basket */
.basket_sec {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* background layer */
.basket_sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../imgs/gallery-img8.jpg) center no-repeat;
    background-size: cover;
    transform: scaleX(-1);
    /* 👈 180° X-axis flip */
    z-index: -1;
}


.basket_content {
    background-color: rgba(255, 255, 255, 0.8);
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.basket_content h3 {
    color: var(--secondary);
    font-weight: 600;
}

/* FOOTER START */

footer {
    /* background: linear-gradient(to right bottom, var(--primary), var(--secondary)); */
    background-color: var(--primary);
    padding-block: var(--padding);
    color: #fff;

}

footer a {
    color: #fff;
    font-weight: 500;
}

footer i {
    font-size: 18px;
}

footer a:hover {
    text-decoration: underline;
}

footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

footer li {
    margin-bottom: 10px;
}

footer ul {
    padding: 0;
}

.ftLinks a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.ftLinks a:hover {
    background-color: transparent;
    color: #fff;
}

.ft_social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.ft_social a {
    text-decoration: none !important;
    display: flex;
    gap: 5px;
    align-items: center;
    width: calc(50% - 15px);
}

.ft_social i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

/* .ft_social i:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: scale(1.05);
} */

.ft_social a:hover {
    text-decoration: underline !important;
}

.sub_footer {
    border-top: 1px solid #fff;
    text-align: center;
    padding: 10px;
    background: var(--secondary);
    color: #fff;
}

.sub_footer a {
    color: #fff;
    font-size: 14px;
}

.sub_footer a:hover {
    text-decoration: underline;
}

/* FOOTER END */



/* Back To Top */
.backToTop {
    position: fixed;
    bottom: 20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.backToTop i {
    position: absolute;
    color: #fff;
    font-size: 18px;
    pointer-events: none;
}

.progress-ring__circle {
    transform: rotate(90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 138;
    /* circumference of circle (2 * π * r = 2*π*22) */
    stroke-dashoffset: 138;
    transition: stroke-dashoffset 0.2s linear;
}



/* whatsap css */
#whatsapp {
    position: fixed;
    left: 40px;
    bottom: 15%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 999;
    opacity: 0;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../imgs/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

/* whatsap css */

/* CONTACT US PAGE START */


/* Comman Banner */
.banner-area {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
    margin-top: 150px;

}

.banner-area img {
    display: block;
    width: 100%;
    margin: auto;
    height: 400px;
    object-fit: cover;
}

/* Comman Heading */

.abou-hed {
    width: 100%;
    height: 41px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.abou-hed h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
    background: var(--secondary);
}

.breadcrumb {
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none;
    padding: 6px 0px;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
    font-weight: 500;
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


.contact_page {
    margin-block: var(--margin);
}

.contact_box {
    background: #f1f1f1;
    width: 100%;
    margin: 1em auto;
    padding: 20px;
    position: relative
}

.contact_sml_txt {
    font-size: 19px;
    color: #73747d;
    margin-top: 1em;
    margin-bottom: 0.5em
}

.contact_form_outer {
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0px 0px 10px #d4d1d1;
    padding-right: 280px;
    width: 78%;
    float: left;
}

.contact_details {
    position: absolute;
    right: 80px;
    top: 40px;

    background-color: rgba(238, 29, 48, 0.8);
    padding: 00px 30px;
    height: 80%;
    color: #fff;
}

.contact_details .add_dtl i {
    font-size: 20px;
}



.contact_details .add_dtl {
    margin-block: 1.5em;
    background-color: #fff;
    color: var(--secondary);
    padding: 15px;
    /* border-radius: 5px; */
}

.contact_details .ft_social i {
    color: var(--secondary);
}

.contact_details .ft_social i:hover {
    color: #fff;
}

.contact_details .add_dtl a {
    color: var(--secondary);
}

.contact_details .add_dtl a:hover {
    text-decoration: underline;
}

.contact_form_cont {
    padding: 20px 0
}

.contact_form_cont h2 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 35px;
    line-height: 25px;
    color: #323746;
}

.address_txt {
    font-size: 20px;
    color: #fff;
    margin-bottom: 1em
}

.address_txt b {
    display: block;
    font-weight: 500
}

.contact_details h2 {
    color: #fff;
    font-size: 30px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 0.5em;
    margin-top: 40px;
}

.contact_form input[type=text],
.contact_form select,
.contact_form textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #ddd;
    /* border-radius: 3px; */
    margin: 0
}

.addrs_w {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #fff;
    width: 100%;
    margin-top: 15px;
}

.addrs_w p {
    margin: 0px -15px 15px;
    padding: 0px 10px 5px;
}

.addrs_w p:first-child {
    border-bottom: 1px solid #ccc;
    background: #f8f8f8;
    padding: 6px 10px;
    margin-top: -10px;
}

.fromBtn button {
    padding: 10px 30px;
    /* border-radius: 6px; */
    border: unset;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fromBtn button:first-child {
    background-color: var(--secondary);
    color: #fff;
}


.fromBtn button:last-child {
    background-color: #ccc;
}

.fromBtn button:hover {
    background-color: var(--primary);
    color: #fff;
}


/* CONTACT US PAGE END */

/* ABOUT PAGE START */

/* .vision_mission_growth {
    margin-block: var(--margin);
} */


/* .ab_page {
    background-color: rgba(238, 29, 48, 0.1);
} */

.ab_page .ab_img {
    border-radius: 0;
    height: 300px;
    border: 2px solid var(--secondary);
}


.vision_mission_growth .vis_miss_gro_cont {
    padding: 20px;
    margin-top: 20px;
}

.ab_page .ab_content {
    padding-left: 20px;
}

.growth_row {
    padding-block: 10rem;
    background: url(../imgs/gwroth-bg.jpg) center no-repeat;
    background-size: cover;
    position: relative;
}

.growth_row::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.grow_cont {
    text-align: center;
    width: 65%;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}

.grow_cont * {
    color: #fff !important;
}

.growth_row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* border: 2px solid var(--primary); */
}


.vis_mis_sec {
    background: url("../imgs/vision_bg.jpg") no-repeat center fixed;
    background-size: cover;
    padding-block: var(--padding);
}

.vis_box {
    background: rgb(255 255 255 / 96%);
    text-align: center;
    padding: 30px;
    height: 280px;
    box-shadow: 0 0 15px #ccc;
}

.vis_box i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 15px;
}



/* .vision_row,
.growth_row {
    background-color: rgba(19, 174, 75, 0.1);
} */

.vision_row h3,
.growth_row h3,
.vis_box h3 {
    font-weight: 700;
    font-size: 32px;
    color: var(--secondary);
}

.mission_row {
    background-color: rgba(238, 29, 48, 0.1);
}

.mission_row img {
    border-color: var(--secondary);
}

.mission_row h3 {
    font-weight: 600;
    color: var(--secondary);
}

.ab_page h4 {
    font-weight: 600;
    color: var(--secondary);
}


.vision2030 {
    padding-block: var(--padding);
    /* background-color: rgb(19, 174, 75, 0.1); */
}

.vision2030 h2 {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.vision2030 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    /* border: 1px solid var(--primary); */
}

.vision2030_content div {
    box-shadow: 0 0 15px #ccc;
    padding: 20px;
    margin-top: 1rem;
}

.vision2030_content h5 {
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
}

.shop_smart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our_business_ab {
    padding-block: var(--padding);
    background-color: rgba(238, 64, 71, 0.1);
    text-align: center;
}

.our_business_box_ab {
    /* box-shadow: 0 0 25px #ccc; */
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    height: 170px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.our_business_box_ab a {
    font-size: 30px;
    height: 60px;
    width: 60px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    margin: 0 auto;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9;
}

.our_business_box_ab::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%) scale(0);

    /* display: none; */
}

.our_business_box_ab:hover::before {
    transform: translate(-50%, -50%) scale(1);

}

.our_business_box_ab h5 {
    font-weight: 600;
    font-size: 22px;
    color: var(--secondary);
    transition: all 0.3s ease;

}

.our_business_box_ab p {
    max-height: 96px;
    overflow: hidden;

}

.our_business_box_ab:hover:before {
    width: 100%;
    height: 100%;
    border-radius: unset;
}

.our_business_box_ab:hover a {
    opacity: 1;
}

.our_business_box_ab a:hover {
    background-color: var(--primary);
}

.our_business_box_ab:hover h5 {
    opacity: 0;
}

.our_business_box_ab:hover p {
    opacity: 0;
}


.our_business_box_ab * {
    transition: all 0.3s ease;
}


/* .our_business_box_ab:hover * {
    position: relative;
    z-index: 3;
    color: #fff;
} */

.our_business_box_ab i:hover {
    background-color: var(--primary) !important;
}


/* Our Values*/

.our_values {
    margin-bottom: 13rem;
    margin-top: var(--margin);
}

.values_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    gap: -10px;
}

.values_box {
    padding: 20px;
    border: 2px dashed var(--primary);
    position: relative;

}

.small_circle {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    right: 0%;
    transform: translateX(50%);
}

.small_circle2 {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    left: 0%;
    transform: translateX(-50%);
}

.down_arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, 50%);
}

.up_arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--secondary);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
}

.values_box .down_arrow {
    border-top-color: var(--primary);
}

.values_box .up_arrow {
    border-bottom-color: var(--secondary);
}

.values_container .values_box:nth-child(odd) {
    border-top-style: solid;
    border-bottom: none;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;

}

.values_container .values_box:nth-child(odd) h5 {
    font-weight: 600;
    color: var(--primary);
}

.values_container .values_box:nth-child(odd) .values_icon {
    border-color: var(--primary);
    color: var(--primary);
}

.values_container .values_box:nth-child(even) h5 {
    color: var(--secondary);
    font-weight: 600;
}

.values_container .values_box:nth-child(even) .values_icon {
    border-color: var(--secondary);
    color: var(--secondary);
}

.values_container .values_box:nth-child(even) {
    transform: translateY(10rem);
    border: 2px dashed var(--secondary);
    border-top: none;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    padding-bottom: 3rem;
    border-bottom-style: solid;
}

.values_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 20px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 40px;
    margin-bottom: 1rem;
}


.expanding_horizons {
    margin-block: var(--margin);
}


.expanding_horizons h3 {
    font-weight: 600;
    color: var(--secondary);
}

.expanding_horizons img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    object-fit: cover;
    padding-top: 10px;
    object-position: top;
}

.manager_details {
    padding: 20px;
    box-shadow: 0 0 10px #ccc;
    width: 100% !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.manager_details div {
    text-align: center;
    padding: 10px;
}

.manager_details h5 {
    font-weight: 600;
    color: var(--secondary);
}

/* ABOUT PAGE END */

/* Your Smart Way to Grocery Shopping – Andalus Express */

.way_to_shopping {
    /* background-color: rgba(238, 29, 48, 0.1); */
    position: relative;
    margin-bottom: -5px;
}

.way_to_shopping video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* border: 1px solid var(--secondary); */
    filter: brightness(60%);
}

.way_shop_content {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.way_shop_content * {
    color: #fff;
}

/* CARRER START */


.career {
    margin-block: var(--margin);
}

.career h5 {
    margin-top: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.career li {
    list-style: circle;
    margin-top: 10px;
}


.career img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
    /* border-radius: 10px; */
}

.career label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.career input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

.career input[type="submit"] {
    background-color: var(--primary);
    color: #fff;
    padding: 10px 30px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    width: max-content;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: -10px;
}

.career input[type="submit"]:hover {
    background-color: var(--secondary);
}

.newss_pg {
    margin-block: var(--margin);
}

.newss_pg .newsBox {
    height: auto;
}

.appreciation {
    margin-bottom: var(--margin);
}

.appreciation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
    /* border-radius: 10px; */
    margin-bottom: 1rem;
}


.appreciation p {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

/* CARRER END */

/* NEWS DETAILS START */

/* ARTICLE DETAILS PAGE */

.article_dtls_pg {
    margin-block: var(--margin);
}

.recent_article h4 {
    background-color: var(--primary);
    padding: 10px;
    color: #fff;
    margin-bottom: 0;
}

.recent_article a {
    display: block;
    width: 100%;
    padding: 10px;
    transition: all 0.3s ease;
    background-color: #eee;
    border: 1px solid #ccc;
}

.recent_article h5 {
    font-size: 16px;
    margin-bottom: 0;
}

.recent_article a:hover {
    background-color: var(--secondary);
    color: #fff;
}

.article_dtls_content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.news_title a,
.news_details a {
    display: block;
    overflow: hidden;
}

.news_title {
    font-size: 24px;
    font-weight: 600;
}


/* NEWS DETAILS END */

/* SITEMAP PAFE START */

.sitemap {
    margin-block: var(--margin);
}

.sitemap a {
    display: block;
    background: var(--primary);
    padding: 15px 20px;
    color: #fff;
    /* border-radius: 6px; */
    transition: all 0.3s ease;
}


.sitemap a:hover {
    background-color: var(--secondary);
}

.sitemap h4 {
    margin-bottom: 1rem;
}

/* SITEMAP PAFE END */

/* ALBUMS PAGE START */

.album_page {
    margin-block: var(--margin);
}

.album_page .catagoriess>h1 {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 1rem;
    color: #fff !important;
}

.album_page #categories ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}



.album_page .blog-post h1 {
    text-align: left;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: -5px;
    color: #4e4e4e !important;
    margin-top: 1rem;
}



.album_page #blogs {
    float: left;
    width: 75%;
    padding-left: 20px;
}

.album_page #blog-posts .blog-box {
    width: 100%;
    height: 250px;
    background: #fff;
    /* border-radius: 20px; */
    box-shadow: 0 0 20px rgb(213 205 205 / 25%);
    margin: 0px 8px 35px 8px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: .4s linear all;
}

.album_page #blog-posts .blog-box:hover {
    transform: scale(1.05);
    border-color: #000;
}

.album_page .blog-post .twoBoxes {
    display: flex;
    gap: 20px;
}



.album_page .blog-post img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border: unset !important;
    border-radius: unset;
}

.album_page .blog-box-content {
    text-align: center;
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease;
}

.album_page .blog-box-content .blog-date {
    margin-top: 1rem;
    font-weight: 600;
}

.album_page .blog-box-content .blog-title {
    padding: 0.5rem;
    width: 100%;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px !important;
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* .blog-post .twoBoxes:hover .blog-box-content {
    width: 100%;

} */

.album_page .blog-box-content a {
    color: #fff;
    background-color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    position: absolute;
    bottom: 20px;
    /* border-radius: 5px !important; */
}

.album_page .blog-box-content a:hover {
    color: #fff;
    text-decoration: none;
    background: var(--primary);
}

.album_page #blog-container {
    width: 100%;
    margin: 0 auto;
    /* display: flex; */
    flex-wrap: wrap;
}



.album_page #categories {
    flex: 1;
    border: none;
}



.album_page #categories ul li {
    margin: 0;
    padding: 0;
}

.album_page #categories ul li:last-child {
    border-bottom: none;
}



.album_page #categories .pro_active {
    color: #353535;
    border-bottom: unset;
}

.album_page #blog-posts {
    flex: 3;
}

.album_page .blog-post {
    display: none;
    margin-bottom: 20px;
}



.album_page .blog-post:nth-child(1) {
    display: block;
}

[data-category]:hover {
    cursor: pointer;
}


.album_page .discc li {
    list-style: disc !important;
    line-height: 20px;
    color: #000 !important;
    font-weight: 400;
}



.album_page #categories ul {
    flex-wrap: wrap;
}

.album_page #categories a {
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0px 20px 0px;
    text-align: center;
    background: #bdbdbd;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px 0 15px 0;
    text-decoration: none;
    /* text-transform: uppercase; */
    transition: .3s linear all;
    border: none;
}

.album_page #categories a:hover {
    padding: 5px 15px;
    border-radius: 15px 0 15px 0;
    background-color: var(--primary);
    color: #fff;
    border: none;
}

.album_page #categories .pro_active {
    background-color: var(--primary);
    color: #fff;
}

.album_page .blog-box {
    height: 300px;
    padding: 1rem !important;
    border-radius: 1rem;
}

/* 
.album_page img {
    border-radius: 1rem;
} */

/* ALBUMS PAGE END */



#drop_ul,
#drop_ul1,
#drop_ul2,
#drop_ul3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#toggleBtn,
#toggleBtn1,
#toggleBtn2,
#toggleBtn3 {
    cursor: pointer;
    padding-left: 10px;
    font-weight: bold;
}

.terms_privacy {
    margin-top: calc(4rem + 150px);
}

/* Tagline */

.tagline {
    text-align: center;
    background-color: #eee;
    padding-block: var(--padding);
}



.tagline p {
    font-size: 18px;
    margin: 0 auto;
    margin-top: 10px;
    width: 75%;

}

.breadcrumb-item+.breadcrumb-item::before{
    float: unset;
}

 a[href="tel:+966550078974"] {
  direction: ltr;
  unicode-bidi: embed;
}
