.c-mybigproject {
    font-size: 1em;
}
@media (max-width: 768px) {
    .c-mybigproject {
        font-size: 0.8em;
    }
}

body {
font-family: 'Manrope', sans-serif;
}

body p {
    font-weight: 300;
}

body a {
text-decoration: none;
}

/* HIDE COPYRIGHT */

.notloggedin #copyinfo{
    display: none;
}

.loggedin #copyinfo{
    display: block;
}


/* HORIZONTAL CONTENT */

#h-main-body {
    overflow: hidden;
    display: flex;
    width: max-content;
    flex-direction: row;
    flex-wrap: nowrap;
}

.h-content {
    height: 100vh;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
justify-content: space-between;
}

.c-bg-absolute {
   position: absolute;
    width: 100vw;
    height: 100vh;
}

.c-fullvw {
    width: 100vw;
    height: 100%;
}

.c-bg-full {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.c-content-h {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: calc(100% - 100px);
    top: 100px;
}

.c-content-h.c-absolute {
    position: absolute;
}

/* SECTIONS */

#home, #homeVillas {
    width: 100vw;
}


/* TITLES */

#h-main-body h1.c-top-title {
    color: white;
    border: 0;
    text-align: right;
    position: absolute;
    right: 5vw;
    font-size: 8vw;
    font-family: 'Italiana', serif;
    line-height: 0.9;
    top: 5%;
}

#h-main-body h1.c-title-90, #v-main-body h1.c-title-90 {
    border: 0;
    text-align: left;
    position: relative;
    font-size: 4vw;
    font-family: 'Italiana', serif;
    line-height: 0.9;
}


.c-villas-video-title {
    width: 20vw;
    height: auto;
    padding-left: 5vw;
    position: relative;
    top: 5%;
}


/* HORIZONTAL CONTENT BIG VIDEO */

.c-villas-video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70vw;
    height: 100%;
    overflow: hidden;
}

.c-villas-video img, .c-villas-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ACCOMODATION SECTION */

#homeAccomodation {
    background-color: #f6f8f9;
    padding-left: 5vw;
}

#homeAccomodation .c-content-h {
    display: flex;
    flex-direction: column;
    min-width: 100vw;
    width: auto;
}


.c-accomodation-text {
    width: 50vw;
    height: 20%;
    padding-top: 1vw;
padding-right: 5vw;
}

.c-accomodation-text p {
max-width: 700px;
}

.c-accomodation-images {
    height: calc(80% - 1vw);
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.c-accomodation-container {
    height: 100%;
margin-right: 5vw;
}

.c-accomodation-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.c-accomodation-image:before {
    content: '';
    background-image: linear-gradient(0deg, rgb(38 41 46 / 40%), transparent);
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
}

.c-accomodation-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.c-accomodation-info {
    position: absolute;
    bottom: 1vw;
    color: white;
    right: 1vw;
}

#homeAccomodation .c-accomodation-name {
    font-family: 'Italiana', serif;
    font-size: 5vw;
    font-weight: 100;
    margin-bottom: 0;
    text-align: center;
    color: white;
    border-bottom: 0px solid #f6f6f6;
}

.c-accomodation-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.c-accomodation-details div {
    width: 50%;
}

.c-accomodation-details div:nth-child(1), .c-accomodation-details div:nth-child(3) {
text-align: right;
}

.c-accomodation-details div:nth-child(2), .c-accomodation-details div:nth-child(4) {
text-align: left;
}

.c-accomodation-details div p {
margin: 0;
}

.c-accomodation-details div:nth-child(1) p, .c-accomodation-details div:nth-child(3) p {
padding-right: 10px;
}

.c-accomodation-details div:nth-child(2) p, .c-accomodation-details div:nth-child(4) p {
padding-left: 10px;
}



/* FOOTER */

#footer {
    width: 100vw;
}

#footer a {
color: #3e464c;
}

/* SOCIAL MEDIA */
#footer a:nth-last-child(1), #footer a:nth-last-child(2) {
    color: #a9b9c1;
transition: 0.5s;
}

#footer a:nth-last-child(1) .c-icon img, #footer a:nth-last-child(2) .c-icon img {
    opacity: 0.5;
width: 30px;
transition: 0.5s;
}

#footer a:nth-last-child(1):hover, #footer a:nth-last-child(2):hover {
color: #3e464c;
transition: 0.5s;
}

#footer a:nth-last-child(1):hover .c-icon img, #footer a:nth-last-child(2):hover .c-icon img {
    opacity: 1;
