@charset "utf-8";
/* Fonts */
@font-face {
    font-family: "Lato Thin";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Lato-Thin.woff") format("woff");
}
@font-face {
    font-family: "Lato Light";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Lato-Light.woff") format("woff");
}
@font-face {
    font-family: "Lato Regular";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Lato-Regular.woff") format("woff");
}
@font-face {
    font-family: "Lato Bold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Lato-Bold.woff") format("woff");
}
@font-face {
    font-family: "Playfair Bold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/PlayfairDisplay-Bold.woff") format("woff");
}
/* /Fonts */
/* reset/default rules */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, acronym, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, label, legend, table, caption, tbody, thead, tr, th, td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --lightOrange: #ffdbbb;
  --grey: #ccbeb1;
  --lightBrown: #997e67;
  --brown: #664930;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
:focus {
  outline: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a img, :link img, :visited img {
  border: 0;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
}
a, .inputbox {
  outline-width:0;
}
a {
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
p {
  margin-bottom: 14px;
}
body {
  max-width: 1920px;
  margin:0px auto;
  padding:0px;
  height:100%;
  font-family: Lato Light;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--brown);
  background-color: #f9f9f9;
}
html {
  height:100%;
  width:100%;
  scroll-behavior: smooth;
}
.innerBlock{
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 0;
}
/* /reset/general rules */
/*---------------------------------------------------------------------------------------*/
/* base typography */
h1 {
  font-size: 2.5em;
}
h2{ font-size: 1.6em }
h3 {
  font-size: 1.4em;
  padding: .6em 0;
}
h4{ font-size: 1.3em }
h5{ font-size: 1.2em }
h6{ font-size: 1em }
/* /base typography */
/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8); /* ή άλλο χρώμα φόντου */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* /Loader */
/* Buttons */
.button {
  background-color: transparent;
  border: 3px solid var(--lightOrange);
  padding: 10px 20px;
  transition: all .3s ease;
  margin-top: 20px;
  color: var(--lightOrange);
}
.button:hover {
  color: var(--brown);
}
.button:hover {
  background-color: var(--lightOrange);
}
.button.dark {
  border: 3px solid var(--brown);
}
.button.dark {
  color: var(--brown);
}
.button.dark:hover {
  color: var(--lightOrange);
}
.button.dark:hover {
  background-color: var(--brown);
}
/* /Buttons */
/* Header */
.header {
  position: fixed;
  top: -200px;
  z-index: 10;
  width: 100%;
  height: 105px;
  background-color: rgba(0, 0, 0, .8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 7px 0;
  border-bottom: 3px solid var(--lightOrange);
  visibility: hidden;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.header.headerVisible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
  top: 0;
}
.headerBottom .logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--lightOrange);
}
.headerBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.headerBottom .logo, .headerBottom .bookButton {
  flex: 0 25%;
}
.headerBottom .mainMenu {
  flex: 0 50%;
}
.headerBottom .social {
  padding: 0 20px;
}
.headerBottom .bookButton {
  text-align: right;
}
/* Logo */
.header .logo {
  display: flex;
  flex-direction: column;
}
.header .logo img {
  width: 60px;
}
/* /Logo */
/* Menu */
.mainMenu ul.nav {
  justify-content: center;
}
.mainMenu ul.nav li a {
  padding: 10px;
  color: var(--lightOrange);
}
.mainMenu ul.nav li a:hover {
  color: var(--lightBrown);
}
/* /Menu */
@media (max-width: 768px) {
  .header {
    height: 120px;
  }
  .headerBottom {
    flex-direction: column;
  }
  .headerBottom .social, .headerBottom .bookButton {
    display: none;
  }
  .headerBottom .mainMenu {
    flex: 1 100%;
  }
}
/* /Header */

/* Hero Parallax */
.hero-wrapper {
  position: relative;
  height: 200vh;
  z-index: 1;
}
.hero-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.bg-image,
.overlay-image,
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  pointer-events: none;
}
.bg-image {
  background-image: url('../images/beach.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.15);
}
.overlay-image {
  background-image: url('../images/window.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(2);
  z-index: 2;
}
.hero-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102,73,48, .3);
  z-index: 2;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  opacity: 0;
  z-index: 3;
  pointer-events: auto;
  position: relative;
  color: var(--lightOrange);
  padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(44px, 7vw, 60px);
  text-shadow: 3px 3px 6px rgba(102,73,48,0.6);
}
.hero-content p {
  text-shadow: 1px 1px 2px rgba(102,73,48,0.9);
  font-size: 1.5em;
}
.hero-visible .hero-content {
  opacity: 1;
}
.hero-wrapper .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform 0.2s ease-out;
}
@media (max-width: 480px) {
  .hero-wrapper .logo {
    transform: translate(-50%,-150%) !important;
  }
}
.hero-wrapper .logo img {
  max-width: 130px;
  filter: drop-shadow(3px 3px 6px rgba(102,73,48,0.6));
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.scroll-indicator img {
  width: 60px; /* Ή όσο χρειάζεσαι */
}
/* /Hero Parallax */

/* Hero Internal */
.heroInt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-size: cover;
  background-position: top center;
}
.heroInt .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102,73,48, .7);
}
.heroInt h1 {
  position: absolute;
  font-family: Playfair Bold;
  font-size: 3em;
  font-style: italic;
  color: var(--lightOrange);
}

