/* Table of Contents
----------------------------------

/*------------------------------ Global CSS ------------------------------*/
/*
0- Global CSS
1- Heading CSS
2- Button CSS
3- Logo Area CSS
4- Header Area CSS
5- Footer Area CSS
6- Scroll-Top Area CSS
7- Swiper Pagination CSS
*/

/*------------------------------ All Sections CSS ------------------------------*/
/*
1- Home
2- About
3- Skills
4- Experience
5- Counting
6- Services
7- Portfolio
8- Testimonials
9- Blogs
10- Contact
*/



/*--------------------- Global CSS (Start) ---------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

:root{
    --main-color: #ED176F;
    --secondary-color: #130f40;
    --black: #000;
    --white: #fff;
    --grey: #666;
    --custom-border: 0.5rem solid var(--main-color);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 50%;
    --font-family-1: "Merriweather", serif;
    --font-family-2: 'Roboto', sans-serif;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
}

*{
    font-family: var(--font-family-2);
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-transform: capitalize;
    text-decoration: none;
}

*:not( .portfolio-item){
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body{
    background: #f2f3f8;
    overflow-x: hidden;
}

section{
    padding: 3rem 5%;
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

p{
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 1.6;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-thumb{
    border-radius: var(--border-radius-2);
    background-color: var(--main-color);
}

::-webkit-scrollbar-track{
    background: var(--secondary-color);
}

/*----- 1- Heading CSS -----*/
.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{
    text-align: center;
    padding-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 4.5rem;
    font-family: var(--font-family-1);
    position: relative;
}

.heading h2 span{
    font-family: var(--font-family-1);
    color: var(--main-color);
}

.heading h2 span::before{
    content: '';
    position: absolute;
    bottom: 0rem; 
    left: 50%;
    background: var(--main-color);
    height: 0.2rem;
    width: 80%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.heading.linear-bg h2{
    color: var(--white);
}

.sub-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
}

.sub-heading h5 {
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    font-family: var(--font-family-1);
}

.sub-heading h5::before{
    content: '';
    position: absolute;
    bottom: -0.5rem; left: 0;
    background: var(--main-color);
    height: 0.2rem;
    width: 110%;
}

/*----- 2- Button CSS -----*/
.btn{
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    color: var(--main-color);
    background-color: transparent;
    border: 0.2rem solid var(--main-color);
}

.btn:hover{
    color: var(--white);
    background-color: var(--main-color);
    cursor: pointer;
}

/*----- 3- Logo Area CSS -----*/
.logo h2 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 600;
    font-family: var(--font-family-1);
}

/*----- 4- Header Area CSS -----*/
.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;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7rem;
    padding: 0rem 5%;
    gap: 2rem;
    background: transparent;
}

.header.sticky{
    background-color: var(--secondary-color);
    border-bottom: 0.2rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.header .navbar a{
    display: inline-block;
    padding: 0.5rem 0rem;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-family-1);
}

.header .navbar a:hover,
.header .navbar a.active{
    color: var(--main-color);
}

.header #menu-btn{
    cursor: pointer;
    display: none;
}

.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.header .icon-container .icon{
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.header .icon-container .icon:hover{ 
    color: var(--main-color);
}

.header .btn{
    color: var(--white);
    background-color: var(--main-color);
}

/*----- 5- Footer Area CSS -----*/
footer{
    background-color: var(--secondary-color);
    padding: 2rem;
    text-align: center;
}

footer p{
    font-size: 2rem;
    color: var(--white);
}

footer p span{
    color: var(--main-color);
}

/*----- 6- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    font-weight: lighter;
    background: var(--main-color);
    color: var(--white);
    border: 0.2rem solid var(--main-color);
    border-radius: var(--border-radius-3);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
    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;
}

.scroll-top:hover{
    background: var(--secondary-color);
}

/*----- 7- Swiper Pagination CSS -----*/
.swiper-pagination-bullet {
    height: 1rem;
    width: 3rem;
    border-radius: var(--border-radius-1);
    background: var(--white);
    opacity: 0.7;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet-active {
    width: 6rem;
    background: var(--main-color);
    opacity: 0.9;
}


/*------------------------------ Global CSS (End) ------------------------------*/



/*------------------------------ All Sections CSS (Start) ------------------------------*/

/*----- 1- Home -----*/
.home{
    padding: 0;
    min-height: 60rem;
    background-color: var(--secondary-color);
    position: relative;
}

.home .box-container{
    padding: 10rem 5%;
    position: relative;
    height: auto;
    top: 0;
    left: 0;
    width: 100%;
}

.home .home-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
    margin-top: 6rem;
}

.home .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    text-align: center;
    padding: 0rem 2rem;
}

