#hero {
    padding: 30px 0;
}
#hero .row {
    align-items: center;
}
#hero .header h1 {
    color: #333;
    font-family: Inter;
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: 0.47px;
    margin: 0;
}
#hero .header h1 strong {
    color: #67943B;
    font-family: Inter;
    font-size: 47px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: 0.47px;
}
#hero .content p {
    color: #585858;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
#hero .content .click {
    margin-top: 30px;
    display: flex;
}
@media (max-width: 500px) {
    #hero .content .click {
        flex-direction: column;
    }
}
#hero .content .click .btn:first-of-type {
    margin-right: 10px;
}
@media (max-width: 500px) {
    #hero .content .click .btn:first-of-type {
        margin: 0 0 10px;
    }
}

#filters {
    background: #F8F8F8;
    padding: 30px 0;
}
#filters form {
    position: relative;
}
#filters form input {
    display: flex;
    height: 44px;
    align-items: center;
}
#filters form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 44px;
    background: none;
    border: none;
}
#filters select {
    height: 44px;
}

#blog {
    padding: 50px 0;
}
#blog .post .wrap {
    border: 1px solid #D3D3D3;
    background: #FFF;
    border-radius: 5px;
    padding: 10px;
    height: 100%;
}
#blog .post a{
    text-decoration: none;
}
#blog .post .wrap img {
    height: 217px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
#blog .post .wrap h2 {
    color: #000;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.17px;
    margin: 20px 0;
}
#blog .post .wrap p {
    color: #585858;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
#blog .post:first-of-type img {
    height: 276px;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
}
#blog .post:first-of-type h2 {
    color: #333;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.24px;
    margin: 20px 0;
}
#blog .post:first-of-type p {
    color: #585858;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
}