/* Rooms */
.heroRoom {
  background-image: url(../images/heroRoomsBg.jpg);
}
/* /Rooms */

/* About us */
.heroAbout {
  background-image: url(../images/heroAboutBg.jpg);
}
/* /About us */

/* /Hero Internal */

/* Welcome */
.welcomeCont {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background-image: url(../images/welcomeBg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: var(--lightOrange);
  position: relative;
}
.welcomeCont h1 {
  font-size: clamp(64px, 7vw, 100px);
  text-shadow: 3px 3px 6px rgba(102,73,48,0.6);
  letter-spacing: -5px;
}
.welcomeCont .subTitle {
  font-size: 1.5em;
  text-shadow: 1px 1px 1px rgba(102,73,48,0.9);
  text-align: center;
}
.welcomeCont .sideCont {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(255, 219, 187, .9);
  padding: 40px;
  gap: 130px;  
  height: 100%;
  max-width: 200px;
  overflow: hidden;
}
.welcomeCont .sideCont img {
  max-width: 100px;
}
.welcomeCont .sideCont .sideText {
  color: var(--brown);
  rotate: -90deg;
  font-size: 1.5em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .welcomeCont .sideCont {
    display: none;
  }
}
/* /Welcome */
/* Section Title */
.sectionTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.backTitle {
  font-family: Playfair Bold;
  font-size: clamp(74px, 7vw, 5em);
  color: var(--grey);
  font-style: italic;
  opacity: .3;
  margin-bottom: -60px;
  letter-spacing: -3px;
}
.backText {
  font-family: Lato Regular;
  font-size: clamp(26px, 3vw, 1.5em);
  z-index: 1;
}
@media (max-width: 768px) {
  .backTitle {
    margin-bottom: -55px;
  }
}
/* /Section Title */
/* Facilities */
.facilCont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 50px 20px;
}
.facilCont .sectionTitle, .testiMainCont .sectionTitle {
  align-items: center;
}
.facilBlocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 50px 0;
}
.facilBlock {
  flex: 1 23%;
  position: relative;
  height: 440px;
  overflow: hidden;
}
.facilBlock .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--lightBrown);
  opacity: 0;
  transition: all .3s ease;
  transform: translateY(0%);
}
.facilBlock:hover .overlay {
  opacity: .6;
  transition: all .3s ease;
}
.facilBlock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .3s;
}
.facilBlockTitle {
  position: relative;
  text-align: center;
  color: var(--lightOrange);
  z-index: 1;
  font-family: Playfair Bold;
  font-style: italic;
  font-size: 1.6em;
  transform: translateY(100%);
  height: 100%;
  transition: all .3s ease;
  opacity: 0;
}
.facilBlock:hover .facilBlockTitle {
  transition: all .3s ease;
  transform: translateY(45%);
  opacity: 1;
}
.facilBlock:hover img {
  filter: blur(5px);
  opacity: .5;
}
@media (max-width: 768px) {
  .facilBlock {
    flex: 0 48.5%;
  }
}
@media (max-width: 480px) {
  .facilBlock {
    flex: 1 100%;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .facilBlock {
    flex: 0 47%;
  }
}
/* /Facilities */

/* About */
.aboutCont, .testiMainCont {
  background-color: rgba(204, 190, 177, .1);
}
.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  min-height: 100vh;
}
.aboutMainCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  gap: 40px;
}
.aboutMainLeft {
  flex: 1 40%;
}
.aboutSubTitle {
  font-family: Lato Regular;
  font-size: .9em;
  margin-bottom: 30px;
}
.aboutMainRight {
  flex: 1 60%;
  border-left: 1px dotted var(--lightBrown);
  padding-left: 40px;
}
.aboutMainRight img {
  width: 100%;
  filter: drop-shadow(30px 30px 0 rgba(204, 190, 177, .7));
  margin-bottom: 30px;
}
.aboutText {
  font-size: clamp(.9em, 1.5vw, 1em);
}
.hotelServicesCont {
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted var(--lightBrown);
  border-top: 1px dotted var(--lightBrown);
  margin-bottom: 20px;
}
.hotelServicesBlocks {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  border-right: 1px dotted var(--lightBrown);
  padding-right: 20px;
  width: 100%;
}
.hotelServicesBlocks:last-child {
  border: 0;
}
.hotelServicesBlock {
  display: flex;
  gap: 10px;
  margin: 5px 0;
}
.hotelServicesBlock img {
  max-width: 30px;
  max-height: 30px;
}
@media (max-width: 768px) {
  .aboutMainCont {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .aboutMainRight {
    padding-left: 0;
    border-left: 0;
  }
  .aboutMainRight img {
    filter: drop-shadow(20px 20px 0 rgba(204, 190, 177, .7));
  }
}
/* /About */

/* Rooms Carousel */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}
.carousel-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}
.images-wrapper {
  position: relative;
  height: 100%;
  width: 100vw;
}
.images-wrapper img {
  position: absolute;
  top: 0; left: 0;
  max-width: 1280px;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.images-wrapper img.active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  align-items: center;
}
.room-carousel {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.room-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.room-carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nested-indicators {
  position: absolute;
  bottom: 20px;
  right: 50px;
  display: flex;
  gap: 15px;
  z-index: 10;
}
.dot {
  width: 15px;
  height: 15px;
  background-color: rgba(244, 242, 241, 1);
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  background-color: var(--lightOrange);
}
.room-info {
  flex: 1 1 50%;
  padding: 40px;
  overflow-y: auto;
  background: #f9f9f9;
}
.roomInfoText {
  font-size: clamp(.8em, 1.5vw, 1em);
}
.hotelServicesBlocks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex: 0 250px;
}
.hotelServicesService {
  font-size: clamp(0.8em, 1.5vw, 1em);
}
.roomPriceCont {
  margin: 20px 0;
  font-size: 2em;
  font-family: Lato Bold;
  display: inline;
}
.roomPrice {
  font-size: 1em;
  font-family: Lato Regular;
}
.roomPrice span {
  font-size: .7em;
  font-family: Lato Light;
}
.priceButtonCont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 20;
}
.carousel-controls button {
  color: var(--brown);
  background-color: rgba(244, 242, 241, .5);
  padding: 20px 30px;
  border: 0;
  border-radius: 50%;
  margin: 0 30px;
  transition: all .3s ease;
}
.carousel-controls button:hover {
  background-color: rgba(244, 242, 241, 1);
}
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    height: auto;
  }
  .room-carousel, .room-info {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
  }
  .room-carousel {
    max-height: none; /* <-- κρίσιμο! */
    position: relative;
  }
  .images-wrapper {
    position: relative;
    width: 100vw;
    aspect-ratio: 4 / 3; /* ή ορίστε ένα σταθερό ύψος */
    overflow: hidden;
  }
  .images-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
  }
  .carousel-controls button {
    background-color: transparent;
    margin: 0;
    padding: 0 20px;
  }
  .carousel-controls button:hover {
    background-color: transparent;
  }
}
@media (max-width: 480px) {
  .carousel-controls {
    top: 30%;
  }
  .hotelServicesCont {
    flex-wrap: wrap;
  }
  .hotelServicesBlocks {
    display: flex;
    flex-wrap: wrap;
    flex: 1 47%;
    border-right: 0;
    margin: 0;
  }
}
/* /Rooms Carousel */

