    /* 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 ------------------------------*/
/*
1- Home Slider
2- Counter
3- Features
4- Book Appointment
5- Home Testimonials
6- Blog

*/



/*------------------------------ (02)-About ------------------------------*/
/*
1- About Us
2- Team
3- Testimonials
4- Faqs
*/



/*------------------------------ (03)-Pages ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Account-Form  
*/

/*--------------- PAGES ---------------*/
/*
1- Features
2- Pricing
3- Work Process
4- Partners
5- Appointment
6- Login
7- Register
*/



/*------------------------------ (04)-Service ------------------------------*/
/*
1- Services
2- Service Single
*/



/*------------------------------ (05)-Portfolio ------------------------------*/
/* 
01- Information Sidebar 
*/

/*--------------- PAGES ---------------*/
/*
1- Portfolio
2- Portfolio Single
*/



/*------------------------------ (06)-Event ------------------------------*/
/*
1- Events
2- Event Single
*/



/*------------------------------ (07)-Blog ------------------------------*/

/*--------------- COMPONENTS ---------------*/
/* 
01- Blog-Item 
02- Pages-No
*/

/*--------------- PAGES ---------------*/
/*
1- Blog Grid
2- Blog List
3- Blog Single 
*/



/*------------------------------ (08)-Contact ------------------------------*/







/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/

/* Root Variables */
:root{
    --main-color: #279EFF;
    --secondary-color: #09103E; 
    --accent-color: #FFD700; 
    --black: #000;
    --white: #fff;
    --grey: #666; 
    --border-radius: 0.5rem;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --maincolor-underline: 0.4rem solid var(--main-color);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Global Styles */
*{
    font-family: 'Lato', 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;
}

/* Apply transition to all elements except .portfolio-item */
*:not(.portfolio-item) {
    -webkit-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: var(--white);
    overflow-x: hidden;
}

/* HTML Styles */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

/* Section Styles */
section{
    padding: 3rem 5%;
}

/* Scrollbar Styles */
::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
    border-radius: var(--border-radius);
    background: var(--main-color);
}


/*----- 1- Heading CSS -----*/
.heading{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Sub Heading */
.heading span{
    letter-spacing: 0.2rem;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}
  
/* Main Heading */ 
.heading h2{
    position: relative;
    font-family: "Raleway", sans-serif;
    font-size: 4rem;  
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.1rem;
    line-height: 1;
    padding-bottom: 1.2rem;
}

/* Heading Line Style */ 
.heading h2:before{
    position: absolute;
    left: 50%; 
    bottom: 0;
    width: 10rem;
    height: 2px;
    content: "";
    background-color: var(--main-color);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

/* Headings with Linear Background */
.linear-bg .heading h2,
.linear-bg .heading span{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
/* Button Styles */
.btn{
    display: inline-block;
    background: -webkit-linear-gradient(left, var(--main-color) 0%, var(--secondary-color)  51%, var(--main-color)  100%);
    background:         linear-gradient(to right, var(--main-color) 0%, var(--secondary-color)  51%, var(--main-color)  100%);
    font-size: 1.6rem;
    padding: 1.5rem 3rem;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
            transition: 0.5s;
    background-size: 200% auto;
    color: var(--white);            
    cursor: pointer;
}

/* Button Styles, On Hover */
.btn:hover{
    background-position: right center; /* change the direction of the change here */
}

/*----- 3- Logo Area CSS -----*/  
/* Logo Styles */ 
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Logo Image */
.logo img{
    height: 5.5rem;
    object-fit: cover;
}

/* Company Name */
.logo h3{
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.05rem;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

/* Company Slogan */
.logo p{
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

/*----- 4- Page Title CSS -----*/
.page-title{
    position: relative;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("../../assets/images/PageTitle/pageTitle.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("../../assets/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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0rem 5%;
    padding-top: 8rem;
    border-bottom: var(--maincolor-underline);
}

/* Page Title */
.page-title .title{
    border-left: 0.5rem solid var(--main-color);
    padding-left: 1rem;
}

/* Page Title Heading */
.page-title .title h2{
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-transform: capitalize;
}

/* Link Section */
.page-title .link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 2rem;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
    border-top-left-radius: var(--border-radius);
    overflow: hidden;
    padding: 2rem;
}

/* Home Link */
.page-title .link a{
    font-weight: 600;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

/* Home Link, On Hover */
.page-title .link a:hover{
    color: var(--secondary-color);
}

/* Arrow Icon */
.page-title .link i{
    color: var(--white);
}

/* Current Page Title */
.page-title .link > span{
    font-weight: 500;
    color: var(--white);
}

/*----- 5- Header Area CSS -----*/
/* Header Styles */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 5%;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.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: 3rem;
    list-style-type: none;
}

/* Header Contact Item Styling */
.header .header-contacts li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 1rem;
    font-size: 1.6rem;
    color: var(--white);
}

/* Header Contact Icon Styling */
.header .header-contacts li i{
    color: var(--main-color);
}

/* Reset Contact Text Transformation */
.header .header-contacts span{
    text-transform: none;
}

/* Social Contacts */
.header .social-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;
}

/* Social Link Styling */
.header .social-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;
}

/* Social Link Styling, On Hover */
.header .social-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: 8rem;
    padding: 0rem 5%;
}

/* Header-2 Styles, On Active Header */
.header.active .header-2{
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* 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(--main-color);
}

/* Navbar Styles */
.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 1.8rem;
}

