@keyframes scroll-down {
    0% {
        transform: translate(-50%)
    }

    70%,
    90% {
        transform: translate(-50%, 100%)
    }

    to {
        transform: translate(-50%)
    }
}

@keyframes link-line {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes animation-stars {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-2000px)
    }
}

@keyframes shake {
    0% {
        transform: translate(3px)
    }

    50% {
        transform: translate(-3px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes size-1 {
    0% {
        font-size: 14px
    }

    to {
        font-size: 12px
    }
}

body {
    font-size: 15px;
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0 0 15px;
    padding: 0
}

h1 {
    font-size: 25px
}

h2 {
    font-size: 23px
}

h3 {
    font-size: 19px
}

h4,
h5,
h6 {
    font-size: 16px
}

b,
strong {
    font-weight: 700
}

.em-line {
    color: var(--site-color);
    font-size: 21px;
    margin: 0 0 25px;
    position: relative;
    text-align: center
}

.em-line:before {
    background-color: var(--site-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: calc(50% - 17.5px);
    position: absolute;
    width: 35px
}

.em-line-rgb {
    color: #fff;
    margin: 0 0 25px;
    position: relative;
    text-align: center
}

.em-line-rgb:before {
    background-color: #fff;
    bottom: -10px;
    content: "";
    height: 3px;
    left: calc(50% - 17.5px);
    position: absolute;
    width: 35px
}

.em-line-left {
    color: var(--site-color);
    margin: 0 0 25px;
    position: relative
}

.em-line-left:before {
    background-color: var(--site-color);
    bottom: -11px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 35px
}

@media screen and (max-width:1024px) {
    .em-line-left {
        text-align: center
    }

    .em-line-left:before {
        left: calc(50% - 17.5px)
    }
}

.em-line-right {
    color: var(--site-color);
    font-size: 21px;
    margin: 0 0 25px;
    position: relative;
    text-align: right
}

.em-line-right:before {
    background-color: var(--site-color);
    bottom: -10px;
    content: "";
    height: 3px;
    position: absolute;
    right: 0;
    width: 35px
}

@media screen and (max-width:1024px) {
    .em-line-right {
        text-align: center
    }

    .em-line-right:before {
        right: calc(50% - 17.5px)
    }
}

.em-bottom-line {
    margin: 0 0 30px;
    position: relative;
    text-align: center
}

.em-bottom-line:before {
    background-color: var(--site-color);
    bottom: -15px;
    content: "";
    height: 3px;
    left: calc(50% - 65px);
    position: absolute;
    width: 130px;
    z-index: -2
}

.em-bottom-line p {
    color: var(--site-color);
    font-size: 23px !important;
    margin: 0;
    position: relative;
    z-index: 2 !important
}

.em-bottom-line:after {
    background-color: #fff;
    bottom: -23px;
    color: var(--site-color);
    content: "\f078";
    font-family: Font Awesome\ 5 Pro;
    font-size: 17px;
    font-weight: 900;
    left: calc(50% - 15.35px);
    padding: 0 7.5px;
    position: absolute;
    z-index: -1
}

.em-bottom-line+p {
    position: relative;
    z-index: 15
}

.em-bottom-line-rgb {
    margin: 0 0 30px;
    position: relative;
    text-align: center;
    z-index: 10
}

.em-bottom-line-rgb:before {
    background-color: #fff;
    bottom: -15px;
    content: "";
    height: 3px;
    left: calc(50% - 65px);
    position: absolute;
    width: 130px;
    z-index: -2
}

.em-bottom-line-rgb:after {
    background-color: var(--site-color);
    bottom: -23px;
    color: #fff;
    content: "\f078";
    font-family: Font Awesome\ 5 Pro;
    font-size: 17px;
    font-weight: 900;
    left: calc(50% - 15.35px);
    padding: 0 7.5px;
    position: absolute;
    z-index: -1
}

.em-bottom-line-rgb+p {
    position: relative;
    z-index: 15
}

.em-bottom-line-grey {
    margin: 0 0 30px;
    position: relative;
    text-align: center
}

.em-bottom-line-grey:before {
    background-color: var(--site-color);
    bottom: -15px;
    content: "";
    height: 3px;
    left: calc(50% - 65px);
    position: absolute;
    width: 130px;
    z-index: -2
}

.em-bottom-line-grey:after {
    background: #f5f5f5;
    bottom: -22px;
    color: var(--site-color);
    content: "\f078";
    font-family: Font Awesome\ 5 Pro;
    font-size: 17px;
    font-weight: 900;
    left: calc(50% - 15.35px);
    padding: 0 7.5px;
    position: absolute;
    z-index: -1
}

.em-bottom-line-grey+p {
    position: relative;
    z-index: 15
}

.em-default-button-area {
    align-items: center;
    border: 3px solid rgba(0, 0, 0, .07);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
    overflow: hidden;
    position: relative
}

@media screen and (max-width:786px) {
    .em-default-button-area {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        flex-direction: column;
        margin-top: 30px;
        width: 100%
    }
}

.em-default-button-area .em-double-buttons {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 14px !important;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    line-height: normal;
    outline: none !important;
    padding: 18px 21px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    width: 100%
}

@media screen and (max-width:768px) {
    .em-default-button-area .em-double-buttons {
        height: auto
    }
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) and (display:flow-root) {
        .em-default-button-area .em-double-buttons {
            height: auto
        }
    }
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) {
        .em-default-button-area .em-double-buttons {
            height: auto
        }
    }
}

.em-default-button-area .em-double-buttons i {
    margin-right: 7px
}

.em-default-button-area .em-default-b-left {
    background: #f5f5f5;
    border-right: 2px solid rgba(0, 0, 0, .07);
    color: var(--site-color)
}

.em-default-button-area .em-default-b-left i {
    font-size: 25px
}

.em-default-button-area .em-default-b-left:hover {
    background-color: var(--site-color) !important;
    color: #fff !important
}

@media screen and (max-width:786px) {
    .em-default-button-area .em-default-b-left {
        border-bottom: 2px solid rgba(0, 0, 0, .07);
        border-right: none;
        width: 100%
    }
}

.em-default-button-area .em-default-b-right {
    background: #f5f5f5;
    border-left: 2px solid rgba(0, 0, 0, .07);
    color: #e4405f
}

.em-default-button-area .em-default-b-right i {
    font-size: 25px
}

.em-default-button-area .em-default-b-right:hover {
    background-color: #e4405f !important;
    color: #fff !important
}

@media screen and (max-width:786px) {
    .em-default-button-area .em-default-b-right {
        border-left: none;
        width: 100%
    }
}

.em-default-button-area .em-default-circle {
    align-items: center;
    background: #d9d7dc;
    border: 2px solid #d9d7dc;
    border-radius: 50%;
    display: flex;
    font-size: 14px;
    height: 29px;
    justify-content: center;
    left: calc(50% - 15px);
    margin: 0;
    padding: 0 8px;
    position: absolute;
    width: 29px;
    z-index: 2
}

@media screen and (max-width:786px) {
    .em-default-button-area .em-default-circle {
        display: none
    }
}

.grey .em-bottom-line:before {
    z-index: 0
}

.grey .em-bottom-line:after {
    background-color: #f5f5f5;
    z-index: 1
}

a {
    color: var(--site-color);
    text-decoration: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out
}

a:active,
a:focus,
a:hover {
    color: #000;
    text-decoration: none
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../../images/sort-down-duotone.svg);
    background-position: calc(100% - 15px) 54%;
    background-repeat: no-repeat;
    background-size: 13px;
    height: auto !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important
}

.gray-transparent {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    opacity: .5
}

.transparent {
    opacity: .5
}

span.notification {
    background-color: #dc3545;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    color: #fff;
    font-size: 9px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    right: 7px;
    text-align: center;
    top: 15px;
    width: 16px
}

span.answer,
span.blog,
span.deleted,
span.drafted,
span.new,
span.page,
span.planned,
span.product,
span.published,
span.question,
span.stars,
span.status,
span.warning {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    color: #fff;
    font-size: 11px;
    margin: 0 0 0 5px;
    padding: 4px 8px
}

span.warning {
    background-color: var(--error)
}

span.new {
    background-color: var(--eceo-color-1)
}

span.published {
    background-color: var(--success)
}

span.deleted {
    background-color: var(--error)
}

span.planned {
    background-color: var(--info)
}

span.drafted,
span.page {
    background-color: var(--warning)
}

span.blog {
    background-color: var(--site-color)
}

span.stars {
    background-color: var(--dark)
}

span.product {
    background-color: var(--warning)
}

span.answer,
span.question {
    background-color: #58a9fb
}

.button {
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    outline: none !important;
    padding: 9px 17px 8px 19px;
    text-align: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out
}

.button,
.button:hover {
    background-color: var(--site-color);
    color: #fff !important
}

.button:hover {
    box-shadow: 0 0 0 .2rem var(--site-color-transparent-25)
}

.button:active,
.button:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--site-color-transparent-25)
}