width: 30px;
transition: 0.5s;
}
/* ====== */


#footer .container-fluid {
    height: calc(100vh - 100px);
    position: relative;
    top: 100px;
}

.c-footer-bg {
    height: calc(100vh - 100px);
    position: relative;
    background-size: cover;
    background-position: center;
}

.c-footer-content {
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    margin: auto;
    position: relative;
}

.c-footer-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

#v-main-body #footer .container-fluid {
    height: 100vh;
top: 0px;
}

#v-main-body .c-footer-content {
    min-height: calc(100vh - 50px);
}

#v-main-body .c-footer-bg {
    height: 100vh;
}

.c-icon img {
  width: 40px;
  height: auto;
}

.c-icon-info {
    margin-left: 20px;
}

.c-icon-info p {
margin-bottom: 0px;
}

.c-copyright {
    height: 50px;
    display: flex;
    font-size: 14px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    text-align: center;
    align-items: center;
    border-top: 1px solid #dae3ea;
}

.c-copyright p {
margin-bottom: 0px;
}


/* MENU SECTION */

.loggedin .c-menu-container {
    position: relative;
    z-index: 0;
}

.notloggedin .c-menu-container {
    position: fixed;
    z-index: 90;
}

.c-menu-container {
    position: fixed;
    display: flex;
    color: white;
    flex-direction: row;
    justify-content: space-between;
    width: 90vw;
    padding-right: 5vw;
    padding-left: 5vw;
    border-bottom: 0px solid white;
    align-items: center;
    height: 100px;
    font-weight: 100;
}


.c-button-1 {
    color: #3e464c;
    border: 1px solid;
    padding: 10px;
    display: inline-block;
    transition: 0.5s;
}

.c-button-1:hover {
    background-color: #3e464c;
    color: white;
}.c-newlogo {
    background-image: url('cache/files/notfound');
    background-position: center;
    background-size: contain;
background-repeat: no-repeat;
}


a.mobile-header-startlink {
    background-image: url('cache/files/notfound');
    background-position: center;
    background-size: contain;
background-repeat: no-repeat;
width: 220px;
    transform: translate(-50%, 0%);
}

.side-nav__header {
    background-color: white;
    background-image: url('cache/files/notfound') !important;
    color: #333;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    margin-left: 8vh;
    margin-right: 8vh;
}.c-newsletter {
padding-top: 100px;
padding-bottom: 100px;
width: 60%;
margin: auto;
}

.c-newsletter form {
    margin: auto;
}

.c-newsletter form label {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 800;
font-family: 'Manrope', sans-serif;
}

.c-newsletter form input {
    padding: 10px;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


.c-newsletter form input:focus-visible {
outline: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}

.c-newsletter form input::placeholder {
color: #d1d1d5;
font-size: 14px;
}

.c-newsletter form .submit {
margin-top: 20px;
text-align: center;
}

.c-newsletter form .submit button {
    font-size: 14px;
    font-weight: 400;
    padding: 20px 25px;
    color: white;
    background-color: #595959;
    transition: 0.3s;
    letter-spacing: 1px;
    border-radius: 3px;
    border-color: transparent;
    min-width: 170px;
}

.c-newsletter form .submit button:hover {
color: white;
background-color: #e0751b;
}

@media only screen and (max-width: 768px) {
.c-newsletter {
width: 90%;
}
}.loggedin #topbanner, .loggedin #topmenu {
display: block;
}