/* Hide Mobile menu */
.mobile-menu{
    display: none;
}

.header .container{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

/* Header Dropdown Menu Styles */
.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .dropdown-menu:hover button{
    color: var(--main-color);
}

/* Navbar Button */
.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.7rem;
    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.5rem;
}

/* Navbar Button, On Hover */
.header .navbar .nav-btn:hover{
    color: var(--main-color);
}

/* Dropdown Content Styles */
.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    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;
    border-bottom: var(--maincolor-underline);
    overflow: hidden;
}

.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;
    font-weight: 600;
    color: var(--black);
    padding: 1rem;
    cursor: pointer;
}

/* Header Dropdown Content Link, On Hover */
.header .dropdown-content a:hover{
    color: var(--white);
    background-color: var(--main-color);
}

/* Header Login Button Styling */
.header .header-login{
    border: 0.15rem solid var(--white);
    padding: 1rem 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    border-radius: var(--border-radius);
}

/* Header Login Button, On Hover */
.header .header-login:hover{
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/* Header Login Button Icon */
.header .header-login i{
    font-size: 1.6rem;
    color: var(--white);
    padding: 0.2rem;
}

/* Header Login Button Text */
.header .header-login span{
    display: inline-block;
    font-size: 1.7rem;
    color: var(--white);
}


/*----- 6- Footer Area CSS -----*/
.footer{
    background: var(--secondary-color);
}

/* Footer Container */
.footer .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 3rem;
    padding: 2rem 5%;
}

/* Footer Item */
.footer-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 22rem; 
        flex: 1 1 22rem; 
}

/* First Footer Item */
.footer-item:first-child{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;
}

/* Company Name */
.footer-item > h2{ 
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    padding-bottom: 2rem;
}

/* Footer Items direct child paragraphs */
.footer-item > p{
    padding-top: 1rem;
    font-size: 1.5rem;
} 

/* Footer paragraphs */
.footer-item p{
    color: var(--white); 
    font-size: 1.6rem;
    line-height: 1.5;
}

/* 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Footer Social Account Link Icon */
.footer-item .social a i{
    height: 4rem;
    width: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.7rem;
    border-radius: 50%;
}

/* Footer Social Account Link Icon, On Link Hover */
.footer-item .social a:hover i{
    color: var(--main-color);
    background-color: var(--white);
}

/* 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 */
.footer-item .info a{ 
    font-size: 1.6rem;
    color: var(--white);
}

.footer-item .links p:hover a{
    color: var(--main-color);
}

/* Footer Item Info Paragraph Icon */
.footer-item .links p i{
    color: var(--main-color);
    font-size: 1.5rem;
}

/* Footer Contact Info Text */
.footer-item .connect p{
    margin-bottom: 0.7rem;
}

/* Footer Contact Info Icon */
.footer-item .connect i{
    font-size: 1.6rem;
    color: var(--main-color);
    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;
}

/* Footer Contact Info Text with "gmail" class */
.footer-item .gmail{
    text-transform: none;
}

/* Designer credit and rights */
.footer .content{
    text-align: center;
    padding: 2rem 0;
    background-color: var(--main-color);
}

.footer .content p{
    font-size: 2rem;
    color: var(--white);
}

/*----- 7- Scroll-Top Area CSS -----*/
/* Scroll Top Button */
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 2.2rem;
    color: var(--white);
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    -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-color: var(--main-color);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
/* Autofilled input fields */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--black) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}
  
/* Form 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%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem 1.5rem; 
    margin: 0.7rem 0;
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    text-transform: none;
}

/* 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(--main-color);
}

/* Form Textarea */
.form textarea{
    resize: none;
    height: 20rem;
}

/* Form Button */
.form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

/*----- 9- Swiper Pagination CSS -----*/
/* Swiper pagination bullet */
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 3rem;
    background: var(--white);
    opacity: 0.7;
    border-radius: 0;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Active swiper pagination bullet */
.swiper-pagination-bullet-active{
    width: 6rem;
    background: var(--main-color) !important;
    opacity: 0.9;
}

/*----- 10- Sidebar Heading CSS -----*/
/* Sidebar Heading Title */ 
.sidebar-heading h2{
    position: relative;
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem; 
    font-weight: 600;
    word-spacing: 1px; 
    color: var(--black);
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
}

/* Heading Line Style */ 
.sidebar-heading h2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 10rem;
    height: 2px;
    content: "";
    background-color: var(--main-color);
}

/*----- 11- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

/* sidebar container */
.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 28rem; 
        flex: 1 1 28rem;  
}

/* Sidebar item */
.sidebar .sidebar-item{
    margin-bottom: 1.5rem;
    border: var(--border);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
    padding: 1.5rem;
}

/*-- 1- Search --*/
/* Search input box */
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-radius: 5rem;
}

/* Search Input Field */
.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem; 
    overflow: hidden;
    border: 0.1rem solid rgba(0, 0, 0, 0.5);
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

/* Focused Search Input Field */
.sidebar .search .input-box input:focus{ 
    border-color: var(--main-color);
}

