@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&display=swap');

.font-site {
    font-family: "Archivo Narrow", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-size: 1.7rem;
    color: #121518;
}

.reports-header {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.reports-header img {
    width: 100%;
    height: 300px;
}

.reports-container {
    display: flex;
}

.mamu {
    flex: 1;
}

.details {
    flex: 3;
    background-color: #F5F5F5;
    border-radius: 5px;
}

.mamu ul {
    background-color: rgba(255, 255, 255, 0.1);
}

.mamu ul li {
    position: relative;
    text-decoration: none;
    text-align: left;
    padding: 10px;
    background-image: linear-gradient(to right, #277dd9, #24aec8);
    color: #fff;
    margin-bottom: 10px;
    border-radius: 2px;
    cursor: pointer;
}

.mamu ul li span {
    position: absolute;
    right: 10px;
}

.reports-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #404040;
}

.details {
    padding: 10px;
}

tr:nth-child(2n) {
    background-color: #faf1bf;
}

tr:nth-child(2n+1) {
    background-color: #e9f5ea;
}

@media (max-width: 992px) {}

@media (max-width: 762px) {

    .reports-container {
        flex-direction: column;
    }

    .manu {
        flex: 1;
    }

    .details {
        flex: 1;
    }
}