.disko-component-text-html {
    padding: 6% 8%; 
}

/* BACKGROUND COLOR */
.disko-component-text-html.light .text-html-container {
    color: #FFF;
    background: #03485E;
}
.disko-component-text-html.dark .text-html-container {
    background-color: #EEFEF3;
    color: #03485E;
}

.disko-component-text-html.light {
    background-color: #EEFEF3;
}
.disko-component-text-html.dark {
    background: #03485E;
    color: #FFF;
}

.disko-component-text-html .text-html-wrapper {
    display: flex;
}

/* REVERSED */
.disko-component-text-html.reversed .text-html-wrapper {
    flex-direction: row-reverse;
}
.disko-component-text-html.reversed .text-html-col.text-container {
    padding-right: 8%;
}

.disko-component-text-html .text-html-col {
    width: 50%;
}

.disko-component-text-html .text-html-col.text-container {
    padding-left: 8%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.disko-component-text-html .text-html-container {
    position: relative;
    border-radius: 50px;
    padding: 60px;
}

/* CONTENT STYLE */
.disko-component-text-html .text-html-col.text-container h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

.disko-component-text-html .text-html-col.text-container p,
.disko-component-text-html .text-html-col.text-container  li {
    font-family: 'Gilroy';
    margin-bottom: 20px;
}

.disko-component-text-html .text-html-col.text-container p strong,
.disko-component-text-html .text-html-col.text-container li strong,
.disko-component-text-html .text-html-col.text-container a {
    font-family: 'Gilroy-Bold';
    color: var(--secondary-color) !important;
}
.disko-component-text-html .text-html-col.text-container a {
    text-decoration: underline;
}
.disko-component-text-html .text-html-col.text-container a.btn {
    text-decoration: none;
    color: #FFF !important;
}
.disko-component-text-html .text-html-col.text-container a.btn:hover {
    color: #00A880 !important;
}
.disko-component-text-html .text-html-col.text-container a.btn.btn-white {
    text-decoration: none;
    color: #00A880  !important;
}

.disko-component-text-html .text-html-col.text-container a.btn.btn-white:hover {
    color: #FFF !important;
}

.disko-component-text-html .text-html-col.text-container  li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}
.disko-component-text-html .text-html-col.text-container  li:before {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 0 2px 0 2px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 9px;
    left: 0;
}

/* CONTENT BG STYLE */
.disko-component-text-html .text-html-col .text-html-container h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

.disko-component-text-html .text-html-col .text-html-container p,
.disko-component-text-html .text-html-col .text-html-container li {
    font-family: 'Gilroy';
    margin-bottom: 20px;
}

.disko-component-text-html .text-html-col .text-html-container strong,
.disko-component-text-html .text-html-col .text-html-container p strong,
.disko-component-text-html .text-html-col .text-html-container li strong,
.disko-component-text-html .text-html-col .text-html-container a {
    font-family: 'Gilroy-Bold';
    color: var(--secondary-color) !important;
}

.disko-component-text-html .text-html-col.text-container strong,
.disko-component-text-html .text-html-col.text-container p strong,
.disko-component-text-html .text-html-col.text-container li strong,
.disko-component-text-html .text-html-col.text-container a {
    font-family: 'Gilroy-Bold';
    color: var(--primary-color) !important;
}

.disko-component-text-html .text-html-col .text-html-container a {
    text-decoration: underline;
}

.disko-component-text-html .text-html-col .text-html-container  li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}
.disko-component-text-html .text-html-col .text-html-container  li:before {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 0 2px 0 2px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 9px;
    left: 0;
}
/* END */
.disko-component-text-html .text-html-btn-container {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    
    .disko-component-text-html {
        padding: 40px 8%; 
    }
    
    .disko-component-text-html .text-html-wrapper,
    .disko-component-text-html.reversed .text-html-wrapper{
        flex-direction: column;
    }
    
    .disko-component-text-html .text-html-col {
        width: 100%;
    }
    
    .disko-component-text-html .text-html-col:first-child {
        margin-bottom: 30px;
    }
    .disko-component-text-html .text-html-col.text-container {
        padding-left: 0;
    }
    
    .disko-component-text-html.dark p {
        background: #03485E;
        color: #FFF;
    }
    
    .disko-component-text-html .text-html-container {
        padding: 30px;
    }
     .disko-component-text-html.dark .text-html-container p {
        background-color: #EEFEF3;
        color: #03485E;
    }
    .disko-component-text-html .text-html-container p:last-of-type {
        margin-bottom: 0;
    }
}