/* Testimonials */
.testiMainCont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.testimonialsBlock {
  max-width: 900px;
  padding: 50px 20px;
}
.testimonialsBlock .carousel-item {
  text-align: center;
  width: 100%;
}
.testiText {
  font-size: clamp(20px, 2vw, 1.3em);
  line-height: 1.5em;
  font-family: Lato Light;
}
.testiImg {
  margin: 50px 0 20px;
}
.testiImg img {
  max-width: 120px;
  border-radius: 50%;
  padding: 5px;
  border: 3px solid var(--lightBrown);
}
.testiName {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 80px;
}
.testiName span {
  color: var(--lightOrange);
  font-family: Lato Regular;
}
.testi-dots {
  text-align: center;
  margin-top: 20px;
}
.testi-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testi-dots .dot.active {
  background-color: var(--lightOrange); /* ή #f77f00 αν δεν έχεις τη μεταβλητή */
}
/* /Testimonials */

/* Social */
.socialBlock {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.socialBlock i {
  font-size: 1rem;
  padding: 10px;
  color: var(--lightOrange);
  transition: all .3s ease;
}
.socialBlock a i {
  color: var(--lightOrange);
}
.socialBlock a:hover i {
  color: var(--lightBrown);
}
/* /Social */

/* K2 Category Item View */
#itemListPrimary {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}
.itemContainer {
  flex: 1 50%;
  padding: 30px 20px;
}
.catItemIntroText {
  padding: 40px 40px 60px;
  background-color: var(--brown);
  color: var(--lightOrange);
  margin-top: -10px;
}
.catItemIntroText h3 {
  font-family: Lato Regular;
  font-weight: bold;
}
.catItemImage img {
  width: 100%!important;
  max-height: 350px;
  object-fit: cover;
}
.catItemReadMore {
  margin-top: 30px;
}
/* /K2 Category Item View */


/* K2 Item View */
.itemBody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.itemImageBlock {
  flex: 0 40%;
}
.itemFullText {
  flex: 0 60%;
}
.itemImage img {
  width: 100% !important;
}
.itemImageGalleryCont {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(../images/galleryBg.jpg);
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  height: 400px;
  gap: 40px;
}
.itemImageGalleryCont .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,219,187, .9);
}
.itemImageGalleryTitle {
  flex: 0 40%;
  text-align: right;
  z-index: 1;
}
.itemImageGalleryTitle h1 {
  padding: 50px 0;
  font-family: Lato Regular;
}
.itemImageGallery {
  flex: 0 60%;
  float: left;
  padding: 50px 0;
}
ul.sigProElegant {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0!important;
}
ul.sigProElegant li.sigProThumb a.sigProLink {
  border: 0!important;
  background: 0!important;
  margin-right: -60px!important;
}
ul.sigProElegant li.sigProThumb {
  list-style: none;
}
.sigProImg {
  border: 10px solid var(--lightBrown)!important;
  padding: 10px!important;
  border-radius: 50%!important;
}
.itemVideoCont {
  padding: 60px 0;
}
.itemVideoCont h1 {
  padding: 30px 0;
  text-align: center;
}
.itemVideoBlock iframe {
  width: 100%;
  height: 554px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .itemImageGalleryCont {
    height: 600px !important;
  }
  .itemImageBlock, .itemFullText {
    flex: 1 100%;
  }
  .itemImageBlock img {
    max-height: 400px;
    object-fit: cover;
  }
  .itemImageGalleryCont {
    flex-direction: column;
    padding: 60px 0;
    gap: 0;
  }
  .itemImageGallery {
    width: 100%;
    padding: 0;
  }
  ul.sigProElegant {
    padding: 10px 0;
    justify-content: center;
  }
  ul.sigProElegant li.sigProThumb a.sigProLink .sigProImg {
    width: 180px!important;
    height: 180px!important;
  }
  ul.sigProElegant li.sigProThumb a.sigProLink {
    margin-right: -80px!important;
  }
}
@media (max-width: 480px) {
  .itemImageGalleryCont {
    height: 500px !important;
  }
  .itemImageGallery {
    flex: 1 100%;
  }
  .itemImageGalleryTitle h1 {
    padding: 30px 0;
  }
  ul.sigProElegant {
    justify-content: space-around;
    padding: 20px!important;
  }
  ul.sigProElegant li.sigProThumb a.sigProLink {
    margin-right: -80px!important;
    width: 140px!important;
    height: 140px!important;
  }
  ul.sigProElegant li.sigProThumb a.sigProLink .sigProImg {
    width: 140px!important;
    height: 140px!important;
  }
  .sigProImg {
    border: 7px solid var(--lightBrown) !important;
  }
}
/* /K2 Item View */

/* Footer */
.footerCont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(../images/footerBg.jpg);
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  min-height: 50vh;
  position: relative;
  color: var(--lightOrange);
  font-size: .9em;
  border-top: 3px solid var(--lightOrange);
}
.footerCont .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  top: 0;
  left: 0;
}
.footerBlocks {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px 0;
}
.footerBlock {
  width: 100%;
  padding: 30px 20px;
}
.footerBlock img {
  width: 100px;
}
.footerContactInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footerContactInfoBlock {
  flex: 1 30%;
}
.footerSocialBlock {
  max-width: 400px;
  margin: 0 auto;
}
.footerBlock .socialBlock {
  justify-content: center;
  margin-top: 10px;
}
.footerCont a {
  color: var(--lightOrange);
}
.footerCont a:hover {
  color: var(--lightBrown);
}
.copyright, .footer {
  z-index: 2;
}
.copyright {
  padding: 20px;
  text-align: center;
  width: 100%;
}
@media (max-width: 480px) {
  .footerContactInfoBlock {
    flex: 1 100%;
    padding: 10px 0;
  }
}
/* /Footer */