.home .image img{
    height: 35rem;
    width: 35rem;
    border-radius: 40px 10px 40px 10px;
    -webkit-box-shadow: 2rem 2rem 0 var(--main-color);
    -moz-box-shadow: 2rem 2rem 0 var(--main-color);
            box-shadow: 2rem 2rem 0 var(--main-color);
}

.home .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
}

.home .content h2{
    font-size: 4rem;
    color: var(--white);
    padding-bottom: 1.5rem;
    font-family: var(--font-family-1);
}

.home .content h2 span{
    font-family: var(--font-family-1);
    color: var(--main-color);
}

.home .content h5{
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
}

.home .content p{
    padding: 1.5rem 0;
    color: var(--white);
}

.home .social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 2.5rem;
}

.home .social a{
    border-radius: var(--border-radius-3);
    height: 4rem;
    width: 4rem;
    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;
    color: var(--white);
    background-color: var(--main-color);
}

.home .social a:hover{
    background-color: var(--white);
    color: var(--main-color);
}

/*----- 2- About -----*/
.about .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.about .image{
    width: 32rem;
}

.about .image img{
    border: 1rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.about .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

.about .content h2{
    font-size: 3rem;
    color: var(--secondary-color);
    padding-bottom: 1rem;
    font-family: var(--font-family-1);
}

.about .content p{
    padding-bottom: 1rem;
}

.about .content .about-info{
    padding: 1rem 0;
}

.about .content .about-info h4{
    font-size: 1.6rem;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.about .content .about-info span{
    font-size: 1.6rem;
    font-weight: 400;
    color: #666;
}

/*----- 3- Skills -----*/
.skills{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3rem;
}

.skill-item{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33rem;
            flex: 1 1 33rem;
}

.skill-item .box{
    padding-bottom: 3rem;
}

.skill-item .box:last-child{
    padding-bottom: 0rem;
}

.skill-item .box h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 1rem;
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.skill-item .box .progress-bar{
    width: 100%;
    background: var(--secondary-color);
    overflow: hidden;
    height: 1rem;
    border-radius: 50rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.skill-item .box .progress-bar span{
    display: block;
    height: 100%;
    background: var(--main-color);
}

/*----- 4- Experience -----*/
.experience .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;
}

.experience-item{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    padding: 0 3rem 2rem 3rem;
    border-left: 0.2rem solid var(--main-color);
    margin-left: 2rem;
}

.experience-item i{
    position: absolute;
    top: 0; 
    left: -2.5rem;
    height:5rem;
    width: 5rem;
    border-radius: var(--border-radius-3);
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    background:var(--main-color);
}

.experience-item .content{
    background: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    border-bottom: var(--custom-border);
}

.experience-item span{
    background: var(--main-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 50rem;
}

.experience-item h3{
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-family-1);
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
}

.experience-item h5{
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

/*----- 5- Counting -----*/
.counting{
    background-color: var(--secondary-color);
    min-height: 20rem;
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2rem;
}

.counting .box{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    text-align: center;
    margin: 2rem;
}

.counting .box .count{
    font-size: 6rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--main-color);
    padding-bottom: 0.5rem;
}

.counting .box h3{
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    font-family: var(--font-family-1);
}

/*----- 6- Services -----*/
.service .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: 1rem;
}

.service-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 4rem 3rem;
    text-align: center;
    cursor: pointer;
    border-bottom: var(--custom-border);
}

.service-item:hover{
    background-color: var(--secondary-color);
}

.service-item i{
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    font-size: 3rem;
    height: 8rem;
    width: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
}

.service-item h3{
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-family-1);
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.service-item:hover h3,
.service-item:hover p{
    color: var(--white);
}

/*----- 7- Portfolio -----*/
.portfolios .controls {
    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;
    list-style-type: none;
    gap: 1rem;
    margin-bottom: 2rem;
}

.controls .button{
    border-radius: 5rem;
    cursor: pointer;
}

.controls .button.active{
    background-color: var(--main-color);
    color: var(--white);
}

