:root {
    --troodos_2021_explore_font_height: 1.5vmax;
}

.troodos_2021_explore_general_container {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    height: calc(100% - 80px);
    margin: 0 0 70px 0;
}

.troodos_2021_explore_general_slider {
    width: 100%;
    position: relative;
    height: 100%;
}

.troodos_2021_explore_general_slider_img_container {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.troodos_2021_explore_general_slider_img {
    width: 100%!important;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.troodos_2021_explore_general_slider .owl-stage-outer,
.troodos_2021_explore_general_slider .owl-stage,
.troodos_2021_explore_general_slider .owl-item {
    height: 100%;
}

.troodos_2021_explore_general_slider .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 10px 5px 10px;
    border-radius: 5px;
}

.troodos_2021_explore_general_slider .owl-dot {
    float: left;
    padding: 0;
    background: #fff;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 5px;
    text-indent: -999px;
    outline: 0;
    overflow: hidden;
    -moz-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: relative;
    bottom: 0px;
}

.troodos_2021_explore_general_slider .owl-dot.active {
    height: 15px;
    width: 15px;
    bottom: 3px;
    border-radius: 35%;
    background: transparent;
    -moz-transition: all 200ms ease-out;
    -webkit-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

.troodos_2021_explore_general_slider_img_container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* background: linear-gradient( 0deg, rgba(0, 0, 0, .9) 0, rgba(0, 0, 0, .65) 25%, transparent 55%, hsla(0, 0%, 100%, 0)); */
}

.troodos_2021_explore_general_text_container {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.troodos_2021_explore_title {
    text-align: center;
    margin: 0;
    padding: 20px 0;
    font: 400 var(--troodos_2021_location_font_size) 'Alegre';
    color: #fff;
}

.troodos_2021_explore_text {
    text-align: center;
    margin: 0 auto;
    padding: 0 0 20px 0;
    font: 400 var(--troodos_2021_font_size)/var(--troodos_2021_line_height) 'Open Sans', sans-serif;
    color: rgba(68, 68, 68, 0.6);
    width: 100%;
    color: #fff;
}

.troodos_2021_explore_thumbnails {
    width: 80%;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.troodos_2021_explore_thumbnails_item {
    flex: 0 1 32%;
    position: relative;
    overflow: hidden;
}

.troodos_2021_explore_thumbnails_image_container {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

.troodos_2021_explore_thumbnails_image {
    height: 100%;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.troodos_2021_explore_thumbnails_item_texts {
    width: 100%;
    position: relative;
    background-color: #fff;
}

.troodos_2021_explore_thumbnails_item_title {
    width: 90%;
    position: relative;
    margin: 0 auto;
    padding: 5px 0;
    font: 400 var(--troodos_2021_title_font_size) 'Alegre';
    text-align: center;
    color: #266d68;
    height: calc(var(--troodos_2021_title_font_size) * 2);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.troodos_2021_explore_thumbnails_item_text {
    padding: 0px 0 0px 0;
    margin: 0 auto 20px auto;
    position: relative;
    width: 90%;
    font: 300 var(--troodos_2021_font_size)/var(--troodos_2021_explore_font_height) 'Effra';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-align: center;
    height: calc(var(--troodos_2021_explore_font_height) * 4);
}

.troodos_2021_explore_thumbnails_hyperlink {
    padding: 10px 25px;
    margin: 20px 0;
    font: 600 var(--troodos_2021_font_size)/var(--troodos_2021_line_height) 'Alegre';
    letter-spacing: 2px;
    border: 1px solid #000;
    background-color: #266d68;
    color: #fff;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: block;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

.troodos_2021_explore_thumbnails_hyperlink:hover {
    background-color: #fff;
    color: #266d68;
    border: 1px solid #266d68;
    transition: 0.2s all ease-in-out;
}

@media screen and (orientation: portrait) and (max-width: 1050px) {
    :root {
        --troodos_2021_explore_font_height: var(--troodos_2021_line_height);
    }
    .troodos_2021_explore_general_container {
        height: unset;
        margin: 0 0 30px 0;
        padding: 0 0 30px 0;
    }
    .troodos_2021_explore_general_slider {
        position: absolute!important;
    }
    .troodos_2021_explore_general_text_container {
        position: relative;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        margin: 0px 0;
    }
    .troodos_2021_explore_general_slider_img {
        width: unset!important;
        min-height: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
    }
    .troodos_2021_explore_text {
        text-align: justify;
    }
    .troodos_2021_explore_thumbnails_item {
        flex: 0 1 100%;
    }
    .troodos_2021_explore_thumbnails_image_container {
        height: 80vw;
    }
}

@media screen and (orientation: landscape) and (max-width: 1050px) {
    :root {
        --troodos_2021_explore_font_height: var(--troodos_2021_line_height);
    }
    .troodos_2021_explore_general_container {
        height: unset;
        margin: 0 0 30px 0;
        padding: 0 0 30px 0;
    }
    .troodos_2021_explore_general_slider {
        position: absolute!important;
    }
    .troodos_2021_explore_general_text_container {
        position: relative;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        margin: 0px 0;
    }
    .troodos_2021_explore_general_slider_img {
        width: 100%!important;
        min-height: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: unset;
    }
    .troodos_2021_explore_text {
        text-align: justify;
    }
    .troodos_2021_explore_thumbnails_item {
        flex: 0 1 48%;
    }
    .troodos_2021_explore_thumbnails_image_container {
        height: 38vw;
    }
    .troodos_2021_explore_title{
        font: 400 var(--troodos_2021_title_font_size) 'Alegre';
    }
     
}