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

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

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

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

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

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

.disko-component-image-text .image-text-container {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}
.disko-component-image-text .image-text-container.is_popin {
    cursor: pointer;
}
.disko-component-image-text .image-text-container::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}

.disko-component-image-text .image-text-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.disko-component-image-text .image-text-col.text-container h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

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

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

.disko-component-image-text .image-text-col.text-container  li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}
.disko-component-image-text .image-text-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;
}

.disko-component-image-text .image-text-btn-container {
    margin-top: 20px;
}

main.green .disko-component-image-text.light .image-text-btn-container .btn-green {
    color: white !important;
    text-decoration: none !important;
}
main.green .disko-component-image-text.light .image-text-btn-container .btn-green:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}




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