*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    /* padding: 20px 60px; */
    /* margin: 0 20px; */
    background-color: white;
    position: sticky;
    top: 0;
    width: 100%;

}
.logo{
    display: flex;

}
.logo img{
    height: 100px;
    border-radius: 50%;


}
.logo span{
    color: brown;
    display: flex;
    font-weight: bolder;
font-size: 1.30rem;
align-items: center;
text-align: center;

}
.nav-link{
    display: flex;
    gap: 30px;
}
.nav-link a{
    color: darkgreen;
    text-decoration: none;
    font-weight: bold;

}
.nav-link a:hover{
    color: brown;
    font-weight: bolder;
}
.btns{
    display: flex;
    font-weight: bold;
    gap: 30px;
    cursor: pointer;

}
.btns a{
    text-decoration: none;

}
.signinbtn a{
    color: green;
    padding: 12px;

}
.signinbtn {
    border:solid 2px green;
    border-radius:6px ;
    padding: 8px;
    background: white;
    font-weight: bolder;
    cursor: pointer;
    /* margin-right: 40px; */
}

.signupbtn a{
    color: rgb(242, 250, 242);
    padding: 12px;

}
.signupbtn {
    border-radius:6px ;
    padding: 9px;
    background: white;
    font-weight: bolder;
    cursor: pointer;
    background: rgb(173, 49, 49);
    border: none;
    transition: 2s;
}
.hero{
    display: grid;
    text-align: center;
    align-items: center;
    line-height: 1.9;
    background: url('./images/banner.jpg')no-repeat center/cover;
    height: 80vh;
    width: 100%;

}
.hero-content{
    font-size: 1.25rem;
    text-align: center;
    align-items: center;
    display: grid;
    grid-template-columns: grid;
    
     flex-direction: column;
}
.hero-content h1{
    color: white;
    font-size: 2.25rem;
    margin-top: 60px;
}
.hero-content p{
    color: white;
    font-size: 1.25rem;


}
.cards-section{
    display: grid;
    background-color:rgb(199, 233, 247);
    margin-top: 20px;
justify-content: center;
text-align: center;
align-items: center;
width: 100%;

}
.card{
display: grid;
    grid-template-columns:1fr 1fr 1fr;
    margin-top: 20px;
    margin: 10px;
    height: 400px;
    gap: 20px;
    color: brown;
    box-shadow: 180ms ease;   
    width: 100%;
}
.cards-section h1{
    color: brown;
    margin-bottom: 10px;
    font-size: 2.25rem;
    margin-top: 15px;
}

.one{
    height: 400px;
    border: 1px solid white;
    cursor: pointer;
    


}
.one h3{
    color: brown;
    margin-top: 10px;
}
.one p{
    margin-top: 10px;
margin: 0 30px;
line-height: 2.6;
}

.two h3{
    color: brown;
    margin-top: 10px;
}
.two p{
    margin-top: 10px;
margin: 0 30px;
line-height: 2.6;
}

.three h3{
    color: brown;
    margin-top: 10px;
}
.three p{
    margin-top: 10px;
margin: 0 30px;
line-height: 2.6;
}
.one img{
    height: 250px;
    width: 300px;
    line-height: 1.6;

}
.two{
    height: 400px;
    border: 1px solid white;
    cursor: pointer;

}
.two img{
    height: 250px;
    width: 300px;
}
.three{
    height: 400px;
    border: 1px solid white;
    cursor: pointer;

}
.three img{
    height: 250px;
    width: 300px;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(51, 50, 50);
    color: whitesmoke;
    height: 200px;
margin-top: 20px;
}
.footer-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 30px;
}
.footer-content li{
    list-style: none;

}
.footer-content ,a {
    text-decoration: none;
    color: whitesmoke;
    gap: 30px;
    padding-left: 80px;
    line-height: 1.6;
}
.footer-content h4 {
    padding-left: 80px;
    line-height: 1.6;
    
}
.footer-bottom{
padding-right: 40px;

}