.viking{
    display: flex;
    flex-direction: column;
    padding: 50px 0;
    text-align: center;
}

.viking.mobile-view{
    display: none;
}

.viking-title{
    color: #C18C5D;
    font-size: 21px;
}

.viking h3{
    font-size: 32px;
    margin-bottom: 80px;
}

.viki-column{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

.viki-character{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 33%;
}

.viki-column h1{
    font-size: 20px;
}

.mens{
    margin-bottom: 20px !important;
}

.viking-info-button{
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 100%;
    color: white;
    margin-top: 20px;
    background-color: #E16203;
    border: 1px solid #E16203;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
}

.viking-info-button img{
    margin-right: 10px;
    transition: filter 0.3s ease;
}

.viking-info-button:hover {
    background-color: white;
    color: black;
    border-color: black;
    cursor: pointer;
}

.viking-info-button:hover img {
    filter: brightness(0);
}

.viking-info-stars-fourth{
    font-weight: bold;
    color: #C18C5D;
    font-size: 18px;
}

.viking-reviews{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    text-align: center;
    align-items: center;
}

.viking-reviews p{
    margin-left: 10px;
    font-size: 16px;
}

.viki-character-image{
    width: 340px;
    height: 340px;
    object-fit: contain;
}

.logo-m{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo-month{
    width: 45%;
    overflow-wrap: break-word;
    padding: 15px;
}

.logo-month img{
    height: 50px;
    width: 50px;
}

.month{
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .viking{
        display: none;
    }

    .viking.mobile-view{
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        width: 100%;
    }

    .viki-column.mobile-view{
        padding: 20px 0;
    }

    .viki-character{
        width: 100%;
    }

    .viking h3{
        font-size: 22px;
        margin-bottom: 0;
    }

    .viki-column.mobile-view{
        flex-direction: column;
    }

    .logo-month p{
        font-size: 12px;
    }

    .viki-character-image{
        width: 100%;
        height: auto;
    }

    .mens{
        margin: 0;
    }
}