.notloggedin #topbanner, .notloggedin #topmenu {
display: none;
}/*! locomotive-scroll v3.5.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  transform: scaleX(1.45);
}
.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}.c-fullmenu-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 80;
    background-color: white;
left: -100vw;
opacity: 0;
transition: left 0s ease, opacity 1s ease;
transition-delay: 1s, 0s;
}

.c-fullmenu-container.cActive {
left: 0vw;
opacity: 1;
transition: left 0s ease, opacity 1s ease;

}

.c-fullmenu-inner {
    position: relative;
    height: calc(100vh - 150px);
    top: 100px;
}

.c-menu-flex {
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 97%;
    margin: auto;
}


.c-menu-flex a {
    width: 33.33%;
    margin: 30px;
    opacity: 0;
    transition: opacity 1s;
    color: #3e464c;
}

.c-fullmenu-container.cActive .c-menu-flex a:nth-child(1) {
opacity: 1;
transition-delay: 1.5s;
}
.c-fullmenu-container.cActive .c-menu-flex a:nth-child(2) {
opacity: 1;
transition-delay: 2s;
}
.c-fullmenu-container.cActive .c-menu-flex a:nth-child(3) {
opacity: 1;
transition-delay: 2.5s;
}

.c-menu-image {
    width: 100%;
    margin: auto;
}

.c-menu-image img {
    height: auto;
    width: 100%;
}

#cMenu h1.c-menu-title {
    border-bottom: 0px;
    font-size: 3vw;
    font-family: 'Italiana', serif;
    line-height: 0.9;
margin-top: 10px;
}

.c-menu-info {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.c-menu-info-inner {
    width: 50%;
    text-align: center;
}

.c-belowmenu {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 90vw;
    padding-right: 5vw;
    padding-left: 5vw;
    flex-direction: row;
    justify-content: space-between;
    height: 50px;
    border-top: 1px solid #dae3ea;
    align-items: center;
}

.c-follow-menu, .c-contact-menu, .c-gallery-menu {
    font-family: 'Italiana', serif;
}

.c-follow-menu p, .c-contact-menu p, .c-gallery-menu p {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.c-menu-button {
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
}

.c-menu-button::before {
    content: 'Menu';
    position: absolute;
    font-family: 'Italiana', serif;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transition: 1s;
}

.c-menu-button:hover::before {
    opacity: 1;
}

.c-menu-button.cActive::before {
    opacity: 0;
    transition: 0s;
}

.c-menu-button::after {
    opacity: 0;
}

.c-menu-button.cActive::after {
    content: 'Close';
    position: absolute;
    font-family: 'Italiana', serif;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transition: 1s;
}

.c-menu-button.cActive:hover::after {
    opacity: 1;
}


.c-line-1, .c-line-2 {
    height: 1px;
    width: 100%;
    background-color: white;
}

.c-line-1 {
    position: absolute;
    top: 40%;
    transform: translateY(-50%) rotate(0deg);
transition: 1s;
}

.c-line-2 {
    position: absolute;
    top: 60%;
    transform: translateY(-50%) rotate(0deg);
transition: 1s;
}

.c-menu-button.cActive .c-line-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
transition: 1s;
}

.c-menu-button.cActive .c-line-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
transition: 1s;
}

.c-booknow {
    display: flex;

}

.c-booknow a {
color: white;
transition: 1s;
margin-right: 20px;
}

.c-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
}

.c-logo img:nth-child(1) {
opacity: 1;
transition: 1s;
}

.c-logo img:nth-child(2) {
opacity: 0;
transition: 1s;
}



/* MOBILE & TABLET */


@media (max-width: 990px) {
.c-fullmenu-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    z-index: 80;
    background-color: white;
    left: -100vw;
    opacity: 0;
    transition: left 0s ease, opacity 1s ease;
    transition-delay: 1s, 0s;
}
.c-fullmenu-inner {
    position: relative;
    height: auto;
    top: 0;
    padding-top: 100px;
}

.c-menu-flex {
    display: block;
    height: auto;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: auto;
    flex-wrap: nowrap;
}
.c-belowmenu {
    position: relative;
}

.c-menu-button {
    transform: scale(0.6);
}

.c-menu-button::before {
    left: 0;
    top: 110%;
}

.c-menu-button.cActive::after {
    left: 0;
    top: 110%;
}


.c-booknow {
    transform: scale(1);
    right: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    top: 0px;
font-size: 12px;
}
.c-booknow a {
    margin-right: 0;
}



#cMenu h1.c-menu-title {
    font-size: 40px;
    margin-bottom: 0;
}

.c-menu-info-inner p {
    margin-bottom: 0;
}

.c-menu-box{
    margin-bottom: 30px;
}

.c-follow-menu p, .c-contact-menu p {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.c-menu-button {
    transform: scale(1);
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.c-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: auto;
}

}





/* MENU ANIMATION */

.c-menu-container {
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0px);
-webkit-backdrop-filter: blur(0px);
transition: 1s;
}

.c-menu-container.cActive {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
border-bottom: 0px solid #3e464c;
transition: 1s;
}


.c-menu-container.cActiveOpen {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
border-bottom: 0px solid #3e464c;
transition: 1s;
}

.c-menu-container.cActive .c-logo img:nth-child(1) {
opacity: ;
transition: 1s;
}

.c-menu-container.cActive .c-logo img:nth-child(2) {
opacity: 1;
transition: 1s;
}

.c-menu-container.cActive .c-booknow a {
    color: #3e464c;
transition: 1s;
}