.passive-button {
    opacity: .5;
    pointer-events: none
}

.b-error,
.b-error:hover {
    background-color: var(--error) !important
}

.b-error:hover {
    box-shadow: 0 0 0 .2rem var(--error-shadow) !important
}

.b-error:active,
.b-error:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--error-shadow) !important
}

.b-warning,
.b-warning:hover {
    background-color: var(--warning) !important
}

.b-warning:hover {
    box-shadow: 0 0 0 .2rem var(--warning-shadow) !important
}

.b-warning:active,
.b-warning:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--warning-shadow) !important
}

.b-info,
.b-info:hover {
    background-color: var(--info) !important
}

.b-info:hover {
    box-shadow: 0 0 0 .2rem var(--info-shadow) !important
}

.b-info:active,
.b-info:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--info-shadow) !important
}

.b-success,
.b-success:hover {
    background-color: var(--success) !important
}

.b-success:hover {
    box-shadow: 0 0 0 .2rem var(--success-shadow) !important
}

.b-success:active,
.b-success:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--success-shadow) !important
}

.b-dark,
.b-dark:hover {
    background-color: var(--dark) !important
}

.b-dark:hover {
    box-shadow: 0 0 0 .2rem var(--dark-shadow) !important
}

.b-dark:active,
.b-dark:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--dark-shadow) !important
}