/* Search button */
.sidebar .search .input-box button{
    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;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Search button, Hover Effect */
.sidebar .search .input-box button:hover{
    background-color: var(--secondary-color);
}

/*-- 2- Category --*/ 
/* Category item */
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

/* Last Category item */
.sidebar .category a:last-child{
    margin-bottom: 0;
}

/* Category item text */
.sidebar .category a span{
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
    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 a span i{
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Category item Quantity */
.sidebar .category a p{
    font-size: 1.5rem;
    color: var(--grey);
}

/* Category item, On Hover */
.sidebar .category a:hover span{
    color: var(--main-color);
}

/* Category Icon, On Item Hover */
.sidebar .category a:hover p{
    color: var(--main-color);
}

/*-- 3- Post Items --*/
/* Post Item */
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Last Post Item */
.sidebar .post-item:last-child{
    margin-bottom: 0;
}

/* Post Image */
.sidebar .post-item img{
    height: 8rem;
    width: 10rem;
    object-fit: cover;
}

/* Post Name Link */
.sidebar .post-item a{
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
}

/* Post Name Link, On Hover */
.sidebar .post-item a:hover{
    color: var(--main-color);
}

/*-- 4- Tags --*/
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.7rem;
}

/* Individual Tag*/
.sidebar .tag-item{
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    color: var(--grey);
    font-size: 1.7rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
}

/* Individual Tag, On Hover */
.sidebar .tag-item:hover{
    color: var(--white);
    background-color: var(--main-color);
    cursor: pointer;
}


/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*----- 1- Home-Slider -----*/
/* Home section */
.home{ 
    padding: 0;
    height: 1px;
    min-height: 100vh;
    position: relative;
} 
  
/* Home slider */
.home-slider{ 
    position: relative; 
}
  
/* Home Slider Navigation Buttons */
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    background-color: var(--main-color);
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    opacity: 0;
}

/* Home Slider Navigation Buttons, On Slider Hover */
.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev{
    opacity: 1;
}

/* Home Slider Navigation Buttons Icon */
.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after{
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
  
/* Home Slider Navigation Buttons, On Hover */
.home-slider .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover{
    background-color: var(--secondary-color);
}
 
/* Home Slide */
.home-item{
    min-height: 100vh;
}
  
/*Home Slide Image */
.home-item img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
  
/* Home Slide Content */
.home-item .content{ 
    padding: 2rem 5%;
    padding-top: 10rem;
    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: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}
  
/* Home Text Container */
.home-item .content .text{
    width: 70rem;
}

/* Home Slide Subheading */
.home-item .content h5{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--main-color);
}
  
/* Home Slide Heading */
.home-item .content h3{
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Home Slide Paragraph */
.home-item .content p{
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 2rem;
    line-height: 1.6;
}

/*----- 2-Home Testimonials -----*/
.home-features{
    padding-bottom: 0rem;
}

/*----- 3- Counter -----*/
/* Statistic Section */
.counting{
    width: 100%;
    padding: 3rem 5%;
    margin: 1rem 0;
    min-height: 15rem;
    display: -webkit-box;  
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Counter.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Statistic Box */
.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
}

/* Odd Box Styling */
.counting .box:nth-child(odd){
    border-bottom: var(--maincolor-underline);
}

/* Even Box Styling */
.counting .box:nth-child(even){
    border-top: var(--maincolor-underline);
}

/* Statistic Box Icon */
.counting .box i{
    color: var(--white);
    font-size: 4.5rem;
    padding-bottom: 1rem;
}

/* Statistic Box Count */
.counting .box .count{
    color: var(--white);
    font-size: 4rem;
    padding-bottom: 0.5rem;
}

/* Statistic Box Title */
.counting .box h3{
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
}

/*----- 4- Book Appointment -----*/
/* Appointment Banner Content */
.appointment-banner{
    width: 100%;
    height: 80vh;
    padding: 3rem 5%; 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Appointment Banner Content */
.appointment-banner .content{
    width: 80rem;
}

/* Appointment Banner Heading */
.appointment-banner h2{
    font-size: 5rem;
    color: var(--white);
}

/* Appointment Banner Paragraph */
.appointment-banner p{
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    font-weight: 500;
    color: var(--white);
    padding-top: 1rem;
    padding-bottom: 2rem;
    line-height: 1.4;
}

/*----- 5- Home Testimonials -----*/
.testimonial-bg{
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/*----- 6- Blogs -----*/
.blog.main .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}



/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 0;
}

/*----- 1- About Us -----*/
/* About Information Section */ 
.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 Image */ 
.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    height: 45rem;
    position: relative;
    z-index: -1;
}

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

/* Years of Experience Heading */ 
.about .image h2{
    width: 15rem;
    position: absolute;
    color: var(--white);
    background-color: rgba(9, 16, 62, 0.8);
    text-align: center;
    top: 0;
    left: 0;
    font-size: 2rem;
    padding: 1rem 2rem;
    z-index: 1;
    text-transform: uppercase;
}

.about .image h2 span{
    font-size: 5rem;
    display: block;
}

/* About Content Section */
.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

/* About Heading */ 
.about .heading{
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
}

/* About Heading Title */  
.about .heading h2{
    text-align: left;
}

/* About Heading Line Style */ 
.about .heading h2:before{
    left: 0; 
    -webkit-transform: translateX(0%); 
            transform: translateX(0%);
}

/* About Sub Heading */
.about .content h5{
    color: var(--black);
    font-size: 1.8rem;
    line-height: 1.5;
    padding-bottom: 1.5rem;
}

/* About Description */
.about .content p{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.6;
    padding-bottom: 1rem;
}

/* Contact Button in About Section */
.about .content .btn{
    margin-top: 1rem;
}

/*----- 2- Team -----*/
/* Team Members */
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/* Individual Team member */
.team-item {
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 40rem;
}

/* Team member Image */
.team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enlarge image on hover */
.team-item:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}
  