.c-menu-container.cActive .c-line-1, .c-menu-container.cActive .c-line-2 {
    height: 1px;
    background-color: #3e464c;
}

.c-menu-container.cActiveOpen .c-line-1, .c-menu-container.cActiveOpen .c-line-2 {
    height: 1px;
    background-color: #3e464c;
}

.c-menu-container.cActive {
    color: #3e464c;
    transition: 1s;
}

.c-menu-container.cActiveOpen {
    color: #3e464c;
    transition: 1s;
}

.c-menu-container.cActiveOpen .c-logo img:nth-child(1) {
    opacity: 0;
    transition: 1s;
}

.c-menu-container.cActiveOpen .c-logo img:nth-child(2) {
    opacity: 1;
    transition: 1s;
}

.c-menu-container.cActiveOpen .c-booknow a {
    color: #3e464c;
    transition: 1s;
}




.c-menu-info div:nth-child(1), .c-menu-info div:nth-child(3) {
text-align: right;
}

.c-menu-info div:nth-child(2), .c-menu-info div:nth-child(4) {
text-align: left;
}

.c-menu-info div:nth-child(1) p, .c-menu-info div:nth-child(3) p {
padding-right: 10px;
}

.c-menu-info div:nth-child(2) p, .c-menu-info div:nth-child(4) p {
padding-left: 10px;
}#villa {
    height: 100vh;
    position: relative;
    width: 100%;
}

.c-top-image-bg {
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.c-villa-top-info {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#v-main-body h1.c-villa-name {
    color: white;
    border: 0;
    text-align: center;
    font-size: 9vw;
    font-family: 'Italiana', serif;
    line-height: 1;
    margin-bottom: 0px;
    padding-bottom: 0px;
    white-space: nowrap;
}

.c-underline {
    width: 100%;
    height: 1px;
    background-color: white;
    margin-bottom: 20px;
}

.c-villa-quick-info {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 20px;
    font-weight: 300;
text-transform: capitalize;
}

#v-main-body h2.c-subtitle {
    border: 0;
    text-align: left;
    position: relative;
    font-size: 70px;
    font-family: 'Italiana', serif;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0px;
    margin-top: 0px;
}

#v-main-body h1.c-maintitle {
    border: 0;
    text-align: left;
    position: relative;
    font-size: 50px;
    font-family: 'Italiana', serif;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0px;
    margin-top: 0px;
}

.c-max-1280 {
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 1280px;
    margin: auto;
}

.c-max-1280 p {
    margin-bottom: 0px;
    font-size: 20px;
}

#villa-gallery {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 2%;
    padding-left: 2%;
}

#villa-gallery .col-md-3 .c-maintitle {
    padding-top: 50%;
}

.c-gallery-container {
    padding-left: 2%;
    overflow: hidden;
    height: 90vh;
width: 100%;
}



.c-details-image-container {
    height: 100vh;
    position: relative;
}

.c-details-image-bg {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.c-details-image-logo img {
    position: absolute;
    right: -25%;
    bottom: 5%;
    width: 20vw;
    height: auto;
}

.c-details-container {
    padding-top: 40%;
    padding-bottom: 20%;
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
}

.c-details-icons {
    margin-top: 30px;
    margin-bottom: 30px;
}

.c-icon-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    margin-top: 30px;
    padding-bottom: 30px;
}
.c-icon-container img {
    width: 3vw;
    height: auto;
    max-width: 70px;
    min-width: 40px;
    margin-right: 30px;
}

#paros-view {
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
}

#paros-view h1.c-paros-title {
    border: 0;
    text-align: left;
    position: relative;
    font-size: 7vw;
    font-family: 'Italiana', serif;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0px;
    margin-top: 0px;
    position: absolute;
    left: 5vw;
    top: 5%;
    width: 45%;
}

.c-paros-view-image {
text-align: center;
}

.c-paros-view-image img {
width: 70%;
height: auto;
}

#bookyourstaying {
    padding-top: 150px;
    padding-bottom: 150px;
}


#bookyourstaying {
text-align: center;
}

#bookyourstaying a {
    border: 0;
    text-align: left;
    position: relative;
    font-size: 70px;
    font-family: 'Italiana', serif;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    color: white;
}

/* SLICK GALLERY */

#villa-gallery {
overflow: hidden;
}



#villa-gallery .slider-arrows span {
    font-size: 12px;
    font-weight: 100;
    width: 30px;
    height: 30px;
    position: relative;
}

#villa-gallery .slider-arrows {
    top: auto;
    bottom: 5%;
    z-index: 3;
    padding: 14px;
    background-color: white;
}

