@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

:root {
    --msf-primary-color: #5E6770;
    --msf-red-color: #e30613;
}

#msf-form-container {
    font-family: 'Oswald', sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0px !important;
    max-width: 100% !important;
}

#msf-form-container * {
    user-select: none;
    box-sizing: border-box;
    text-decoration: none;
}

#msf-form-container a:hover {
    text-decoration: underline;
}

#msf-steps {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.msf-step {
    display: none;
    width: 100%;
    max-width: 300px;
    margin-right: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.msf-step.active {
    display: block;
}

.msf-step-background {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.msf-step-title {
    background-color: var(--msf-primary-color);
    color: #fff;
    padding: 4px 12px;
    font-size: 18px;
    font-weight: 500;
}

.msf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

#msf-back {
    cursor: pointer;
    position: absolute;
    color: var(--msf-red-color);
    font-size: 16px;
    font-weight: 300;
    right: 100%;
    margin-right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

@media (max-width: 768px) {
    .msf-header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    #msf-back {
        position: relative;
        right: auto;
        margin-right: 0;
        top: auto;
        transform: none;
    }
}

#msf-breadcrumb {
    color: var(--msf-primary-color);
    font-size: 20px;
    font-weight: 500;
}

.msf-contact {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.msf-contact.active {
    display: flex;
}

.msf-logo-step .msf-step-background {
    border: 1px solid var(--msf-primary-color);
    background-size: contain;
    padding: 20px;
    height: 200px;
    width: 300px;
    background-origin: content-box;
}

.msf-contact-background {
    border: 1px solid var(--msf-primary-color);
    height: 200px;
    width: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 20px;
    background-origin: content-box;
}

.msf-contact-title {
    color: var(--msf-primary-color);
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
}

.msf-contact-phone {
    color: var(--msf-primary-color);
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.msf-contact-phone:before {
    content: '';
    background: url('../images/phone-icon.svg') no-repeat center center;
    width: 24px;
    height: 24px;
    background-size: contain;
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.msf-contact-email {
    color: var(--msf-primary-color);
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.msf-contact-email:before {
    content: '';
    background: url('../images/email-icon.svg') no-repeat center center;
    width: 24px;
    height: 24px;
    background-size: contain;
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.msf-contact-website {
    color: var(--msf-red-color);
    font-size: 24px;
    font-weight: 300;
    margin-top: 10px;
    text-decoration: none;
}

.msf-contact-website:hover {
    text-decoration: underline;
}