/* Global stayle start */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 10px;
    --Primary-font:"Urbanist", sans-serif;
    --primary-color:#131416;
    --secondary-color:white;
    --third-color:#00BCD4;
}
body{
    font-family: var(--Primary-font);
    color: var(--primary-color);
}
img{
    max-width: 100%;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

p{
    font-size: 2.5rem;
    font-weight: 400;
    color: #131416;
}

.btn-primary{
    padding: 12px 24px;
    font-size: 1.4rem;
    color: black;
    font-weight: 800;
    background-color: var(--secondary-color);
    transition: all 0.4s ease-in;
    display: inline-block;
    border: 2px solid black;
}

.btn-primary:hover{
    background-color: var(--third-color);
    color: var(--secondary-color);
    border: 2px solid white;
}
.wraper{
    max-width: 1170px;
    margin: auto;
    padding: 0 30px;
}
/* Global style end */

/* Header-area start */
.header-area{
    padding: 20px 0;
}

.logo img{
    width: 100px;
}

.logo .fa-bars{
    font-size: 30px;
    display: none;
}

.menu a{
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.4s ease-in;
}

.menu a:hover{
    color: var(--third-color);
}

.mobile-menu{
    background-color: var(--secondary-color);
    color: var(--third-color);
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: fixed;
    width: 330px;
    height: 100%;
    top:0;
    right: -100%;
    padding:30px 30px;
    padding-top: 60px;
    transition: all 0.5s ease-in;
    z-index: 999;
}

.mobile-menu h3{
    font-size: 1.6rem;
    font-weight: 600;
}
.mobile-menu h2{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-menu img{
    width: 100px;
}

.mobile-menu a{
    font-size: 25px;
}

#cross-icon{
    font-size: 40px;
}

.fa-solid, .fas {
    font-size: 25px;
}

.fa-regular, .far {
    font-size: 25px;
}

.fa-pinterest {
    color: black;
}
/* Header-area end */

/* Hero-area start */
.hero-area{
    background-image:url(https://kit.envalabdemos.com/carsentro/wp-content/uploads/2023/09/Image-PSL4AKA-1024x684.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:  top center;
    position: relative;
    z-index: 1;
}

.hero-area::before{
    content: " ";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.479);
    position: absolute;
    z-index: -1;
}

.hero-wraper{
    padding: 180px 30px;
}

.hero-area h1{
    font-size: 6.1rem;
    font-weight: 700;
    line-height: 60px;
    margin: 15px 0;
    color: white;
    width: 52%;
    margin-bottom: 30px;
}

.hero-area h4{
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
}
.hero-area p{
    color: white;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    width: 50%;
}

.hero-right img{
    width: 1200px;
    object-fit: cover;
}
/* Hero-area end */

/* About-area start */
.about-area{
    background-color: white
}

.about-bottom{
    margin-top: 30px;
}

.about-area .post{
    margin-top: 20px;
}

.about-area p {
    font-size: 1.6rem;
    color: #51555E;
    font-weight: 500;
}

.about-area .fa-dna,.fa-medal,.fa-gear{
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-area h2{
    font-size: 3.9rem;
    font-weight: 700;
    line-height: 50px;
    width: 60%;
    margin-top: 20px;
}

.about-area h3{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-area a{
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 10px 25px;
    display: inline-block;
    margin: 20px 0;
    transition: all 0.5s ease-in;
}

.about-area a:hover{
    background-color: var(--third-color);
}

.about-bottom .post{
    background-color:white;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px 0;
}

.post .text{
    padding: 15px 30px;
}
/* About-area end */

/* Contact-area start */
.contact-area{
    background-color: var(--third-color);
    padding: 60px 0;
}
.contact-wraper{
    display: flex;
    justify-content: space-between;
    gap: 170px;
    align-items: center;
}
.contact-wraper>*{
    flex-basis: 100%;
}
.contact-area h2{
    font-size: 3.9rem;
    font-weight: 700;
    line-height: 50px;
    color: white;
}
.contact-area h4 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-area p{
    font-size: 1.8rem;
    margin-top: 20px;
    color: white;
    font-weight: 500;
}

.contact-right input{
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid black;
    background-color: white;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 2.0rem;
    font-weight: 600;
 }
.contact-right textarea{
    font-size: 2.0rem;
    font-weight: 600;
 }
 .contact-right label{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-color);
}
.contact-right textarea{
    display: block;
    width: 100%;
    padding: 12px;
    background-color: white;
    margin-top: 10px;
 }

 .contact-area input[type=submit]{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 30px;
    padding: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all .5s ease-in;
    border: 2px solid black;
 }

 .contact-area input[type=submit]:hover{
    background-color: white;
    color: var(--third-color);
 }

 .contact-area .labl{
    color: white;
    font-weight: 600;
 }
/* Contact-area end */


/* Footer-Area Starts */
.footer-area{
    background-color: white;
    padding: 80px 0;
}

/* footer-middle Starts */
.middle-left h2 {
    font-size: 2.0rem;
    color: var(--primary-color);;
    margin-top: 3px;
}
.footer-middle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 165px;
}
.footer-middle>*{
    flex-basis: 100%;
}
.middle-left{
    display: flex;
    gap: 80px;
    justify-content: space-between;

}
.middle-left .logo-heading{
    align-items: start;
}
.middle-left h6{
    color: var(--primary-color);;
    font-size: 1.4rem;
    font-weight: 600;
}
.middle-left a{
    color: var(--primary-color);;
    font-size: 1.4rem;
    font-weight: 400;
}
.middle-left h6{
    margin-bottom: 15px;
}
.menu-utilities{
    display: flex;
    gap: 70px;
}
.footer-menu{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.utilities{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.middle-right h4{
    color: var(--primary-color);;
    font-size: 1.4rem;
    font-weight: 600;
}
.middle-right h5{
    color: var(--primary-color);;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 22px 0;
}
.middle-right p{
    font-size: 1.2rem;
    color: var(--primary-color);;
    margin-top: 30px;
    width: 100%;
}
.middle-right p a{
    color: var(--primary-color);;
    text-decoration:underline;
}
.input-btn{
    display: flex;
    align-items: center;
    gap: 10px;
}
.input-btn input{
    padding: 15px 0px;
    padding-left: 15px;
    padding-right: 150px;
    background-color:white;
    border: 1px solid var(--primary-color);;
    border-radius: 8px;
    font-size: 1.8rem;
}
.input-btn input::placeholder{
    color: var(--primary-color);
}
.btn{
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 1.6rem;
    border-radius: 8px;
    padding: 15px;
    display: inline-block;
    transition: all .5s ease-in;
}

.btn:hover{
    background-color: var(--third-color);
}
/* footer-middle Ends */

/* footer-bottom Starts */
.footer-bottom{
    display: flex;
    align-items: center;
    gap: 210px;
    justify-content: space-between;
}
.bottom-left{
    display: flex;
    margin-top: 70px;
}
.bottom-left h6,h5{
    color: var(--primary-color);;
    font-size: 1.4rem;
}
.bottom-left h5{
    color: var(--primary-color);;
    padding: 0 40px;
}
.bottom-left a{
    color: var(--primary-color);;
    text-decoration: underline;
    font-size: 1.4rem;
}
.bottom-right{
    margin-top: 70px;
}
.icon{
    font-size: 1.8rem;
    display: flex;
    gap: 25px;
}
.fa-facebook-f{
    color: var(--primary-color);
}
.fa-instagram{
   color: var(--primary-color);
}
.fa-twitter{
    color: var(--primary-color);
}
.fa-linkedin{
    color: var(--primary-color);
}
/* footer-bottom Ends */

/* Footer-Area Ends */