/* Team member Content Section */
.team-item .content{
    padding: 2rem;
    position: absolute;
    bottom: 0;
    left: 0%;
    height: 100%;
    width: 100%; 
    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;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    background:         linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}
  
/* Team Member Social Media Accounts */
.team-item .content .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
  
/* 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;
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: var(--main-color);
}

/* Team Member Social Media Link, On Hover */
.team-item .icon-container a:hover{
    color: var(--main-color);
    background-color: var(--white);
}

/* Team member name */
.team-item .content h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

/* Team member Role */
.team-item .content p{
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
}

/*----- 3- Testimonials -----*/
/* Testimonial Slider */ 
.testimonial-slider{
    position: relative;
    padding: 0rem 15rem;
    padding-bottom: 4.5rem;
    overflow: hidden;
}

/* Testimonial Slider Navigation Buttons */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev{
    background-color: var(--main-color);
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
    padding: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Testimonial Slider Next Button */
.testimonial-slider .swiper-button-next{
    right: 5rem;
}

/* Testimonial Slider Previous Button */
.testimonial-slider .swiper-button-prev{
    left: 5rem;
}

/* Testimonial Navigation Buttons Icon */
.testimonial-slider .swiper-button-next::after,
.testimonial-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;
}

/* Testimonial Slider Navigation Buttons, On Hover */
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background-color: var(--secondary-color);
}

/* Testimonial Slider pagination bullet */
.testimonial .swiper-pagination-bullet{
    background: var(--secondary-color);
    opacity: 0.9;
}
    
/* Testimonial Slide */
.testi-item{
    text-align: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--secondary-color);
    border-bottom: var(--maincolor-underline);
    position: relative;
    padding: 10rem 2rem 6rem 2rem;
    margin-top: 6rem;
}

/* Testimonial image */ 
.testi-item img{
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
    height: 12rem;
    width: 12rem;
    border-radius: 50%;
    border: 0.5rem solid var(--white);
}

/* Quotation Icon */
.testi-item i{
    font-size: 3.5rem;
    color: var(--white);
}

/* Testimonial text */ 
.testi-item p{
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 2rem 0;
}

/* Testimonial author name */ 
.testi-item .intro h3{
    font-size: 2.5rem;
    color: var(--white);
    padding-bottom: 0.5rem;
}

/* Testimonial author designation */ 
.testi-item .intro h5{
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
}

/*----- 4- Faqs -----*/
.faq{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

/* FAQ Accordion Section */
.faq .accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;
}

/* FAQ Accordion */
.faq .accordion{
    background: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 
 
/* 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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

/* Active Faq Accordion heading */
.faq .accordion.active .accordion-heading {
    background: var(--secondary-color); 
}

/* FAQ Question */ 
.faq .accordion .accordion-heading h3{
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Active FAQ Question */
.faq .accordion.active .accordion-heading h3{
    color: var(--white);
}

/* Toggle Icon */ 
.faq .accordion .accordion-heading 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(--secondary-color);
    font-size: 1.6rem;
}

/* Active FAQ Toggle Icon */
.faq .accordion.active .accordion-heading i{
    color: var(--secondary-color);
    background-color: var(--accent-color);
}

/* Active FAQ accordion content */
.faq .accordion.active .accordion-content{
    display: block;
}

/* FAQ accordion content */
.faq .accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

/* FAQ Image */
.faq .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    height: 50rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.faq .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (03)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Account-Form -----*/
.account-form{
    max-width: 45rem;
    padding: 5rem;
    background: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--maincolor-underline);
    margin: 0rem auto;
    text-align: center;
}

/* Account Form Autofilled input fields */
.account-form input:-webkit-autofill,
.account-form input:-webkit-autofill:hover,
.account-form input:-webkit-autofill:focus,
.account-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;
}
  
/* Account Form Heading */
.account-form h3{ 
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
}

/* Account Form Input Field */
.account-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    border: 0.15rem solid var(--white);
    padding: 1.2rem;
    text-transform: none;
    margin: 0.7rem 0;
}

/* Account Form Input Field placeholder */
.account-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.account-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.account-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.account-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

/* Focused Input Field */
.account-form .box:focus{
    border-color: var(--main-color);
}

/* Account Form Paragraph */
.account-form p{
    padding-top: 2rem;
    font-size: 1.5rem;
    color: var(--white);;
    text-align: center;
    padding-bottom: 1rem;
}

/* Account Form Button */
.account-form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1.5rem;
    border: 0.1rem solid var(--white);
    border-radius: 5rem;
}

/* Account Form link */
.account-form .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

/* Account Form link, On Hover */
.account-form .link:hover{
    text-decoration: underline;
}

/*--------------- PAGES ---------------*/

/*----- 1- Features -----*/
/* Features Section Container */
.features .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;
}

/* Individual Feature Item */
.feature-item{
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: var(--secondary-color);
    border-bottom: var(--maincolor-underline);
    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);
}

/* Individual Feature Icon */
.feature-item i{
    font-size: 3rem;
    height: 7rem;
    width: 7rem;
    margin: 0 auto;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: 50%;
    margin-bottom: 1.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;
}

