:root{
    --pading:8%;
    --red: rgb(148, 11, 11);
}
*{font-family: 'Josefin Sans', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: url(../img/vipul-jha-a4X1cdC1QAc-unsplash.jpg);
    background-size: cover;
    background-position: center;
}
@media screen and (max-width:768px) {
    .hero{
        width: 1130px;
    }
    
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;

}
.logo{
    color: rgb(148, 11, 11);
    font-size: 35px;
    font-weight: bold;
text-transform: capitalize;
    letter-spacing: 3px;
    cursor: pointer;

}
nav ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 25px;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
    transition: 0.8s;
}
nav ul li a:hover{
    color:rgb(148, 11, 11) ;
    transition: 0.4s;
    transform: scale(1.2);
}

.btn{
    background-color:rgb(148, 11, 11) ;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight:bold ;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.8s;
    letter-spacing: 2px;
    text-transform: capitalize;
}
.btn:hover{
    transform:scale(1.1) ;
    background-color: transparent;
    border: 2px solid rgb(148, 11, 11);

}
.content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}
h1{
    color: white;
    margin: 20px 0 20px;
    font-size: 65px;
    text-transform: capitalize;
    letter-spacing: 3px;
}
h3{
    color: white;
    font-size: 25px;
    margin-bottom:50px ;
    text-transform: capitalize;
}
h4{
    color:rgb(148, 11, 11); 
    letter-spacing: 2px;
    font-size: 25px;
    text-transform: uppercase;

}

.newslatter form{
    width: 380px;
    max-width: 100%;
    position: relative;

}
.newslatter form input:first-child{
    display: inline-block;
    width: 100%;
    padding: 14px 130px 15px;
    border: 2px solid var(--red);
    outline: none;
    border-radius: 30px;
}
.newslatter form input:last-child{
    position: absolute;
    display: inline-block;
    outline: none;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    background-color: var(--red);
    color: white;
    box-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
    top:6px;
    right: 6px;
}
.about{
    width: 100%;
    padding: 100px 0px;
    background-color: #191919; 
    transition: 0.8s;
}
@media screen and (max-width:768px) {
    .about{
        width: 1130px;
    }
    
}


.about img{
    height: auto;
    width: 400px;
    border-radius: 30px;
    box-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
    transition: 0.8s;
}
.about img:hover{
    transform:scale(1.1) ;
}
.about .abouttext{
    width: 550px;

}
.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.abouttext h2{
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.abouttext h5{
    color: white;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.abouttext span{
    color: var(--red);
}
.abouttext p{
    color: white;
    letter-spacing: 2px;
    line-height:28px;
    font-size: 18px;
    margin-bottom: 45px;
}
button{
    background-color: var(--red);
    color: white;
    border: 2px solid transparent;
    font-size: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;

}
button:hover{
    background-color: transparent;
    border: 2px solid var(--red);
    cursor: pointer;
    transform: scale(1.2);
}

.service{
    background: #101010;
    width: 100%;
    padding: 20px 0px;
}
@media screen and (max-width:768px) {
    .service{
        width: 1130px;
    }
    
}
.title h2{
    color: white;
    font-size: 75px;
    width: 1130px;
    margin:30px auto;
    text-align: center;
    text-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
}
.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.card{
    height: 365px;
    width: 335px;
    padding: 20px 35px;
    background: #191919;
    border-radius: 20px;
    margin: 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
    transition: 0.8s;
}
.card:hover{
transform: scale(1.1);
}
.card i{
    font-size: 50px;
    display: block;
    text-align: center;
    margin:25px 0 ;
    color: var(--red);
    margin-bottom: 35px; 
}
.card h5{
    color: white;
    font-size: 23px;
    margin-bottom:  15px; 
    text-transform: uppercase;
    text-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
}
.pra p{
    color: white;
    font-size:17px ;
    line-height: 32px;
    margin-bottom: 20px;

}
.contact-me{
    width: 100%;
    height: 290px;
    background:#191919 ;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content:center ;
}
.contact-me p{
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 5px;
}
.contact-me .button-tow{
    
    color: var(--red);
    
    font-size: bold;
    padding: 13px 30px;
    
    text-transform: uppercase;
    
}
.icon{
    margin-top: 35px;
}
.icon img{
    margin-right: 50px;
    width: 2.5rem;
    transition: 0.4s;
    border-radius: 20px;
    box-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
}
.icon img:hover{
    transform: scale(1.3);
}
@media screen and (max-width:768px) {
    .icon img:hover{
        transform: none;
    }
    
}
footer{
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #101010;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
footer p{
    color: white;
    font-size: large;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 20px;
}
footer p span{
    color: var(--red);
    text-shadow: 0px 0px 5px #000 ,0px 0px 15px #858585;
}