.b-green,
.b-green:hover {
    background-color: var(--success) !important
}

.b-green:hover {
    box-shadow: 0 0 0 .2rem var(--success-shadow) !important
}

.b-green:active,
.b-green:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--success-shadow) !important
}

.b-grey,
.b-grey:hover {
    background-color: #aaa !important
}

.b-grey:hover {
    box-shadow: 0 0 0 .2rem #ddd !important
}

.b-grey:active,
.b-grey:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem #ddd !important
}

.b-blue,
.b-blue:hover {
    background-color: #0071e3 !important
}

.b-blue:hover {
    box-shadow: 0 0 0 .2rem rgba(0, 113, 227, .3) !important
}

.b-blue:active,
.b-blue:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem rgba(0, 113, 227, .3) !important
}

.b-white {
    color: var(--site-color) !important
}

.b-white,
.b-white:hover {
    background-color: var(--white) !important
}

.b-white:hover {
    box-shadow: 0 0 0 .2rem var(--white-shadow) !important;
    color: #000 !important
}

.b-white:active,
.b-white:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--white-shadow) !important
}

.b-solid {
    background-color: transparent !important;
    border: 2px solid var(--site-color) !important;
    color: var(--site-color) !important
}

.b-solid:hover {
    background-color: var(--site-color) !important;
    color: #fff !important
}

.b-solid-white {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important
}

.b-solid-white:hover {
    background-color: #fff !important;
    color: var(--site-color) !important
}

.b-panel,
.b-panel:hover {
    background-color: var(--eceo-color-1)
}

.b-panel:hover {
    box-shadow: 0 0 0 .2rem var(--eceo-color-1-active-shadow)
}

.b-panel:active,
.b-panel:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--eceo-color-1-active-shadow)
}

.round-0 {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important
}

.round-5 {
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important
}

.round-10 {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important
}

.round-15 {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important
}

.round-20 {
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important
}

.rounded {
    border-radius: 40px !important;
    -webkit-border-radius: 40px !important;
    -moz-border-radius: 40px !important;
    -ms-border-radius: 40px !important
}

.b-xxs {
    font-size: 11px !important;
    padding: 6px 13px !important
}

.b-xs {
    font-size: 12px !important;
    min-height: 35px;
    padding: 7px 14px !important
}

.b-sm {
    font-size: 13px !important;
    padding: 8px 16px 8px 17px !important
}

