* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px 0 230px 45px;
    gap: 42px;
}

.link-header {
    font-weight: 400;
    font-size: 21px;
    color: #717580;
    line-height: 20px;
    cursor: pointer;
    transition: .2s;
}

.link-header:hover {
    color: #17233D;
}

.button-header {
    font-weight: 500;
    font-size: 21px;
    line-height: 20px;
    background: #6fbf44;
    color: #ffffff;
    border-radius: 8px;
    border: none;
    width: 124px;
    height: 51px;
    cursor: pointer;
    transition: .2s;
}

.button-header:hover {
    background: #80ff00;
    color: #17233D;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 115px;
    flex-wrap: wrap-reverse;
}

.img-logo {
    width: 600px;
}

section {
    width: 493px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

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

p {
    font-weight: 400;
    font-size: 21px;
    line-height: 35px;
    color: #4B505A;
}

section .link-main {
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
    color: #6FBF44;
    cursor: pointer;
    transition: .2s;
}

section .link-main:hover {
    color: #178b00;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

footer .social-media {
    display: flex;
    gap: 25px;
}

footer .social-media i {
    color: #717580;
    font-size: 1.4rem;
    transition: .3s;
}

footer .social-media i:hover {
    transform: translateY(-4px);
}

footer .copyright {
    text-align: center;
    color: #4B505A;
}

@media(max-width: 1296px) {
    header {
        display: flex;
        justify-content: center;
        margin-left: 0;
        margin-bottom: 140px;
    }

    main {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    section {
        display: flex;
        align-items: center;
        text-align: center;
    }

    section h1 {
        line-height: 70px;
    }

    footer {
        margin: 60px 0 40px;
    }
}

@media(max-width: 768px) {
    header {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }

    main .img-logo {
        width: 500px;
    }

    main section {
        width: 440px;
    }

    main section h1 {
        font-size: 52px;
        line-height: 55px;
    }
}

@media(max-width: 480px) {
    header {
        margin-bottom: 80px;
    }

    header .link-header {
        display: none;
    }

    header .button-header {
        font-size: 12px;
        line-height: 12px;
        width: 91px;
        height: 31px;
        margin-left: 310px;
    }

    main section {
        width: 332px;
    }

    main section h1 {
        font-size: 37px;
        line-height: 37px;
    }

    main section p {
        font-size: 21px;
        line-height: 34px;
    }

    main section .link-main {
        font-size: 21;
    }

    main .img-logo {
        width: 350px;
        margin-top: -40px;
    }

    footer .social-media {
        display: flex;
        gap: 20px;
    }

    footer .social-media i {
        font-size: 1.3rem;
    }

    footer .copyright {
        font-size: 18px;
        width: 95vw;
    }
}

@media(max-width: 392px) {
    header .button-header {
        margin-left: 230px;
    }
}