* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #1da1f2;
    --secondary-color:#ffffff;
    --third-color: #003f73;
    --fourth-color: rgb(162, 159, 159);
    --five-color: #161616;
    --fonttext-noto: "Noto Sans", sans-serif;
    --fonttext-poppins: "Poppins", sans-serif;
}

.container {
    max-width: 1080px;
    margin: auto;
}

.box-content {
    margin-top: 7rem;
    padding: 0 15px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    max-width: 600px;
    width: 100%;
    object-fit: contain;
}

.title-info {
    font-family: var(--fonttext-poppins);
    font-size: 20px;
    line-height: 1.52em;
    color: var(--five-color);
    margin-bottom: 0.5rem;
}

.info-content {
    margin-bottom: 1.5rem;
}

.info-content p {
    font-size: 14.5px;
    font-family: var(--fonttext-poppins);
    letter-spacing: .2px;
    line-height: 1.52em;
    color: var(--five-color);
    margin-bottom: 11px;
}

.box-list-menu.active {
    right: 0;
}

.box-list-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100rem;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: var(--secondary-color);
}

.card-top-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    margin-bottom: 1rem;
    background: var(--primary-color);
    padding: 15px;
}

.logo-menu {
    max-width: 120px;
    width: 100%;
    object-fit: contain;
}

.close-list-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    padding-right: 0;
    cursor: pointer;
    color: var(--secondary-color);
}

.list-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5px;
    padding: 15px 0;
}

.list-menu a {
    display: flex;
    align-items: center;
    color: var(--fourth-color);
    font-family: var(--fonttext-poppins);
    font-size: 14.5px;
    padding: 10px;
    justify-content: space-between;
}

.list-menu a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {

    .box-content {
        margin-top: 6rem;
    }

    .info-content p {
        font-size: 14px;
    }
}