@charset "UTF-8";
@font-face {
  font-family: 'comicsno';
  src: url("../../../fonts/comixno2/comixno2clm_bold-webfont.ttf"), url("../../../fonts/comixno2/comixno2clm_bold-webfont.woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'x-button-font';
  src: url("../../../fonts/corona/aAntiCorona.otf"), url("../../../fonts/corona/aAntiCorona.ttf");
}

* {
  margin: 0;
  padding: 0;
}

.underlined {
  text-decoration: underline;
}

.hours {
  text-decoration: underline;
}

html {
  background: url("../../../pics/web-pics/cover-img.jpg") no-repeat center center fixed;
  background-size: cover;
}

/*
    header part - גן חיבוקים
*/
header {
  margin-top: 20vh;
}

header p {
  font-family: 'comicsno';
  text-align: center;
  font-size: 10vw;
  text-shadow: 5px 4px rgba(0, 0, 0, 0.2);
  color: #900eb1;
}

@media screen and (max-width: 600px) {
  header p {
    font-size: 16vw;
  }
}

.hamlatzot-wrapper {
  margin: 25vh auto 0 auto;
  width: 90%;
}

.hamlatzot-wrapper .hamlatzot-header {
  text-align: center;
  font-family: 'comicsno';
  font-size: 3.9rem;
  color: #900eb1;
  text-decoration: underline;
  letter-spacing: 1px;
}

.hamlatzot-wrapper .hamlatzot-content-wrapper {
  margin-top: 10vh;
}

.hamlatzot-wrapper .hamlatzot-content-wrapper .hamlatzot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hamlatzot-wrapper .hamlatzot-content-wrapper .hamlatzot .lev-wrapper {
  width: 10vw;
  height: 10vh;
}

.hamlatzot-wrapper .hamlatzot-content-wrapper .hamlatzot .lev-wrapper img {
  width: 100%;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.hamlatzot-wrapper .hamlatzot-content-wrapper .hamlatzot .lev-wrapper img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.daily-tips-wrapper {
  margin-top: 20vh;
}

.daily-tips-wrapper .daily-tips-header {
  text-align: center;
  font-family: 'comicsno';
  font-size: 3.9rem;
  color: #900eb1;
  text-decoration: underline;
  letter-spacing: 1px;
}

.daily-tips-wrapper .tips {
  margin-top: 10vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em;
}

.daily-tips-wrapper .daily-tip {
  margin-right: 15%;
  width: 17vw;
  height: 40vh;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  cursor: pointer;
}

.daily-tips-wrapper .daily-tip .daily-tip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.daily-tips-wrapper .daily-tip .daily-tip-inner .front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  backface-visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
}

.daily-tips-wrapper .daily-tip .daily-tip-inner .front .card-logo-wrapper {
  margin: 1% auto 0 auto;
  height: 50%;
  width: 80%;
}

.daily-tips-wrapper .daily-tip .daily-tip-inner .front .card-logo-wrapper img {
  height: 100%;
  width: 100%;
}

.daily-tips-wrapper .daily-tip .daily-tip-inner .front .frontText {
  height: 40%;
  margin-top: 30%;
  font-size: 1.8rem;
  font-family: 'comicsno';
  letter-spacing: 2px;
  color: #d8129d;
}

.daily-tips-wrapper .daily-tip .daily-tip-inner .back {
  background-color: #fff;
  border-radius: 24px;
  position: absolute;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.daily-tips-wrapper .daily-tip .daily-tip-inner .back .backText {
  margin: 1% auto;
  width: 92%;
  font-family: 'comicsno';
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #2f7ac0;
}

@media screen and (max-width: 1200px) and (min-width: 800px) {
  .daily-tips-wrapper .tips {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .daily-tips-wrapper .daily-tip {
    width: 25vw;
    height: 70vh;
  }
  .daily-tips-wrapper .daily-tip .daily-tip-inner .front .frontText {
    margin-top: 30%;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  .daily-tips-wrapper .tips {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .daily-tips-wrapper .daily-tip {
    width: 35vw;
    height: 55vh;
  }
}

@media screen and (max-width: 600px) {
  .daily-tips-wrapper .tips {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .daily-tips-wrapper .daily-tip {
    width: 50vw;
    height: 60vh;
    margin-right: 25%;
  }
  .daily-tips-wrapper .daily-tip .daily-tip-inner .front .frontText {
    margin-top: 30%;
  }
}

.tips-button {
  display: block;
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 1em;
  margin: 20vh auto;
  outline: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 1px;
  background: #f0cd0a;
  border: 1px solid #f0cd0a;
  border-radius: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tips-button:hover {
  color: #f0cd0a;
  background: #fff;
  border: 1px solid #f0cd0a;
}

@media screen and (max-width: 700px) {
  .tips-button {
    font-size: 1.4rem;
    padding: 0.8em;
  }
}

.haashara-wrapper {
  margin-top: 40vh;
}

.haashara-wrapper .haashara-header {
  text-align: center;
}

.haashara-wrapper .haashara-header p {
  font-family: 'comicsno';
  font-size: 3.9rem;
  color: #900eb1;
  text-decoration: underline;
  letter-spacing: 1px;
}

.haashara-wrapper .haashara-files {
  margin-top: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.haashara-wrapper .haashara-files .file {
  display: block;
  cursor: pointer;
  font-family: 'comicsno';
  font-size: 1.9rem;
  color: #900eb1;
  letter-spacing: 1px;
  margin: 0 auto 1em auto;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.haashara-wrapper .haashara-files .file:hover {
  color: #ca5d1d;
  text-decoration: underline;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.hinuch-wrapper {
  margin-top: 18vh;
}

.hinuch-wrapper .hinuch-header {
  text-align: center;
}

.hinuch-wrapper .hinuch-header p {
  font-family: 'comicsno';
  font-size: 4rem;
  color: #d8129d;
  text-decoration: underline;
}

.hinuch-wrapper .hinuch-content {
  margin-top: 7vh;
  text-align: center;
}

.hinuch-wrapper .hinuch-content .hinuch-ref {
  display: block;
  cursor: pointer;
  font-family: 'comicsno';
  font-size: 2rem;
  color: #900eb1;
  letter-spacing: 1px;
  margin: 0 auto 1em auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.hinuch-wrapper .hinuch-content .hinuch-ref:hover {
  color: #ca5d1d;
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */