    /* Table of Contents
----------------------------------
 

/*------------------------------ (00)-Global CSS ------------------------------*/
/*
0- Global CSS 
1- Heading CSS 
2- Button CSS
3- Logo Area CSS
4- Page Title CSS
5- Header Area CSS 
6- Footer Area CSS
7- Scroll-Top Area CSS
8- Form CSS
9- Swiper Pagination
10- Sidebar Heading CSS
11- Sidebar CSS
*/



/*------------------------------ (01)-Home ------------------------------*/

/*--------------- SECTIONS ---------------*/
/*
1- Home Slider
2- Counter
3- Blogs
*/



/*------------------------------ (02)-About ------------------------------*/

/*--------------- PAGES ---------------*/
/*
1- About Us
2- Team
3- Team Single
4- Testimonials
5- Faqs
*/



/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Account-Form  
02- Address Details 
03- Page Single
*/

/*--------------- PAGES ---------------*/
/*
1- Pricing
2- Appointment
3- Projects
4- Project Single
5- Login
6- Register
7- Profile
8- Edit Address
*/


/*------------------------------ (04)-Service ------------------------------*/

/*--------------- PAGES ---------------*/
/*
1- Services
2- Service Single
*/


/*------------------------------ (05)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Item 
02- Pages-No
03- Comments
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Blog Single
*/



/*------------------------------ (06)-Shop ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Filter 
02- Shop Header
03- Product-Item
05- Shop-Title
05- Cart-Summary
06- Quantity Box
*/

/*--------------- PAGES ---------------*/
/*
1- Shop Grid 
2- Shop Standard
3- Product Single
4- Wishlist
5- Carts
6- Checkout
7- Order List
8- Order Single
*/



/*------------------------------ (07)-Contact ------------------------------*/


 




/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');

/* Root Variables */
:root{
    --main-color: #FAB60D;
    --secondary-color: #037F87;
    --black: #000;
    --white: #fff;
    --grey: #666; 
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --border-radius: 1rem;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1)
}

/* Global Styles */
*{
    font-family: 'Roboto', sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
}

*:not(.project-item){
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/* Selection Styles */
*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

/* Body Styles */
body{
    background-color: rgba(41, 52, 98, 0.05);
    overflow-x: hidden;
}

/* HTML Styles */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

/* Section Styles */
section{
    padding: 3rem 5%;
}

/* Scrollbar Styles */
::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-thumb{
    border-radius: 1rem;
    background-color: var(--main-color);
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

p{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.6;
}

/*----- 1- Heading CSS -----*/
/* Heading Container */
.heading{ 
    padding-bottom: 2rem;
    text-align: center;
}
  
/* Main Heading */ 
.heading h2{ 
    font-weight: 500;
    font-size: 4rem;  
    color: var(--main-color);
    letter-spacing: 0.15rem;
}

/* Sub Heading */ 
.heading h2 span{
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: 2rem;
    color: var(--secondary-color);
}   

/*----- 2- Button CSS -----*/
/* Button Styles */
.btn{
	position: relative;
	display: inline-block;
	border: 0.2rem solid var(--main-color);
	font-family: 'Lato', sans-serif;
	pointer-events: auto;
	cursor: pointer; 
	padding: 1.5rem 3rem; 
	font-size: 1.8rem;
	font-weight: 500;
	font-style: italic; 
	background: var(--main-color);
	color: var(--white);
    overflow: hidden;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn:after{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
    background: var(--white); 
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Button Styles, On Hover */
.btn:hover{
	color: var(--main-color);
}

.btn:hover:after{
	left: 0;
	width: 100%;
}


/*----- 3- Logo Area CSS -----*/
/* Logo Styles */
.logo{ 
    display: -webkit-box;  
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
}

/* Logo Image */
.logo img{
    width: 5rem;
}

/* Logo Text Section */
.logo .text{
    text-align: right;
}

/* Company Name */
.logo h3{ 
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.1rem;
}

/* Company Slogan */
.logo p{ 
    font-weight: 500;
    color: var(--main-color);
}

/*----- 4- Page Title CSS -----*/
.page-title{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/PageTitle/PageTitle.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("../images/PageTitle/PageTitle.jpg");
    min-height: 40rem;
    background-repeat: no-repeat;  
    background-size: cover; 
    background-position: center; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Heading Title */
.page-title .title h2{
    color: var(--white);
    font-size: 5rem;
    font-weight: 400;
    padding-top: 4rem;
    text-transform: uppercase;
}

/* Link Section */
.page-title .link{
    padding-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 400;
    gap: 1rem;
    color: var(--white);
}

/* Home Link */
.page-title .link a{
    font-size: 2.5rem;
    color: var(--white);
}

/* Home Link, On Hover */
.page-title .link a:hover{
    color: var(--main-color);
}

/* Current Page Title */
.page-title .link span{
    font-size: 2.5rem;
    color: var(--main-color);
}

/*----- 5- Header Area CSS -----*/
/* Header Styles */
.header{ 
    position: fixed;
    top: 0;
    left: 0;
    height: 7rem; 
    width: 100%;
    padding: 0rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: justify; 
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999;
    background: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Navbar Styles */
.header .navbar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 1.8rem;
}

/* Header Dropdown Menu Styles */
.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .dropdown-menu:hover button{
    color: var(--main-color);
}

.header .dropdown-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
}

/* Navbar Button */
.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    gap: 0.5rem;
}

/* Navbar Button, On Hover */
.header .navbar .nav-btn:hover{
    color: var(--main-color);
}

/* Dropdown Content Styles */
.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    padding: 0.5rem;
    width: 20rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    border-bottom: 0.4rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    -webkit-transform: scale(0); 
            transform: scale(0);
    -webkit-transition:  all 0.5s;
    -moz-transition:  all 0.5s;
    -o-transition:  all 0.5s;
    transition:  all 0.5s;
    z-index: 1000;
}

/* Header Dropdown Content Link */
.header .dropdown-content a{
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 1rem;
    cursor: pointer;
}

/* Header Dropdown Content Link, On Hover */
.header .dropdown-content a:hover{
    color: var(--main-color);
}

/* Action elements Container */
.header .action-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
}

/* Header Icons */
.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 1rem;
}

/* Header Icon */
.header .icon-container .icon{
    font-size: 2rem;
    color: var(--secondary-color);
    padding: 0.2rem;
    cursor: pointer;
}

/* Header Icon, On Hover */
.header .icon-container .icon:hover{
    color: var(--main-color);
}

/* Hide the menu bar button */
.header #menubar{
    display: none;
}

