    /* 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- Upcoming Events
3- Players
4- Latest Result
5- Counter
6- Products
7- Awards
8- Blog
9- Sponsors
*/



/*------------------------------ (02)-About ------------------------------*/

/*--------------- PAGES ---------------*/
/*
1- About Us
2- Testimonials
3- Faqs
*/



/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Event-Sidebar
02- Event-item
03- Portfolio-Sidebar
04- portfolio-item
*/

/*--------------- PAGES ---------------*/
/*
1- Point Table
2- Upcoming Events
3- Single Event
4- portfolio
5- Single Portfolio
6- Login
7- Register
8- Reset Password 
*/



/*------------------------------ (04)-Team ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Team-Item 
*/

/*--------------- PAGES ---------------*/
/*
1- Team
2- Management
2- Players
2- Single Player
*/



/*------------------------------ (05)-Fixtures ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Fixture-Sidebar
02- Fixture-item  */

/*--------------- PAGES ---------------*/
/*
1- Fixtures
2- Single Fixture
*/



/*------------------------------ (06)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Sidebar
02- Blog-Item 
03- Pages-No
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Blog Details
*/



/*------------------------------ (07)-Shop ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Shop-Sidebar
02- Shop Header
03- Product-Item
04- Pages-No
05- Shop-Title
06- Cart-Summary
*/

/*--------------- PAGES ---------------*/
/*
1- Shop Grid 
2- Shop Standard
3- Product Details
4- Carts
5- Checkout
*/



/*------------------------------ (08)-Contact ------------------------------*/







/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/

/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&amp;display=swap');

/* Root Variables */
:root{
    --main-color: #DA1212;
    --secondary-color: #0D4C92; 
    --black: #000;
    --white: #fff;
    --grey: #666; 
    --border-radius: 1rem;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Global Styles */
*{
    font-family: 'Poppins', 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(.portfolio-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: var(--white);
    overflow-x: hidden;
}

/* HTML Styles */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Section Styles */
section{
    padding: 3rem 5%;
}

/* Scrollbar Styles */
::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    background: var(--main-color);
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

p{
    color: var(--grey); 
    font-size: 1.6rem;
    line-height: 1.6;
}

/*----- 1- Heading CSS -----*/
.heading{ 
    padding-bottom: 2rem;
    text-align: center;
}
  
/* Main Heading */
.heading h2{ 
    font-weight: 500;
    font-size: 4rem;  
    color: var(--secondary-color);
    text-transform: capitalize;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Heading Line Style */ 
.heading h2:after, 
.heading h2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 4px;
    content: "";
    right: 45px; 
    margin:auto;
    background-color: #ccc;
}

/* Heading Red Line Style */ 
.heading h2:before { 
    background-color: var(--main-color);
    left: 45px; 
    width: 90px;
}

/* Heading Title */ 
.linear-bg .heading h2{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
/* Button Styles */

.btn{
    display: inline-block;
    color: var(--white); 
    background: var(--main-color);
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 1px; 
    padding: 7px 8px;
    border: 1px solid #fff;  
    -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;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Button Styles, On Hover */
.btn:hover{
	background-color: var(--secondary-color);
	cursor: pointer;
}

/*----- 3- Logo Area CSS -----*/    
/* Logo Image */   
.logo img{
    height: 10rem;
    width: auto;
}

/*----- 4- Page Title CSS -----*/
.page-title{
    position: relative;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../images/PageTitle/PageTitle.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    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; 
}

/* Page Title Heading */
.page-title .title h2{
    color: var(--white);
    font-size: 5rem;
    font-weight: 600;
    padding-top: 8rem;
}

/* Link Section */
.page-title .link{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1.5rem 3rem;
    padding-left: 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;
    gap: 2rem;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Home Link */
.page-title .link a{
    font-size: 2.5rem;
    color: var(--white);
}

/* Home Link, On Hover */
.page-title .link a:hover{
    color: var(--black);
}

/* Arrow Icon */
.page-title .link i{
    font-size: 2.2rem;
    color: var(--white);
}

/* Current Page Title */
.page-title .link span{
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--white);
}

/*----- 5- Header Area CSS -----*/
.header{
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    z-index: 1000;
    -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;
}

/* Header-1 Styles */
.header .header-1{
    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;
    background-color: #171717;
    padding: 0.5rem 5%;
}

/* Header-1 Styles, On Active Header */
.header.active .header-1{
    display: none;
}

/* Header Contacts */
.header .header-contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    list-style-type: none;
}

/* Header Contact Link */
.header .header-contacts li a{
    height: 3rem;
    width: 3rem;
    font-size: 1.6rem;
    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;
}

/* Header Contact Link, On Hover */
.header .header-contacts li a:hover{
    color: var(--main-color);
}

/* Header-2 Styles */
.header .header-2{
    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;
    height: 7rem;
    padding: 0rem 5%;
    background: var(--main-color);
}

/* Header Logo */
.header .logo{
    height: 100%;
    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;
}

/* Navbar Styles */
.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 2.5rem;
}

/* Menu Button */
.header #menu-btn{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    display: none;
}

/* Menu Button, On Hover */
.header #menu-btn:hover{
    color: var(--black);
}

/* 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: 1.5rem;
}

/* Header Icon */
.header .icon-container .icon{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

/* Header Icon, On Hover */
.header .icon-container .icon:hover{
    color: var(--black);
}

/* Hide Mobile Menu */
.mobile-menu{
    display: none;
}

/* 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;
}

/* Navbar Button */
.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--white);
    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.7rem;
}

/* Navbar Button, On Hover */
.header .navbar .nav-btn:hover{
    color: var(--black);
}

/* Dropdown Content Styles */
.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--black);
    background-color: var(--white);
    padding: 0;
    width: 20rem;
    -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;
    -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-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
}

/* Header Dropdown Content Link */
.header .dropdown-content a{
    display: block;
    font-size: 1.6rem;
    color: var(--black);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    cursor: pointer;
}