.b-lg {
    font-size: 15px !important;
    padding: 10px 19px !important
}

.b-xl {
    font-size: 16px !important;
    padding: 11px 22px !important
}

.b-xxl {
    font-size: 17px !important;
    padding: 12px 23px !important
}

.e-loading {
    background: url(../images/loading.svg) no-repeat 50% hsla(0, 0%, 100%, .75);
    background-size: 75px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999
}

.e-no-page {
    background-color: #fff;
    height: 100vh;
    position: fixed;
    width: 100vw;
    z-index: 9998
}

.sy-popup {
    align-items: center;
    display: none;
    justify-content: center;
    z-index: 999
}

.sy-popup,
.sy-popup .syp-background {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw
}

.sy-popup .syp-background {
    background-color: rgba(0, 0, 0, .75)
}

.sy-popup .syp-content {
    height: 64%;
    position: relative;
    width: 55%;
    z-index: 6
}

.sy-popup .syp-content .sypc-close {
    align-items: center;
    background-color: #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    height: 25px;
    justify-content: center;
    padding: 0 0 1px 1px;
    position: absolute;
    right: -12.5px;
    top: -12.5px;
    width: 25px
}

.sy-popup .syp-content.youtube iframe {
    height: 100% !important;
    width: 100% !important
}

@media screen and (max-width:768px) {
    .sy-popup .syp-content {
        height: 29%;
        width: 90%
    }
}

.module-14 {
    padding-bottom: 75px;
    padding-top: 73px
}

.module-14 img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    -o-object-position: center !important;
    object-position: center !important
}

.module-14 h3 {
    font-size: 18px;
    margin-bottom: 5px
}

.module-14 .m14-left-area,
.module-14 .m14-right-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

@media screen and (max-width:1024px) {

    .module-14 .m14-left-area,
    .module-14 .m14-right-area {
        margin-top: 0 !important
    }
}

.module-14 .m14-left-area .m14-list,
.module-14 .m14-right-area .m14-list {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    position: relative
}

.module-14 .m14-left-area .m14-list:last-of-type,
.module-14 .m14-right-area .m14-list:last-of-type {
    margin-bottom: 0
}

.module-14 .m14-left-area .m14-list .m14-spot,
.module-14 .m14-right-area .m14-list .m14-spot {
    justify-content: center;
    min-height: 70px
}

.module-14 .m14-left-area i,
.module-14 .m14-right-area i {
    align-items: center;
    background: #f5f5f5;
    border-radius: 100px;
    color: var(--site-color);
    display: flex;
    font-size: 25px;
    height: 70px;
    justify-content: center;
    position: relative;
    width: 70px
}

.module-14 .m14-left-area p,
.module-14 .m14-right-area p {
    -webkit-box-orient: vertical;
    color: #888;
    display: -webkit-box;
    font-size: 14px;
    line-height: 21px;
    margin: 0;
    overflow: hidden
}

.module-14 .m14-left-area:before {
    background-color: var(--site-color-transparent-10);
    content: "";
    display: flex;
    height: 65%;
    position: absolute;
    right: 49px;
    top: 10%;
    width: 2px
}

@media screen and (max-width:1024px) {
    .module-14 .m14-left-area {
        margin-bottom: 30px
    }

    .module-14 .m14-left-area:before {
        height: 80%;
        left: 49px
    }

    .module-14 .m14-left-area:after {
        background-color: var(--site-color-transparent-10);
        content: "";
        display: flex;
        height: 20%;
        left: 49px;
        position: absolute;
        top: calc(100% - 22px);
        width: 2px
    }

    .module-14 .m14-left-area .m14-spot {
        padding-left: 90px;
        text-align: left !important
    }

    .module-14 .m14-left-area .m14-icon {
        margin-left: 0 !important;
        margin-right: 20px !important;
        position: absolute
    }

    .module-14 .m14-right-area:before {
        height: 80%
    }
}

.module-14 .m14-right-area:before {
    background-color: var(--site-color-transparent-10);
    content: "";
    display: flex;
    height: 65%;
    left: 49px;
    position: absolute;
    top: 10%;
    width: 2px
}

.module-14 .m14-right-area .m14-icon {
    margin-right: 20px !important
}

.module-14 .m14-right-area .m14-list:last-of-type {
    margin-bottom: 10px
}