/* Header Cart Link */
.header #cart{
    position: relative;
  }
  
/* Header Cart Link Badge */
.header #cart .badge {
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Header Button */
.header .btn{
    padding: 1.2rem 2.5rem;
    border-radius: 50rem;
}

/* Hide Mobile menu */
.mobile-menu{
    display: none;
}

/*-- Search Container --*/
.search-container{
    position: absolute;
    top: 100%;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    background: var(--white);
    width: 50rem;
    padding: 1.5rem 2rem;
    border-radius: 50rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-transform: translateX(300%);
            transform: translateX(300%);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
}

/* Active Search Container */
.search-container.active{
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

/* Search Input */
.search-container input{
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--black);
    font-size: 1.8rem;
    text-transform: none;
}

/* Search Button */
.search-container button{
    color: var(--secondary-color);
    background-color: transparent;
    font-size: 2rem;
    padding-right: 0.5rem;
    padding-left: 1rem;
}

/* Search Button, On Hover */
.search-container button:hover{
    color: var(--main-color);
    cursor: pointer;
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background: -webkit-linear-gradient(rgba(41, 52, 98, 0.7), rgba(41, 52, 98, 0.8)), url("../images/Footer/Footer.jpg");
    background:         linear-gradient(rgba(41, 52, 98, 0.7), rgba(41, 52, 98, 0.8)), url("../images/Footer/Footer.jpg");
    background-position: center;
    background-size: cover;
    padding: 0rem 5%;
}
 
/* Footer Container */
.footer .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

/* Footer Logo */
.footer-item .logo{
    padding-bottom: 2rem;
}

/* Footer Company Name */
.footer-item .logo h3{
    color: var(--white);
}

/* Footer Heading */
.footer-item h2{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    padding-bottom: 2rem;
}

/* Footer Items direct child paragraphs */
.footer-item > p{
    color: var(--white);
}

/* Footer Social Account Links */
.footer-item .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer Social Account Link */
.footer-item .social a{
    display: inline-block;
    height: 4rem;
    width: 4rem;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Footer Social Account Link Icon */
.footer-item .social a i{
    color: var(--main-color);
    font-size: 2rem;
}

/* Footer Social Account Link, On Hover */
.footer-item .social a:hover{
    background-color: var(--main-color);
}

/* Footer Social Account Link Icon, On Link Hover */
.footer-item .social a:hover i{
    color: var(--white);
}

/* Footer Item Info Paragraph & Link */
.footer-item .info p,
.footer-item .info a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--white);
}

/* Footer Item Info Icon */
.footer-item .info i{
    color: var(--main-color);
}

/* Footer Item Info Link, On Hover */
.footer-item .links a:hover{
    cursor: pointer;
    color: var(--main-color);
}

/* Footer Item Info text with "gmail" class */
.footer-item .gmail{
    text-transform: none;
}

/* Designer credit and rights */
.footer .content{
    text-align: center;
    padding: 2rem 0;
    border-top: 0.2rem solid var(--white);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

.footer .content p span{
    color: var(--main-color);
}

/*----- 7- Scroll-Top Area CSS -----*/
/* Scroll Top Button */
.scroll-top{
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    background: var(--main-color);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
}

/* Scroll Top Button, On Hover */
.scroll-top:hover{
    background: var(--secondary-color);
}

/*----- 8- Form CSS -----*/
.form{
    background: var(--white);
}

/* Autofilled input fields */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--black) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}
  
/* Form Heading */
.form h3{ 
    font-size: 3rem;
    font-weight: 500;
    padding-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}
  
/* Form input box container */
.form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
  
/* Form Input Field inside input box */
.form .input-box .box{
    width: 49%;
}
  
/* Form Input Field */
.form .box{
    width: 100%;
    padding: 1.2rem 0.8rem;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    background-color: transparent;
    margin: 0.7rem 0;
}

/* Form Input Field placeholder */
.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.form .box::placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

/* Focused Input Field */
.form .box:focus{
    border-color: var(--main-color);
}

/* Form Textarea */
.form textarea{
    resize: none;
    height: 15rem;
}

/* Form Button */
.form .btn{
    width: 100%;
    border-radius: 5rem;
    overflow: hidden;
    margin-top: 1rem;
}

/*----- 9- Swiper Pagination CSS -----*/
/* Swiper pagination bullet */
.swiper-pagination-bullet{
    height: 1rem;
    width: 4rem; 
    border-radius: 50rem;
    background: var(--secondary-color);
    opacity: 1;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Active swiper pagination bullet */
.swiper-pagination-bullet-active{
    background: var(--main-color) !important;
    opacity: 1 !important;
}

/*----- 10- Sidebar Heading CSS -----*/
/* Sidebar Heading Container */
.sidebar-heading{
    margin-bottom: 2rem;
}

/* Sidebar Heading Title */
.sidebar-heading h2{
    font-size: 3rem; 
    font-weight: 500;
    color: var(--black);
} 

/*----- 11- Sidebar CSS -----*/

/* sidebar container */
.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;  
    padding: 1rem; 
}

/* Sidebar item */
.sidebar .sidebar-item{
    margin-bottom: 3rem;  
}

/*-- 1- Search --*/

/* Search input box */
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem;
    overflow: hidden;
}

/* Search input */
.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    border: 0.1rem solid var(--secondary-color);
}

/* Focused search input */
.sidebar .search .input-box input:focus{
    border-color: var(--main-color);
}