.portfolio-item {
    width: 33.3%;
    padding: 0.5rem;
}

.portfolios-content {
    height: 25rem;
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.portfolios-content .content{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    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;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.portfolios-content .content h3{
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: translateY(-10rem);
            transform: translateY(-10rem);
    opacity: 0;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.4rem;
    font-family: var(--font-family-1);
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.portfolios-content .content h3:hover{
    color: var(--main-color);
}

.portfolios-content .content p{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    padding-bottom: 1.3rem;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: translateY(-10rem);
            transform: translateY(-10rem);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

 .portfolios-content .btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: translateY(-10rem);
            transform: translateY(-10rem);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
        -o-transition: all 0.4s linear;
            transition: all 0.4s linear;
}

.portfolios-content .btn-container a {
    height: 4.5rem;
    width: 4.5rem;
    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;
    border-radius: var(--border-radius-3);
}

.portfolios-content a i {
    font-size: 1.8rem;
    color: var(--white);
}

.portfolios-content .btn-container a:hover {
    background-color: var(--white);
}

.portfolios-content .btn-container a:hover i {
    color: var(--main-color);
}

.portfolios-content:hover .content{
    -webkit-transform: scale(1);
            transform: scale(1);
}

.portfolios-content:hover .content h3{
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

.portfolios-content:hover .content p{
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

.portfolios-content:hover .content .btn-container{
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

/*----- 8- Testimonials -----*/
.testimonial{
    background-color: var(--secondary-color);
}

.testimonial-slider{
    position: relative;
    padding-bottom: 4rem;
    overflow: hidden;
}

.testi-item{
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.testi-item img{
    height: 10rem;
    width: 10rem;
    border-radius: var(--border-radius-3);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border: 0.5rem solid var(--main-color);
}

.testi-item .intro{
    margin: 1rem 0;
}

.testi-item .intro h3{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
    font-family: var(--font-family-1);
}

.testi-item .intro h5{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
}

.testi-item p{
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.testi-item .rating i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/*----- 9- Blogs -----*/
.blog .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1rem;
}

.blog-item{
    border-bottom: var(--custom-border);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.blog-item:hover{
    border-color: var(--secondary-color);
}

.blog-item .image{
    height: 25rem;
    overflow: hidden;
    position: relative;
}

.blog-item:hover .image img{
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

.blog-item .content{
    padding: 2rem;
}

.blog-item .content .main-heading{
    display: block;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-family-1);
    line-height: 1.3;
    padding-bottom: 0.5rem;
}

.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

.blog-item h3{
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--main-color);
    padding: 0.9rem 1.5rem;
    border-radius: var(--border-radius-1);
    display: inline-block;
}

.blog-item h3 i{
    font-size: 1.8rem;
    color: var(--white);
    margin-right: 0.5rem;
}

.blog-item h3 span{
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
}

.blog-item p{
    padding-bottom: 1.5rem;
}

/*----- 10- Contact -----*/
.contact .alert{
    display: block;
    font-size: 1.8rem;
    color: var(--main-color);
    padding-top: 1.3rem;
}

.contact .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: 1rem;
}

.contact-info{
    background-color: var(--white);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 3rem 2.5rem;
}

.contact-info .info-item {
    padding-bottom: 1.5rem;
}

.contact-info .info-item h4{
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding-bottom: 0.4rem;
    font-family: var(--font-family-1);
}

.contact-info .info-item .detail{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.contact-info .info-item i{
    font-size: 1.5rem;
    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;
}

.contact-info .info-item p {
    text-transform: none;
}

.contact form{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 42rem;
            flex: 1 1 42rem;
    background-color: var(--white);
    padding: 3rem 2.5rem;
    box-shadow: var(--box-shadow);
}

.contact form input:-webkit-autofill,
.contact form input:-webkit-autofill:hover,
.contact form input:-webkit-autofill:focus,
.contact form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.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{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; 
    border: 0.15rem solid rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.contact form .input-field:hover{
    border-color: var(--main-color);
}

.contact form .input-field label {
    color: var(--main-color);
    font-size: 1.6rem;
    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;
}

.contact form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--secondary-color);
    background-color: transparent;
    text-transform: none;
}

.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{
    height: 10rem;
    resize: none;
}

.contact form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

/*------------------------------ All Sections CSS (End) ------------------------------*/