*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
body{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.main{
    background-image: url('img1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    width: 100%;
}
.top{
    display: flex;
    justify-content: space-between;
    color: white;
    padding: 30px 30px;
}
.navi ul{
    display: flex;
    list-style-type: none;
}
.navi ul li a{
    padding: 10px;
    text-decoration: none;
    text-transform: capitalize;
    color:white;
    font-size: 20px;
    font-weight: bold;
}
.navi ul li a:hover{
    color: #f9004d;
}
.logo{
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
}
span{
    color: #f9004d;
}
.btn{
    background:#f9004d;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid transparent;
    font-weight: bold;
    transition: transform .4s;
}
.top .btn{
    height: 100%;
}
.btn:hover{
    background: transparent;
    border-radius: 20px;
    border: #f9004d 2px solid;
    cursor: pointer;
    font-weight: bold;
    transform:scale(1.2)
}
.part{
    padding-top: 80px;
    padding-left: 40px;
}
.part h2{
    font-size: 55px;
    color: white;
    padding-top: 20px;
    padding-bottom: 5px;
}
.part h3{
    font-size: 25px;
    color: rgb(211, 211, 211);
    font-family: serif;
}
.part p{
    font-size: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    padding-bottom: 35px;
}
input{
    width:  330px;
    height: 40px;
    border-radius: 20px;
    outline: none;
    border: #f9004d 2px solid;
    padding-left: 10px;
}
.try{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.try .btn{
    margin-left: -100px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
}
.try .btn:hover{
    background: black;
    border-radius: 20px;
    border: #f9004d 2px solid;
    cursor: pointer;
    font-weight: bold;
    transform:scale(1.2)
}
.container{
    background: rgb(39, 39, 39);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    padding: 20px 150px;
    letter-spacing: 2px;
}
.image2{
    width: 300px;
    height: 350px;
}
.container .text{
    color: white;
    padding-left: 60px;
    font-family: sans-serif;
}
.text p{
    margin-bottom: 20px;
}
.text h1{
    font-size: 45px;
    font-family: Arial;
    font-weight: bold;
    padding-bottom: 10px;
}
.text p{
    padding-top: 10px;
}
.services{
    display: flex;
    text-align: center;
    /* gap: 0.1px; */
}
.service{
    margin: 20px 30px;
    padding: 25px;
    background: rgb(52, 50, 50);
    border-radius: 15px;

}
i{
    font-size: 40px;
    color: #f9004d;
}
.service h2{
    color: white;
    padding-bottom: 20px;
}
.service p{
padding-bottom: 20px;
color: white;
}
.service-content{
    height: 500px;
    padding-top: 50px;
    background: black;
}
.section{
    background: rgb(52, 50, 50);
    text-align: center;
    padding: 70px;


}
.section h2{
    color: white;
    font-family: none;
    padding-bottom: 15px;
}
.icons{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    color: white;
}
.icons i{
    font-size: 30px;
    color: white;
    padding: 10px;
    border-radius: 50%;
    background: #f9004d;
}
.foot{
    text-align: center;
    height: 270px;
    background:black;
    color:white;
    padding: 10px 5px
}
.foot h2{
    padding: 20px 0;
}
.foot p{
    letter-spacing: 1px;
 padding-bottom: 25px;
}
.last{
    padding-top:25px;
}