/* Search button */
.sidebar .search .input-box button{
    color: var(--white);
    background-color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Search button, Hover Effect */
.sidebar .search .input-box button:hover{
    background-color: var(--main-color);
}

/*-- 2- Category --*/

/* Category item */
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Category item text */
.sidebar .category a span{
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 400;
    cursor: pointer;
}

/* Category item Quantity */
.sidebar .category a p{
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Category item text, On Item Hover */
.sidebar .category a:hover span{
    color: var(--main-color);
}

/* Category item Quantity, On Item Hover */
.sidebar .category a:hover p{
    color: var(--main-color);
}

/*-- 3- Post Items --*/

/* Post Item */
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Last Post Item */
.sidebar .post-item:last-child{
    margin-bottom: 0;
}

/* Post item Image */
.sidebar .post-item img{
    height: 10rem;
    width: 10rem;
    background-color: var(--grey);
}

/* Recent Post item Image */
.sidebar .recent-post .post-item img{
    height: 8rem;
    width: 12rem;
}

/* Post item Link */
.sidebar .post-item a{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Recent Post item Link */
.sidebar .recent-post .post-item a{
    font-size: 1.8rem;
    line-height: 1.4;
}

/* Post item Link, On Hover */
.sidebar .post-item a:hover{
    color: var(--main-color);
}

/* Post item Price */
.sidebar .post-item .price{
    padding-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Post item Discounted Price */
.sidebar .post-item .price span{
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey);
    text-decoration: line-through;
    padding-left: 0.2rem;
}

/* Post item Rating */
.sidebar .post-item .rating{
    font-size: 1.4rem;
    color: var(--main-color);
    padding: 0.5rem 0;
}

/*-- 4- Tags --*/
/* Tag items Container */
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Individual Tag*/
.sidebar .tag-item{
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
}

/* Individual Tag, On Hover */
.sidebar .tag-item:hover{
    background-color: var(--main-color);
    cursor: pointer;
}
  
/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)-Home (Start) ------------------------------*/

/*--------------- SECTIONS ---------------*/

/*----- 1- Home-Slider -----*/
.home{
    padding: 0;
    position: relative; 
} 
  
.home-slider{
    position: relative; 
    overflow: hidden;
}  
  
/* Home Slider Navigation Buttons */
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    background-color: var(--main-color);
    height: 5rem;
    width: 5rem;
    opacity: 0;
}
  
/* Home Slider Navigation Buttons, On Home Slider Hover */
.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev{
    opacity: 1;
}
  
/* Home Slider Navigation Buttons Icon */
.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after{
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
  
/* Home Slider Navigation Buttons, On Hover */
.home-slider .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover{
    background-color: var(--secondary-color);
}
  
/* Home slider pagination bullet */
.home-slider .swiper-pagination-bullet{
    background: var(--white);
    opacity: 0.5;
}
  
/* Home Slide */
.home-item{
    height: 65rem;
}
  
/* Home Slide Content */
.home-item .content{ 
    padding: 10rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}
  
/* Home Slide Text Container */
.home-item .content .text{
    padding-top: 7rem;
    width: 70rem;
}
  
/* Home Slide Heading */
.home-item .content h3{
    font-size: 5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}
  
/* Home Slide Paragraph */
.home-item .content p{
    letter-spacing: 1.5px;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 3rem;
}

/*----- 2- Counter -----*/

/* Statistic Section */
.counting{
    width: 100%; 
    padding: 2rem 5%;
    margin: 1rem 0;
    min-height: 15rem;
    display: -webkit-box;  
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../images/Counter/Counter.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url("../images/Counter/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Statistic Box */
.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Statistic Box Icon */
.counting .box i{
    color: var(--main-color);
    font-size: 6rem;
    width: 6rem;
    padding-bottom: 1rem;
    text-align: center;
}

/* Statistic Box Count */
.counting .box .count{
    font-size: 5rem;
    font-weight: 500;
    color: var(--white);
}

/* Statistic Box Title */
.counting .box h3{
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
}

/*----- 3- Blogs -----*/
.blog.main .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}


/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 0;
    padding-top: 2rem;
}

/*--------------- PAGES ---------------*/

/*----- 1- About Us -----*/
.about{
    padding: 3rem 0;
}

/* About Information container */
.about .box-container{
    background-color: rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem; 
    padding: 0rem 5%;
}

/* About image */
.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.about .image img{
    height: 50rem;
}

/* About Content Section */
.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}
 
/* About Heading */
.about .content h2{
    color: var(--secondary-color);
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

/* About Paragraph */
.about .content p{
    padding-bottom: 1rem;
}

/* Features List */
.about .features{
    list-style-type: none;
    padding-bottom: 3rem;
}

/* Features Item */
.about .features li{
    font-size: 1.6rem;
    color: var(--grey);
    padding: 0.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

/* Features Item Icon */
.about .features i{
    color: var(--main-color);
    font-size: 1.6rem;
}

/*----- 2- Team -----*/
/* Team Members */
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}  
  
/* Team member */
.team-item{
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-orient: vertical; 
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; 
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
}

/* Team member Image */
.team-item .image{
    height: 35rem;
    overflow: hidden;
}

/* Team member Content Section */
.team-item .content{
    padding: 2rem;
    background-color: var(--white);
    z-index: 2;
}

/* Team member Content Section, On Team Member Hover */
.team-item:hover .content{
    -webkit-transform: translateY(-5rem);
            transform: translateY(-5rem);
}
  
/* Team member name */
.team-item .content h3{
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Team member name, On Hover */
.team-item .content h3:hover{
    color: var(--main-color);
    cursor: pointer;
}

/* Team member Role */
.team-item .content p{
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--main-color);
}
  
/* Team Member Social Media Accounts */
.team-item .icon-container{
    position: absolute;
    left: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    -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;
}
  
/* Team Member Social Media Accounts Link */
.team-item .icon-container a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;  
  font-size: 2rem;
  color: var(--white);
  background-color: var(--secondary-color);
  padding: 1.5rem;
  width: 100%;
}

/* Team Member Social Media Accounts Link, On Hover */
.team-item .icon-container a:hover{
  background-color: var(--main-color);
  cursor: pointer;
}

/*----- 3- Team Single -----*/
.team-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

/* Introduction Section */
.team-single .intro{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem; 
        flex: 1 1 15rem;
}

/* Team Member Image */
.team-single .image{  
    margin-bottom: 2rem;
    height: 45rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Team Member Name */
.team-single .intro h3{
    color: var(--black);
    font-size: 3rem;
    font-weight: 600;
}

/* Team Member Role */
.team-single .intro h5{
    color: var(--main-color);
    font-size: 1.8rem;
    font-weight: 500;
}

/* Personal Information */
.team-single .personal-info{
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

/* Personal Information Item */
.team-single .info-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

/* Personal Information Item Icon */
.team-single .info-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Personal Information Item Heading */
.team-single .info-item h6{
    color: var(--black);
    font-size: 2rem;
    line-height: 1;
    padding-bottom: 0.3rem;
}

/* Email Address Text */
.team-single .info-item .gmail{
    text-transform: none;
}

/* Social Media Accounts */
.team-single .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

/* Social Media Account Link */
.team-single .icon-container a{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

/* Social Media Account Link, On Hover */
.team-single .icon-container a:hover{
    background-color: var(--secondary-color);
}

/* Information Section */
.team-single .information{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

/* Sub Heading */
.team-single h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Personal Biography Section */
.team-single .team-about{
    padding-bottom: 2rem;
}

/* Personal Biography Description */
.team-single .text{
    font-size: 1.6rem;
    letter-spacing: 0.2px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
}

/* Personal Experience Section */
.team-single .team-experience{
    padding-bottom: 2rem;
}

/* Personal Experiences List */
.team-single ul{
    list-style-type: none;
    padding-top: 1rem;
}

/* Personal Experiences List Item */
.team-single ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    color: var(--grey);
    padding-bottom: 0.7rem;
}

/* Personal Experiences List Icon */
.team-single ul li i{
    color: var(--main-color);
}

/* Professional Skills */
.team-single .skills{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.team-single .skill-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem; 
}

/* Skill Box */
.team-single .skill-item .box{
    padding: 1rem 0;
}

/* Skill Text */
.team-single .skill-item .box h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-size: 1.7rem;
    color: var(--black);
    font-weight: 400;
}

/* Skill Progress Bar */
.team-single .skill-item .box .progress-bar{
    width: 100%;
    background: var(--secondary-color);
    overflow: hidden;
    height: 1.2rem;
    border-radius: 50rem;
}

/* Skill Progress Bar Fill */ 
.team-single .skill-item .box .progress-bar span{
    display: block;
    height: 100%;
    background: var(--main-color);
}

/*----- 4- Testimonials -----*/
.testimonials{
    overflow: hidden;
}  

/* Testimonial Slider */ 
.testimonial-slider{ 
    overflow: hidden;
    position: relative;
    padding-bottom: 5rem;
}

/* Testimonial Slide */ 
.testi-item{
    border-top-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

/* Opening quote icon */ 
.testi-item  .quote-left{
    position: absolute;
    top: 2rem;
    right: 2rem; 
    font-size: 6rem;
    color: var(--main-color);
    opacity: 0.6;
}

/* Testimonial image */ 
.testi-item img{
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
}

/* Testimonial Comment with quote icons */ 
.testi-item .testimonial-comment{
    padding: 1rem 0;
    margin: 3rem 0;
    position: relative;
}

/* Start & End quote icon */ 
.testi-item .quote-start,
.testi-item .quote-end{
    position: absolute;
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Start quote icon */ 
.testi-item .testimonial-comment .quote-start{
    top: 0;
    left: 0;
}

/* End quote icon */ 
.testi-item .testimonial-comment .quote-end{
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

/* Testimonial text */ 
.testi-item .testimonial-comment p{
    margin-top: 2rem;
}

/* Testimonial author name */ 
.testi-item .intro h3{
    font-size: 2.2rem;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

/* Testimonial author designation */ 
.testi-item .intro h5{
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 500;
}

/*----- 5- Faqs -----*/
.faq{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

/* FAQ Accordion Container */ 
.faq .accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42em;
        flex: 1 1 42rem;
}

/* FAQ Accordion */ 
.faq .accordion{
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: var(--box-shadow); 
            box-shadow: var(--box-shadow);
    overflow: hidden;
    border-bottom: 0.2rem solid var(--secondary-color);
} 
 
/* Last FAQ Accordion */ 
.faq .accordion:last-child{
    margin-bottom: 0.5rem;
}  

/* Faq Accordion heading */
.faq .accordion .accordion-heading{
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    background: var(--secondary-color); 
    cursor: pointer;
}

/* Active Faq Accordion heading */
.faq .accordion.active .accordion-heading{
    background-color: var(--main-color);
}

/* FAQ Question */ 
.faq .accordion .accordion-heading h3{
    font-size: 2rem;
    color: var(--white);
}

/* Toggle Icon */ 
.faq .accordion .accordion-heading i{
    font-size: 2rem;
    color: var(--white);
}

/* Active Faq accordion content */
.faq .accordion.active .accordion-content{
    display: block;
}

/* Faq accordion content */
.faq .accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

/* FAQ section Image */
.faq .image{
    height: 50rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (03)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Account-Form  -----*/
.form.account{
    max-width: 45rem;
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 2rem auto;
    text-align: center;
    border-radius: var(--border-radius);
}

/* Account Form Paragraph */
.form.account p{
    padding-top: 2rem;
    text-align: center;
    padding-bottom: 1rem;
}

/* Account Form link */
.form.account .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

/* Account Form link, On Hover */
.form.account .link:hover{
    text-decoration: underline;
}

/*----- 02- Address-Details -----*/
/* Address Title */
.address .title{
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}

/* Address Title Heading */
.address .title h3{ 
    font-size: 1.8rem;
}

/* Address info */
.address .info p{ 
    font-weight: 400;
    padding-bottom: 1rem;
}

/* Address info Label */
.address .info p span{
    font-weight: bold;
    color: var(--black);
    padding-right: 0.5rem;
}

/*----- 03- Page Single -----*/
.page-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.page-single .sidebar .sidebar-item{
    margin-bottom: 0;
}

.page-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem; 
        flex: 1 1 75rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .image{
    height: 40rem; 
}

.page-info .image img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .content{
    padding: 2rem;
}

.page-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    padding-bottom: 1rem;
}

.page-info .important{
    color: var(--black) !important;
    font-weight: 600;
}

.page-info p{
    padding-bottom: 1rem;
}

.page-info .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}
  
.page-info .page-gallery img{
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 0.5rem;
}

.page-info .sub-section{
    padding-top: 2rem;
}

.page-info .sub-section p{
    margin-bottom: -1rem;
}

.page-info .sub-section ul{
    list-style: none;
}

.page-info .sub-section ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    line-height: 1.6;
} 

.page-info .sub-section ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*--------------- PAGES ---------------*/

/*----- 1- Pricing -----*/
/* Pricing Plans */
.pricing .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}
 
/* Pricing Plan */
.price-item{ 
    -webkit-box-flex: 1; 
    -ms-flex: 1 1 33rem;  
        flex: 1 1 33rem;
    background-color: var(--white);
    padding: 2rem;
    overflow: hidden;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
  
/* Plan Name */
.price-item h3{
    color: var(--black);
    font-size: 3.5rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
}
  
/* Plan Description */
.price-item p{
    font-weight: 400;
}
  
/* Plan Price */
.price-item .price{
    color: var(--secondary-color);
    font-size: 6rem;
    font-weight: 400;
    padding-top: 1.5rem;
}
    
/* Plan Price Frequency (per month) */
.price-item .price span{
    font-size: 2rem;
    font-weight: normal;
    color: var(--grey);
}

/* Plan Button */
.price-item .btn{
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}
   
/* Plan Features List */
.price-item ul{ 
    list-style: none;
    padding-top: 2rem;
}
   
/* Plan Features List Item */
.price-item ul li{
    padding: 0.9rem 0;
    font-size: 1.7rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 0.7rem;
}
  
/* Plan Features List Icon */
.price-item ul li i{
    color: var(--main-color);
    font-size: 1.6rem;
}


/*----- 2- Appointment -----*/
.appointment .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: var(--border-radius);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Appointment Image */
.appointment .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    position: relative;
}

/* Appointment Heading */
.appointment .heading{
    padding-bottom: 0rem;
}

/* Appointment Form */
.appointment .form{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60rem;
        flex: 1 1 60rem;
    background: var(--white);
    padding: 2rem;
}

.appointment .alert{
    display: block;
    font-size: 2rem;
    color: var(--main-color);
    padding-top: 1rem;
}

/*----- 3- Projects -----*/
/* Projects Filter Tabs */
.projects .tab-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin: 2rem 0;
}

/* Projects Filter Tabs Button */
.projects .tab-buttons .button{
    display: inline-block;
	cursor: pointer;
	padding: 0.7rem 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	font-weight: 700;
	font-size: 1.8rem;  
	color: var(--secondary-color);
}

/* Projects Filter Tabs Button, Hover & Active Effect */
.projects .tab-buttons .button:hover,
.projects .tab-buttons .button.active{
    color: var(--main-color); 
}

/* Projects */
.projects .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(33rem, 1fr));
    grid-gap: 1rem;
    margin-top: 1rem;
}

.project-item{
    width: 33.3%;
    padding: 0.8rem;
}

.project-content{
    height: 30rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Project overlay */
.project-content::before{
    content: '';
    position: absolute; 
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--secondary-color);
    opacity: 0.9;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    z-index: 1;
}

/* Project Content */
.project-item .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
    opacity: 0;
    z-index: 2;
}

