*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #F5F5F5;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 10px;
}
.main{
    max-width: 1200px;
    width: 60%;
    align-items: center;

}
.main1{
    justify-content: space-around;
    display: flex;
}
.main1 h1{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    color: #0A4931;
}
.sub-main{
    display: block;
    margin-left: 50px;
    flex-wrap: wrap;
}
.sub-main h4{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    padding: 10px 0;
}
.btn{
    margin-top: 50px;
    margin-left: 450px;
}
a{
    position: relative;
    width: 299px;
    height: 44px;
    color: black;
    padding: 20px;
    padding-top: 18px;
    background: #FFFFFF;
    border: 1px solid #0A4931;
    transition: 0.3s;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
}
a:hover{
    cursor: pointer;
    color: white;
    background-color: #0A4931;
    transform: scale(1.1);
}