/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS 
2- Button CSS 
3- Logo Area CSS
4- Header Area CSS
5- Home Area CSS
6- About Area CSS
7- Services Area CSS
8- Counter Area CSS
9- Pricing Area CSS
10- Team Area CSS
11- Testimonials Area CSS
12- Gallery Area CSS
13- FAQs Area CSS
14- Blog Area CSS 
15- Contact Area CSS 
16- Footer Area CSS
17- Scroll-Top Area CSS

*/



/*--------------------- 0- Global CSS (Start) ---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

:root{
/*    --main-color: #f80425;
    --secondary-color: #ee6631; */
    --main-color: #372c9e;
    --secondary-color: #e66a3a;
    --black: #000;
    --white: #fff;
    --grey: #666;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

*{
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}

*:not(.gallery-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{
    color: var(--white);
    background-color: var(--main-color);
}

html{
    font-size: 62.6%;
    overflow-x: hidden;
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
}
   
html::-webkit-scrollbar{
    width: 0.8rem;
}

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

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

body{
    background: var(--white);
}

section{
    padding: 3rem 5%;
}

.swiper-pagination-bullet{
    height: 1rem;
    width: 3rem;
    border-radius : 50rem;
    background: var(--main-color);
    opacity: 0.7;
}

.swiper-pagination-bullet-active{
    background-color: var(--secondary-color);
    opacity: 0.9;
}

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

p{
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 1.6;
}

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



/*--------------------- 1- Heading CSS (Start) ---------------------*/
.heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.heading h2{
    color: var(--secondary-color);
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0rem;
}

/*--------------------- 1- Heading CSS (End) ---------------------*/



/*--------------------- 2- Button CSS (Start) ---------------------*/
.btn{
    position: relative;
    display: inline-block;
    color: var(--white);
    background: transparent;
    font-weight: 500;
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}
   
.btn:after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 74%);
    background-image:         linear-gradient(315deg, var(--main-color) 0%, var(--secondary-color) 74%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:hover:after {
    -webkit-transform: scale(2) rotate(180deg);
            transform: scale(2) rotate(180deg);
}

/*--------------------- 2- Button CSS (End) ---------------------*/



/*--------------------- 3- Logo Area CSS (Start) ---------------------*/
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    gap: 1rem;
}
        
.logo img{
    height: 8.9rem;
    width: auto;
}

.logo .logo-name h3{
    color:var(--secondary-color);
    font-size: 4.0rem;
    font-weight: bold;
    font-family: 'Lobster', cursive;
    letter-spacing: 0.2rem;
}

.logo .logo-name h3 span{
    color: var(--main-color);
    font-size: 5.0rem;
    font-weight: bold;
    font-family: 'Atkinson Hyperlegible';
    letter-spacing: 0.1rem;
}

/*--------------------- 3- Logo Area CSS (End) ---------------------*/



/*--------------------- 4- Header Area CSS (Start) ---------------------*/
.header{
    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: 1rem 5%;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header .navbar a{
    display: inline-block;
    padding: 0.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--main-color);
    margin-left: 1rem;
    position: relative;
}

.navbar a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    height: 0.2rem;
    width: 100%;
    background-color: var(--main-color);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
}

.navbar a:hover::before{
    -webkit-transform: scaleX(1);
            transform: scaleX(1); 
}

.header .navbar a.active{
    border-bottom: 0.2rem solid var(--main-color);
}

.header #menu-btn{
    font-size: 2.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    display: none;
}

.header #menu-btn:hover{
    color: var(--main-color);
}

/*--------------------- 4- Header Area CSS (End) ---------------------*/



/*--------------------- 5- Home Area CSS (Start) ---------------------*/
.home{
    padding: 0;
    position: relative;
}

.home-slider{
    position: relative;
    overflow: hidden;
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    background-color: transparent;
    color: var(--white);
    border: 0.2rem solid var(--white);
    font-size: 1rem;
    height: 5rem;
    width: 5rem;
    padding: 2rem;
    border-radius: 50rem;
}

