header .header-container {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

header .header-container .home-btn {
    height: 35px;
    width: 130px;
}

header .header-container .black-line {
    display: none;
}

header .header-container .contact-btn {
    border-radius: 14px;
    padding: 10px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    font-weight: 700;
    min-width: 172px;
    max-width: 50%;
    width: max-content;
    transition: all 0.3s ease;
}

header .header-container .contact-btn figure {
    padding: 5px;
    margin-right: 10px;
}

header .header-container .contact-btn img {
    width: 15px;
    height: 15px;
}

header .header-container .contact-btn:hover,
header .header-container .contact-btn:active{
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

    /* Pad Version */
    @media screen and (min-width: 768px) {
        header .header-container {
            padding: 25px 40px;
        }

        header .header-container .home-btn {
            height: 55px;
            width: auto;
            min-width: 205px;
            margin: 0 20px 15px 0;
        }

        header .header-container .black-line {
            display: block;
            background-color: var(--secondary-color);
            height: 2px;
            width: 100%;
        }

        header .header-container .contact-btn {
            margin-left: 20px;
            min-width: 220px;
            padding: 10px 20px;
        }

        header .header-container .contact-btn img {
            width: 20px;
            height: 20px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            header .header-container {
                padding: 30px 60px;
            }

            header .header-container .home-btn {
                height: 65px;
                min-width: 245px;
                margin: 0 20px 20px 0;
            }

            header .header-container .contact-btn {
                min-width: 365px;
            }

            header .header-container .contact-btn img {
                width: 30px;
                height: 30px;
            }
        }