:root {
  --backcolor: rgba(73, 56, 34, 1);
  --backcolor-shadow: rgb(22, 22, 16);
  --backcolor-white: rgba(255, 255, 255, 0.9);
  --backcolor-rotem: #c5d3de;
  --roof: #233d3e;
  --scrollbarBG: rgb(81, 119, 81);
  --thumbBG: rgb(35, 56, 35);
  --mygrey:rgb(151, 181, 171);
}

* {
  box-sizing: border-box;
}
::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Heebo", sans-serif;
  
}

.skip-to-content{
  position: absolute;
  padding:0.5rem;
  transform: translateY(-120%);
  border-radius: 0 0 0.25rem;
  background-color:black;
  color:white;
  z-index: 999;
  transition: transform 400ms ease-in;
}
.skip-to-content:focus{
  transform: translateY(0);
}
article{
  width:80%;
  margin:auto;
  direction: rtl;
  font-size:1.5rem;
  padding: 2em;
}

.shovar{
  margin:auto;
  width:80%;
  display:block;
  transform: rotate(4deg);
  margin-top:1em;
  box-shadow: rgba(149, 157, 165, 0.7) 0px 8px 24px;
}

.calendar_container {

  display: grid;
  margin-top:3em;
  padding:1em;
  border:1px solid white;
  align-content: center;
  max-width:600px;
  margin:auto;
  
}
.calendar {
  width: 80%;
  max-width: 600px;
  margin: auto;
}

.button_div{
  background-image:url('images/spinner_green2.gif');
  background-size:30px;
  background-position: center;
  background-repeat: no-repeat;
  height:40px;
}


.CalendarDay__blocked_out_of_range {
  background-color: grey !important;
}
.CalendarDay__default {
  background-color: green !important;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  height: 60px;
  width: 100%;
  z-index: 999;
  text-align: center;
}

.round {
  /*margin: 20px;*/
  width: 240px;
  height: 150px;
  /*box-shadow: 0px 0px 10px 2px #3586a4;*/
  background-color: white;
  /*position: fixed;*/
  margin: 20px auto;
  /*top: 1em;
  left: 1.5em;
  border-radius: 0 0 10px 0;*/
  
  overflow:hidden;
  
  z-index: 999;
}
#logo {
  width: 100%;
  position: relative;  
  background-color: white;
  /*top:-2px;
  left:3px;*/
}

.availabilitydetails{
  margin-top:1em;
}
.availabilitydetails p{
  direction: rtl;
  text-align:canter;
  line-height:1.5em;
  margin:auto;
}

.availabilitydetails a{

  text-decoration: none;
}
.nav {
  position: absolute;
  direction: rtl;
  text-align: right;
  top: 120%;
  right: 2em;
  width: 250px;
  /*display:none;*/
  transform: scale(1, 0);
  opacity: 0;
  transform-origin: top;
  transition: all 500ms ease-in-out;
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li {
  /*display:inline-block;*/
  margin: 0.5em;
  background-color: var(--backcolor-white);
  border: 1px dotted var(--roof);
  padding: 1em 0.1em 1em 0.1em;
}

.nav a {
  font: weight 900;
  text-decoration: none;
  font-size: 1.2em;
  padding: 0.4em;
  opacity: 0;
  color: var(--roof);
  transition: opacity 150ms ease-in-out; /*attribute duration method delay*/
}
.nav-toggle {
  display: none;
}
.nav-toggle:checked ~ .nav {
  /*display:block;*/
  opacity: 1;
  transform: scale(1, 1);
}

.nav-toggle:checked ~ .nav a {
  /*display:block;*/
  opacity: 1;
  transition: opacity 10ms ease-in-out 200ms; /*attribute duration method delay*/
}

.nav-toggle-label {
  position: absolute;
  top: 1em;
  right: 1em;
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--backcolor-white);
  padding: 1em;
  border: 1px dotted lightskyblue;
  border-radius: 5px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #233d3e;
  height: 3px;
  width: 2.2em;
  border-radius: 2px;
  position: relative;
  transition: all 500ms ease-in-out;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}
.nav-toggle-label span::before {
  bottom: 8px;
}
.nav-toggle-label span::after {
  top: 8px;
}

.nav-toggle:checked ~ .nav-toggle-label span {
  transform: rotate(45deg);
  opacity: 1;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  opacity: 0;
}
.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: translateY(-7px) rotate(-90deg);
}

section {
  display: block;
  width: 100%;
  margin: auto;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: stretch;
  justify-content: center;
  /*padding: 2em;
  padding-top: 4.5em;*/
  margin-top: 2em;
  position: relative;
  direction: rtl;
}

.bg_highlight{
  background-color:var(--mygrey);
  padding-bottom: 3em;
  margin-bottom: 6em;
}
.intro p {
  /*max-width:800px;*/
  margin: 0;
}