/* Individual Feature Heading */
.feature-item h3{
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

/* Individual Feature Paragraph */
.feature-item p{
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.7;
}

/*----- 2- Pricing -----*/
.pricing .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}
  
/* Individual Price Plan */
.price-item{ 
    background-color: var(--white);
    border: var(--border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    text-align: left;
    padding: 4rem;
}

/* 2nd Individual Price Plan */
.price-item:nth-child(2){ 
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
  
/* Plan Heading */
.price-item h3{
    text-transform: uppercase;
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

/* 2nd Plan Heading */
.price-item:nth-child(2) h3{
    color: var(--white);
}
  
/* Plan Price Styling */
.price-item .price{
    color: var(--secondary-color);
    font-size: 5rem;
    font-weight: 400;
    padding-bottom: 1rem;
}

/* 2nd Plan Price Styling */
.price-item:nth-child(2) .price{
    color: var(--white);
}
    
/* Plan Price SubText */
.price-item .price span{
    font-size: 2rem;
    font-weight: normal;
    color: var(--grey);
}

/* 2nd Plan Price SubText */
.price-item:nth-child(2) .price span{
    color: var(--white);
}

/* Plan Description */
.price-item p{
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
}

/* 2nd Plan Description */
.price-item:nth-child(2) p{
    color: var(--white);
}
    
/* Plan Features List */
.price-item ul{ 
    list-style: none;
    margin: 2rem 0;
    padding: 1.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

/* 2nd Plan Features List */
.price-item:nth-child(2) ul{ 
    border-color: rgba(255, 255, 255, 0.2);
}
    
/* Plan Features List Item */
.price-item ul li{
    padding: 0.9rem 0;
    font-size: 1.6rem;
    color: var(--grey);
    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: 0.7rem;
}

/* 2nd Plan Features List Item */
.price-item:nth-child(2) ul li{
    color: #f7f7f7;
}
  
/* Plan Features List Icon */
.price-item ul li i{
    height: 1.8rem;
    width: 1.8rem;
    color: var(--white);
    background-color: var(--main-color);
    font-size: 1.2rem;
    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;
}

/* Plan Button */
.price-item .btn{
    border: 0.15rem solid var(--white);
}

/*----- 3- Work Process -----*/
.work-process .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;
}

/* Each Step */
.process-item{
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Step Image */
.process-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Step Content */
.process-item .content{
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: rgba(9, 16, 62, 0.9);
}

/* Step Number */
.process-item span{
    display: block;
    font-size: 5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 1rem;
}

/* Step Title */
.process-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
}

/* Step Description */
.process-item p{
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.7;
}

/*----- 4- Partners -----*/
/* Partner Box Container */
.partners .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

/* Partner Slider Container */
.partners .partner-slider{
    overflow: hidden;
}

/* Partner Slider Item */
.partners .partner-slider .partner-item{
    padding: 0 2rem;
}

/* Individual Partner Item */
.partner-item{
    min-height: 10rem;
    width: 20rem;
    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;
}

/* Partner Logo */
.partners img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*----- 5- Appointment -----*/
.appointment .appointment-form{
    padding: 4rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Testimonials.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),url("../../assets/images/Background/Testimonials.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Appointment Form Autofilled input fields */
.appointment-form input:-webkit-autofill,
.appointment-form input:-webkit-autofill:hover,
.appointment-form input:-webkit-autofill:focus,
.appointment-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;
}

/* Appointment Form Calendar Picker Indicator */
.appointment ::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Appointment Form input box container */
.appointment-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;
    gap: 1rem;
    margin: 1rem 0;
}
  
/* Appointment Form Input field inside input box container */
.appointment-form .input-box .box{
    width: 49.5%;
}

/* Appointment Form Input Field */
.appointment-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    border: 0.15rem solid rgba(255, 255, 255, 0.7);
    background-color: transparent;
    text-transform: none;
    padding: 1rem 1.5rem;
}

/* Focused Input Field */
.appointment-form .box:focus{
    border-color: var(--main-color);
}

/* Appointment Form Input Field placeholder */
.appointment-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.appointment-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.appointment-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.appointment-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

/* Appointment Form Textarea */
.appointment-form textarea.box{
    height: 18rem;
    resize: none;
    margin-bottom: 1rem;
}

/*----- 6- Login -----*/
/* 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(--white);
    cursor: pointer;
}
  
/*----- 7- Register -----*/
/* 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(--white);
    cursor: pointer;
}
  
/* Register Terms label SubText */
.register form .terms label span{
    color: var(--main-color);
}



/*------------------------------ (03)-Pages (End) ------------------------------*/



/*------------------------------ (04)-Service (Start) ------------------------------*/

/*----- 1- Services -----*/
/* Services */
.services .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;
}

/* Each Service Item */
.service-item{
    padding: 2rem;
    border-bottom: var(--maincolor-underline);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Service Image */
.service-item img{
    height: 20rem;
    width: 100%;
    object-fit: cover;
}

/* Service Title */
.service-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

/* Service Title, On Hover */
.service-item h3:hover{
    color: var(--main-color);
}

/* Service Description */
.service-item p{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.7;
}

/*----- 2- Service Single -----*/
.service-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end; 
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    gap: 1.5rem;
} 

/* Service Information Section */
.service-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/* Service Image */
.service-info .image{
    height: 40rem; 
}

