* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  direction: rtl;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #fefefe;
  width: 60%;
  margin: 0px auto;

}

.header {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #0f9ed5;
}

.nav a:hover{
  font-weight: 500;
}

.header img {
  width: auto;
  height: auto;
  flex-shrink: 0;
}


.main-banner {
  width: 100%;
  height: 34vh;
  background-image: url(Images/pexels-marctutorials-298692-870170.jpg);
  background-repeat: no-repeat;
  /* שלא יחזור */
  background-size: cover;
  /* התמונה תתפרס ותמלא */
  background-position: 70% 65%;
  border-radius: 20px;
  margin-top: 5px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.main-banner p {
  font-size: 3.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  color: #fefefe;
}

h1 {
  text-align: center;
  padding: 20px;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 10px;
}


.info {
  width: 70%;
}

.prices ul {
  padding-right: 20px;
}

.prices li {
  margin-top: 5px;
}

.box {
  background-color: #fff;
  border: #e2e8f0 2px solid;
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  width: 99%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.box-1:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}


.box img {
  width: 350px;
  height: auto;
  border-radius: 10px;
}

.box table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 20px;
}

.box td,
th {
  border: 1px solid rgb(234, 234, 234);
  padding: 8px;
}

.box th {
  background-color: #0f9ed5;
  color: white;
}

tr:hover {
  background-color: #ddd;
}

.dates {
  display: flex;
  flex-direction: row;
  font-weight: 200;
  margin: 5px 0px;
  gap: 10px;
}

.dates strong {
  font-weight: 500;
}

.box h3 {
  margin-top: 10px;
}

.box h2 {
  color: #0f9ed5;
  font-weight: 600;

}

.box h3 {
  font-weight: 450;
  letter-spacing: -1px;
}