/* Header Dropdown Content Link, On Hover */
.header .dropdown-content a:hover{
    color: var(--main-color);
    border-color: var(--main-color);
    border-left: 0.4rem solid var(--main-color);
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background: #000;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    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 Heading */
.footer-item h2{ 
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    padding-bottom: 2rem;
}

/* Footer paragraphs */
.footer-item p{
    color: var(--white); 
    font-size: 1.5rem;
}

/* 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;
    border-radius: 50%;
}

/* 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 Contact Info Text with "gmail" class */
.footer-item .gmail{
    text-transform: none;
}

/* Footer Item Info Paragraph */
.footer-item .info p{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Footer Item Info Link & Paragraph */
.footer-item .info a,
.footer-item .info p{ 
    font-size: 1.6rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

.footer-item .links p i{
    color: var(--main-color);
    font-size: 1rem;
}

/* Footer Links Pages Sections */
.footer-item .pages{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/* Footer Contact Info Icon */
.footer-item .connect i{
    font-size: 1.6rem;
    color: var(--white);
    height: 3rem;
    width: 3rem;
    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;
}

/* 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: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s; 
    transition: all 0.2s;
    z-index: 900;
    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-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Scroll Top Button, On Hover */
.scroll-top:hover{
    background: var(--secondary-color);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
/* Form Autofilled input fields */
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form 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 Styling */
.form{
    padding: 5rem;
    background: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 1rem auto;
    text-align: center;
    border: var(--border);
    border-left: 0.5rem solid var(--main-color);
}
  
/* Form Heading */
.form h3{ 
    font-size: 3rem;
    padding-bottom: 2rem;
    font-weight: 500;
    color: var(--main-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 container */
.form .input-box .box{
    width: 49%;
}
  
/* Form Input Field */
.form .box{
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(17, 70, 143, 0.1);
    font-size: 1.6rem;
    color: var(--grey);
    text-transform: none;
    margin: 0.7rem 0;
    border-left: 0.5rem solid var(--main-color);
}

/* Form Input Field placeholder */
.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}
.form .box::-moz-placeholder{
    text-transform: capitalize;
}
.form .box:-ms-input-placeholder{
    text-transform: capitalize;
}
.form .box::placeholder{
    text-transform: capitalize;
}

/* Focused Input Field */
.form .box:focus{
    border-color: var(--secondary-color);
}

/* Form Paragraph */
.form p{
    padding-top: 2rem;
    text-align: center;
    padding-bottom: 1rem;
}

/* Form Button */
.form .btn{
    width: 100%;
    overflow: hidden;
    margin: 1rem 0;
}

/* Form link */
.form .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

/* Form link, On Hover */
.form .link:hover{
    text-decoration: underline;
}

/*----- 9- Swiper Pagination CSS -----*/
/* Swiper pagination bullet */
.swiper-pagination-bullet{ 
    height: 1.5rem;
    width: 1.5rem;
    background: #999;
    border: var(--border);
    opacity: 0.7;
    border-radius: 0.2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Active swiper pagination bullet */
.swiper-pagination-bullet-active{
    width: 4rem;
    background: var(--main-color);
    opacity: 0.9;
}

/*----- 10- Sidebar Heading CSS -----*/
.sidebar-heading{
    margin-bottom: 1rem;
}

/* Sidebar Heading Title */
.sidebar-heading h2{
    word-spacing: 1px;  
    font-size: 2.5rem; 
    font-weight: 500;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.7rem 1rem;
    -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
} 

/*----- 11- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

/* sidebar container */
.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 22rem; 
        flex: 1 1 22rem;  
}

/* Sidebar item */
.sidebar .sidebar-item{
    margin-bottom: 2.5rem;
}

.sidebar .box-container{
    padding: 1rem 0;
}

/*-- 1- Search --*/
/* Search input box */
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem;
    overflow: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
}

/* Search Input Field */
.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
}

/* Focused Search Input Field */
.sidebar .search .input-box input:focus{
    border-color: var(--main-color);
}

/* Search button */
.sidebar .search .input-box label{
    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 label:hover{
    background-color: var(--main-color);
}

/*-- 2- Category --*/
.sidebar .category .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.1);
}

/* Category item */
.sidebar .category .item a{
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Category item icon */
.sidebar .category .item a i{
    font-size: 1.4rem;
    color: var(--main-color);
}

/* Category item icon, On Hover */
.sidebar .category .item a:hover{
    color: var(--main-color);
}

/*-- 3- Recent Post --*/
.sidebar .recent-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/*-- 4- Tags --*/
.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{
    color: var(--grey);
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
}

/* Individual Tag, On Hover */
.sidebar .tag-item:hover{
    background-color: var(--main-color);
    color: var(--white);
    cursor: pointer;
}

  
/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*--------------- SECTIONS ---------------*/

/*----- 1- Home-Slider -----*/
/* Home section */
.home{ 
    padding: 0;
    position: relative;
} 
  
/* Home slider */
.home-slider{ 
    position: relative; 
    overflow: hidden;
}
  
/* Home Navigation Buttons */
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--black);
    font-size: 1rem; 
    height: 5rem;
    width: 5rem;
    padding: 2rem;
}

/* Home Previous Navigation Button */
.home-slider .swiper-button-prev{
    left: 0;
}

/* Home Next Navigation Button */
.home-slider .swiper-button-next{
    right: 0;
}
  
/* Home Navigation Button Icon */
.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    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 Navigation Buttons, On Hover */
.home-slider .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover {
    background-color: var(--main-color);
}

/* Home Navigation Button Icon, On Hover */
.home-slider .swiper-button-next:hover::after,
.home-slider .swiper-button-prev:hover::after{
    color: var(--white);
}
  
/* Home Slide */
.home-item{
    height: 70rem;
}
  
/* 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-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}
  
/* Home Text Container */
.home-item .content .text{
    width: 80rem;
    padding-top: 10rem;
    text-align: center;
}
  
/* Home Slide Heading */
.home-item .content h3{
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}
  
/* Home Slide Paragraph */
.home-item .content p{
    font-weight: 400;
    color: var(--white);
    padding-bottom: 2rem;
}

/*----- 2- Upcoming Events -----*/
.home-upcoming-events{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../images/Background/Upcoming.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../images/Background/Upcoming.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Upcoming events Container */
.home-upcoming-events .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;
    margin: 2rem 0;
}

/* Upcoming event item */
.home-upcoming-events .upcoming-item{
    border: 0.2rem solid var(--white);
    text-align: center;
}

/* Upcoming event item Content */
.home-upcoming-events .upcoming-item .content{
    padding: 2rem 1rem;
}

/* Time information */
.home-upcoming-events .upcoming-item .time{
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--white);
}

/* Upcoming event Team Details */
.home-upcoming-events .upcoming-item .team-content{
    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;
    padding: 2rem 0;
}

/* Team Logo Section */
.home-upcoming-events .upcoming-item .team-logo{
    text-align: center;
}

/* Team Logo Image */
.home-upcoming-events .upcoming-item img{
    height: 10rem;
    width: 10rem;
    margin-bottom: 0.5rem;
}

/* Team Name */
.home-upcoming-events .upcoming-item h3{
    font-size: 1.8rem;
    text-align: center;
    color: var(--white);
}

/* Versus Icon */
.home-upcoming-events .upcoming-item h6{
    font-size: 6rem;
    font-weight: 600;
    color: var(--white);
}

/* Venue Information */
.home-upcoming-events .upcoming-item .venue{
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--white);
}

/* Upcoming Events Buttons */
.home-upcoming-events .upcoming-item .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Upcoming Events Button */
.home-upcoming-events .upcoming-item .btn{
    width: 100%;
    text-align: center;
}

/*----- 3- Players -----*/
/* Team Slider */ 
.team-slider{ 
    overflow: hidden;
    position: relative; 
    padding-bottom: 8rem;
}
  
/* Team Navigation Buttons */
.team-slider .swiper-button-next,
.team-slider .swiper-button-prev{
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1rem; 
    height: 5rem;
    width: 5rem;
    padding: 2rem;
    top: 90%;
}

/* Team Next Navigation Buttons */
.team-slider .swiper-button-next{
    right: 0;
}

/* Team Previous Navigation Buttons */
.team-slider .swiper-button-prev{
    left: auto;
    right: 6rem;
}
  
/* Team Navigation Button Icon */
.team-slider .swiper-button-next::after,
.team-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;
}
  
/* Team Navigation Buttons, On Hover */
.team-slider .swiper-button-next:hover,
.team-slider .swiper-button-prev:hover {
    background-color: var(--main-color);
}

/*----- 3- Latest Result -----*/
.home-latest-result{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/Background/Result.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/Background/Result.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Latest Result Container */
.home-latest-result .result-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(45rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
    gap: 2rem;
}

/* Latest Result Slider */
.latest-result{
    overflow: hidden;
    position: relative;
    padding-bottom: 6rem;
    padding-top: 2rem;
}

/* Latest Result Item */
.latest .result-item{
    text-align: center;
    padding: 3rem 4rem;
    border: 0.15rem solid var(--white);
    background-color: #111;
}

/* Latest Result Item Title */
.latest .result-item h6{
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
    position: relative;
}

/* Latest Result Item Title Underline */
.latest .result-item h6:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 6rem;
    height: 0.2rem;
    content: "";
    background-color: var(--white);
}

