*{
    margin:0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    min-height: 1000px;
}
  .justify{
      color: black;
      font-weight: 400;
    text-align: justify;
}  
p{
    font-weight: 400;
}
/*  Section */
section:nth-of-type(3){
     padding-top: 180px; 
}  
section:nth-of-type(4){
     padding-top: 100px; 
}  
section:nth-of-type(6){
     padding: 50px; 
}  
/* Header Section */
header{
    position: fixed;
    top:0;
    /* left:10px; */
    background-color: rgb(20, 20, 20);
    width:100%;
    height: 80px;
    padding-top: 5px;
     padding-left: 30px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    z-index: 1;
}
header img
{
    height: 65px;
    width: 65px;
}
header .navbar{
    display: flex;
    position: relative;
    left: -126px;
}

header .navbar li{
    list-style: none;
    margin-left: 30px;
    
}
header .navbar li a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.5s;
    padding: 2px 4px;
    border-radius: 20px;
}
header .navbar li a:hover{
    color: #ff0157;
}
/* Home Section */
.banner{
    position: relative;
    width:100%;
    top:80px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('bg.jpg');
    background-size: cover;
}
.banner .content{
    max-width: 900px;
    text-align: center;
}
.banner .content h2{
    font-size: 4rem;
    color: #fff;
}
.banner .content p{
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
}
.btn{
    font-size: 15px;
    color:#fff;
    background: #ff0157;
    display: inline-block;
    padding: 10px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.5s;
    
}
.btn:hover{
    letter-spacing: 6px;
}
/* About Section */
.title{
    font-size: 35px;
    font-weight: 300;
}
.title span{
    color: #ff0157;
    font-size: 45px;
}
.row{
    top:100px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.row .col{
    position: relative;
    width:480px;
    margin: 50px 50px;
    /* padding: 30px; */
}
.row .col .box{
    position: relative;
    width:100%;  
    height: 100%;
}
 .row .col .box img{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
} 
/* Menu Section */
.inner-menu{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.menu .content{
    display: flex;
    justify-content: center;
    align-items: center;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        margin-top:40px;
}
.menu .content .inner-1{
    width:340px;
    margin: 20px 18px;
    border:15px solid #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}
.menu .content .inner-1 .box{
    position: relative;
    width:100%;
    height: 300px;
}
.menu .content .inner-1 .box img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.menu .content .inner-1 .box img:hover{
    opacity: 0.8;
    cursor: pointer;
}
.text h3{
    text-align: center;
}

/* Expert Section */
.expert .content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.expert .content .inner-1{
    width: 265px;
    border:15px solid #fff;
    box-shadow: 0 5px 35px rgba(0,0,0,0.08);
    margin: 15px;
}
.expert .content .inner-1 .box{
    position: relative;
    width:100%;
    height: 300px;
}
.expert .content .inner-1 .box img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
/* Review Section */
.testimonials{
    margin-top: 40px;
    background:url('Images/bg2.jpg') ;
    background-size: cover;
}
.white .title,p{
    color:#fff;
    font-weight: 700;   
}
.testimonials .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.testimonials .inner-menu p{
    font-weight: 300;
}
.testimonials .content .inner-1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 340px;
    margin: 30px;
    padding: 40px;
    background: #fff;
}
.testimonials .content .inner-1 .box {
    position: relative;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonials .content .inner-1 .box img{
   position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.content .text p{
    color: black;
    font-style: italic;
    padding: 2px;
    font-weight: 200;
}
.testimonials .content .text h3{
    color:#ff0157;
    margin-top: 15px;
}

/* Contact Section */
.contact{
    background: url('Images/bg3.jpg') no-repeat center center/cover;
}
.contact-form{
    padding: 75px 50px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 500px;
    margin-top: 50px;
}
.contact-form h3{
    color: #111;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}
.contact-form .inputbox{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.contact-form .inputbox input,textarea{
    width: 100%;
    border: 1px solid black;
    padding: 10px;
    color: #111;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    resize: none;
}
.contact-form .inputbox input[type="submit"]
{
font-size: 20px;
display: inline-block;
text-transform: uppercase;
letter-spacing: 2px;
max-width: 100px;
font-weight: 500;
border: none;
cursor: pointer;
/* transition: 0.5s; */
background-color: #ff0157;
color: #fff;

}
/* Footer */
.copyright{
    padding: 8px 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 5px;

}
.copyright p{
    color: #333;
}
.copyright a{
    color: #ff0157;
    text-decoration: none;
    font-weight: bold;
}

/* Made By Piyush Jain */