.module-14 .m14o-img-area {
    width: 100% !important
}

.module-14 .m14o-img-area img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    height: 460px !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100% !important
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) and (display:flow-root) {
        .module-14 .m14o-img-area img {
            width: 100%
        }
    }
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) {
        .module-14 .m14o-img-area img {
            height: 100%
        }
    }
}

.module-14 .m14-alt-button {
    display: flex;
    justify-content: center
}

@media screen and (max-width:1024px) {
    .module-14 .m14-alt-button .m14ab-box {
        padding-left: 0;
        padding-right: 0
    }
}

@media screen and (max-width:768px) {
    .module-14 {
        padding-bottom: 30px;
        padding-top: 30px
    }
}

.module-14.grey {
    background-color: #f5f5f5
}

.module-14.grey .m14-left-area i,
.module-14.grey .m14-right-area i {
    background: #fff
}

.module-14.grey .em-default-button-area .em-default-b-left,
.module-14.grey .em-default-button-area .em-default-b-right {
    background-color: #fff
}

@media screen and (max-width:768px) {
    .module-14.grey .em-default-button-area {
        margin-top: 15px
    }
}

.module-14.black {
    background-color: #000
}

.module-14.black h2,
.module-14.black h3 {
    color: var(--site-color)
}

.module-14.black p {
    color: #fff
}

.module-14.black h2,
.module-14.black h2 p {
    color: var(--site-color)
}

.module-14.black h2:before {
    background-color: var(--site-color);
    z-index: 0
}

.module-14.black h2:after {
    background-color: #000;
    color: var(--site-color);
    z-index: 1
}

.module-14.black .b-solid {
    border: 2px solid var(--site-color) !important;
    color: var(--site-color) !important
}

.module-14.black .m14-left-area:after,
.module-14.black .m14-left-area:before,
.module-14.black .m14-right-area:after,
.module-14.black .m14-right-area:before {
    background-color: var(--site-color-transparent-20)
}

.module-14.black .m14-left-area p,
.module-14.black .m14-right-area p {
    color: #bbb
}

.module-14.black .m14-left-area i,
.module-14.black .m14-right-area i {
    background: var(--site-color);
    color: #000
}

.module-14.black .em-default-button-area .em-default-b-left,
.module-14.black .em-default-button-area .em-default-b-right {
    background-color: var(--site-color);
    color: #000
}

.module-14.black .em-default-button-area .em-default-b-left:hover,
.module-14.black .em-default-button-area .em-default-b-right:hover {
    background-color: #fff !important;
    color: var(--site-color) !important
}

@media screen and (max-width:768px) {
    .module-14.black .em-default-button-area {
        margin-top: 15px
    }
}

.module-14.black p.em-default-circle {
    background-color: #000 !important;
    border-color: #000 !important
}

.module-14.site-color {
    background-color: var(--site-color)
}

.module-14.site-color h2,
.module-14.site-color h2 p,
.module-14.site-color h3,
.module-14.site-color p {
    color: #fff
}

.module-14.site-color h2:before {
    background-color: #fff;
    z-index: 0
}

.module-14.site-color h2:after {
    background-color: var(--site-color);
    color: #fff;
    z-index: 1
}

.module-14.site-color .b-solid {
    border: 2px solid #fff !important;
    color: #fff !important
}

.module-14.site-color .m14-left-area:after,
.module-14.site-color .m14-left-area:before,
.module-14.site-color .m14-right-area:after,
.module-14.site-color .m14-right-area:before {
    background-color: #fff
}

.module-14.site-color .m14-left-area p,
.module-14.site-color .m14-right-area p {
    color: #ddd
}

.module-14.site-color .m14-left-area i,
.module-14.site-color .m14-right-area i {
    background: #fff;
    color: #000
}

.module-14.site-color .em-default-button-area .em-default-b-left,
.module-14.site-color .em-default-button-area .em-default-b-right {
    background-color: #fff !important;
    color: #000 !important
}

.module-14.site-color .em-default-button-area .em-default-b-left:hover,
.module-14.site-color .em-default-button-area .em-default-b-right:hover {
    background-color: #000 !important;
    color: #fff !important
}

@media screen and (max-width:768px) {
    .module-14.site-color .em-default-button-area {
        margin-top: 15px
    }
}