body {
    font-family: "Montserrat";
    margin: 0px;
    min-height: 100vh;
    color: #000;
    background-color: #f8f8f8;
}

.c-welcome-screen {
    justify-content: center;
    align-items: start;
    display: flex;
    margin-top: 15px;
    text-align: center;
}

.c-welcome-screen__head img {
    max-height: 100px;
    margin-bottom: 30px;

}

.c-welcome-screen__head h1 {
    font-weight: bold;
}

.c-welcome-screen__body .btn-secondary {
    background-color: #fff;
    border-color: #000;
    color: #000;
    font-size: 14px;
}

.c-welcome-screen__item h2 {
    font-weight: bold;
}

.c-welcome-screen__item {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 10px;
    padding:0px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 2px rgba(30, 30, 30, 0.03);
}

.c-welcome-screen__item  img{
    margin-bottom: 10px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.c-welcome-screen__body .seperator {
    height: 100%;
    width: 1px;
    background-color: #ccc;
}

.c-welcome-screen__body a {
    text-decoration: unset;
    color: unset;
    transition: all 0.3s ease-in-out;
}

.c-welcome-screen__body a:hover {
    transform: scale(1.1);
}