html {
  font-size: 18px;
}

body {
  font-family: "Open Sans";
}
body.rtl {
  font-family: "Open Sans Hebrew";
}
*:lang(en) {
  direction: ltr;
}
*:lang(he) {
  direction: rtl;
}
/* app */
strong {
  font-family: "Open SansBold";
}
body.rtl strong {
  font-family: "Open Sans HebrewBold";
}
.ac-sr-only {
  position: fixed;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html {
  font-size: 1vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ac-container {
  width: 70rem;
  margin: 0 auto;
  background-color: #d1d9ff;
  height: 100%;
  padding: 1rem;
}

.ac-img-responsive {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.ac-btn {
  display: flex;
  font-size: 1.05rem;
  color: #000;
  text-decoration: none;
  width: max-content;
  box-shadow: 0px 0px 6px #00000029;
  border: 1px solid #dddddd;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  font-weight: 900;
  position: relative;
  top: 0;
  transition: top 0.5s, box-shadow 0.5s;
}
.ac-btn:hover {
  top: -0.5rem;
  box-shadow: 0px 11px 6px #00000029;
}
svg {
  width: 100%;
  height: 100%;
}

.ac-svg {
  background-color: #081e36;
  width: 1rem;
  height: 1rem;
  padding: 0.08rem;
  margin: 1.5rem auto 0;
  transition: background-color 0.5s;
}
.ac-svg svg {
  fill: #fff;
  transition: fill 0.5s;
}
.ac-linkin:hover .ac-svg {
  background-color: #fff;
}
.ac-linkin:hover .ac-svg svg {
  fill: #081e36;
}

h1 {
  font-size: 1.9rem;
  text-align: center;
  margin-top: 2rem;
}

h2 {
  font-size: 2.2rem;
}

p {
  font-size: 1rem;
  margin-bottom: 3vh;
  line-height: 1.3;
}
small {
  font-size: 83%;
}
/* Main */
main .ac-tabs {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
main .ac-tabs button {
  background-color: transparent;
  border: 0;
  color: #000;
  font-size: 0.8rem;
  cursor: pointer;
  margin: 0 0.5rem;
}
main .ac-tabs button.ac-lang-he {
  font-size: 1rem;
}
main .ac-tabs button.ac-active {
  font-weight: 900;
}
.rtl main .ac-tabs button.ac-lang-he.ac-active {
  font-family: "Open Sans HebrewBold";
}
section {
  width: 100%;
  height: 100vh;
  padding: 0rem 0;
  position: relative;
  display: flex;
  flex-direction: row;
}
.ltr section {
  text-align: left;
}
.rtl section {
  text-align: right;
}
section .ac-col-1 {
  width: 40rem;
  background: #d4d4d4;
  background: -moz-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top, #d4d4d4 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #d4d4d4 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4d4d4', endColorstr='#ffffff',GradientType=0 );
  position: relative;
}
section .ac-col-2 {
  width: 60rem;
  position: relative;
}
section .ac-col-1 .ac-card {
  display: none;
  flex-direction: column;
  width: 29rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section .ac-col-1 .ac-card.ac-active {
  display: flex;
}
section .ac-col-2 .ac-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: none;
}
section .ac-col-2 .ac-content.ac-active {
  display: block;
}
section .ac-btn img {
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
}
.ac-btns {
  display: flex;
  width: 25rem;
  justify-content: space-between;
}
section .ac-row-2 {
  margin-top: 9vh;
}
/* End Main */

.ac-hide-on-mobile {
  display: block;
}

.ac-show-on-mobile {
  display: none;
}

@media (max-width: 1000px) {
  html {
    font-size: 18px;
  }
  .ac-container {
    width: 90%;
  }

  section {
    width: 100%;
    height: auto;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  section .ac-col {
    width: 100%;
  }
  section .ac-col-1 .ac-card {
    display: none;
    flex-direction: column;
    width: 60%;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin: 10% auto;
  }
  section .ac-col-2 .ac-content {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    width: 60%;
    margin: auto;
    margin-bottom: 3rem;
  }

  /* End header  mobile*/
}

@media (max-width: 650px) {
  html {
    font-size: 15px;
  }
  .ac-hide-on-mobile {
    display: none;
  }
  .ac-show-on-mobile {
    display: block;
  }
  .ac-btn {
    margin-bottom: 1rem;
    width: 100%;
  }
  .ac-btns {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
  }
  section .ac-row-2 p {
    text-align: center;
  }
  section .ac-col-2 .ac-content {
    width: 90%;
  }
  section .ac-row-2 {
    width: 70%;
    margin: 0 auto;
    margin-top: 16vw;
  }
  main .ac-tabs {
    position: relative;
    top: 0;
    right: unset;
    z-index: 1;
    margin: -1rem auto 2rem;
    width: max-content;
  }
  main .ac-tabs button {
    font-size: 1.1rem;
}
main .ac-tabs button.ac-lang-he {
    font-size: 1.3rem;
}
}