/* Project Title */
.project-item .content h4{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.1rem;
    padding-bottom: 1rem;
}

/* Project Category */
.project-item .content p{
    font-weight: 400;
    color: var(--white);
} 

/* Project Buttons */
.project-item .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}

/* Project Button */
.project-item .content a{
    display: inline-block;
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
	color: var(--white);
    background-color: var(--main-color);
}

/* Project Button, On Hover */
.project-item .content a:hover{
    cursor: pointer;
    background-color: var(--black);
}

/* Project, On Hover */
.project-content:hover::before{
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
}

.project-item:hover .content{
    opacity: 1;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

/*----- 4- Project Single -----*/
.project-single .project-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    padding: 4rem;
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.project-single .project-details .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 2rem;
    line-height: 1;
}

.project-single .detail-item{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

.project-single .detail-item:last-child{
    padding-bottom: 0;
}

.project-single .detail-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    font-size: 1.8rem;
    color: var(--white);
}

.project-single .detail-item h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    padding-bottom: 0.5rem;
}

.project-single .detail-item .detail-content p{
    font-weight: 400;
    color: #f7f7f7;
    line-height: 1;
}

.project-single .detail-item p.website{
    text-transform: none;
}

.project-info .challenges .box-container{
    padding-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

.project-info .challenges ul{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

/*----- 5- Login -----*/
.login form .forgot{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1rem 0;
}
  
/*----- 6- Register -----*/ 
.register form .terms{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
  
.register form .terms label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
.register form .terms label span{
    color: var(--secondary-color);
}

/*----- 7- Profile -----*/
.profile .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}
  
/* Each Profile item */
.profile-item{
    background-color: var(--white);
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);  
    padding: 2rem;
}
  
/* Profile Details Section */
.profile .profile-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}
  