.service-info .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Service Content */
.service-info .content{
    padding-top: 2rem;
}

/* Service Main Heading */
.service-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Service Description */
.service-info p{
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Service Gallery */
.service-info .service-gallery{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    padding-top: 1rem;
}

/* Service Gallery Image */
.service-info .service-gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Service Sub-Heading */
.service-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Service Sub-Section */
.service-info .sub-section{
    padding-top: 2rem;
}

/* Service Information List */
.service-info ul{
    list-style: none;
}

/* Service Information List Item */
.service-info ul li{
    padding-bottom: 1rem;
    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;
}

/* Service Information List Icon */
.service-info ul li i{ 
    color: var(--main-color);
    font-size: 1.4rem;
}

/* Service FAQ Section */
.service-info .faq{
    display: block;
}

/* Service FAQ Accordion Section */
.service-info .faq .accordion-container{
    min-width: 100%;
    padding-top: 1rem;
}

/*------------------------------ (04)-Service (End) ------------------------------*/



/*------------------------------ (05)-Portfolio (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Information Sidebar -----*/
/* Information Sidebar Section */
.info-sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    padding: 3rem;
    background: var(--white);
    border-bottom: var(--maincolor-underline);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Sidebar Sub-Heading */
.info-sidebar .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 2rem;
    line-height: 1;
}

/* Sidebar Detail Item */
.info-sidebar .detail-item{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

/* Last Detail Item */
.info-sidebar .detail-item:last-child{
    padding-bottom: 0;
}

/* Detail Item Icon */
.info-sidebar .detail-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Detail Item Heading */
.info-sidebar .detail-item h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
    padding-bottom: 0.5rem;
}

/* Detail Item Text */
.info-sidebar .detail-item .detail-content p{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
    line-height: 1;
}

/* Sidebar Website Link */
.info-sidebar .website{
    text-transform: none;
}

/* Sidebar Button */
.info-sidebar .btn{
    margin-top: 3rem;
}


/*--------------- PAGES ---------------*/

/*----- 1- Portfolio -----*/
/* Portfolio Filter Tabs */
.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: 1rem;
    margin-bottom: 2rem;
}

/* Portfolio Filter Tabs Button */
.portfolio .controls .button{
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
    background-color: transparent;
    border: var(--border);
}

/* Portfolio Filter Tabs Button, Hover & Active Effect */
.portfolio .controls .button:hover,
.portfolio .controls .button.current{
    cursor: pointer;
    color: var(--white);
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Each Portfolio Item */
.portfolio-item{
    width: 25%;
    padding: 0.5rem;
}

.portfolio-content{
    height: 25rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Portfolio Item Image */
.portfolio-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio Item Content */
.portfolio-item .content{
    position: absolute;
    top: 5%;
    left: 5%;
    height: 90%;
    width: 90%;
    background: rgba(9, 16, 62, 0.9);
    outline: 0.1rem solid var(--white);
    outline-offset: -1rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: all 0.4s ease-in;
            transition: all 0.4s ease-in;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .content{
    opacity: 1;
}

/* Portfolio Item Buttons */
.portfolio-item .content .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
}

/* Portfolio Item Button */
.portfolio-item .btn-container a{
    display: inline-block;
    height: 4.5rem;
    width: 4.5rem;
    border-radius: var(--border-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
	color: var(--white);
    background-color: var(--main-color);
    margin-bottom: 1rem;
}

/* Portfolio Item Button, On Hover */
.portfolio-item .btn-container a:hover{
    color: var(--main-color);
    background-color: var(--white);
}

/* Portfolio Item Title */
.portfolio-item .content h4{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
}

/* Portfolio Item Title, On Hover */
.portfolio-item .content h4:hover{
    color: var(--main-color);
}

/* Portfolio Item Category */
.portfolio-item .content p{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
}

/*----- 2- Portfolio-Single -----*/
.portfolio-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

/* Portfolio Information Section */
.portfolio-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem; 
        flex: 1 1 75rem;
}

/* Portfolio Image */
.portfolio-info .image{
    height: 40rem;
}

.portfolio-info .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Portfolio Content */
.portfolio-info .content{
    padding-top: 2rem;
}

/* Portfolio Main Heading */
.portfolio-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Portfolio Important Point */
.portfolio-info .important{
    color: var(--black) !important;
    font-weight: 600;
}

/* Portfolio Description */
.portfolio-info p{
    padding-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Portfolio Gallery */
.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;
    padding: 2rem 0;
}
  
/* Portfolio Gallery Image */
.portfolio-info .portfolio-gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Portfolio Sub-Heading */
.portfolio-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Portfolio Sub-Section */
.portfolio-info .sub-section{
    padding-top: 2rem;
}

/* Portfolio Challenges List Section */
.portfolio-info .portfolio-challenges .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
}

/* Portfolio Challenges List */
.portfolio-info .portfolio-challenges ul{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

/* Portfolio Information List */
.portfolio-info ul{
    list-style: none;
    margin-top: -1rem;
}

/* Portfolio Information List Item */
.portfolio-info ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Portfolio Information List Icon */
.portfolio-info ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*------------------------------ (05)-Portfolio (End) ------------------------------*/



/*------------------------------ (06)-Event (Start) ------------------------------*/

/*----- 1- Events -----*/
.events .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(45rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
    gap: 1rem;
}

/* Individual event item */
.event-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: var(--border);
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

/* Event image */
.event-item .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
}

.event-item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} 