.home-slider .swiper-button-next::after,
.home-slider .swiper-button-prev::after {
    font-size: 2rem;
    font-weight: bold;
    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 .swiper-button-next:hover,
.home-slider .swiper-button-prev:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
        
.home-item{
    height: 65rem;
}

.home-item .content{
    padding: 10rem 5%;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.4));
    background:         linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.4));
    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-item .content .text{
    width: 70rem;
    padding-top: 6rem;
    text-align: center;
}

.home .content h2{
    font-size: 6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1rem;
    line-height: 1.15;
    text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.5);
}

.home .content p{
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 2rem 0;
}

/*--------------------- 5- Home Area CSS (End) ---------------------*/



/*--------------------- 6- About Area CSS (End) ---------------------*/
.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;  
    gap: 3rem;
}

.about .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    height: 45rem;
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    text-align: center;
}

.about .content h3{
    font-size: 3.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.about .content p{
    line-height: 1.9;
    padding: 2rem 0;
}

.about .content .line{
    height: 1rem;
    width: 40%;
    background-color: var(--grey);
    margin: 0 auto;
    margin-bottom: 3rem;
}

/*--------------------- 6- About Area CSS (End) ---------------------*/



/*--------------------- 7- Services Area CSS (Start) -------------------- */
.services .box-container{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

.service-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    height: 35rem;
}

.service-item .content{
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
        align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.service-item h3{
    font-size: 2rem;
    color: var(--white);
    padding-bottom: 1rem;
}

.service-item p{
    color: var(--white);
    padding-bottom: 1.5rem;
}

/*--------------------- 7- Services Area CSS (End) ---------------------*/



/*--------------------- 8- Counter Area CSS (Start) ---------------------*/
.counting{
    width: 100%;
    padding: 3rem 5%;
    margin: 1rem 0;
    min-height: 15rem;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    background: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0, 0, 0, 0.3)), url(../../assets/images/Counter/Counter.jpg);
    background:         linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../assets/images/Counter/Counter.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counting .box{
    text-align: center;
    border-top: 0.5rem solid var(--main-color);
    background-color: var(--white);
    padding: 2rem;
}

.counting .box i{
    font-size: 4.5rem;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.counting .box .count{
    color: var(--black);
    font-size: 4rem;
    padding-bottom: 0.5rem;
}

.counting .box h3{
    color: var(--grey);
    font-size: 2rem;
    font-weight: 400;
}

/*--------------------- 8- Counter Area CSS (End) ---------------------*/



/*--------------------- 9- Pricing Area CSS (End) ---------------------*/
.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: 2rem;
}
  
.pricing-item{
    background-color: var(--white);
    text-align: center;
    border: var(--border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.pricing-item .intro{
    background-color: var(--main-color);
}

.pricing-item h3{
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
    padding: 1rem 0;
    background-color: var(--secondary-color);
}
  
.pricing-item .price{
    color:var(--white);
    background-color: var(--secondary-color);
    border: 0.5rem solid var(--white);
    border-radius: 50%;
    height: 15rem;
    width: 15rem;
    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;  
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0rem auto;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
}

.pricing-item .price p{
    font-size: 5rem;
    color: var(--white);
    font-weight: bolder;
}

.pricing-item .price span{
    font-size: 2rem;
}
  
.pricing-item ul{
    list-style: none;
    padding: 3rem 0;
    padding-top: 6rem;
    width: 50%;
    margin: 0rem auto;
    text-align: left;
}
  
.pricing-item ul li{
    padding: 0.7rem 0;
    font-size: 1.7rem;
    color: var(--grey);
}

.pricing-item ul li i{
    font-size: 2rem;
    padding-right: 1rem;
    color: var(--main-color);
}
  
.pricing-item .btn{
    border-radius: 5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

/*--------------------- 9- Pricing Area CSS (End) ---------------------*/

 

/*--------------------- 10- Team Area CSS (Start) ---------------------*/
.team .box-container{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}

.team-item{
    border: var(--border);
}

.team-item .image{
    height: 30rem;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.team-item .image:hover img{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.team-item .content{
    height: 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;  
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    background: var(--white);
    padding: 2rem;
}

.team-item .content h2{
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.team-item .content h5{
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 500; 
    font-weight: bold;
}

.team-item .content p{
    font-style: italic;
    font-weight: 400;
    padding: 1rem 0; 
}

.team-item .content .links{
    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: 3rem;
    padding-top: 1rem;
}

.team-item .content .links i{
    font-size: 1.8rem;
    color: var(--grey);
}

.team-item .content .links i:hover{
    color: var(--main-color);
}

/*--------------------- 10- Team Area CSS (End) ---------------------*/



/*--------------------- 11- Testimonials Area CSS (End) ---------------------*/
.testimonial-slider{
    position: relative !important;
    padding-bottom: 5rem !important; 
    padding: 0.5rem;
    overflow: hidden;
}
    
.testi-item{
    padding: 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;  
    text-align: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: var(--border);
}

.testi-item i{
    color: var(--main-color);
    font-size: 5rem;
    padding-bottom: 1rem;
}

.testi-item p{
    line-height: 2;
    font-style: italic;
}

.testi-item .image{
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    border: 0.4rem solid var(--main-color);
    overflow: hidden;
    margin: 2rem auto;
}

.testi-item .text h4{
    font-size: 2rem;
    color: var(--secondary-color);
}

.testi-item .text h6{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
    color: var(--grey);
}

/*--------------------- 11- Testimonials Area CSS (End) ---------------------*/



/*--------------------- 12- Gallery Area CSS (Start) ---------------------*/
.gallery .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;
    margin: 2rem 0;
}

.gallery .controls .button{
    padding: 1rem 2.5rem;
    font-size: 2rem;
    border-radius: 1rem;
    color: var(--main-color);
    border: 0.15rem solid var(--main-color);
}

.gallery .controls .button:hover,
.gallery .controls .button.active{
    cursor: pointer;
    color: var(--white);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.gallery .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item{
    height: 30rem;
    overflow: hidden;
    position: relative;
}

.Gallery-Half{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
}

.Gallery-Single{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
}

.Gallery-Double{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 60rem;
        flex: 1 1 60rem;
}

.gallery-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
        align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 2rem;
}

.gallery-item:hover .content{
    background: rgba(47, 164, 255, 0.7);
}

.gallery-item .text{
    scale: 0;
    padding-left: 1rem;
    border-left: 0.2rem solid var(--white);
}

.gallery-item:hover .text{
    scale: 1;
}

.gallery-item .text h4{
    scale: 0;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.gallery-item:hover .text h4{
    scale: 1;
}

.gallery-item .content p{
    scale: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.gallery-item:hover .content p{
    scale: 1;
}

.gallery .btn-container{
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

.gallery-item a i{
    scale: 0;
    font-size: 1.7rem;
    color: var(--white);
    border: 0.2rem solid var(--white);
    padding: 1rem;
    border-radius: 50%;
}

.gallery-item:hover a i{
    scale: 1;
}

.gallery-item a:hover i{
    background-color: var(--white);
    color: var(--secondary-color);
}

/*--------------------- 12- Gallery Area CSS (End) ---------------------*/



/*--------------------- 13- FAQs Area CSS (Start) ---------------------*/
.faq .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: 4rem;
}

.faq .image{
    height: 50rem;
    width: 50rem;
    overflow: hidden;
}

.faq .image img{
    border-radius: 15% 85% 15% 85% / 85% 15% 85% 15% ;
}

.faq .accordion-container {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
}

.faq .accordion {
    background: var(--white);
    margin-bottom: 1.5rem;
    border: 0.1rem solid var(--secondary-color);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.faq .accordion:last-child {
    margin-bottom: 0rem;
}

.faq .accordion .accordion-heading{
    padding: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    background: var(--white);
    cursor: pointer;
}

.faq .accordion.active .accordion-heading {
    background: var(--secondary-color);
}

.faq .accordion .accordion-heading h3{
    font-size: 2rem;
    color: var(--black);
}

.faq .accordion.active .accordion-heading h3{
    color: var(--white);
}

.faq .accordion .accordion-heading i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.faq .accordion.active .accordion-heading i {
    color: var(--white);
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.faq .accordioin-content {
    padding: 1rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

.faq .accordion.active .accordioin-content {
    display: block;
}

/*--------------------- 13- FAQs Area CSS (End) ---------------------*/



/*--------------------- 14- Blog Area CSS (Start) ---------------------*/
.blogs .box-container{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

.blog-item .image{
    height: 25rem;
    position: relative;
} 

.blog-item .content{
    padding: 2rem;
    text-align: left;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.blog-item .content .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-bottom: 0.5rem;
}

.blog-item .content .category{
    background-color: var(--main-color);
    color: var(--white);
    font-size: 1.7rem;
    padding: 0.7rem 1.5rem;
}

.blog-item .content span{
    font-size: 1.6rem;
    color: var(--grey);
}

.blog-item .content .main-heading{
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    padding: 1rem 0;
}

.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

.blog-item .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    gap: 1rem;
    padding-top: 1.5rem;
}

.blog-item .intro img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    border: 0.1rem solid var(--secondary-color);
}

.blog-item .intro .text h5{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

/*--------------------- 14- Blog Area CSS (End) ---------------------*/



/*--------------------- 15- contact Area CSS (Start) ---------------------*/
.contact{
    padding: 2rem 0;
}

.contact iframe{
    width: 100%;
    height: 30rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.contact .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    margin: 5rem 5%;
    gap: 3rem;
}

.contact-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    padding: 2rem 4rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url(/assets/images/Contact/Contact.jpg);
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
                url(/assets/images/Contact/Contact.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-info::after{
    content: '';
    position: absolute;
    height: 120%;
    width: 80%;
    top: -10%;
    left: 10%;
    z-index: -1;
    background-color: var(--secondary-color);
}

.contact h3{
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-info h3{
    margin-bottom: 2.5rem;
}

.contact-info .info-item{
    color: var(--white);
    padding-bottom: 2.5rem;
}

.contact-info .info-item .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;
}

.contact-info .info-item i{
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info .info-item h4{
    font-size: 2.2rem;
    color: var(--white); 
}

.contact-info .info-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.contact-info .info-item p{
    color: var(--white);
}

.contact-info .gmail{
    text-transform: none;
}

.contact-form{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    background: var(--white);
    padding: 0rem 2rem; 
}

.contact-form h3{
    color: var(--secondary-color);
}

.contact-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--secondary-color);
    text-transform: none;
    padding: 1.5rem 0.5rem;
    border-bottom: 0.1rem solid var(--secondary-color);
    margin-bottom: 1rem;
}

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

.contact-form .box:focus{
    border-color: var(--main-color);
}

.contact-form textarea.box{
    height: 15rem;
    resize: none;
}

.contact-form .btn{
    margin-top: 1rem;
}

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

/*--------------------- 15- Contact Area CSS (End) ---------------------*/



/*--------------------- 16- Footer Area CSS (Start) ---------------------*/
.footer {
    background-color: var(--secondary-color);
    padding: 0rem 5%;
}

.footer .box-container{
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
}

.footer-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
}

.footer-item .logo{
    padding-bottom: 2rem;
}

.footer-item .logo h3{
    color: var(--white);
}

.footer-item > p{
    color: var(--white);
}

.footer .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
}

.footer .social a{
    display: inline-block;
    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;
    background-color: var(--white);
    border-radius: 50%;
}

.footer .social a:hover{
    background-color: var(--main-color);
}

.footer .social a i{
    color: var(--secondary-color);
    font-size: 2rem;
}

.footer .social a:hover i{
    color: var(--white);
}

.footer-item h2{
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
}

.footer-item .links a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-item .links a i{
    font-size: 1.5rem;
    color: var(--main-color);
}

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

.footer-item .info-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.footer-item .info i{
    font-size: 1.5rem;
    color: var(--main-color);
    padding-top: 0.4rem;
}

.footer-item .info p{
    display: block;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.footer-item .info .gmail{
    text-transform: none;
}

.footer .content{
    text-align: center;
    padding: 2rem 0;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.5);
}

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

.footer .content p span{
    color: var(--main-color);
}

/*--------------------- 16- Footer Area CSS (End) ---------------------*/



/*--------------------- 17- Scroll-Top Area CSS (Start) ---------------------*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    font-weight: lighter;
    color: var(--main-color);
    background: var(--white);
    border-radius: 0.5rem;
    border: 0.2rem solid 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.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
}

.scroll-top:hover{
    background: var(--main-color);
    color:var(--white);
}

/*--------------------- 17- Scroll-Top Area CSS (End) ---------------------*/
