@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');


:root {
  --mainColor: #0d5cf0;
  --secondBlue: #668DB8;
}

html{
  scroll-behavior: smooth;
}

* {
    font-family: 'Karla', sans-serif;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: scroll;
    color: #2c3740;
    margin: 0px;
    font-size: 1rem;
    font-weight: 200;
    overflow-x: hidden;
    text-decoration: none;
    border: none
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

.smallImg {
  width: 40px;
  height: 40px;
}



/* Text Styles */

h1 {
  display: flex;
  font-weight: 600;
  font-family: 'Montserrat';
  font-size: 40px
}

h1.bold {
  display: flex;
  font-weight: 500;
  font-family: 'Montserrat';
  font-size: 25px;
  color: var(--mainColor)
}

h2 {
  font-weight: 500;
  font-family: 'Montserrat';
  font-size: 25px;
}

h2.center {
  text-align: center;
}

h3 {
  font-weight: 200;
  font-family: 'Karla';
  font-size: 20px;
}

h4 {
  font-family: 'Karla';
  font-weight: 200;
  font-size: 20px;
  padding-top: 20px;
}

h4.bold {
  font-weight: 300;
  color: var(--secondBlue)
}

h4.center {
  text-align: center;
}

h5 {
  font-family: 'Karla';
  font-weight: 200;
  font-size: 14px;
}

h5.bold {
  font-family: 'Karla';
  font-weight: 300;
  font-size: 16px;
}

/* END Text Styles */

/* Mobile Menu */

.mobileMenu {
  display: none;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--secondBlue);
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1
}

  @keyframes fadeIn {
    0% {
      opacity: 0
    }
    100% {
      opacity: 1
    }
  }

  .closeMobileMenu {
    display: flex;
    position: fixed;
    right: 10px;
    top: 10px;
  }

  .closeMobileMenu:hover {
    animation-name: rotate;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg)
    }
    100% {
      transform: rotate(360deg)
    }
  }

  .mobileLinks {
    display: flex;
    flex-direction: column;
    margin-top: 150px;
    align-self: center;
    width: 100%;
  }

  .mobileLink {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 4px;
    margin-bottom: 5px;
    height: 60px;
    width: 100%;
    color: var(--secondBlue);
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 25px;
  }

  .mobileLink:hover {
    opacity: 0.5;
  }

  .shopsRow {
    display: flex;
    width: 95%;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
  }

/* END Mobile Menu */

.container404 {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px
}

  .notFoundImg {
    width: 300px;
    height: 300px;
    object-fit: contain;
  }

.mainContainer {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto
}