.latest .result-item h6:before {
    left: 50%; 
    margin-left: -3rem;
}

/* Latest Result Introduction Section */
.latest .result-item .intro{
    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;
    gap: 3rem;
    margin: 2rem 0;
}

/* Team Result */
.latest .result-item .team-result{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

/* Team Name Section */
.latest .result-item .name{
    text-align: center;
}

/* Team Logo Image */
.latest .result-item .name img{
    height: 10rem;
    width: 10rem;
    margin-bottom: 0.5rem;
}

/* Team Name */
.latest .result-item .name h3{
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
}

/* Team Result Section */
.latest .result-item .result{
    text-align: center;
}

/* Team Result Score */
.latest .result-item .result h5{
    font-size: 2rem;
    color: var(--white);
}

/* Team Result Overs Played */
.latest .result-item .result p{
    color: var(--white);
}

/* Team Result Fixture Content */
.latest .result-item .fixture-content{
    text-align: center;
    font-size: 1.8rem;
    color: var(--white);
}

.home-point .box-container{
    padding: 2rem 0;
}

/*----- 5- Counter -----*/
/* Statistic Section */
.counting{
    padding: 4rem 5%;
    margin: 1rem 0;
    min-height: 15rem;  
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(22rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../images/Background/Counter.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Statistic Box */
.counting .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Statistic Box Icon */
.counting .box i{
    background-color: var(--main-color);
    color: var(--white);
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    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;  
    outline: 0.2rem solid var(--white);
    outline-offset: -1rem;
    font-size: 4rem;
}

/* Statistic Box Count */
.counting .box .count{
    font-size: 4rem;
    font-weight: 500;
    color: var(--white);
}

/* Statistic Box Title */
.counting .box h3{
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
}

/*----- 6- Products -----*/
.products .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;
}
    
/*----- 7- Blog -----*/
.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;
}

/*----- 8- Awards -----*/
.awards{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../images/Background/Awards.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("../images/Background/Awards.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Award Slider */
.award-slider{
    overflow: hidden;
    padding-top: 2rem;
}

/* Award Slide */
.award-item{
    text-align: center;
}

/* Award Image */
.award-item img{
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

/* Award Title */
.award-item h4{
    color: var(--white);
    font-size: 2.5rem;
}

/*----- 8- Testimonials -----*/
.home-testimonial{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/Background/Testimonials.jpg");
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/*----- 9- Sponsors -----*/
.sponsors .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;
    text-align: center;
}

/* Sponsor Item */
.sponsor-item{
    height: 15rem;
    padding: 2rem;
}

/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 4rem 0;
}

/*--------------- PAGES ---------------*/

/*----- 1- About Us -----*/
.about .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: 2rem;
}

/* About Images */
.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
    margin-bottom: 5rem;
}

/* About Image-1 */
.about .sub-image1{
    height: 40rem;
    width: 80%;
}

.about .sub-image1 img{
    width: 80%;
}

/* About Image-2 */
.about .sub-image2{
    height: 25rem;
    width: 25rem;
    -webkit-transform: translate(-15rem, 5rem);
            transform: translate(-15rem, 5rem);
    margin-right: -15rem;
    border: 0.5rem solid var(--white);
}

/* About Content */
.about .box-container .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

/* About Heading */
.about .box-container .content h3{
    font-size: 4rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

/* About Heading Line */
.about .content .line{
    height: 0.2rem;
    width: 50%;
    background-color: var(--main-color);
    margin: 2rem 0;
}

/* About Description */
.about .box-container .content p{
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Contact Button in About Section */
.about .box-container .content .btn{
    margin-top: 2rem;
}

/*----- 2- Testimonials -----*/
.testimonial-slider{
    overflow: hidden;
    position: relative;
    padding-bottom: 6rem;
    padding-top: 8rem;
}
    
/* Testimonial Slide */
.testi-item{
    padding-top: 8rem;
    border: var(--border);
    position: relative;
    text-align: center;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Testimonial image */ 
.testi-item img{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* quote icon */
.testi-item i{
    font-size: 4rem;
    color: var(--main-color);
}

/* Testimonial */ 
.testi-item p{
    padding: 2.5rem;
}

/* Testimonial text Container */ 
.testi-item .text{
    background-color: rgba(17, 70, 143, 0.2);
    padding: 2rem 0;
}

/* Testimonial author designation */
.testi-item h6{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-color);
}

/* Testimonial author name */ 
.testi-item h4{
    font-size: 2rem;
    color: var(--secondary-color);
}

/*----- 3- Faqs -----*/
.faq{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

/* FAQ Accordions */
.faq .accordion-container-1,
.faq .accordion-container-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/* FAQ Accordion */
.faq .accordion{
    margin-bottom: 1.5rem;
} 
 
/* Last FAQ Accordion */ 
.faq .accordion:last-child{
    margin-bottom: 0rem;
}  

/* Faq Accordion heading */
.faq .accordion .accordion-heading{
    padding: 2rem;
    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;
    gap: 1rem;
    border: var(--border);
    color: var(--main-color); 
    cursor: pointer;
    -webkit-box-shadow: var(--box-shadow); 
            box-shadow: var(--box-shadow);
}

/* Active Faq Accordion heading */
.faq .accordion.active .accordion-heading{
    color: var(--white);
    background-color: var(--main-color);
}

/* Faq Accordion heading Title */
.faq .accordion .accordion-heading h3{
    font-size: 2rem;
}

/* Faq Accordion Toggle Icon */
.faq .accordion .accordion-heading i{
    font-size: 2rem;
    color: var(--main-color); 
}

/* Active Faq Accordion Toggle Icon */
.faq .accordion.active .accordion-heading i{
    color: var(--white);
}

/* Active Faq accordion content */
.faq .accordion.active .accordion-content{
    display: block;
}

/* Faq accordion content */
.faq .accordion-content{
    padding: 1.5rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    background-color: rgba(0, 0, 0, 0.05);
    display: none;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (03)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Event-Sidebar  -----*/
.event-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem; 
        flex: 1 1 20rem;  
}

/* Individual event sidebar items */
.event-sidebar .item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

/* Event sidebar item Title */
.event-sidebar .item .title{
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--black);
    padding: 1rem;
}

/* Event sidebar item Link */
.event-sidebar .item a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-bottom: 0.2rem solid var(--white);
    border-left: 0.5rem solid var(--main-color);
    background-color: var(--secondary-color);
}

/* Event sidebar item Link, On Hover */
.event-sidebar .item .content a:hover{
    background-color: var(--main-color);
}

/* Event sidebar item Link Icon */
.event-sidebar .item .content a i{
    font-size: 1rem;
    color: var(--white);
}

/* Event sidebar item Link Title */
.event-sidebar .item .content a h3{
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 0.8;
    text-transform: none;
}

/*----- 02- Event-item  -----*/
/* Upcoming event item */
.up-event-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Upcoming event item, On Hover */
.up-event-item:hover{
    background-color: rgba(0, 0, 0, 0.05);
}

/* Upcoming event Content */
.up-event-item .fixture-event{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70rem;
        flex: 1 1 70rem; 
    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;
    gap: 1rem;
}

/* Team logo section */
.up-event-item .team-logo{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
}

/* Team logo image */
.up-event-item .team-logo img{
    height: 10rem;
    width: 10rem;
}

/* Team name */
.up-event-item .team-logo h3{
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Upcoming event Text */
.up-event-item .fixture-content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    text-align: center;
}

/* Time information */
.up-event-item .time{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Venue information */
.up-event-item .venue{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Action section */
.up-event-item .action{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 5rem;
        flex: 1 1 5rem;
    height: 100%;
    border-left: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

/* Action link */
.up-event-item .action a{
    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(--secondary-color);
}

/* Action link, On Hover */
.up-event-item .action a:hover{
    color: var(--main-color);
}

/*----- 03- Project-Sidebar -----*/
/* Portfolio sidebar container */
.portfolio-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
}

/* Portfolio sidebar Item */
.portfolio-sidebar h3{
    font-size: 1.6rem;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: var(--white); 
    padding: 1.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    border-left: 0.5rem solid var(--main-color);
    border-bottom: 0.2rem solid var(--white);
}

/* Portfolio sidebar Item, On Hover */
.portfolio-sidebar h3:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

/* Portfolio sidebar Item Icon */
.portfolio-sidebar h3 i{
    color: var(--white);
    font-size: 2rem;
}

/*----- 04- portfolio-item  -----*/
.portfolio-item{
    width: 33.3%;
    padding: 0.8rem;
}

.portfolio-content{
    height: 35rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Text overlay on portfolio item */
.portfolio-content .text{
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 2rem;
    background-color: rgba(218, 18, 18, 0.8);
    -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;
}

/* Show text overlay on hover */
.portfolio-content:hover .text{
    bottom: 0;
}

/* Portfolio Item Category */
.portfolio-content .text p{
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Separator line in Portfolio Item Category */
.portfolio-content .text span{ 
    display: inline-block;
    height: 0.2rem;
    width: 2rem;
    background-color: var(--white);
    margin: 2rem 0;
}

/* Portfolio Item Title */
.portfolio-content .text h3{
    font-size: 2.5rem;
    color: var(--white);
}

/* Portfolio Item Title, On Hover */
.portfolio-content .text h3:hover{
    color: var(--black);
}

/* Portfolio Item Buttons */
.portfolio-content .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

/* Portfolio item button icon */
.portfolio-content a i{
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    scale: 0;
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--main-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;
}

/* Portfolio item button icon, On Hover */
.portfolio-content a i:hover{
    background-color: var(--secondary-color);
}

/* Show button icon, on Item hover */
.portfolio-content:hover a i{
    scale: 1;
}

/*--------------- PAGES ---------------*/

/*----- 1- Point Table -----*/
.point-table .box-container{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Table title styling */
.point-table .table-title{
    background-color: var(--black);
    border-bottom: 0.4rem solid var(--main-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;
    gap: 0.5rem;
}

/* Table name column header */
.point-table .table-title h3.name{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

/* Table column headers */
.point-table .table-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 5rem;
        flex: 1 1 5rem;
    font-size: 1.8rem;
    text-align: center;
}

/* Points table Content */
.point-table .points{
    background-color: var(--white);
    padding: 0rem 0.5rem;
}

/* Point item styling */
.point-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: 1rem 0;
    gap: 0.5rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Box column */
.point-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 5rem;
        flex: 1 1 5rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}

/* Name column */
.point-item .name{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

/* Team logo */
.point-item .name img{
    height: 3.5rem;
    width: 3.5rem;
}

/* Team name */
.point-item .name span{ 
    color: var(--black);
    font-weight: 500;
    font-size: 1.8rem;
}

/*----- 2- Upcoming Events -----*/
.upcoming-events .tournament-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/*----- 3- Single Event -----*/
.event-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

/* Event information container */
.event-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70rem;
        flex: 1 1 70rem;
}

/* Event introduction section */
.event-info .event-intro{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Event/Event.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Event/Event.jpg");
    background-position: center;
    background-size: cover;
    padding: 2rem;
    margin-bottom: 3rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Event intro content */
.event-info .event-intro .intro{
    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: 3rem;
    padding: 2rem;
    margin: 2rem 0;
}

/* Team logo Section */
.event-info .event-intro .team-logo{
    text-align: center;
}

/* Team logo image */
.event-info .event-intro .team-logo img{
    height: 10rem;
    width: 10rem;
    margin-bottom: 0.5rem;
}

/* Team logo name */
.event-info .event-intro .team-logo h3{
    font-size: 2.5rem;
    color: var(--white);
}

/* Versus Icon */
.event-info .event-intro .intro h5{
    font-size: 6rem;
    font-weight: 600;
    color: var(--white);
}

/* Event content section */
.event-info .event-content{
    text-align: center;
}

/* Event time */
.event-info .time{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

/* Event venue */
.event-info .venue{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

/* Team squad container */
.team-squad{
    margin-bottom: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
}

/* Team squad title */
.team-squad .title{
    background-color: var(--black);
    color: var(--white);
    border-bottom: 0.4rem solid var(--main-color);
    padding: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

/* Team squad sub-heading */
.team-squad .sub-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    padding: 1rem;
}

/* Team squad sub-heading headers */
.team-squad .sub-heading h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}

/* Team squad sub-heading first header */
.team-squad .sub-heading h3:first-child{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 5rem;
        flex: 1 1 5rem;
}

/* Squad content */
.team-squad .squad-content{
    padding: 1rem;
}

/* Squad item container */
.team-squad .squad-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Last squad item without border */
.team-squad .squad-item:last-child{
    border-bottom: none;
}

/* Squad item text */
.team-squad .squad-item h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
}

/* Squad item Number text */
.team-squad .squad-item h3:first-child{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 5rem; 
        flex: 1 1 5rem; 
    font-weight: 600;
}

/* Squad item description */
.team-squad .squad-item p{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

/*----- 4- portfolio -----*/
/* Portfolio controls container */
.portfolio .controls{
    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: 1.5rem;
}

/* Portfolio control button */
.portfolio .controls .button{
    padding: 0.7rem 1rem;
    font-size: 2rem;
    color: var(--grey);
    font-weight: 600;
}

/* Portfolio control button, Hover and active styles */
.portfolio .controls .button:hover,
.portfolio .controls .button.active{
    cursor: pointer;
    color: var(--main-color);
}

/* Portfolio box container */
.portfolio .box-container{
    margin: 2rem 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(33rem, 1fr));
    grid-gap: 1rem;
}

/*----- 5- Single Portfolio -----*/
.portfolio-details{
    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: 4rem;
} 

/* Portfolio info section */
.portfolio-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70rem;
        flex: 1 1 70rem;
}

/* Portfolio intro section */
.portfolio-info .intro{
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Portfolio image */
.portfolio-info .image{
    height: 35rem;
}

/* Portfolio details overlay */
.portfolio-info .details{
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 2rem;
    padding-left: 10rem;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Portfolio detail item */
.portfolio-info .detail-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Portfolio detail item heading */
.portfolio-info .detail-item h3{
    font-size: 2rem;
    color: var(--white);
}

/* Portfolio detail item description */
.portfolio-info .detail-item p{
    color: var(--white);
}

/* Portfolio content section */
.portfolio-info .content{
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: var(--border);
    margin: 2rem 0;
}

/* Portfolio main heading */
.portfolio-info .main-heading{
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

/* Portfolio content paragraph */
.portfolio-info .content p{
    padding-bottom: 1rem;
}

/* Portfolio gallery section */
.portfolio-info .portfolio-gallery{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 0.5rem;
}

/* Portfolio gallery image */
.portfolio-info .portfolio-gallery img{
    height: 20rem;
}

/*----- 6- Login -----*/
/* Login Form Width */
.login form{
    max-width: 45rem;
}

/* Login Form Information Section */
.login form .info{
    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: 0.5rem 0;
}

/* Remember Me Checkbox Section */
.login form .remember {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
 
/* Remember Me label */
.login form .remember label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
/*----- 7- Register -----*/
/* Register Form Width */
.register form{
    max-width: 45rem;
}
  
/* Register Terms container */
.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 Terms label */
.register form .terms label{
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}
  
/* Register Terms label SubText */
.register form .terms label span{
    color: var(--main-color);
}

/*----- 8- Reset Password -----*/
/* Reset Password Form Width */
.reset-pwd form{
    max-width: 45rem;
}


/*------------------------------ (03)-Pages (End) ------------------------------*/



/*------------------------------ (04)-Team (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Team-Item  -----*/
/* Individual Team member */
.team-item{
    overflow: hidden;
    position: relative;
    border-bottom: 0.4rem solid var(--main-color);
}

/* Team member Image */
.team-item .image{
    overflow: hidden;
    height: 35rem;
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Team Member Social Media Accounts */
.team-item .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; 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    padding-bottom: 4rem;
    position: absolute;
    top: 0;
    right: -100%;
    background-color: var(--main-color);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
    -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;
    z-index: 2;
}

.team-item:hover .icon-container{
    right: 0;
}

/* Team Member Social Media Link */
.team-item .icon-container a{
    height: 3.5rem;
    width: 3.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: 1.7rem;
    color: var(--white);
}

/* Team Member Social Media Link, On Hover */
.team-item .icon-container a:hover{
    color: var(--black);
}

/* Team member Content Section */
.team-item .content{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* Team member name */
.team-item .content h2{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
}

/* Team member name, On Hover */
.team-item .content a h2:hover{
    color: var(--main-color);
}

/* Team member Role */
.team-item .content h5{
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
}

/*--------------- PAGES ---------------*/

/*----- 1- Team -----*/
.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 .management{
    margin-bottom: 2rem;
}

/*----- 2- Management -----*/
.management .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;
}

/*----- 2- Players -----*/
.players .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- Single Player -----*/
/* Player details section */
.team-details .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

/* Player introduction section */
.team-details .intro{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;
}

/* Player image */
.team-details .image{  
    height: 50rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Player Details content */
.team-details .content{
    padding-top: 2rem;
}

/* Player Name */
.team-details .content h3{
    color: var(--black);
    font-size: 2rem;
    font-weight: 600;
}

/* Player Role */
.team-details .content p{
    font-weight: 500;
}

/* Player Social Media Accounts */
.team-details .content .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;
}

/* Player Social Media Link */
.team-details .content .icon-container a{
    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.6rem;
    color: var(--main-color);
}

/* Player Social Media Link, On Hover */
.team-details .content .icon-container a:hover{
    color: var(--black);
}

/* Player information section */
.team-details .information{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem; 
        flex: 1 1 50rem;
}

/* Player information item */
.team-details .info-item{
    padding-bottom: 1rem;
}

/* Player information item heading */
.team-details .info-item h2{
    font-size: 3rem;
    color: var(--black);
    font-weight: 500;
}

/* Player information item list */
.team-details .info-item ul{
    list-style-type: none;
}

/* Player information item list item */
.team-details .info-item ul li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 0.5rem;
}

/* Player information list item heading */
.team-details .info-item ul li h5{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem; 
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-color);
}

/* Player information list item text */
.team-details .info-item ul li span{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
    font-size: 1.6rem;
    color: var(--grey);
}

/* Player Biography section */
.team-details .team-about{
    padding-top: 2rem;
}

/* Player Biography heading */
.team-details h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--black);
}

/* Player Biography paragraph */
.team-details .team-about p{
    padding-top: 1rem;
}

/*------------------------------ (04)-Team (End) ------------------------------*/



/*------------------------------ (05)-Fixtures (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Fixture-Sidebar  -----*/
.fixture-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem; 
        flex: 1 1 20rem;  
}

/* Individual Fixture sidebar items */
.fixture-sidebar-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

/* Fixture sidebar item Title */
.fixture-sidebar-item .title{
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--black);
    padding: 1rem;
}

/* Fixture sidebar item Link */
.fixture-sidebar-item a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-bottom: 0.2rem solid var(--white);
    border-left: 0.5rem solid var(--main-color);
    background-color: var(--secondary-color);
}

/* Fixture sidebar item Link, On Hover */
.fixture-sidebar-item .content a:hover{
    background-color: var(--main-color);
}

/* Fixture sidebar item Link Icon */
.fixture-sidebar-item .content a i{
    font-size: 1rem;
    color: var(--white);
}

/* Fixture sidebar item Link Title */
.fixture-sidebar-item .content a h3{
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 0.8;
    text-transform: none;
}

/*----- 02- Fixture-item  -----*/
/* Fixture item */
.fixture-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: 1rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Fixture item, On Hover */
.fixture-item:hover{
    background-color: rgba(0, 0, 0, 0.05);
}

/* Team logo section */
.fixture-item .team-logo{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem; 
        flex: 1 1 20rem;
    text-align: center;
}

/* Team logo image */
.fixture-item .team-logo img{
    height: 10rem;
    width: 10rem;
}

/* Team name */
.fixture-item .team-logo h3{
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Fixture Text */
.fixture-item .fixture-content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    text-align: center;
}

/* Time information */
.fixture-item .fixture-content .time{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Venue information */
.fixture-item .fixture-content .venue{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Result information */
.fixture-item .fixture-content .result{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
}

/*--------------- PAGES ---------------*/

/*----- 1- Fixtures -----*/
.fixtures .tournament-item{
    margin-bottom: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.fixtures .tournament-item:last-child{
    margin-bottom: 0;
}

.fixture-title{
    background-color: var(--black);
    border-bottom: 0.5rem solid var(--main-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;
}

.fixture-title h3{
    font-size: 2.2rem;
}

/*----- 2- Single Fixture -----*/
.fixture-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

/* Event information container */
.fixture-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70rem;
        flex: 1 1 70rem;
}

/* Event introduction section */
.fixture-info .fixture-intro{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Fixture/Fixture.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Fixture/Fixture.jpg");
    background-position: center;
    background-size: cover;
    padding: 2rem;
    margin-bottom: 3rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Event intro content */
.fixture-info .fixture-intro .intro{
    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;
    gap: 3rem;
    margin: 2rem;
}

/* Team Result Section */
.fixture-info .team-result{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

/* Team logo Container */
.fixture-info .team-result .name{
    text-align: center;
}

/* Team logo Image */
.fixture-info .team-result .name img{
    height: 10rem;
    width: 10rem;
    margin-bottom: 0.5rem;
}

/* Team Name */
.fixture-info .team-result .name h3{
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
}

/* Team Name */
.fixture-info .team-result .result{
    text-align: center;
}

/* Innings Score */
.fixture-info .team-result .result h5{
    font-size: 2rem;
    color: var(--white);
}

/* Innings Overs Played */
.fixture-info .team-result .result p{
    color: var(--white);
}

/* Fixture Content Section */
.fixture-info .fixture-content{
    text-align: center;
}

/* Fixture time */
.fixture-info .time{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

/* Fixture venue */
.fixture-info .venue{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

/* Fixture result */
.fixture-info .result{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

/* Team innings section */
.team-innings{
    margin-bottom: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.team-innings:last-child{
    margin-bottom: 0;
}

/* Team innings title */
.team-innings .title{
    background-color: var(--black);
    color: var(--white);
    border-bottom: 0.4rem solid var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Team innings title span */
.team-innings .title h3 span{
    font-size: 1.6rem;
    font-weight: 400;
}

/* Team innings sub-heading */
.team-innings .sub-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    padding: 1rem;
}

/* Team innings sub-heading Main-Header */
.team-innings .sub-heading h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
}

/* Team innings sub-heading Info-Header */
.team-innings .info-heading{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

/* Team innings sub-heading Info-Header Text */
.team-innings .info-heading h6{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

/* Team innings Sub-Item */
.team-innings .innings-item .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.team-innings .innings-item .item:last-child{
    border-bottom: none;
}

/* Team innings Sub-Item Intro Section */
.team-innings .intro{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem; 
}

.team-innings .item h3{
    font-size: 1.6rem;
    color: var(--black);
}

.team-innings .item h6{
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
}

/* Team innings Sub-Item Details Section */
.team-innings .details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

.team-innings .details ul{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.team-innings .details ul li{
    font-size: 1.4rem;
    color: var(--grey);
}

/* Team innings Item Content */
.team-innings .content{
    padding: 1rem;
}

/* Team innings extras */
.team-innings .extras{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Team innings extras heading */
.team-innings .extras h3{
    font-size: 1.6rem;
    color: var(--black);
    padding-right: 2rem;
}

/* Team innings extras text */
.team-innings .extras p{
    font-size: 1.4rem;
}

/* Team innings wickets fall */
.team-innings .wickets-fall .content{
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

/* Team innings wickets fall Item */
.team-innings .wickets-fall h4{
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
}

/* Team innings wickets fall Item Sub-Text */
.team-innings .wickets-fall h4 span{
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--grey);
}

/* Match details section */
.match-details{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Match details title */
.match-details .title{
    background-color: var(--black);
    color: var(--white);
    border-bottom: 0.4rem solid var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Match details content */
.match-details .content{
    padding: 1rem;
}

/* Match details item */
.match-details .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Match details Last item */
.match-details .item:last-child{
    border: none;
}

/* Match details item heading */
.match-details .item h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
}

/* Match details item text */
.match-details .item p{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem; 
    font-size: 1.4rem;
}

/*------------------------------ (05)-Fixtures (End) ------------------------------*/



/*------------------------------ (06)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Sidebar -----*/

/*-- Recent Post --*/
/* Recent Post Image */
.blog-sidebar .recent-item img{
    height: 8rem;
    width: 12rem;
}

/* Recent Post Name Link */
.blog-sidebar .recent-item .content a{
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Recent Post Name Link, On Hover */
.blog-sidebar .recent-item .content a:hover{
    color: var(--main-color);
}

/* Recent Post Date */
.blog-sidebar .recent-item .content h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: var(--grey);
}

/* Recent Post Date Icon */
.blog-sidebar .recent-item .content h3 i{
    color: var(--main-color);
}

/* Recent Post Date Text */
.blog-sidebar .recent-item .content h3 span{
    font-weight: 400;
}

/*----- 02- Blog-Item -----*/
.blog-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
    position: relative;
}

/* Blog Image */
.blog-item .image{
    height: 25rem;
}

/* Blog Date */
.blog-item .date{
    position: absolute;
    top: 0;
    right: 5%;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    width: 7rem;
    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: 1.5rem;
}

/* Blog Content */
.blog-item .content{
    padding: 2rem;
}

/* Blog Category */
.blog-item .category{
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

/* Blog Main Heading */
.blog-item .content .main-heading{
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--black);
    line-height: 1.4;
    padding-bottom: 0.5rem;
}

/* Blog Main Heading, On Hover */
.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

/* Blog Details */
.blog-item .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Blog Details Item */
.blog-item .details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: var(--grey);
}

/* Blog Details Item Icon */
.blog-item .details h3 i{
    color: var(--main-color);
}

/* Blog Details Item Text */
.blog-item .details h3 span{
    font-weight: 400;
}

/*--------------- PAGES ---------------*/
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 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: 4rem;
}

/* 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 Container */
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
}

/* 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 Details -----*/
/*
1- Blog Info
2- Comments
3- Leave A Reply
*/

.blog-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

/*-- 1- Blog Info --*/ 
/* Blog Image */
.blog-info .image{ 
    height: 40rem; 
    position: relative;
}

/* Blog Published date */
.blog-info .date{
    position: absolute;
    top: 0;
    right: 5%;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    width: 7rem;
    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: 1.5rem;
}
  
/* Blog Content */
.blog-info .content{
    padding: 2rem 0;   
}
  
/* Blog Details Section */
.blog-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

/* Blog Category */
.blog-info .details .category{
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.5rem 1rem;
}

/* Blog Detail Item */
.blog-info .details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    color: var(--grey);
}

/* Blog Detail Icon */
.blog-info .details h3 i{
    color: var(--main-color);
}

/* Blog Detail Text */
.blog-info .details h3 span{
    font-weight: 400;
}
  
/* Blog Main Heading */
.blog-info .content .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding-bottom: 1.5rem;
}
  
/* Blog Paragraph */
.blog-info p{
    padding-bottom: 1.5rem;
}
  
/* Blog Important Note */
.blog-info .important{
    padding: 2rem 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
    line-height: 1.8;
    border-left: 0.2rem solid var(--main-color);
    margin-bottom: 2rem;
    margin-left: 1rem;
    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: 3rem;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Blog Important Quote Icon */
.blog-info .important i{
    font-size: 4rem;
    color: var(--main-color);
}

/* Blog Points Heading */
.blog-info .blog-points h4{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1.5rem;
}

/* Blog Points List */
.blog-info .blog-points ul{
    list-style-type: none;
}

/* Blog Points List Item */
.blog-info .blog-points ul li{
    font-size: 1.6rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}

/* Blog Points List Item Icon */
.blog-info .blog-points ul li i{
    font-size: 1rem;
    color: var(--main-color);
}

/* Blog Gallery */
.blog-info .blog-gallery{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(22rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 0.5rem;
    margin: 2rem 0;
}
  
/* Blog End Details */
.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;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
  
/* Blog Tags and Share Container */
.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: 0.7rem;
}
  
/* Blog Share Title */
.blog-info .share h3{
    color: var(--black);
    font-size: 1.6rem;
    padding-right: 1rem;
}
  
/* Blog Tags Link */
.blog-info .tags span{
    color: var(--grey);
    font-size: 1.4rem;
    padding: 0.7rem 1.2rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Blog Tags Link, On Hover */
.blog-info .tags span:hover{
    color: var(--white);
    background-color: var(--main-color);
}
  
/* Blog Share Icon */
.blog-info .share i{
    height: 3rem;
    width: 3rem;
    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;
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.4rem;
}
  
/* Blog Share Icon, On Hover */
.blog-info .share i:hover{
    background-color: var(--secondary-color);
    cursor: pointer;
}
   
/*-- 2- Comments --*/
.blog-details .comments{
    margin: 2rem 0;
} 

/* All Comments section Heading */
.blog-details .comments h4{  
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 2rem;
} 

/* Comment Item Container */
.blog-details .comments .item{
    padding-bottom: 2rem;
}

/* Each Comment */
.blog-details .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-bottom: 1rem;
}

/* Comment image */
.blog-details .comment .image{
    height: 12rem;
    width: 12rem;
}

.blog-details .comment .image img{
    object-fit: contain;
}

/* Comment Content */
.blog-details .comment .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

/* Comment Introduction Section */
.blog-details .comment .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 */
.blog-details .comment .content .intro h3{
    font-size: 1.8rem;
    line-height: 1;
    color: var(--black);
    border-right: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding-right: 1rem;
}

/* Comment Date */
.blog-details .comment .content .intro h6{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--main-color);
}

/* Comment Text */
.blog-details .comment .content .text{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
    padding-bottom: 1rem;
}

/* Comment Action Button */
.blog-details .comments .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 */
.blog-details .comments .icon-item i{
    color: var(--main-color);
    font-size: 1.5rem;
}

/* Comment Action Button Text */
.blog-details .comments .icon-item span{
    color: var(--main-color);
    font-size: 1.6rem;
}

/* Comment Action Button Icon & Text, On Button Hover */
.blog-details .icon-item:hover i,
.blog-details .icon-item:hover span{
    cursor: pointer;
    color: var(--secondary-color);
}

/* Reply Comment */
.blog-details .comment.reply{
    margin-left: 14rem;
}

/*-- 3- Leave A Reply --*/
.leave-reply{
    width: 100%;
} 

/* Leave Reply Form */
.leave-reply .form{
    box-shadow: none;
}

/* Leave Reply Form Comment */
.leave-reply form textarea{
    resize: none;
    height: 20rem;
}


/*------------------------------ (06)-Blog (End) ------------------------------*/



/*------------------------------ (07)-Shop (Start) ------------------------------*/
.shop{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
}

/*--------------- COMPONENTS ---------------*/

/*----- 01- Shop-Sidebar -----*/
  
/*-- 1- Filter --*/
/* Filter container */
.filter .box-container{
    padding-top: 4rem;
}

/* Filter slider */
.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

/* Slider progress */
.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    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-radius: var(--border-radius);
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
}

/* 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;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
            appearance: textfield;
    color: var(--black);
    background-color: transparent;
}

/* 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;
}

/*-- 2- Popular Products --*/
/* Popular Product Image */
.shop-sidebar .recent-item img{
    height: 10rem;
    width: 10rem;
    background-color: var(--grey);
}

/* Popular Product Rating */
.shop-sidebar .recent-item .rating{
    color: var(--main-color);
    font-size: 1.6rem;
}

/* Popular Product name */
.shop-sidebar .recent-item .content h3{
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Popular Product name, On Hover */
.shop-sidebar .recent-item .content h3:hover{
    color: var(--main-color);
}

/* Popular Product price */
.shop-sidebar .recent-item .content .price p{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--main-color);
}

/* Popular Product Discounted price */
.shop-sidebar .recent-item .content span{
    font-size: 1.3rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--grey);
    padding-left: 0.2rem;
}

/*----- 02- Shop Header -----*/
.shop .intro{
    margin-bottom: 2rem;
    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;
}

/* Styles button links */
.shop .intro .styles a{
    font-size: 2rem;
    margin: 0rem 0.5rem;
    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{
    overflow: hidden;
    -webkit-transition: all 1s ease;  
    -moz-transition: all 1s ease; 
    -o-transition: all 1s ease;  
    transition: all 1s ease; 
} 
  
/* Cart Page Link */
.product-item .cart{
    position: absolute;
    top: 1rem;
    left: -100%;
    height: 4rem;
    width: 4rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--white);
    background-color: var(--main-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;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
            clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

/* Cart Page Link, On Hover */
.product-item .cart:hover{
    background-color: var(--secondary-color);
}

/* Show Cart Page Link, When product item is hovered */
.product-item:hover .cart{
    left: 1rem;
}

/* Product Image */
.product-item .image{
    position: relative;
}

.product-item .image img{
    height: 25rem;
    border: var(--border);
}

/* Product Content */
.product-item .content{
    padding: 10px 0;
    text-align: center;
    background: #FFA300;
}

/* Product Rating */
.product-item .rating{
    color: var(--main-color);
    font-size: 2rem;
}

/* Product name */
.product-item h3{
    font-size: 2rem;
    font-weight: 500;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Product name, On Hover */
.product-item h3:hover{
    color: var(--main-color);
}

/* Product price */
.product-item .price p{
    font-size: 1.8rem;
    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;
}

/*----- 04- 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: 2rem 0;
}

/* page number buttons */
.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* 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;
    margin: 0rem 0.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;
}

/*----- 05- Shop-Title -----*/
.shoplist-title{
    background-color: var(--black);
    border-bottom: 0.4rem solid var(--main-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 10rem;
        flex: 1 1 10rem;
    font-size: 1.8rem;
    text-align: center;
}

/* First title */
.shoplist-title h3.product-heading{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
}

/*----- 06- Cart-Summary -----*/
.cart-summary{
    background-color: var(--white);
}

/* 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: 1rem 0;
} 

/* Summary item Box */
.summary-item .box{
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
    padding: 0.5rem 1rem; 
}

/* Summary Value */
.summary-item .value{
    font-weight: 500;
    color: var(--secondary-color);
}

/*--------------- PAGES ---------------*/
.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
.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: 1rem;
}

/* Product Container (Grid) */
.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
}

/*----- 2- Shop Standard -----*/
/* Product List Card */
.shop .product-container.list .product-item{
    width: 100%;
    text-align: left;
    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{
    text-align: left;
    padding: 1.5rem;
}

/* Product List Paragraph */
.shop .product-container.list .product-item .content > p{
    padding: 1rem 0;
}


/*----- 3- Product Details -----*/
/*-- Product Descriptions --*/
.product-details .product-des{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Product Descriptions Container */
.product-details .product-des .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: 5rem;
    background-color: var(--white);
    margin-bottom: 2rem;
}

/*-- Product Image --*/
.product-details .product-des .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    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;
}

.product-details .product-des .image-container{
    width: 50rem;
}

/*-- Product Main Image --*/
.product-details .product-des .image-container .main{
    width: 100%;
    height: 40rem;
}

/* Product Image Thumbnails */
.product-details .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.5rem;
    margin: 0.5rem 0;
}

/* Product Image Thumbnails Image */
.product-details .product-des .image .change-btns img{
    cursor: pointer;
}

/* Product Image Thumbnails Image, Hover & Active Effect */
.product-details .product-des .image .change-btns img:hover,
.product-details .product-des .image .change-btns img.active{
    border: 0.4rem solid var(--main-color);
}

/* Product Content */
.product-details .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-details .product-des .content h3{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Product Price */
.product-details .product-des .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Product Discounted Price */
.product-details .product-des .content .price span{
    color: #666;
    font-weight: lighter;
    text-decoration: line-through;
}

/* Product Introduction Section */
.product-details .product-des .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1rem;
}

/* Product Rating */
.product-details .product-des .content .intro .rating{
    color: var(--main-color);
    font-size: 2rem;
}

/* Product Reviews */
.product-details .product-des .content .intro span{
    font-size: 2rem;
    padding-left: 1rem;
}

/* Product Description */
.product-details .product-des .content p{
    padding: 1.5rem 0;
    font-weight: 400;
}

.product-details .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
}

/* Product Quantity Section */
.product-details .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.product-details .qty .text{
    width: 10rem;
}

/* Product Quantity Heading */
.product-details .qty h4{
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500;
}

/* Add to Cart Button */
.product-details .product-des .content .btn{
    margin: 2rem 0;
}

/* Product Availability, Categories & Tags Section */
.product-details .categories,
.product-details .tags{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0;
}

/* Product Categories & Tags Title */
.product-details .categories h4,
.product-details .tags h4{
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Product Categories & Tags Text */
.product-details .categories span,
.product-details .tags span{
    font-size: 1.6rem;
    color: var(--grey);
    padding: 0 0.5rem;
}

/*-- Product Addtional Information --*/
.product-info{
    margin-top: 4rem;
}

/* Product Info Tabs */
.product-info-tabs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    border-bottom: 0.2rem solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

/* Product Info Tab */
.product-info-tabs button{
    padding: 1rem 2.5rem;
    font-size: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Product Info Tab, Active & Hover Styles */
.product-info-tabs button.active,
.product-info-tabs button:hover{
    background-color: var(--main-color);
    cursor: pointer;
}

/* Product Information Section */
.product-info-gallery{
    display: none;
}

/* Active Product Information Section */
.product-info-gallery.active{
    display: block;
    margin-top: 2rem;
}

/* Additional Info Item */
.product-info .additional-info .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

/* Additional Info Title */
.product-info .additional-info h3{
    width: 20rem;
    font-size: 1.8rem;
    color: var(--black);
}

/* Additional Info Value */
.product-info .additional-info span{
    font-size: 1.6rem;
    color: var(--grey);
}

/* Product Info Heading */
.product-info h2{
    font-size: 3rem; 
    color: var(--black); 
    padding-bottom: 1rem;
}

/* Reviews Section */
.product-info .reviews{
    margin-bottom: 2rem;
} 

/* Review Item */
.product-info .review-item{
    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-bottom: 1rem;
}

/* Review image */
.product-info .review-item .review-image{
    height: 12rem;
    width: 12rem;
    overflow: hidden;
}

.product-info .review-item .review-image img{
    object-fit: contain;
}

/* Review Content */
.product-info .review-item .review-content{
    width: 100%;
}

/* Review Introduction Section */
.product-info .review-item .review-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;
}

/* Review Author Name */
.product-info .review-item .review-content .intro h3{
    font-size: 1.8rem;
    line-height: 1;
    color: var(--black);
    border-right: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding-right: 1rem;
}

/* Review Date */
.product-info .review-item .review-content .intro h6{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--main-color);
}

/* Review Text */
.product-info .review-item .review-content .text{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
    padding-bottom: 1rem;
}

/* Review Action Button */
.product-info .review-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;
}

/* Review Action Button Icon */
.product-info .review-item .icon-item i{
    color: var(--main-color);
    font-size: 1.5rem;
}

/* Review Action Button Text */
.product-info .review-item .icon-item span{
    color: var(--main-color);
    font-size: 1.6rem;
}

/* Review Action Button Icon & Text, On Button Hover */
.product-info .review-item .icon-item:hover i,
.product-info .review-item .icon-item:hover span{
    cursor: pointer;
    color: var(--secondary-color);
}

/*-- 3- Leave A Reply --*/
.product-info .leave-reply{
    width: 60rem;
} 

/*-- Related Products --*/
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
}


/*----- 4- Carts  ------*/
/*
1- Cart Items
2- Cart Total
*/

/*-- 1- Cart Items --*/
.shopping-cart{
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden; 
    border: var(--border);
}

/* Shopping cart Container */
.cart .container{
    min-width: 90rem;
}

/* 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: 1rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Last Cart item */
.cart-item:last-child{
    border: none;
}

/* Cart item Box */
.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
}

/* Cart Product Section */
.cart-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

/* Cart Image */
.cart-item img{
    height: 10rem;
    width: 10rem;
    background-color:#f7f7f7;
}

/* Cart Name */
.cart-item .name{
    color: var(--black);
    font-weight: 500;
}

/* Cart Price & Total */
.cart-item .price,
.cart-item .total{
    color: var(--grey);
}

/* Cart icon */
.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

/* Cart icon, On Hover */
.cart-item .icon:hover{
    color: var(--secondary-color);
}

/*-- Quantity Box --*/
.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: transparent;
}

/* 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; 
}

/*-- 2- Cart Total --*/
.cart .cart-summary{
    width: 45rem;
    margin-left: auto;
}

/* Summary List */
.cart .summary-list{
    border: var(--border);
}

/* Cart Button */
.cart .btn{
    width: 100%;
    text-align: center;
    margin: 1rem 0;
}

/*----- 5- Checkout -----*/
/*
1- Billing Address
2- Shipping Address
3- Cart Total
4- Payment Method
*/

/*-- Checkout Heading Title --*/
.checkout .heading h2{
    font-size: 3.5rem;
}

/*-- Checkout Section --*/
.checkout{
    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: 2rem;
}

/* Checkout item */
.checkout-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    background-color: var(--white);
    padding: 1.5rem;
}

.checkout .box-1{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60rem;
        flex: 1 1 60rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.checkout .box-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/*-- 1- Billing Address --*/
/*-- 2- Shipping Address --*/
.checkout .form{
    box-shadow: none;
    border: none;
    padding: 0;
}

/*-- 3- Payment Method --*/
.payment-methods .payment{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    margin-bottom: 1.5rem;
}

/* Payment method label */
.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* 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 Description */
.payment-methods .payment .payment-body p{
    line-height: 2;
    padding-top: 1rem;
}

/* Show payment method Description, 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;
    margin-top: 2rem;
}

/*------------------------------ (07)-Shop (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/
.contact{
    padding: 2rem 0;
}

/* Contact Section heading */
.contact h3{
    color: var(--white);
    font-size: 4rem;
    padding-bottom: 2rem;
}

/*-- Contact Information --*/
.contact-info{
    padding: 2rem 5%;
    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: 1rem;
}

/* Contact information item */
.contact .contact-info .info-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    padding: 1rem;
    min-height: 15rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: var(--border);
    position: relative;
    padding-top: 4rem;
    margin-top: 4rem;
}

/* Contact info Icon */
.contact .contact-info .info-item i{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 7rem;
    width: 7rem;
    font-size: 3rem;
    border-radius: 50%;
    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;
    background-color: var(--main-color);
    color: var(--white);
}

/* Contact info Detail Heading */
.contact .contact-info .info-item h3{
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Contact info Detail Text */
.contact .contact-info .info-item p{
    padding-bottom: 0.5rem;
}

.contact .contact-info .info-item p.gmail{
    text-transform: none;
}

/*-- Contact Form --*/
.contact-container{
    width: 100%;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Contact/Contact.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/Contact/Contact.jpg");
    background-position: center;
    background-size: cover;
    margin: 2rem 0;
    padding: 4rem 5%;
}

/* Contact Form Autofilled input fields */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

/* Contact Form input box container */
.contact-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;
}
  
/* Contact Form box inside input box container */
.contact-form .input-box .box{
    width: 49%;
}

/* Contact Form Input Field */
.contact-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    border-bottom: 0.2rem solid var(--white);
    background-color: transparent;
    text-transform: none;
    padding: 1.5rem 0.5rem;
    margin-bottom: 1.5rem;
}

/* Contact Form Input Field placeholder */
.contact-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

/* Contact Form Textarea */
.contact-form textarea.box{
    height: 20rem;
    resize: none;
}

/* Contact Form Button */
.contact-form .btn{
    display: inline;
    margin-top: 1rem;
    border: 0.2rem solid var(--white);
}

/* Contact Form Alert Message Styling */
.contact-form .alert{
    font-size: 2rem;
    color: var(--white);
    padding-left: 1rem;
}

/*-- Google Map --*/
.contact iframe{ 
    width: 100%;
    height: 30rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/*------------------------------ (08)-Contact (End) ------------------------------*/






















