.ktk-overflow-hidden {
    overflow: hidden;
}
.ktk-background-transparent {
    background-color: transparent !important;
}
/* READ MORE */
.ktk-read-more-button {
    cursor: pointer;
}
/* Z-INDEX */
.ktk-z-index-0 {
    z-index: 0;
}
.ktk-z-index-1 {
    z-index: 1;
}
.ktk-z-index-2 {
    z-index: 2;
}
/* ASSETS */
.ktk-unvisible {
    display: none;
}
@media screen and (max-width: 1024px) {
    .ktk-hide-tablet {
        display: none;
    }
}
@media screen and (max-width: 574px) {
    .ktk-m-unvisible {
        display: none;
    }
    .ktk-display-desktop {
        display: none;
    }
    #wpcontent .ktk-m-unvisible {
        display: block;
    }
    #wpcontent .ktk-display-desktop {
        display: block;
    }
}
@media screen and (min-width: 575px) {
    .ktk-display-mobile {
        display: none;
    }
    #wpcontent .ktk-display-mobile {
        display: block;
    }
}
.ktk-m-auto {
    margin: auto;
}
.ktk-mb-0 {
    margin-bottom: 0;
}
.ktk-mb-1 {
    margin-bottom: 1rem;
}
.ktk-mb-2 {
    margin-bottom: 2rem;
}
.ktk-mb-3 {
    margin-bottom: 3rem;
}
.ktk-mt-1 {
    margin-top: 1rem;
}
.ktk-mt-2 {
    margin-top: 2rem;
}
.ktk-mt-3 {
    margin-top: 3rem;
}
.ktk-ml-0 {
    margin-left: 0;
}
.ktk-ml-1 {
    margin-left: 1rem;
}
.ktk-mr-1 {
    margin-right: 1rem;
}
.ktk-pl-1 {
    padding-left: 1rem;
}
.ktk-pr-1 {
    padding-right: 1rem;
}
.ktk-pl-2 {
    padding-left: 2rem;
}
.ktk-pr-2 {
    padding-right: 2rem;
}
.ktk-pt-1 {
    padding-top: 1rem;
}
.ktk-pb-1 {
    padding-bottom: 1rem;
}
.ktk-pb-2 {
    padding-bottom: 2rem;
}
.ktk-pb-3 {
    padding-bottom: 3rem;
}
.ktk-pt-2 {
    padding-top: 2rem;
}
.ktk-pt-3 {
    padding-top: 3rem;
}
.ktk-pb-4 {
    padding-bottom: 4rem;
}
.ktk-pt-4 {
    padding-top: 4rem;
}
.ktk-pb-5 {
    padding-bottom: 5rem;
}
.ktk-pt-5 {
    padding-top: 5rem;
}
.ktk-pb-6 {
    padding-bottom: 6rem;
}
.ktk-pt-6 {
    padding-top: 6rem;
}
/* TEXT */
.page-title,
.ktk-title {
    font-size: 2.5rem;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .ktk-title {
        font-size: 1.7rem;
    }
}
.ktk-uppercase {
    text-transform: uppercase;
}
.ktk-text-center {
    text-align: center;
}
/* LINK */
.ktk-disabled {
    pointer-events: none;
}
/* MINIATURE */
.widget_recent_entries,
#right-sidebar .widget-title,
.archive .entry-title,
.ktk-miniature-title {
    font-size: .9rem;
    font-weight: 700;
    color: black;
    transition: .2s ease;
}
.archive .entry-title a:hover,
a:hover .ktk-miniature-title {
    color: #006e6e;
}
.ktk-miniature-title--big {
    font-size: 1.8rem;
    text-transform: unset;
}
.archive .entry-summary,
.ktk-miniature-caption {
    font-size: .9rem;
    font-weight: 300;
    color: #88888C;
}
.archive .read-more-container,
.ktk-miniature-button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/* IMG */
.ktk-miniature-img {
    width: 100%;
    display: flex;
    padding-top: 100%;
    background-position: center;
    background-size: cover;
}
/* SHADOWS */
.ktk-box-shadow {
    box-shadow: 0 5px 7px 1px #d6d6d6;
}

/* RADIUS */
.ktk-big-rounded {
    border-radius: 1.5rem;
}
.ktk-small-rounded {
    border-radius: 1rem;
}
.ktk-rounded {
    border-radius: 50%;
}

/* POSITION */
.ktk-position-relative {
    position: relative;
}
.ktk-position-absolute {
    position: absolute;
}
.ktk-position-fixed {
    position: fixed;
}
.ktk-d-block {
    display: block;
}
/* FLEX */
.ktk-d-flex {
    display: flex;
    display: -ms-flexbox;
}
.ktk-flex-row {
        flex-direction: row;
    -ms-flex-direction: row;
}
.ktk-flex-row-reverse {
        flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}
.ktk-flex-column {
        flex-direction: column;
    -ms-flex-direction: column;
}
.ktk-flex-column-reverse {
        flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
}
.ktk-justify-content-start {
    justify-content: flex-start;
      -ms-flex-pack: start;
}
.ktk-justify-content-end {
    justify-content: flex-end;
      -ms-flex-pack: end;
}
.ktk-justify-content-center {
    justify-content: center;
      -ms-flex-pack: center;
}
.ktk-justify-content-between {
    justify-content: space-between;
      -ms-flex-pack: justify;
}
.ktk-justify-content-around {
    justify-content: space-around;
      -ms-flex-pack: distribute;
}
.ktk-align-items-start {
       align-items: flex-start;
    -ms-flex-align: start;
}
.ktk-align-items-end {
       align-items: flex-end;
    -ms-flex-align: end;
}
.ktk-align-items-center {
       align-items: center;
    -ms-flex-align: center;
}
.ktk-align-items-baseline {
       align-items: baseline;
    -ms-flex-align: baseline;
}
.ktk-align-items-stretch {
       align-items: stretch;
    -ms-flex-align: stretch;
}

/* COLS */
.ktk-row {
    width: calc(100% + 30px);
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.ktk-nowrap {
    flex-wrap: nowrap;
}
.ktk-flex-wrap {
    flex-wrap: wrap;
}
.ktk-inner {
    /* width: 100%;
    max-width: 1200px; */
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 0 40px;
}
@media screen and (max-width: 768px) {
    .ktk-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.ktk-w-100 {
    width: 100%;
}
.ktk-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.ktk-col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.ktk-col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666666%;
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
}
.ktk-col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.ktk-col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.ktk-col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.ktk-col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.ktk-col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666666%;
    flex: 0 0 41.666666%;
    max-width: 41.666666%;
}
.ktk-col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.ktk-col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.ktk-col-5-cols {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.ktk-col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666666%;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
}
.ktk-col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
@media screen and (max-width: 768px) {
    .ktk-col-11,
    .ktk-col-10,
    .ktk-col-8,
    .ktk-col-7,
    .ktk-col-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ktk-col-5,
    .ktk-col-4,
    .ktk-col-3,
    .ktk-col-5-cols,
    .ktk-col-2,
    .ktk-col-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 574px) {
    .ktk-col-5,
    .ktk-col-4,
    .ktk-col-3,
    .ktk-col-5-cols,
    .ktk-col-2,
    .ktk-col-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}