/* Profile Details Content */
.profile .profile-details .content{
    text-align: center;
}
  
/* User Profile Image */
.profile .profile-details .content img{
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
    margin-bottom: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Profile Detail Item */
.profile .profile-details .info .box{
    margin-bottom: 1rem;
}

/* User Profile Name */
.profile .profile-details .content h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Profile Detail Item Text */
.profile .profile-details .content p{
    font-weight: 400;
}

/* Profile Gmail Text */
.profile .profile-details .content .gmail{
    text-transform: none;
}

/* Address Details Section */
.profile .address-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Address Detail Item */
.profile .address-details .address{
    margin-bottom: 1rem;
}

/* Profile Button */
.profile .btn{
    margin-top: 1rem;
}

/*----- 8- Edit Address -----*/
.edit-address .form{
    max-width: 80rem;
}



/*------------------------------ (03)-Pages (End) ------------------------------*/



/*------------------------------ (04)-Service (Start) ------------------------------*/

/*--------------- PAGES ---------------*/

/*----- 1- Services -----*/
.services .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}
  
.service-item{ 
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.service-item .image{
    height: 25rem;
}

.service-item .content{
    padding: 2.5rem 1.5rem;
}

.service-item a{
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.service-item a:hover{
    color: var(--main-color);
}

/*----- 2- Service Single -----*/
.service-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-sidebar a{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white); 
    background-color: var(--secondary-color);
    padding: 2rem;
    gap: 1rem;
    border-bottom: 0.1rem solid var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}

.service-sidebar a:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

.service-sidebar a i{
    color: var(--white);
    font-size: 1.8rem;
}

/*------------------------------ (04)-Service (End) ------------------------------*/



/*------------------------------ (05)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/
.blog-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white); 
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}   
  
/* Blog Image */
.blog-item .image{ 
    height: 25rem;
}

/* Blog Content */
.blog-item .content{
    padding: 2rem; 
}
  
/* Blog Category */
.blog-item .details .label{
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1.6rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
}
  
/* Blog Publication Date */
.blog-item .details .date{
    font-size: 1.6rem;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Blog Publication Date Icon */
.blog-item .details .date i{
    font-size: 1.4rem;
}
  
/* Blog Title */
.blog-item .content .main-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}
  
/* Blog Title, On Hover */
.blog-item .content .main-heading:hover{
    color: var(--main-color);
}
  
/* Blog Description */
.blog-item .content p{
    padding-top: 1rem;
}

/*----- 02- Pages-No -----*/
/* page numbers */
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}

/* page number buttons */
.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Page number individual button */
.pages-no .item{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    border-radius: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Page number individual button, active and hover effect */
.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    color: var(--white);
    background-color: var(--secondary-color);
}

/* All page number Button */
.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/*----- 03- Comments -----*/
.comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    padding: 1rem 0;
}

/* Comment image */
.comment-item .image{
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    overflow: hidden;
}

/* Comment Content */
.comment-item .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
}

/* Comment Introduction section */
.comment-item .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}

/* Comment Author Name */
.comment-item .intro h6{
    font-size: 1.8rem;
    color: var(--black);
}

/* Comment Text */
.comment-item .content .text{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Comment Action Buttons */
.comment-item .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

/* Comment Action Button */
.comment-item .icon-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3rem;
}

