/* module_wysiwyg.css */

.module_wysiwyg {
    background-color: #ffffff;
    margin: 60px 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.module_wysiwyg .wrapper {
    width: 100%;
    max-width: 1200px;
}

.module_wysiwyg .content {
    width: 100%;
    max-width: 1200px;
    text-align: left;
    padding: 0;
    /*line-height: 22px;*/
    font-size: 18px;
    line-height: 24px;
}

.module_wysiwyg .content .center {
    text-align: center;
}

.module_wysiwyg .content p {
    margin: 1em 0;
}

.module_wysiwyg .content a {
    /*text-decoration: none;*/
    color: #004DD1;
}

.module_wysiwyg .content a:hover {
    /*text-decoration: underline;*/
    color: #154973;
}

.module_wysiwyg .content .video_center {
    max-width: 800px; 
    position: relative; 
    margin: 0 auto;
}

.module_wysiwyg .content a.button {
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #007481;
    font-size: 13px;
    line-height: 15px;
    text-decoration: none;
    letter-spacing: 2px;
    padding: 20px 24px;
    margin: 10px 12px;
    text-align: center;
    display: inline-block;
    width: auto;
    transition: none;
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    flex: auto;*/
}

.module_wysiwyg .content a.button i {
    color: #ffffff;
}

.module_wysiwyg .content a.button:hover,
.module_wysiwyg .content a.button:focus {
    background-color: #052e33;
}

.module_wysiwyg .content li {
    margin: 0.65em 0;
}

.module_wysiwyg .content.columns {
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/
}

.module_wysiwyg .content.columns .col {
    padding: 0 15px;
    width: 33%;
}

.module_wysiwyg .content.columns .col:first-child {
    padding: 0 15px 0 0;
}

.module_wysiwyg .content.columns .col:last-child {
    padding: 0 0 0 15px;
}


@media only screen and (max-width: 1024px) {
    .module_wysiwyg .content.columns {
        flex-direction: column;
    }

    .module_wysiwyg .content.columns .col,
    .module_wysiwyg .content.columns .col:first-child,
    .module_wysiwyg .content.columns .col:last-child {
        padding: 0;
        width: 100%;
    }
}


@media only screen and (max-width: 480px) {
    .module_wysiwyg .content a.button {
        width: 100%;
        margin: 10px 0;
    }
}