@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* about page css */
.contents{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
}
.text-contents{
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
    max-width: 80%;
    height: 25vh;
}
.text-contents h2{
    color: rgb(26, 83, 9);
    font-size: 40px;
    font-weight: bold;
}
.text-contents p{
    font-size: 25px;
    text-align: justify;
}
.contents img{
    width: 300px;
    border-radius: 50%;
}
.cards{
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    background: transparent;
}
.cards h2{
    margin-top: 50px;
    font-size: 40px;
    font-weight: bold;
    background:transparent;
}
.card{
    background: none;
    width: 360px;
    border-radius: 10%;
    padding: 30px 15px;
    box-shadow: 0 8px 18px rgba(21, 54, 26, 0.253);
    background-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(12, 116, 2, 0.568);
}
.card h4{
    font-size: 30px;
    font-weight: bold;
}
.card span{
    font-size: 18px;
    color: black;
}