.intro .introtext {
  width: 90%;
  margin-top:1em;
  line-height:1.5em;
  
}
.intro .calendar {
  width: 100%;
}

.intro .drawings {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.intro .drawings img {
  margin: auto;
  top: 1em;
  width: 100%;
  max-width: 100px;
}

.separator {
  margin: auto;
  margin-top: 4em;
  margin-bottom: 1em;
  background-color: var(--backcolor-shadow);
  height: 3px;
  width: 100px;
}

/*----------------GALLERY------------*/
.gallery {
  position: relative;
  margin: auto;
  /*max-width:80%;*/
}
.gallery h1 {
  text-align: center;
}

.gallery > div {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgb(226, 215, 215);
}

.pict {
  flex-grow: 1;
  flex-basis: 0;
  width: 33%;
  margin: 1em;
  min-width: 300px;
  max-width: 400px;
  aspect-ratio: 350/250;
  overflow: hidden;
}

.pict img {
  width: 120%;
  margin: auto;
  object-fit: cover;
  transform-origin: 50% 50%;
  transition: transform 500ms ease-in-out 100ms;
}

/*------------------SLIDER--------------*/
/* Position the image container (needed to position the left and right arrows) */
.gallerycontainer {
  position: relative;
  width: 100%;
  margin: auto;
}

.gallerycontainer img {
  width: 100%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 4px;
  color: white;
  display: none;
}

.caption-container p {
  margin: 0;
}

.sliderrow:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.sliderrow{
  /*height:80px;*/
  overflow:hidden;
}

.slidercolumn {
  float: left;
  width: 25%;
}

/* Add a transparency effect for thumnbail images */
.sliderthumb {
  opacity: 0.6;
}

.landscape{
  height:100%;
}

.active,
.sliderthumb:hover {
  opacity: 1;
}

/*----------------- map-----------------------*/
.address {
  margin: auto;
  max-width: 80%;
}
.address h1 {
  text-align: center;
}

.address > div {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  direction: rtl;
}
.address > div div {
  width: 100%;
  flex-grow: 1;
  /*flex-basis: 0;    
    margin:2em;*/
  text-align: right;
}

section h1 {
  text-align: center;
}

.address a {
  text-decoration: none;
  white-space: nowrap;
}

/*---------------In ROTEM -------------*/
.rotem > div {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: auto;
  width: 100%;
  max-width: 1100px;

  /*background-color: var(--backcolor-rotem); rgb(226, 215, 215);*/
}
#rotem_healthcare{
  background-color: var(--backcolor-white);
  margin-top:0;
}
section.rotem {
  margin-top: 3em;
  padding-top: 1px;
}
.rotem h1 {
  padding-top: 1em;
}

.rotem {
  background-color: var(--backcolor-white); /*rgb(226, 215, 215);*/
  padding-bottom: 2em;
}

.separatortext h1,
.separatortext h5 {
  /*border-top:3px solid black;*/
  text-align: center;
  margin: auto;
  width: 100%;
  display: block;
}

.card {
  /*border:1px solid black;*/
  margin: 1em;
  padding: 1em;
  background-color: white;
  /*text-align:justify;*/
  direction: rtl;
  flex: 1 1 300px;
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
  box-shadow: 0px 0px 15px 5px rgba(57, 56, 56, 0.499);
}
.card p {
  text-align: justify;
}
.acenter {
  text-align: center;
  text-decoration: none;

  display: block;

  padding: 10px;
  margin-bottom: 10px;
}

