:root {
   
    --thm-color-one: #1b2336;
    --thm-color-two: #2394a9;
    --thm-color-three: #24b14f;
    --thm-color-one-rgb: 27, 35, 54;
    --thm-color-two-rgb: 35, 146, 174;
    --thm-color-three-rgb: 36, 177, 79;
}
.has-teal-color{
    color:#2394a9!important;
}
.has-green-color{
    color:var(--thm-color-three)!important;
}
.has-teal-background-color{
    background-color:#2394a9!important;
}

.wp-block-button__link.has-teal-background-color:hover{
    background: #24b14f!important;
}
.wp-custom-content ul{
    margin-bottom: 30px;
}
.wp-custom-content li {
    display:flex;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    max-width: 100%;
}
.wp-custom-content li:before {
    content: '';
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    background-color: var(--thm-white);
    border-radius: 50%;
    top: 2px;
    position: relative;
    margin-right: 15px;
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-three-rgb), 40%);
}
.wp-custom-content li:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--thm-color-three);
    border-radius: 50%;
    top: 10px;
    position: absolute;
    left: 8px;
    right: 0;
}

.subtitle{
    display: flex;
    align-items:center;
    margin-bottom: 10px;
}
.subtitle:before{
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url(/wp-content/themes/care_careers/assets/images/icon-color.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 8px;
}
.wp-block-columns.align-items-center{
    align-items:center!important;
}

@media (min-width: 1199px) {
    :where(.wp-block-columns.is-layout-flex.gap-8) {
        gap: 8em!important;
    }
}