#villa-gallery .slider-arrow-left {
    left: 5%;
}

#villa-gallery .slider-arrow-right {
    left: calc(5% + 65px);
 right: auto;
}

#villa-gallery .fa-chevron-left:before {
    content: "";
    background-image: url('/cache/files/4d92e1936e97d4a4bfa84df6200c8c9dd03935ee.svg');
    background-size: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
}

#villa-gallery .fa-chevron-right:before {
    content: "";
    background-image: url('/cache/files/4d92e1936e97d4a4bfa84df6200c8c9dd03935ee.svg');
    background-size: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    background-position: center;
}

/* MOBILE & TABLET */

@media (max-width: 990px) {
#v-main-body h2.c-subtitle {
    font-size: 40px;
}
#v-main-body h1.c-maintitle {
    font-size: 40px;
}

.c-max-1280 {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.c-max-1280 p {
    margin-bottom: 0px;
    font-size: 16px;
}

#villa-gallery {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 20px;
    padding-left: 20px;
}

#villa-gallery .col-md-3 .c-maintitle {
    padding-top: 50px;
}

.c-gallery-container {
    padding-left: 0;
    overflow: hidden;
    height: auto;
    padding-top: 60px;
    margin-bottom: 100px;
}

#villa-gallery .slider-arrows {
    top: 0px;
    bottom: auto;
    transform: scale(1);
}

#villa-gallery .slider-arrow-left {
    left: 0;
}

#villa-gallery .fa-chevron-left:before {
    left: 50%;
    transform: translate(-50%, -50%);
    background-position: center;
    top: 40%;
}

#villa-gallery .fa-chevron-right:before {
    transform: translate(-50%, -50%) rotate(180deg);
    background-position: center;
    top: 40%;
}
#villa-gallery .slider-arrow-right {
    left: 50px;
}

#villa-gallery .slider-arrows span {
    font-size: 12px;
    font-weight: 100;
    width: 20px;
    height: 20px;
    position: relative;
}
#villa-gallery .slider-arrows {
    padding: 10px;
}

.c-details-image-container {
    height: auto;
}

.c-details-image-bg {
    height: 70vh;
}
.c-details-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.c-icon-container img {
    width: 100%;
    max-width: 50px;
    margin-right: 30px;
}
#paros-view {
    margin-top: 0px;
    margin-bottom: 50px;
    position: relative;
}

#paros-view h1.c-paros-title {
    position: relative;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0px;
    margin-top: 0px;
    position: relative;
    left: 0;
    text-align: center;
    top: 0;
    width: 70%;
    margin: auto;
}

.c-paros-view-image {
    text-align: center;
    margin-top: -50px;
}

.c-paros-view-image img {
    width: 100%;
    height: auto;
}

#bookyourstaying a {
    font-size: 40px;
}

#v-main-body #footer .container-fluid {
    height: auto;
    top: 0px;
}

#v-main-body .c-footer-content {
    min-height: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

#v-main-body h1.c-villa-name {
    text-align: center;
    font-size: 50px;
}

.c-villa-top-info {
    width: 90%;
}

.c-villa-quick-info {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
    flex-wrap: wrap;
text-align: center;
}

.c-villa-quick-info div {
    width: 50%;
}

.c-villa-quick-info div:nth-child(1), .c-villa-quick-info div:nth-child(3) {
text-align: right;
}

.c-villa-quick-info div:nth-child(2), .c-villa-quick-info div:nth-child(4) {
text-align: left;
}

.c-villa-quick-info div:nth-child(1) p, .c-villa-quick-info div:nth-child(3) p {
padding-right: 10px;
}

.c-villa-quick-info div:nth-child(2) p, .c-villa-quick-info div:nth-child(4) p {
padding-left: 10px;
}

.c-copyright {
    height: 100%;
    display: flex;
    font-size: 12px;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: nowrap;
    text-align: center;
    align-items: center;
    border-top: 1px solid #dae3ea;
    padding-top: 10px;
    padding-bottom: 10px;
}

#h-main-body h1.c-title-90, #v-main-body h1.c-title-90 {
    font-size: 40px;
}

}

#image-gallery h1.c-maintitle {
text-align: center;
}

.cClonedItems {
margin-bottom: 50px;
}

/* HIDE ΦΩΤΟΓΡΑΦΙΕΣ TITLE */

.notloggedin .aboveitems h1 {
display: none;
}

.loggedin .aboveitems h1 {
display: block;
}



/* GALLERY SETTINGS */