/* Comment Action Button Icon */
.comment-item .icon-item i{
    color: var(--grey);
    font-size: 1.2rem;
}

/* Comment Action Button Text */
.comment-item .icon-item span{
    color: #333;
    font-size: 1.4rem;
}

/* Comment Action Button Icon & Text, On Button Hover */
.comment-item .icon-item:hover i,
.comment-item .icon-item:hover span{
    color: var(--main-color);
    cursor: pointer;
}

/*--------------- PAGES ---------------*/

/*----- 1- Blog Grid -----*/
/* Blog Grid Container */
.blog.grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

/* Blog Container */
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/* Blog Grid items */
.blog-container.grid .blog-items{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*----- 2- Blog List -----*/
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

/* Blog List items */
.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

/* Blog List items Image */
.blog-container.list .blog-item .image{
    height: 30rem;
}

/*----- 3- Blog Single -----*/
.blog-info .details .label{
    position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    padding: 0.8rem 1.5rem;
}
  
.blog-info .details .date{
    font-size: 1.8rem;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-info .important{
    padding: 4rem;
    margin: 2rem 0;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    font-style: italic;
    line-height: 1.8;
    border-left: 0.2rem solid var(--secondary-color);
    margin-left: 1rem;
    background: -webkit-linear-gradient(rgba(41, 52, 98, 0.2), rgba(41, 52, 98, 0.2)), url("../images/Blog/blogqoute.jpg");
    background:         linear-gradient(rgba(41, 52, 98, 0.2), rgba(41, 52, 98, 0.2)), url("../images/Blog/blogqoute.jpg");
    background-position: center;
}
  
.blog-info .end-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}
 
.blog-info .tags, 
.blog-info .share{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.blog-info .tags span{
    color: var(--grey);
    font-size: 1.6rem;
    padding: 0.7rem 2rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.blog-info .share h3{
    color: var(--black);
    font-size: 1.4rem;
    padding-right: 1rem;
}

.blog-info .share i{
    color: var(--grey);
    font-size: 1.6rem;
}

.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
    
/*-- 2- Comments --*/
.blog-single .comments{
    background-color: var(--white);;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 

/* All Comments section Heading */
.blog-single .comments h4{  
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 2rem;
} 

/* Blog Reply Comment */
.blog-single .comments .comment.reply{
    margin-left: 10rem;
}

/* Leave A Comment Section */
.leave-reply{
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 


/*------------------------------ (05)-Blog (End) ------------------------------*/



/*------------------------------ (06)-Shop (Start) ------------------------------*/
.shop{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/*--------------- COMPONENTS ---------------*/

/*----- 01- Filter -----*/
/* Filter container */
.filter .box-container{
    padding: 2rem 0;
}

/* Filter slider */
.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: var(--border-radius);
}

/* Slider progress */
.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: var(--border-radius);
    background: var(--secondary-color);
    -webkit-transition: none;
            transition: none;
}

/* Range input Container */
.range-input{
    position: relative;
    -webkit-transition: none;
            transition: none;
}

/* Range input */
.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Slider thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Slider thumb in Firefox */
input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/* Price wrap container */
.price-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    color: #242424;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 3rem;
}

/* Price input container */
.filter .price-input{
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

/* Price input field Container */
.filter .price-input .field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Price input field */
.filter .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.5rem;
    text-align: center;
    background-color: transparent;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
            appearance: textfield;
}

/* Rremove the spinner arrows in number inputs */
.filter input[type="number"]::-webkit-outer-spin-button,
.filter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Separator within the price input container */
.filter .price-input .separator{
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
  
/* Filter button */
.filter-btn{
    display: inline-block;
    padding: 1rem 3rem;
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    border-radius: var(--border-radius);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/* Filter button, On Hover */
.filter-btn:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}

/*----- 02- Shop Header -----*/
.shop .intro{
    padding-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify; 
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
}

/* Showing products count */
.shop .intro .showing{
    font-size: 1.6rem;
    color: var(--grey);
}

/* Styles buttons */
.shop .intro .styles{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Styles button links */
.shop .intro .styles a{
    font-size: 2rem;
    color: var(--black);
}

/* Styles button links, On Hover */
.shop .intro .styles a:hover{
    cursor: pointer;
    color: var(--main-color);
}

/* Sorting type Select Label */
.shop .intro .sorting-type label{
    font-size: 1.6rem;
    color: var(--black);
    margin-right: 0.5rem;
    padding-right: 0.5rem;
}

/* Sorting type Select dropdown */
.shop .intro .sorting-type select{
    font-size: 1.4rem;
    color: var(--grey);
    background-color: transparent;
    border: var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
}

/*----- 03- Product-Item -----*/
/* Product Card */
.product-item{
    position: relative;
    overflow: hidden;
    -webkit-transition: all 1s ease;  
    -moz-transition: all 1s ease; 
    -o-transition: all 1s ease;  
    transition: all 1s ease; 
    background-color: var(--white);
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 
  
/* Product Options */
.product-item .options{
    position: absolute;
    top: 2rem;
    right: -100%; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    gap: 1rem;
}

/* Product Options Link */
.product-item .options a{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    font-size: 1.6rem;
    background: var(--white);
    color: var(--secondary-color);
    cursor: pointer;
}

/* Product Options Link, On Hover */
.product-item .options a:hover{
    background-color: var(--main-color);
}

/* Product Options Icon, On Link Hover */
.product-item .options a:hover i{
    color: var(--white);
}

/* Product Image */
.product-item .image{
    position: relative;
    overflow: hidden;
}

.product-item .image img{
    height: 25rem;
}

/* Product Content */
.product-item .content{
    padding: 2rem;
    text-align: center;
}

/* Product name */
.product-item h3{
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Product name, On Hover */
.product-item h3:hover{
    color: var(--main-color);
}

/* Product Rating */
.product-item .rating{
    font-size: 1.6rem;
    color: var(--main-color);
    padding: 0.7rem 0;
}

/* Product price */
.product-item .price{
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Product Discounted price */
.product-item .price span{ 
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--grey);
    padding-left: 0.2rem;
}

/* Show Product Options, On Product Card Hover  */
.product-item:hover .options{
    right: 2rem;
}


/*----- 04- Shop-Title -----*/
.shoplist-title{
    background-color: var(--secondary-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}

/* Individual titles */
.shoplist-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    font-size: 1.8rem;
    text-align: center;
}

/*----- 05- Cart-Summary -----*/
.cart-summary{
    background-color: var(--white);
    padding: 1rem;
}

/* Summary item */
.summary-item{
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    margin: 1.5rem 0;
} 

/* Summary boxes */
.summary-item .box{
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
}

/* Summary Value */
.summary-item .value{
    font-weight: 500;
    color: var(--secondary-color);
}

/* Summary Button */
.summary-list .btn{
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/*----- 06- Quantity Box -----*/
/* Quantity box container */
.quantity.buttons_added {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 4rem;
    width: 11rem;
    margin: 0 auto;
}

/* Quantity box minus and plus buttons */
.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    width: 3rem;
    color: var(--black);
    cursor:pointer;
    background-color: var(--white);
}

/* Quantity box minus and plus buttons, On Hover */
.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: var(--main-color); 
    color: var(--white);
}

/* Quantity box input field  */
.quantity .input-text.qty {
    padding: 0 1rem;
    text-align: center;
    background-color: transparent;  
    border-right: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
} 
  
/* Quantity input field spin buttons */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
  
/* Quantity box minus and plus buttons, On Focus */
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}


/*--------------- PAGES ---------------*/
.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
/* Product Container */
.shop .product-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Product Container (Grid) */
.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/*----- 2- Shop Standard -----*/
/* Product List Card */
.shop .product-container.list .product-item{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    gap: 1rem;
}

/* Product List Image */
.shop .product-container.list .product-item .image{
    height: 100%; 
    min-width: 25rem;
}

/* Product List Content */
.shop .product-container.list .product-item .content{
    padding: 1.5rem;
}

/* Product List Paragraph */
.shop .product-container.list .product-item .content > p{
    padding: 1rem 0;
}

/*----- 3- Product Single -----*/

/*-- Product Descriptions --*/
.product-single .product-des{
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 3.5rem;
}

/*-- Product Image --*/
.product-single .product-des .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/*-- Product Main Image --*/
.product-single .product-des .main{
    height: 40rem;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Product Image Thumbnails */
.product-single .product-des .image .change-btns{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(8rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

/* Product Image Thumbnails Image */
.product-single .product-des .image .change-btns img{
    border-radius: 0.5rem;
    border: 0.4rem solid var(--secondary-color);
    cursor: pointer;

}

/* Product Image Thumbnails Image, Hover & Active Effect */
.product-single .product-des .image .change-btns img:hover,
.product-single .product-des .image .change-btns img.active{
    border-color: var(--main-color);
}

/* Product Content */
.product-single .product-des .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Product Title */
.product-single .product-des .content h3{
    font-size: 3rem;
    font-weight: 500;
    color: var(--black);
}

/* Product Introduction Section */
.product-single .product-des .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 0;
}

/* Product Rating */
.product-single .product-des .content .intro .rating{
    color: var(--main-color);
    font-size: 2rem;
}

/* Product Reviews */
.product-single .product-des .content .intro span{
    font-size: 2rem;
    padding-left: 1rem;
}

/* Product Price */
.product-single .product-des .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
    padding-bottom: 1rem;
}

/* Product Discounted Price */
.product-single .product-des .content .price span{
    color: var(--grey);
    font-weight: lighter;
    text-decoration: line-through;
}

/* Product Cart Button */
.product-single .product-des .content .btn{
    margin: 2rem 0;
}

/* Product Availability & Quantity Section */
.product-single .availablity,
.product-single .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    width: 20rem;
}

/* Product Quantity Text Section */
.product-single .qty.text{
    width: 10rem !important;
}

/* Product Availability & Quantity Section Heading */
.product-single h4{
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500;
}

/* Product Paragraph */
.product-single .product-des .content p{
    padding-top: 0.5rem;
    font-weight: 400;
}

/* Product Availability & Quantity Section Heading */
.product-single .availablity h4,
.product-single .qty h4{
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500;
}

/* Product Availability Text */
.product-single .availablity span{
    font-size: 1.6rem;
    color: red;
}

/* Product Categories and Tags Section */
.product-single .categories,
.product-single .tags{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1rem;
    gap: 1rem;
}

/* Product Categories and Tags Title */
.product-single .categories h4,
.product-single .tags h4{
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500;
}

/* Product Categories and Tags Text */
.product-single .categories a,
.product-single .tags a{
    font-size: 1.6rem;
    color: var(--secondary-color);
}

/* Product Categories and Tags Text, On Hover */
.product-single .categories a:hover,
.product-single .tags a:hover{
    color: var(--main-color);
}

/* Related Products */
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/*----- 4- Wishlist -----*/
/* Wishlist Section */
.wishlist{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow-x: auto;
    overflow-y: hidden; 
}

/* Wishlist Section Scrollbar */
.wishlist::-webkit-scrollbar{ 
    height: 1rem;
}

/* Wishlist Container */
.wishlist .container{
    min-width: 90rem;
}

.wishlist .box-container{ 
    padding: 1rem;
}

/* Wishlist Item */
.wishlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
}

/* Wishlist Item Box */
.wishlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
    text-align: center; 
    font-size: 2rem;
    font-weight: 500;
}

/* Wishlist Image */
.wishlist-item img{
    height: 15rem;
    width: 15rem;
    background-color:#f7f7f7;
}

/* Wishlist Name */
.wishlist-item .name{
    color: var(--secondary-color);
}

/* Wishlist Price */
.wishlist-item .price{
    color: var(--grey);
}

/* Wishlist "In Stock" Status */
.wishlist-item .status.in{
    color: green;
}

/* Wishlist "Out of Stock" Status */
.wishlist-item .status.out{
    color: red;
}

/* Wishlist Actions */
.wishlist-item .action{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Wishlist Action icon */
.wishlist .wishlist-item i{
    font-size: 2rem;
    cursor: pointer;
}

/* Wishlist Action Link, On Hover */
.wishlist-item a:hover{
    color: var(--black);
}

/* Wishlist Delete Icon */
.wishlist-item .fa-trash-alt{
    color: red;
}

/* Wishlist Cart Icon */
.wishlist-item .fa-shopping-cart{
    color: var(--main-color);
}

/*----- 5- Cart  ------*/

/*-- 1- Cart Items --*/
.shopping-cart{
    background-color: var(--white);
    margin-bottom: 1rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow-x:auto;
    overflow-y:hidden; 
}

/* Shopping cart container Scrollbar */
.cart .shopping-cart::-webkit-scrollbar{ 
    height: 1rem;
}

/* Shopping cart Container */
.cart .container{
    min-width: 90rem;
}

.cart .box-container{
    padding: 1rem;
}

/* Cart item */
.cart-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
    gap: 1rem;
}

/* Cart item Box */
.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
}

/* Cart Image */
.cart-item img{
    height: 15rem;
    width: 15rem;
    background-color:#f7f7f7;
}

/* Cart Name */
.cart-item .name{
    color: var(--secondary-color);
    font-weight: 500;
}

/* Cart icon */
.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

/* Cart icon, On Hover */
.cart-item .icon:hover{
    color: var(--secondary-color);
}

/* Cart Total */
.cart .cart-summary{
    width: 40rem;
    margin-left: auto;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-top: 0.3rem solid var(--secondary-color);
}

/*----- 6- Checkout -----*/
/*
1- Billing Address
2- Shipping Address
3- Cart Total
4- Payment Method
*/

/*-- Checkout Section --*/
.checkout{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/*-- Checkout Heading --*/
.checkout .heading{
    text-align: left;
    padding-bottom: 0;
}

/* Checkout item */
.checkout-item{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1rem;
}

/* Checkout section, Box-1 container */
.checkout .box-1{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 66rem;
        flex: 1 1 66rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-bottom: 0;
}

.checkout .box-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
}

/*-- 4- Payment Method --*/
.payment-methods .payment{
    width: 100%;
    margin-top: 1.5rem;
}

/* Payment method label */
.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    color: var(--black);
}

/* Payment method input */
.payment-methods .payment  input{
    margin-right: 0.5rem;
}

/* Selected/Highlighted payment method label */
.payment input:checked + label, 
.payment label:hover{ 
    color: var(--main-color);
}

/* Payment method body */
.payment .payment-body{ 
    display: none;
}

/* Payment method body paragraph */
.payment-methods .payment .payment-body p{
    padding-top: 0.5rem;
}

/* Show payment method body when input is checked */
.payment > input:checked ~ .payment-body{ 
    display: block;
}

/* Active payment method body */
.payment-body.active{
    display: block;
}

/* Checkout Button */
.checkout .btn{
    width: 100%;
    text-align: center;
}

/*----- 7- Order List -----*/
/* Orderlist Section */
.order-list{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow-x: auto;
    overflow-y: hidden; 
}

/* Orderlist container Scrollbar */
.order-list::-webkit-scrollbar{ 
    height: 1rem;
}

/* Orderlist Container */
.order-list .container{
    min-width: 90rem;
}

/* Orderlist Item */
.orderlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 1rem;
    gap: 1rem;
}