/* Event date */
.event-item .date{
    width: 7rem;
    position: absolute;
    top: 0rem;
    left: 0;
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: rgba(9, 16, 62, 0.9);
    padding: 1.2rem;
    text-align: center;
}

/* Event date number */
.event-item .date span{
    font-size: 3rem;
    font-weight: 500;
}

/* Event content container */
.event-item .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    padding: 2rem;
    margin: auto 0;
}

/* Event Main Heading */
.event-item .content .main-heading{
    display: block;
    font-size: 2.3rem;
    font-weight: bold;
    color: var(--black);
    line-height: 1.4;
}

/* Event Main Heading, On Hover */
.event-item .content .main-heading:hover{
    color: var(--main-color);
}

/* Event Details */
.event-item .details{
    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;
    padding: 1.5rem 0;
    gap: 1rem;
}

/* Event Detail Item */
.event-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.4rem;
    color: var(--grey);
}

/* Event Detail Icon */
.event-item .details h3 i{
    color: var(--main-color);
}

/* Event Detail Text */
.event-item .details h3 span{
    font-weight: 400;
}

/* Event Description */
.event-item .content p{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.5;
    padding-bottom: 2.5rem;
}

/*----- 2- Event Single -----*/
.event-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

/* Event Information Section */
.event-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem; 
        flex: 1 1 75rem;
}

/* Event Image */
.event-info .image{
    height: 40rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.event-info .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Event Content */
.event-info .content{
    padding-top: 2rem;
}

/* Event Main Heading */
.event-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Event Description */
.event-info p{
    padding-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.5;
}

/* Event Sub-Heading */
.event-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1rem;
}

/* Event Sub-Section */
.event-info .sub-section{
    padding-top: 2rem;
}

/* Event Speakers */
.event-info .event-speakers .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;
}

/* Event Information List */
.event-info ul{
    list-style: none;
    margin-top: -1rem;
}

/* Event Information List Item */
.event-info ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Event Information List Icon */
.event-info ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Event Venue Map */
.event-info iframe{
    width: 100%;
    height: 40rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/*------------------------------ (06)-Event (End) ------------------------------*/



/*------------------------------ (07)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/
.blog-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Blog Image */
.blog-item .image{
    height: 25rem;
    position: relative;
}

.blog-item .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} 

/* Blog Date */
.blog-item .date{
    width: 7rem;
    position: absolute;
    bottom: 0rem;
    right: 10%;
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--secondary-color);
    padding: 1.2rem;
    text-align: center;
}

/* Blog Date Number */
.blog-item .date span{
    font-size: 3rem;
    font-weight: 500;
}

/* Blog Content */
.blog-item .content{
    padding: 2rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

/* Blog Main Heading */
.blog-item .content .main-heading{
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    padding-bottom: 0.5rem;
}

/* Blog Main Heading, On Hover */
.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

/* Blog Description */
.blog-item p{
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    font-weight: 450;
    color: var(--grey);
    line-height: 1.6;
}

/* 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: 1.5rem;
}

/* Blog Detail */
.blog-item h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

/* Blog Detail Icon */
.blog-item h3 i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/* Blog Detail Text */
.blog-item h3 span{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--grey);
}

/*----- 02- Pages-No -----*/
/* page numbers */
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
}

/* page number buttons */
.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/* Page number individual button */
.pages-no .item{
    color: var(--white);
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    font-size: 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;
}

/* Page number individual button, active and hover effect */
.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

/* All page number Button */
.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

/*--------------- 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: 1.5rem;
}

/* 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: 1.5rem;
}

/* Blog List items */
.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

/* Blog List items Image */
.blog-container.list .blog-item .image{
    height: 30rem;
}

/*----- 3- Blog Single -----*/
/*
1- Blog Info
2- Comments
3- Leave A Reply
*/

.blog-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

/*-- 1- Blog Info --*/ 
/* Blog Published date */
.blog-info .date{
    width: 7rem;
    position: absolute;
    bottom: 0rem;
    right: 10%;
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--secondary-color);
    padding: 1.2rem;
    text-align: center;
}

/* Blog Published date number */
.blog-info .date span{
    font-size: 3rem;
    font-weight: 500;
}

/* Blog Image */
.blog-info .image{ 
    height: 40rem; 
    overflow: hidden;
    position: relative;
}
  
.blog-info .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
  
/* Blog Content */
.blog-info .content{
    padding-top: 2rem;  
}

/* Blog Main Heading */
.blog-info .content .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 1.5rem;
}
  
/* 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 Detail Item */
.blog-info .details h5{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

/* Blog Detail Icon */
.blog-info .details h5 i{
    font-size: 1.8rem;
    color: var(--main-color);
}

/* Blog Detail Text */
.blog-info .details h5 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}
  
/* Blog Paragraph */
.blog-info p{
    padding-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.5;
}
  
/* Blog Important Note */
.blog-info .important{
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    border-left: 0.5rem solid var(--main-color);
    margin-top: 1rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    background-color: var(--secondary-color);
}

/* Blog Important Quotation Icon */
.blog-info .important i{
    font-size: 8rem;
    color: var(--main-color);
}

/* Blog Important Intro section */
.blog-info .important .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

/* Blog Important Horizontal Line */
.blog-info .important .intro span{
    height: 0.2rem;
    width: 2rem;
    background-color: var(--main-color);
}