.acenter a {
  text-decoration: none;
  color: tomato;
}
.card h2 {
  color: var(--roof);
}
.acenter a:hover {
  text-shadow: -1px -1px 0 tomato;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.cardimagecontainer {
  width: 100%;
  margin: auto;
  height: 200px;
  border: 2px solid green;
}

.cardimage {
  width: 100%;
  overflow: hidden;
  max-height: 270px;
}

.cardimage img {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.roundimg {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: none;
  border: 8px solid tomato;

  align-self: center;
}

.imgcenter {
  width: 100%;
  /*position:absolute;*/
  bottom: 1em;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;

  left: 0px;
}

/*---------FOOD-----------*/
.restaurants {
  display: flex;
  align-items: center;
  background-color: darkorange;
  text-align: right;
  padding: 2em;
  margin-bottom: 4em;

  background-image: url("images/lh_winters.jpg");
  object-fit: cover;
}
.restaurants div {
  /*border: 2px solid black;*/
  margin: auto;
}
.restaurants ul,
.restaurants li,
.restaurants a {
  text-decoration: none;
  list-style: none;
  text-align: right;
  color:black;
  padding:2px;
}

.restaurants span {
  font-weight: 700;
}
.restaurants h1,
.restaurants h3 {
  line-height: 1em;
  padding: 0;
  margin: 0;
}
/*--------------------AROUND-------------*/
.around {
  margin: auto;
  margin-bottom: 100px;
  padding-bottom: 1px;
  width: 80%;
}
.around > div {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.bg_green{
  background-color: var(--mygrey);
  width:100%;
  padding-top:2em;
  box-shadow: 0px 5px 15px 5px rgba(57, 56, 56, 0.74);
}

.tourcard {
  min-width: 230px;
  flex: 1 1 230px;
  margin: 2em;
  border-top: 1px solid darkslategrey;
  position: relative;
}

.firguncard{
  max-width:400px;
  background-color:white;
  padding:1em;
  border-radius: 5px;
    box-shadow: 0px 0px 15px 5px rgba(57, 56, 56, 0.499);
}
.tourcard p {
  text-align: justify;
  direction: rtl;
}

.tourimg {
  border: 1px dotted lightgrey;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  

  overflow: hidden;
}
.tourimg img {
  width: 100%;
  object-fit: cover;
  /*position:absolute;
    bottom:0;
    left:0;
    margin:auto;*/
}

.tourcard a {
  text-align: right;
  text-decoration: none;
  width: 100%;
}

.tourcard div {
  width: 100%;
  aspect-ratio: 354/250;
}

.tourcard h1 {
  color: var(--roof);
}
.textcenter{
  text-align:center;
}
/*---------------- hero --------------*/
.nekuda_img{
  /*margin-top:30px;*/
  margin-top:0px;
  margin-bottom:10px;
  margin-left: auto;
  margin-right: auto;
  width:100%;
  /*max-width:650px;*/
}
.nekuda_img img{
  
  width:100%;
}
.hero {
  width: 100%;
  height: 54vh;
  background-image: url("images/little_house_rotem.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position-y: 40%;
  background-position-x: 40%;
  overflow: hidden;
  display: grid;
  /*place-items: center;*/
  position: relative;
  /*overflow: hidden;*/
  margin-bottom:2em;
}

.hero img {
  position: relative;
  width: 100%;
  /*top:-200px;*/
}

footer {
  display: flex;
  position: relative;
  align-items: center;
  background-color: var(--backcolor-white);
  height: 60px;
  width: 100%;
  position: fixed;
  bottom: 0;
  color: var(--backcolor);
  direction: rtl;
  box-shadow: 0px 0px 15px 1px black; /*none|h-offset v-offset blur spread color |inset|initial|inherit;*/
}
footer a {
  text-decoration: none;
  color: var(--backcolor);
  direction: rtl;
}

footer > div {
  display: flex;

  margin-right: 1em;
  margin-left: 1em;
  width: 50%;
}
footer div a {
  color: var(--backcolor);
  margin: auto;
}

/* WhatsApp Button */

.social_button {
  width: 15px;
  cursor: pointer;
  /*margin-right:1em;*/
  margin-left: 1em;
  font-size: 1.5em;
  color: var(--backcolor-shadow);
}
.social_button:hover {
  color: darkolivegreen;
}

.social_button img {
  width: 40px;
  height: 40px;
}

.read_more {
  max-width: 300px;
  margin: 2em auto;
  text-align: center;
  background-color: var(--backcolor-white);
  border-radius: 10px;
  padding: 1em;
  box-shadow: 1px 1px 2px rgb(117, 114, 114);
  border: 1px solid black;
  cursor: pointer;
}
.read_more:hover {
  box-shadow: unset;
}
.read_more a {
  margin: auto;
  text-decoration: none;
}

.topmenu li {
  margin: 0;
  background-color: var(--backcolor-white);
  border: none;
}

.aboutrotem {
  padding-top: 5vh;
  direction: rtl;
  position: relative;
  margin-bottom: 6em;
  padding-bottom: 3em;
}

.aboutrotem p{
  font-size:14px;
}

.aboutimage {
  max-width: 600px;
  max-height: 300px;
  margin: auto;
  overflow: hidden;
}
.maprotem{
  border:3px solid black;
  max-width:600px;
  margin:auto;
}
.maprotem img{
  
  width: 100%;
  overflow: hidden;
}
.aboutrotem img {
  width: 100%;
  overflow: hidden;
}
.aboutrotem .separator {
  width: 200px;
  margin: 2em auto;
}
.aboutrotem p {
  text-decoration: rtl;
  width: 80%;
  max-width: 600px;
  text-align: justify;
  margin: auto;
  margin-block: 1em;
}
.roundlogo {
  display: flex;  
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: white;
  position: sticky;
  top: 1em;
  left: 2em;
  
  box-shadow: 0px 0px 20px 2px var(--backcolor-shadow);
  z-index: 999;
}
.roundlogo img {
  width: 100%;
  margin: auto;
}

/*---facts--*/
.fun-facts {
  width: 90%;
  position: relative;
  margin: auto;
  text-align: justify;
  direction: rtl;
  max-width: 700px;
}
.fact {
  min-height: 300px;
  
}

.fun-facts .separator {
  width: 100%;
  color: rgb(18, 112, 73);
  height: unset;
  border-top: 1px solid rgb(18, 112, 73);
  background-color: white;
}

.fact .img-fact {
  width: 250px;
  height: 200px;
  float: right;
  margin: 5px 1.2em;

  overflow: hidden;
}
.fact .img-fact img {
  object-fit: cover;
}
.fact article{
  font-size:14px;
}

.intro .details {
  /*background-color: darkkhaki;*/
  padding: 1em;
  max-width: 300px;
  width: 100%;
  margin: 3em;
  line-height: 1.5em;
}

.intro .details span {
  font-weight: 900;
  color: rgb(49, 63, 25);
  padding: 3px;
}

.announce{
  position:relative;
  padding:1em;
  border-radius: 5px;
  font-size:1.2em;
  line-height:1em;
  text-align:center;
  width:90%;
  margin:auto;
}
.announce span{
  font-size:0.8em;
}
.announce::before{
  position:absolute;
  left:0;
  top:1.4em;
  content:" ";
  width:50px;
  height:50px;
  background-image: url("images/flower.gif");
  background-size: cover;
}
.announce::after{
  position:absolute;
  right:0;
  top:1.4em;
  content:" ";
  width:50px;
  height:50px;
  background-image: url("images/flower.gif");
  background-size: cover;
}

.announce h4{
  margin-block-end:0;
}
.announce p{
  margin:5px;
}
.announce-new{
  margin:20px;
}
.announce-new span{
  font-weight: 600;
  color:green;
  margin:0 10px;
  font-size:1.2em;
}
/*--------------- MEDIA QUERIES ---------------------*/
/*for large screens*/
@media screen and (min-width: 920px) {
  header {
    background-color: var(--backcolor-white);
    box-shadow: 0px 0px 25px 2px black;
  }
  .round {
    width: 380px;
    margin:50px auto;
    height:200px;
    /*box-shadow: 0px 0px 10px 2px #3586a4;*/
  }
  .nav-toggle-label {
    display: none;
  }

  .nav {
    transform: none;
    opacity: 1;
    width: 100%;
    top: 0;
    margin: 0;
  }
  .nav > ul {
    margin: 0;
    padding: 0;
    padding-block-start: 0;
  }
  .nav li {
    display: inline-block;
    background-color: unset;
    border: none;
  }
  .nav a {
    opacity: 1;
    position: relative;
  }

  .nav a::before {
    content: "";
    height: 2px;
    background-color: var(--backcolor-shadow);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transform: scale(0, 1);
    transition: transform 250ms ease-in-out;
  }
  .nav a:hover::before {
    transform: scale(1, 1);
  }

  

  .topmenu {
    position: relative;
  }
  
  .topmenu ul {
    opacity: 0;
    position: absolute;
    width: 100px;
    background-color: white;
    margin: 0;
  }



  .topmenu a:hover + ul,
  .topmenu ul:hover,
  .topmenu a:focus + ul,
  .topmenu ul:has(a.active)
  {
    opacity: 1;
  }

  /*.thumbnail:hover {
        position:relative;
        top:-25px;
        left:-35px;
        /*width:500px;
        height:auto;*/
  /*display:block;
        z-index:999;
        border:5px solid white;
        box-shadow:0px 0px 20px 2px var(--backcolor-shadow) ;
        transform:scale(1.5);
    }*/
  /*section{
        width:90%;
        
    }*/
  .address > div div {
    flex-basis: 0;
    margin: 2em;
  }
  .gallerycontainer {
    width:60%;
    /*padding:30px;
    max-width: 650px;*/
  }
}

@media screen and (min-width:700px)
{
  .nekuda_img{
    /*width:60%;
    margin-top:60px;*/
  }
}

@media screen and (min-width: 600px) {
  .intro .introtext {
    width: 70%;
  }

  .hero {
    height: 70vh;
    background-position-x: 20%;
  }

  
}

@media screen and (min-width:662px){
  .card{
    max-width:320px;
  }

}
@media screen and (min-width: 780px) {
  .intro {
    align-items: flex-start;

    align-content: center;
    gap: 1em;
    margin: auto;
  }

  .intro .introtext {
    max-width: 400px;
  }
  .intro .drawings {
    width: 150px;
  }

  .hero {
    height: 90vh;
    background-position-x: 0%;
  }
}

/*end media*/