/* Orderlist Item Box */
.orderlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
}

/* Orderlist Item "Cancelled" Status */
.orderlist-item .status.cancelled{
    color: red;
}

/* Orderlist Item "Processing" Status */
.orderlist-item .status.processing{
    color: var(--grey);
}

/* Orderlist Item "Completed" Status */
.orderlist-item .status.completed{
    color: green;
}

/* Orderlist icon */
.orderlist-item a{
    font-size: 2rem;
    cursor: pointer;
    margin: 0rem 0.5rem;
    color: var(--main-color);
}

/* Orderlist icon, On Hover */
.orderlist-item a:hover{
    color: var(--black);
}

/*----- 8- Order Single -----*/
/* Each Order Details Item */
.order-single .order-details-item{
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Order Single Heading */
.order-single .heading{
    text-align: left;
}

/*-- 1- Order Summary --*/
/* Order Summary Content */
.order-single .order-summary .content{
    width: 50rem;
}

/* Order Introduction */
.order-single .order-summary .order-intro{
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.15);
}

/* Order ID */
.order-single .order-intro .order-id{
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Delivery Date */
.order-single .order-intro .delivery{
    color: var(--grey);
    font-size: 1.8rem;
    padding-bottom: 1rem;
}

/*-- 2- Address Details --*/
.order-single .address-details{
    margin: 1rem 0;
}

/* Address Details Container */
.order-single .address-details .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Each Address Item */
.order-single .address-details .address{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/*-- 3-Order Items --*/
.order-items{
    overflow-x: auto;
    overflow-y: hidden; 
}

/* Order Items container Scrollbar */
.order-items::-webkit-scrollbar{ 
    height: 1rem;
}

/* Order Items Section */
.order-items .container{
    min-width: 90rem;
}

/* Order Item */
.order-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1rem;
    gap: 1rem;
}

/* Order Item Box */
.order-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem; 
    text-align: center;
    font-size: 2rem;
    font-weight: 400; 
    color: var(--black);
}