/* Blog Important Author's Name */
.blog-info .important .intro h6{
    font-size: 2rem;
    color: var(--white);
    font-style: normal;
}

/* Blog Gallery */
.blog-info .blog-gallery{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* Blog Gallery Image */
.blog-info .blog-gallery img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Blog Sub-Heading */
.blog-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 0.5rem;
}

/* Blog Sub-Section */
.blog-info .sub-section{
    padding-top: 2rem;
}

/* Blog Information List */
.blog-info ul{
    list-style: none;
}

/* Blog Information List Item */
.blog-info ul li{
    padding-bottom: 1rem;
    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;
}

/* Blog Information List Icon */
.blog-info ul li i{ 
    color: var(--main-color);
    font-size: 1.4rem;
}

/* 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 Tags Link */
.blog-info .tags span{
    color: var(--grey);
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    padding: 0.8rem 1.4rem;
}

/* Blog Tags Link, On Hover */
.blog-info .tags span:hover{
    color: var(--white);
    background-color: var(--main-color);
}
 
/* Blog Share Title */
.blog-info .share h3{
    color: var(--black);
    font-size: 1.6rem;
    padding-right: 1rem;
}
  
/* Blog Share Icon */
.blog-info .share i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    color: var(--grey);
    font-size: 1.6rem;
}
  
/* Blog Share Icon, On Hover */
.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
   
/*-- 2- Comments --*/
.blog-single .comments{
    margin: 4rem 0;
    overflow: hidden;
} 

/* All Comments section Heading */
.blog-single .comments h4{  
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 2rem;
} 

.comment-item{
    padding-bottom: 1rem;
}

.comment-item:last-child{
    padding-bottom: 0;
}

/* Each Comment Item */
.comment{
    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: 2rem;
    padding-bottom: 2rem;
}

/* Comment image */
.comment .image{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    border: 0.5rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.comment .image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Comment Content */
.comment .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

/* Comment Introduction section */
.comment .content .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: 1rem;
    padding-bottom: 1rem;
}

/* Comment Author Name */
.comment .intro h3{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

/* Comment Date */
.comment .intro h6{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
}

/* Comment Text */
.comment .text{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
    padding-bottom: 1rem;
}

/* Comment Action Button */
.comment .icon-item{
    display: inline-block;
    color: var(--grey);
    cursor: pointer;
}

/* Comment Action Button Text, On Button Hover */
.comment .icon-item:hover span{
    color: var(--main-color);
}

/* Comment Action Button Icon */
.comment .icon-item i{
    color: var(--main-color);
    font-size: 1.5rem;
    padding-right: 0.5rem
}

/* Comment Action Button Text */
.comment .icon-item span{
    color: var(--grey);
    font-size: 1.6rem;
}

/* Blog Reply Comment */
.comment.reply{
    margin-left: 12rem;
}

/* Blog Reply Comment Content */
.comment.reply .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
}

/*-- 3- Leave A Reply --*/
.leave-reply{
    overflow: hidden;
} 

/* Leave Reply Form Heading */
.leave-reply .form h3{
    font-size: 2.5rem; 
    color: var(--black); 
    padding-bottom: 2rem;
}

/*------------------------------ (07)-Blog (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/

/*----- 01- Contact Info -----*/
/* Contact Information Container */
.contact-info .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

/* Contact information item */
.contact .contact-info .info-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--maincolor-underline);
    padding: 4rem 2rem;
    text-align: center;
}

/* Contact info Icon */
.contact-info .info-item i{
    font-size: 2.5rem;
    width: 7rem;
    height: 6rem;
    border-radius: var(--border-radius);
    padding: 2rem;
    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;
    margin: 0rem auto;
}

/* Contact info Detail Heading */
.contact-info .info-item .content h4{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

/* Contact info Detail Text */
.contact-info .info-item .content p{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.5;
    text-transform: none;
}

/*----- 02- Contact Form -----*/
/* Contact Container */
.contact-container{
    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;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 1.5rem 0;
}

/* Contact Image */
.contact .image{
    height: 50rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
}

.contact .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    background-color: var(--white);
    padding: 3rem 2rem;
}

/* Align heading at the start */
.contact-form .heading{
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
}

/* Adjust position of pseudo-element before heading */
.contact-form .heading h2:before{
    left: 0%; 
    -webkit-transform: translateX(0%); 
            transform: translateX(0%);
}

/* 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;
    gap: 1rem;
    margin-bottom: 1rem;
}
  
/* Contact Form Input field inside input box container */
.contact-form .input-box .box{
    width: 49.5%;
}

/* Contact Form Input Field */
.contact-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--grey);
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    text-transform: none;
    padding: 1rem 1.5rem;
}

/* Focused Input Field */
.contact-form .box:focus{
    border-color: var(--main-color);
}

/* Contact Form Input Field placeholder */
.contact-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.contact-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.contact-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

.contact-form .box::placeholder{
    text-transform: capitalize;
    color: var(--grey);
}

/* Contact Form Textarea */
.contact-form textarea.box{
    height: 18rem;
    resize: none;
    margin-bottom: 1rem;
}

/* Alert Message Styling */
.contact-form .alert{
    font-size: 2rem;
    color: var(--main-color);
    padding-left: 1rem;
}

/*----- 03- Google Map -----*/
.contact iframe{
    width: 100%;
    height: 40rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}


/*------------------------------ (08)-Contact (End) ------------------------------*/