@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

body {
    //font-family: "Oswald", sans-serif;
    font-family: "Open Sans", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
    font-size: 14px;
    background: #fcfcfc;
}
h1,h2,h3,h4,h5 { margin: 0;}
.main {
    width: auto;
    max-width: 1400px;
    margin: 0 auto; 
    display: flex;
}
.space { height: 10px; clear: both; }
.space2 { height: 20px; clear: both; }
.space3 { height: 30px; clear: both; }
.panel { 
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.separator {
    border-bottom: 1px dashed #999;
    margin:15px auto 15px auto;
  
}
 
.leftCol { 
    width: 240px;  
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.left-title {
    font-size: 1.5em;
    font-weight: 700;
}
.filter {
    border-radius:4px;
    background: #fff; 
    min-height: 50px;
    margin-bottom: 10px; 
    transition: all .2s ease-in-out;
    position: relative;
}
.filter-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
}
.filter-options {
    font-size: 1.2em;
}


.mainCol { 
    width: calc(100% - 250px);
}
.footerspace { height: 70px;}
footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #17293c;
    box-shadow: 0 -10px 51px #00000040;
    z-index: 99;
}

footer a {
    width: 25%;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    padding: 11px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
footer a i {
    font-size: 20px;
}
footer a:hover, .active {
    background-color: #101D2A;
}


    .video-background {
    background: #4577AD;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1;
    }

    .video-background iframe {
      position: absolute;
      top: 0;
      left: 0;
      border: none;
      pointer-events: none;
    }

    .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  text-align: center; 
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* spațiu între elemente */
  color: white;
}

.overlay-content h1 {
  font-size: 2rem;
  margin: 0;
}

.overlay-content p {
  font-size: 1.3rem;
  margin: 0;
}

.overlay-content button {
  padding: 0.75rem 1.5rem;
  font-size: 1em; 
  color: #000;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 5px;
  background: linear-gradient(to bottom,  #feffe8 0%,#d6dbbf 100%);
  
}


.lds-ripple,
.lds-ripple div {
  box-sizing: border-box;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid currentColor;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

.loading_outer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
        align-items: center;
    justify-content: center;
}
.padding {
    padding: 10px;
}

.box {
    border-radius:4px;
    background: #fff;
    padding: 10px;
    min-height: 50px;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex; 
    transition: all .2s ease-in-out;
    position: relative;
    cursor: pointer;
} 
.box:hover {
    background: #FCF1CB;
}
.box-image {  
    border-radius: 4px;
    overflow: hidden;
    width: 50%;
    min-width: 250px;
    max-width: 250px;  
    align-content: center;
    align-items: center;
    text-align: center;
    
}
.box-image img {
    width: 100%;
}


.box-inner {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    
}
.box-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 5px;
}
.box-description {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 5px;
}
.box-address {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}
.box-button {  
    background: #F1B203;
    border: 1px solid #8D731F;
    font-size: 1em;
    font-weight: 600; 
    color: #000;
    padding: 7px 15px 7px 10px;  
    border-radius: 4px;  
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.stars i{
    margin-right: 5px;
    color: #000;
}
.clear {
    clear: both;
}
.small-demo {
    display: flex;
	width: auto; 
    flex-wrap: wrap;
}

.small-demo .caption {
	padding: 10px;
	color: #212121;
	font-size: 0.875rem;
}

.small-demo a {
    flex-grow: 1; 
	width: 25%; 
	overflow: hidden;
    border: 1px solid #fff;
}
.small-demo img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
	-webkit-transition: -webkit-transform .35s ease;
	-moz-transition: -moz-transform .35s ease;
	-o-transition: -o-transform .35s ease;
	-ms-transition: -ms-transform .35s ease;
	transition: transform .35s ease;
}

.small-demo a:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.detalii-cazare iframe {
    width: 100% !important;
}
.detalii-cazare h3 {
    margin-bottom: 10px;
}
.detalii-cazare .subtitle {
    font-weight: 700;
    font-size: 1.2em;
}
.detalii-cazare table {
    width: 100%; 
}
.detalii-cazare tr {
   background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); 
}
.detalii-cazare td {
    border: 1px solid #fff;
    text-align: center;
    padding: 4px; 
    margin-bottom: 4px;
}

.button_call { 
    padding: 5px 15px;
    width: 100%;
    color: #000;
    background: #F1B203; 
    border: none;
    outline: 0; 
    font-size: 1.1em;
    letter-spacing: 0.5px;
    font-weight: 700;  
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all .2s ease-in-out;
}
.button_call:hover {
    background: #FFD564; 
}
.whs:hover {
   background: #009B4F;   
}
.whs {
    background: #01e675;  
    color: #fff;
}
.call-buttons {
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    position: absolute;
    top: 0;
    right: 10px;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #17293c;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 2; 
}
.navigation .logo img {
    max-width: 180px;
    width: 100%;
}
.navigation_inner {
    width: auto;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;  
    position: relative;
    display: flex;
    align-items: center;
}
.nav_indent {
    height: 70px;
    clear: both;
}

.menu-toggle {
    color:#fff;
    font-size: 1.7em;
    font-weight: 700;
    position: absolute;
    top:20px;
    right: 25px;
    cursor: pointer;
}
 
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0; 
    background: #fff;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: none;
}
.mobile-item {
    color:#000;
    font-size: 1.2em;
    font-weight: 700;
    border-bottom: 1px dashed #333;
    text-transform: capitalize;
    padding: 10px 10px;
    text-align: left;
}
@media screen and (max-width:1000px) {
    .hide_1000 {display: none;}
}
@media screen and (max-width:880px) {
    
    .leftCol { display: none;}
    .mainCol { width: 100%; }
    .box-button {
        position: relative; 
        margin-top: 10px;
    }
}

@media screen and (max-width:800px) {
    .small-demo a { width: 33.3333333%; }
}

@media screen and (max-width:700px) {
    .call-buttons {
        position: relative;
        max-width: 100%;
        right: 0;
        
    }
    .call-buttons a { 
        width: 50%;
    }
    .hide_1000 {display: block;}
    .box-title {  }
    .box-image { width: 100%; max-width: 100%; margin-bottom: 10px;  }
    .box { display: block; }
    .box-inner { padding-left: 0; padding-right: 0;}
}
@media screen and (max-width:500px) {
    .small-demo a { width: 12.5%; }
    .class-first { width: 100% !important; } 
     
    
}
