@font-face {
    font-family: 'Effra';
    src: url('../font/Effra_Light.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 300;
}

@font-face {
    font-family: 'Effra';
    src: url('../font/Effra_Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 400;
}

@font-face {
    font-family: 'Effra';
    src: url('../font/Effra_Medium.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 600;
}

@font-face {
    font-family: 'Effra';
    src: url('../font/Effra_Bold.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
    font-weight: 700;
}

@font-face {
    font-family: 'Alegre';
    src: url('../font/AlegreSans-Regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

@font-face {
    font-family: "Viceroy";
    src: url("../font/viceroy-regular.woff2") format("woff2"), url("../font/viceroy-regular.woff2") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Viceroy";
    src: url("../font/viceroy-italic.woff2") format("woff2"), url("../font/viceroy-italic.woff2") format("woff");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Viceroy";
    src: url("../font/viceroy-bold.woff2") format("woff2"), url("../font/viceroy-bold.woff2") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Minion;
    src: url("../font/Minion_Pro_Cond_Italic.otf") format("opentype");
}

:root {
    --troodos_2021_font_size: 1vw;
    --troodos_2021_line_height: 1.8vw;
    --troodos_2021_title_font_size: 3.5vw;
    --troodos_2021_accommodation_title: 4.5vw;
    --troodos_2021_facilities_image: 1.5vw;
    --troodos_2021_accommodation_text_facilities: 0.8vw/1vw;
    --troodos_2021_accommodation_room_facilities_title: 1vw/1vw;
}

html,
body {
    height: 100%;
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: rgba(160, 129, 76, 0.8);
}

::selection {
    color: #fff;
    background: rgba(160, 129, 76, 0.8);
}

body {
    margin: 80px 0 0 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.troodos_2021_top_menu_container {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999999;
}

.troodos_2021_top_menu {
    width: 98%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
}

.troodos_2021_top_menu_left {
    display: none;
}

.troodos_2021_top_menu_logo {
    flex: 0 1 10%;
    position: relative;
}

.troodos_2021_top_menu_logo_img {
    width: 10vw;
    position: relative;
}

.troodos_2021_top_menu_links {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
}

.troodos_2021_top_menu_link_item {
    position: relative;
}

.troodos_2021_top_menu_hyperlink {
    font: 600 0.7vw 'Effra';
    letter-spacing: 1px;
    position: relative;
    text-align: center;
    text-decoration: none;
    color: #808280;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    transition: 0.2s all ease-in-out;
}

.troodos_2021_top_menu_hyperlink::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: #808280;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.troodos_2021_top_menu_hyperlink:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.troodos_2021_top_menu_language_and_booking {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}


/*------------------------DROPDOWN LANGUAGE TOP MENU------------------------*/

.troodos_2021_top_menu_language_img {
    width: 1.5vw;
    margin-right: 5px;
    position: relative;
    top: 4px;
    z-index: 0;
}

#troodos_2021_active_language {
    z-index: -9;
}

.dropbtn {
    color: #000;
    font: 600 0.8vw 'Effra';
    color: #808280;
    border: none;
    cursor: pointer;
    position: relative;
}

.dropbtn::after {
    position: absolute;
    top: 0.3vw;
    right: -16px;
    width: 0.5vw;
    height: 0.5vw;
    content: "";
    border-left: 2px solid #aaabad;
    border-bottom: 2px solid #aaabad;
    z-index: 1;
    transform: rotate( -45deg);
    transition: 0.2s all ease-in-out;
}

.show .dropbtn::after {
    position: absolute;
    top: 0.4vw;
    right: -18px;
    width: 0.5vw;
    height: 0.5vw;
    content: "";
    border-left: 2px solid #aaabad;
    border-bottom: 2px solid #aaabad;
    z-index: 1;
    transform: rotate( 45deg);
    transition: 0.2s all ease-in-out;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: transparent;
}

.troodos_2021_top_menu_language {
    position: relative;
    display: inline-block;
    top: -2px;
    padding: 0 20px 0 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: -16px;
    top: calc(100% + 5px);
    border: 1px solid #ad986e;
}

.dropdown-content a {
    font: 600 0.8vw 'Effra';
    color: #ad986e;
    padding: 12px 0.9vw;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ad986e;
}

.dropdown-content a:last-of-type {
    border-bottom: none;
}

.troodos_2021_top_menu_language a:hover {
    background-color: #ddd;
}

.show .dropdown-content {
    display: block;
}


/*------------------------END DROPDOWN LANGUAGE TOP MENU------------------------*/

.troodos_2021_top_menu_booking {
    font: 600 0.8vw 'Effra';
    background-color: #266d68;
    min-width: 12vw;
    position: relative;
    cursor: pointer;
    padding: 10px 0 5px 0;
    outline: none;
    color: #fff;
    margin: 0 10px 0 0;
    border: 1px solid #266d68;
    transition: 0.2s all ease-in-out;
}

.troodos_2021_top_menu_booking:hover {
    background-color: transparent;
    color: #266d68;
    transition: 0.2s all ease-in-out;
}

.troodos_2021_top_menu_booking_img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 1.1vw;
}

.troodos_2021_top_menu_booking_img path {
    fill: #fff;
    transition: 0.2s all ease-in-out;
}

.troodos_2021_top_menu_booking:hover .troodos_2021_top_menu_booking_img path {
    fill: #266d68;
    transition: 0.2s all ease-in-out;
}

.troodos_2021_mobile_menu_container {
    width: 100%;
    height: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #fff;
    z-index: 9999999;
    transition: 0.5s all ease-in-out;
}

.troodos_2021_mobile_menu_open {
    left: 0;
    top: 0;
    transition: 0.5s all ease-in-out;
}

.troodos_2021_mobile_menu_img_container {
    width: 100%;
    position: relative;
    text-align: center;
}

.troodos_2021_mobile_menu_img {
    width: 50%;
    max-height: 67px;
    position: relative;
}

.troodos_2021_mobile_menu_close_button {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 5px;
}

.troodos_2021_mobile_menu_close_button_line {
    width: 100%;
    background-color: #000;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 50%;
    transition: all 1s ease-in-out;
}

#troodos_2021_mobile_menu_close_line_mob_menu_1 {
    transform: rotate(-45deg);
}

#troodos_2021_mobile_menu_close_line_mob_menu_2 {
    transform: rotate(45deg);
}

.troodos_2021_mobile_menu_links {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 20px 0 0 0;
}

.troodos_2021_mobile_menu_hyperlinks {
    font: 600 var(--troodos_2021_font_size)/var(--troodos_2021_line_height) 'Open Sans', sans-serif;
    margin: 0;
    padding: 10px 0;
    color: #808280;
    text-decoration: none;
    border-bottom: 1px solid #808280;
    display: block;
}

@media screen and (orientation: portrait) and (max-width: 1050px) {
     :root {
        --troodos_2021_font_size: 5vw;
        --troodos_2021_line_height: 6.6vw;
        --troodos_2021_title_font_size: 10vw;
        --troodos_2021_accommodation_title: 9.5vw;
        --troodos_2021_facilities_image: 5.5vw;
        --troodos_2021_accommodation_text_facilities: var(--troodos_2021_font_size)/var(--troodos_2021_line_height);
        --troodos_2021_accommodation_room_facilities_title: 5vw/5vw;
    }
    .troodos_2021_top_menu {
        justify-content: space-evenly;
    }
    .troodos_2021_top_menu_left {
        flex: 0 1 10%;
        position: relative;
        display: block;
    }
    .troodos_2021_top_menu_left_img {
        width: 6vw;
        position: relative;
    }
    .troodos_2021_top_menu_logo_img {
        width: 55vw;
        position: relative;
    }
    .troodos_2021_mobile_menu_links {
        height: 88vh;
        overflow: hidden;
    }
    .troodos_2021_top_menu_links,
    .troodos_2021_top_menu_booking {
        display: none;
    }
    .dropbtn {
        font: 600 3vw 'Effra';
    }
    .troodos_2021_top_menu_language_img {
        width: 6vw;
    }
    .dropbtn::after {
        top: 1.5vw;
        right: -10px;
        width: 1.5vw;
        height: 1.5vw;
    }
    .show .dropbtn::after {
        top: 1.5vw;
        right: -10px;
        width: 1.5vw;
        height: 1.5vw;
    }
    .dropdown-content a {
        font: 600 3vw 'Effra';
    }
}

@media screen and (orientation: landscape) and (max-width: 1050px) {
     :root {
        --troodos_2021_font_size: 2.7vw;
        --troodos_2021_line_height: 3.3vw;
        --troodos_2021_title_font_size: 7.5vw;
        --troodos_2021_accommodation_title: 9.5vw;
        --troodos_2021_facilities_image: 5.5vw;
        --troodos_2021_accommodation_text_facilities: var(--troodos_2021_font_size)/var(--troodos_2021_line_height);
        --troodos_2021_accommodation_room_facilities_title: 4vw/4vw;
    }
    body {
        margin: 50px 0 0 0;
    }
    .troodos_2021_top_menu_container {
        height: 50px;
    }
    .troodos_2021_top_menu {
        justify-content: space-evenly;
    }
    .troodos_2021_top_menu_left {
        flex: 0 1 10%;
        position: relative;
        display: block;
    }
    .troodos_2021_top_menu_left_img {
        width: 4vw;
        position: relative;
    }
    .troodos_2021_top_menu_logo_img {
        width: unset;
        position: relative;
        height: 100%;
    }
    .troodos_2021_top_menu_logo {
        flex: unset;
        position: relative;
        height: 100%;
    }
    .troodos_2021_mobile_menu_links {
        height: 77vh;
        overflow: hidden;
    }
    .troodos_2021_top_menu_links,
    .troodos_2021_top_menu_booking {
        display: none;
    }
    .dropbtn {
        font: 600 2vw 'Effra';
    }
    .troodos_2021_top_menu_language_img {
        width: 4vw;
    }
    .dropbtn::after {
        top: 0.6vw;
        right: -2.5vw;
        width: 1.5vw;
        height: 1.5vw;
    }
    .show .dropbtn::after {
        top: 1.5vw;
        right: -10px;
        width: 1.5vw;
        height: 1.5vw;
    }
    .dropdown-content a {
        font: 600 3vw 'Effra';
    }
}