* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header {
    margin: 47px 0 144px 42px;
}

.link-header {
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    color: #17233D;
    cursor: pointer;
    margin-right: 32px;
}

.button-header {
    width: 130px;
    height: 41px;
    background: #6FBF44;
    border-color: #4CB538;
    border-radius: 6px;
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    cursor: pointer;

}

.button-header:hover {
    background: #4CB538;
    transition: 0.3s;
}

.logo-image {
    width: 568px;
    height: 500px;
    margin-top: 100px;
    margin-left: 125px;
    display: inline-block;

}

section {
    display: inline-block;
    vertical-align: top;
    margin-left: 100px;
    margin-top: 120px;
    width: 493px;
}

h1 {
   
    font-weight: 700;
    font-size: 62px;
    line-height: 82px;
    color: #161A49;

}

p {
   
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #4B505A;
    text-align: justify;
}

.link-main {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #6FBF44;
    cursor: pointer;
}

@media screen and (max-width: 720px) {
   .link-header {
    display: none;
   } 
    .button-header {
     width: 91px;
     height: 31px;
     font-size: 12px;
     position: relative;
     left: 65%;
    }
    .logo-image {
        max-width: 90%;
        height: auto;
        display: block;
        padding: 20px;
       position: fixed;
       bottom: 20px;
       margin: 100px 20px 20px 20px;
    }
    section {
        display: block;
        margin: 30px;
        width: auto;
        text-align: center;
        position: fixed;
        top: 150px;
    }
    h1 {
        font-size: 30px;
        line-height: 30px;
    }
    p {
        font-size: 18px;
        line-height: 33px;
        text-align: center;
        margin-top: 20px;
    }
    .link-main {
       display: none;
    }
}


