/*RESET*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  --accent-color: rgb(3, 147, 244);
  --accent-color-darker: rgb(2, 86, 143);
  --accent-color-lighter: rgb(6, 255, 255);
  background-color: #000;
}


/*BASE STYLES*/
body {
  /* background-color: #e8f0f7; */
  font-family: "Lato", sans-serif;
  /* padding-top: 60px; */
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*HEADER*/
.header {
  position: fixed;
  top: 0px;
  width: 100%;
}

.bottom-bar {
  background-color: var(--accent-color);
}

.bottom-bar__content {
  min-height: 60px;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-intro {
  background-color: var(--accent-color);
}

.logo {
  display: flex;
  align-items: center;
  column-gap: 10px;
  /* vertical-align: middle; */
}

.logo__img {
  height: 30px;
}

.nav {
  transition: all 0.3s ease-in-out;
}

.nav__list {
  display: flex;
  column-gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.nav__item {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
}

.nav__item:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.75);
  transition: all .2s;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.hamburger {
  cursor: pointer;
  display: none;
}

.bar {
  height: 2px;
  width: 27px;
  background-color: #fff;
  margin: 5px 0;
  opacity: .8;
  transition: all .3s ease-in-out;
}

/* For JS */
.nav--open {
  /* left: 50% !important; */
  transform: translateX(0%) !important;
}

.hamburger--open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*MAIN*/
.main {
  background-color: #eee;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
}

#sabat {
  padding-top: 0.1px;
}

.datum {
  background-color: var(--accent-color);
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: 100px;
  padding: 0 30px;
  border: 1px solid var(--accent-color-darker);
  border-radius: 5px;
}

.datum-les {
  background-color: var(--accent-color);
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: 30px;
  padding: 0 30px;
  border: 1px solid var(--accent-color-darker);
  border-radius: 5px;
}

.titel {
  background-color: var(--accent-color-darker);
  font-size: 36px;
  text-align: center;
  color: #fff;
  border: 3px;
  border-color: #000;
  border-radius: 1000px;
  margin: 10px 0;
}

.fecha-sabat,
.pr-disk {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: bold;
}

.texten {
  font-size: 14px;
  color: rgb(3, 147, 244);
  font-weight: bold;
  padding-top: 25px;
}

.texten-italic {
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
}

.text-mem {
  font-size: 14px;
  color: rgb(3, 147, 244);
  font-weight: bold;
  padding-top: 10px;
}

.vers-mem {
  font-size: 14px;
  color: red;
  font-weight: bold;
}

.cita-mem {
  color: var(--accent-color);
  font-style: italic;
}

.para1 {
  text-indent: 0px;
  text-align: justify;
  font-size: inherit;
}

.para1:first-letter {
  font-size: 3.1em;
  float: left;
  padding: 0px 2px;
  margin: 0px;
  line-height: 0.9em;
  font-weight: bold;
  color: var(--accent-color-darker);
}

p {
  text-indent: 20px;
  font-size: inherit;
  text-align: justify;
  padding: 0 10px 0 10px;
}

.italic{
  font-style: italic;
}

.footer-sabat {
  font-size: inherit;
  font-style: italic;
  padding-top: 25px;
}

hr {
  height: 5px;
  background: var(--accent-color);
  margin-top: 30px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.lesa {
  font-style: italic;
  font-weight: 500;
}

.lesa-prome {
  color: var(--accent-color);
  font-weight: 700;
}

.form {
  width: 95%;
}

textarea {
  width: 800px;
  height: 24px;
  font-size: 12px;
  padding-left: 30px;
  border-radius: 3px;
  font: inherit;
  margin-left: 30px;
  margin-right: 100px;
  resize: vertical;
  max-height: 40px;
}

.img-cover {
  float: left;
  padding: 10px;
}

.footer {
  font-style: italic;
  /* margin-top: 10px; */
  margin: 10px 20px 20px 20px;
  text-indent: 30px;
  font-size: 20px;
  text-align: justify;
  border: 2px solid black;
  border-radius: 3px;
  background-color: var(--accent-color-lighter);
  /* margin-bottom: 20px; */
}



.foot-les {
  border: 3px solid var(--accent-color-darker);
  border-radius: 5px;
  background-color: var(--accent-color-lighter);
  font-weight: bold;
  margin: 0 15px;
}

/* PREGUNTA DISKUSHON */
.preg-disk {
  max-width: 1200px;
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--accent-color-lighter);
}

.lijn {
  /* max-width: 700px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.numbers {
  max-width: 1200px;
  height: 24px;
  width: 24px;
  border-radius: 5000px;
  background-color: var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

.number {
  max-width: 100%;
  color: #fff;
  align-items: center;
  /* margin-right: 15px; */
}

.preg-disk-text {
  max-width: 750px;
  /* margin-left: 5px; */
  margin-bottom: 10px;
  text-align: justify;
  justify-content: end;
  padding-left: 15px;
}

/* TABLE */

table {
  max-width: 550px;
  background-color: var(--accent-color-lighter);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

th {
  text-align: left;
  background-color: var(--accent-color-darker);
  color: #fff;
  font-style: italic;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}


th,
td {
  padding: 5px;
}

.container-les1 {
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.img-les1 {
  width: 45%;
}


/* MEDIA QUERIES */



/*PHONE*/

/*TABLET*/
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    background-color: rgb(19, 22, 26);
    width: 100%;
    padding: 10px 0 25px;
    transform: translateX(-100%);
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hamburger {
    display: block;
  }

  textarea {
    display: none;
  }

  .img-les1 {
    width: 70%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .preg-disk {
    max-width: 700px;
    display: block;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    background-color: var(--accent-color-lighter);
  }

  .lijn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .numbers {
    max-width: 1200px;
    height: 24px;
    width: 24px;
    border-radius: 5000px;
    background-color: var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
  }

  .number {
    max-width: 100%;
    color: #fff;
    align-items: center;
    /* margin-right: 15px; */
  }

  .preg-disk-text {
    max-width: 500px;
    /* margin-left: 5px; */
    margin-bottom: 10px;
    text-align: justify;
    justify-content: end;
    padding-left: 15px;
  }
}

/* @media (max-width: 490px) {
  .img-les1{
    /* width: 300px; */
/*height: 500px;
  }
} */

@media (max-width: 550px) {
  /* .img-les1 {
      width: 100%;
      /* display: flex; */
  /* justify-content: center; */
  /*margin-left: auto;
        margin-right: auto;
    } */

  .preg-disk-text {
    max-width: 300px;
    /* margin-left: 5px; */
    margin-bottom: 10px;
    text-align: justify;
    justify-content: end;
    padding-left: 15px;
  }
}