/* Order Item Name */
.order-item .name{
    font-weight: 500;
    color: var(--secondary-color);
}

/* Order Item Image */
.order-item img{
    height: 15rem;
    width: 15rem;
    background-color: #f7f7f7;
}

/*------------------------------ (06)-Shop (End) ------------------------------*/



/*------------------------------ (07)-Contact (Start) ------------------------------*/
.contact{
    padding: 2rem 0;
}

/* Contact Heading */
.contact h4{  
    font-size: 3.5rem;
    font-weight: 500;
    padding-bottom: 1rem;
    color: var(--black);
}

/* Contact Container */
.contact .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0rem 5%;
}

/*----- 01- Google Map -----*/
.contact iframe{
    width: 100%;
    height: 30rem;
    margin-bottom: 2rem;
} 

/*----- 02- Contact Info -----*/
.contact-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    -webkit-transform: translateX(5rem);
            transform: translateX(5rem);
    margin-left: -5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Contact Information Heading */
.contact-info h4{
    color: var(--white);
}

/* Contact info item */
.contact-info .info-item{
    padding: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
        align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

/* Contact info Icon */
.contact-info .info-item i{
    font-size: 2rem;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/* Contact info Details */
.contact-info .info-item .content p{
    color: var(--white);
    line-height: 1;
    text-transform: none;
    padding-bottom: 1rem;
}

/*----- 03- Contact Form -----*/
.contact-form{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
    background-color: var(--white);
    padding: 2rem;
    padding-left: 8rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Contact Form Button */
.contact-form button{
    margin-top: 1rem;
}

/* Contact form Alert Message */
.contact-form .alert{
    display: block;
    font-size: 2rem;
    color: var(--main-color);
    padding-top: 1rem;
}

element.style {
    max-width: 100%;
}
.logo img {
    width: 20rem;
    padding: 10%;
    MARGIN: 5%;

.btn01 {
    position: relative;
    display: inline-block;
    border: 0.2rem solid var(--main-color);
    font-family: 'Lato', sans-serif;
    pointer-events: auto;
    cursor: pointer;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    background: var(--main-color);
    color: var(--white);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition
Shorthand property combines four of the transition properties into a single property.
Learn more
Don't show
: all 0.3s ease;
}
/*------------------------------ (07)-Contact (End) ------------------------------*/