#image-gallery .slick-next, #image-gallery .slick-prev {
    font-size: 12px;
    font-weight: 100;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -65px;
    transform: translateY(-50%);
    background-color: white;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
    opacity: 1;
}

#image-gallery .slick-next {
    right: calc(50% - 150px);
}

#image-gallery .slick-prev {
    left: calc(50% - 150px);
}

#image-gallery .slick-next {
    font-size: 12px;
    font-weight: 100;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -65px;
    transform: translateY(-50%);
    background-color: white;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
    opacity: 1;
    right: calc(50% - 150px);
}


#image-gallery .slick-next:before {
    content: "";
    background-image: url('/cache/files/4d92e1936e97d4a4bfa84df6200c8c9dd03935ee.svg');
background-size: contain;
    height: 80%;
    width: 80%;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(180deg);
    background-position: center;
}

#image-gallery .slick-prev:before {
    content: "";
    background-image: url('/cache/files/4d92e1936e97d4a4bfa84df6200c8c9dd03935ee.svg');
    background-size: contain;
    height: 80%;
    width: 80%;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-position: center;
}

@media (max-width: 990px) {
div.horizontalitemsgallery div.item div.photos img {
    max-height: 400px;
}
}.cLang {
    position: relative;
}

#c-bodylang .cLang {
    position: absolute;
    top: 70px;
    right: 5%;
    z-index: 9999;
}

#c-bodylang .cLang a {
    color: #ffffff;
}

#c-bodylang .cLang li:nth-child(1) {
    width: 22px;
    margin-right: 10px;
    letter-spacing: 1px;
}

#c-bodylang .cLang li:nth-child(2) {
    width: 22px;
    letter-spacing: 1px;
}

.cLang div.langlist ul {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    text-transform: uppercase;
    display: flex;
    transform: translateY(0) !important;
}

#c-bodylang .cLang div.langlist ul {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-transform: uppercase;
    display: flex;
    transform: translateY(0) !important;
}


.cLang a {
color: white;
transition: 1s;
}
.cLang ul li a {
    margin-top: 0px !important;
}

.cLang .active {
    font-weight: 500;
}

.cLang li {
    background-color: transparent !important;
    height: auto !important;
    overflow: hidden;
}

.cLang li:hover {
    background-color: transparent !important;
    height: auto !important;
}

.cLang li:nth-child(1) {
    width: 20px;
margin-right: 5px;
}

.cLang li:nth-child(2) {
    width: 20px;
}


@media (max-width: 990px) {

.c-menu-container.cActive .cLang a {
    color: #3e464c;
transition: 1s;
}



.cLang {
margin-top: 5px;
}
.cLang div.langlist span.langtext {
    display: block !important;
}

.cLang li:nth-child(1) {
    width: 15px;
    margin-right: 10px;
}

.cLang li:nth-child(2) {
    width: 14px;
}

.cLang div.langlist ul {
    justify-content: center;
}
}#cboxOverlay {
    background: #fff;
    opacity: 0.9;
    filter: alpha(opacity = 90);
}

#cboxLoadedContent {
    border: 0px solid #000;
    background: transparent;
}

#cboxLoadedContent:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

#cboxContent {
    margin-top: 0px;
    background: transparent;
}

#cboxPrevious {
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: 0;
    background: url('/cache/files/4d92e1936e97d4a4bfa84df6200c8c9dd03935ee.svg') no-repeat bottom left;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
    transform: translateY(-50%);
}

#cboxNext {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: 0;
    background: url('/cache/files/4d92e1936e97d4a4bfa84df6200c8c9dd03935ee.svg') no-repeat bottom right;
    width: 28px;
    height: 65px;
    text-indent: -9999px;
    transform: translateY(-50%) rotate(180deg);
}

#cboxClose {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    background: url('/cache/files/b495d4ab508c04085872e983ba2b99c6c16c129f.svg') no-repeat top center;
    width: 38px;
    height: 38px;
    text-indent: 0px;
    z-index: 1;
    font-size: 0px;
}

#cboxClose:before {
    content: ' ';
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    position: absolute;
}

#cboxClose::after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    position: absolute;
    background: url('/cache/files/b495d4ab508c04085872e983ba2b99c6c16c129f.svg') no-repeat center center;
    background-size: 60%;
}#v-main-body h1.c-villa-name {
    text-align: center;
    width: 100%;
}

.c-villa-top-info {
    width: 55%;
}

@media (max-width: 990px) {
.c-villa-top-info {
    width: 90%;
}
}