.headerContainer {
  display: flex;
  position: fixed;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: white;
  width: 100%;
  height: 120px;
  background-color: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 0px;
  padding: 0px 100px;
  overflow: visible;
  z-index: 100
}

  .logoContainer {
    display: flex;
  }

    .logo_img {
      width: 250px;
      height: 100px;
      object-fit: contain;
    }

    .logo_img:hover {
      width: 250px;
      height: 100px;
      animation-name: zoomIn;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      animation-iteration-count: 1;
    }

    @keyframes zoomIn {
      0% {
        width: 250px;
        height: 100px;
      }
      100% {
        width: 255px;
        height: 105px;
      }
    }

  .mobileLinksContainer {
    display: none
  }

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

    .linksContainer_link {
      font-family: 'Montserrat';
      font-weight: 500;
      font-size: 20px;
      margin-left: 25px;
    }

    .linksContainer_link:hover {
      font-family: 'Montserrat';
      font-weight: 500;
      font-size: 20px;
      margin-left: 25px;
      color: var(--mainColor)
    }

    .tryForFreeContainer {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-left: 25px;
      padding-left: 10px;
      border-left: 0.5px dashed var(--mainColor)
    }

      .tryForFreeContainer_links {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        align-items: center;
      }

      .tryForFreeContainer_img {
        display: flex;
        width: 40px;
        height: 40px
      }

  .homeContainer {
    display: flex;
    width: 100%;
    height: 100vh;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-size: cover;
    background-position: center;
    background-image: url('../media/top-bg-3.png');
  }

    .homeContainer_overlay {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
      height: 100%;
      padding: 0px 100px;
      z-index: 10;
      position: absolute;
      top: 140px
    }

      .homeContainer_textContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 40%;
        height: 80vh;
        animation-name: flyIn;
        animation-duration: 4s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1
      }

      .homeContainer_imageContainer {
        display: flex;
        max-width: 40%;
        animation-name: flyIn;
        animation-duration: 3s;
        animation-fill-mode: forwards;
        animation-iteration-count: 1
      }

      @keyframes flyIn {
        0% {
          opacity: 0;
          margin-right: 100px
        }
        100% {
          opacity: 1;
          margin-right: 1px;
        }
      }

      .homeContainer_image {
        display: flex;
        height: 80vh;
      }

  .chapterContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: space-between;
    width: 100%;
    height: 100%;
    padding: 50px 100px;
  }

    .chapterFullRow {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .itemsRow {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding-top: 20px
    }

    .itemsRow.last {
      justify-content: center;

    }

    .item {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
    }

    .item.column {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .item.right {
      flex-direction: row-reverse;
    }

      .itemImageContainer {
        display: flex;
      }

      .itemImage {
        width: 100px;
        height: 100px;
        margin-right: 20px;
      }

      .itemTextContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        text-align: center;
      }

  .proContainer {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
  }

    .proSlide {
      display: flex;
      width: 100%;
      flex-direction: row;
      align-items: flex-start;
      margin-top: 20px;
    }

    .proSlide:hover .proImage {
      filter: grayscale(0);
    }

    .proSlide.left{
      flex-direction: row-reverse;
    }

    .proSlide.first {
      border-top: 1px dashed var(--secondBlue);
      padding-top: 10px;
    }

      .proSlide_text {
        display: flex;
        flex-direction: column;
        margin-left: 20px;
        text-align: left;
        width: 40%
      }

      .proImageContainer {
        display: flex;
        border-top: 1px dotted var(-secondBlue);
        margin-top: 10px;
        max-width: 50vw
      }

      .proImage {
        display: flex;
        width: 100%;
        object-fit: contain;
        border: 2px solid var(--secondBlue);
        border-radius: 10px;
        filter: grayscale(0.7);
      }

  .packageBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 10px;
    width: 300px;
    height: 280px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }

  .packageBox.right {
    margin-right: 10px;
  }

  .packageHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 80px;
    margin-bottom: 10px;
    padding: 5px;
    border-bottom: 1px dashed var(--secondBlue)
  }

  .packageContent {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
    text-align: center;
  }

  .packageContentOption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    margin-top: 30px;
  }

  .questionRow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: var(--secondBlue);
    border-radius: 6px 6px 0px 0px;
    border: 1px solid var(--secondBlue);
    margin-top: 10px;
    text-align: center;
    color: white
  }

  .questionRow:hover {
    color: var(--secondBlue);
    background-color: white;
    border: 1px solid var(--secondBlue);
  }

  .answer {
    display: none;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 80px;
    border: 1px solid var(--secondBlue);
    border-radius: 0px 0px 6px 6px;
    padding: 10px;
  }

  .footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    width: 100%;
    border-top: 1.5px dashed var(--mainColor);
    padding: 10px 100px;
  }

  .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footerText {
    font-family: 'Karla';
    font-weight: 200;
    font-size: 20px;
  }

  .footerText.bold {
    font-family: 'Karla';
    color: var(--secondBlue);
    font-weight: 300;
    font-size: 20px;
  }

  @media only screen and (max-width: 1070px) {

    .headerContainer {
      padding: 0px 10px;
    }

    .homeContainer_overlay {
      padding: 0px 10px;
    }

    .chapterContainer {
      padding: 50px 10px;
    }

    .footer {
      padding: 10px 10px;
    }
  }

  @media only screen and (max-width: 880px) {

    .headerText {
      font-size: 30px;
    }

    .linksContainer_link {
      font-size: 14px;
      margin-left: 20px;
    }

    .linksContainer_link:hover {
      font-size: 14px;
      margin-left: 20px;
    }

    .itemsRow {
      flex-direction: column;
    }

    .item {
      width: 100%;
      justify-content: center;
    }

    .item.right {
      flex-direction: row;
    }

    .item.column {
      flex-direction: row;
    }

    .proSlide, .proSlide.left {
      flex-direction: column;
      align-items: center;
    }

    .proSlide.first {
      border-top: 1px dotted var(--secondBlue)
    }

    .proSlide_text {
      text-align: center;
      width: 90%
    }

    .proImageContainer {
      max-width: 90vw
    }

    .questionRow {
      font-size: 20px;
    }
  }

  @media only screen and (max-width: 750px) {

    .homeContainer_overlay {
      display: flex;
      flex-direction: row;
      justify-content: center;
      width: 100%;
      height: 100%;
      padding: 0px 0px;
      z-index: 10;
      position: absolute;
      top: 40px
    }

    .homeContainer_textContainer {
      max-width: 90%;
      align-self: center;
      text-align: center;
    }

    .homeContainer_imageContainer {
      display: none
    }

    .linksContainer {
      display: none
    }

    .mobileLinksContainer {
      display: flex
    }

    .questionRow {
      font-size: 16px;
    }
  }

  @media only screen and (max-width: 390px) {
    .footer {
      flex-direction: column;
      height: 120px;
    }
    .column {
      justify-content: center;
      align-items: center;
    }
  }
