/* Thin */
@font-face {
    font-family: "MuseoSlab5";
    src: url('./fonts/Museo_Slab_5.otf') format("truetype");
    font-style: normal;
    font-weight: 500;
  }

  /* Light */
  @font-face {
    font-family: "MuseoSlab6";
    src: url('./fonts/Museo_Slab_6.otf') format("truetype");
    font-style: normal;
    font-weight: 600;
  }

  /* Normal */
  @font-face {
    font-family: "MuseoSlab7";
    src: url('./fonts/Museo_Slab_7.otf') format("truetype");
    font-style: normal;
    font-weight: 700;
  }

  /* Medium */
  @font-face {
    font-family: "MuseoSlab8";
    src: url('./fonts/Museo_Slab_8.otf') format("truetype");
    font-style: normal;
    font-weight: 800;
  }

  /* Bold */
  @font-face {
    font-family: "MuseoSlab9";
    src: url('./fonts/Museo_Slab_9.otf') format("truetype");
    font-style: normal;
    font-weight: 900;
  }

  /* Thin */
  @font-face {
    font-family: "MuseoSlabItalic1";
    src: url('./fonts/Museo_Slab_100italic.otf') format("truetype");
    font-style: normal;
    font-weight: 100;
  }

  /* Thin */
  @font-face {
    font-family: "MuseoSlabItalic3";
    src: url('./fonts/Museo_Slab_300italic.otf') format("truetype");
    font-style: normal;
    font-weight: 300;
  }

  /* Light */
  @font-face {
    font-family: "MuseoSlabItalic5";
    src: url('./fonts/Museo_Slab_500italic.otf') format("truetype");
    font-style: italic;
    font-weight: 500;
  }

  /* Normal */
  @font-face {
    font-family: "MuseoSlabItalic7";
    src: url('./fonts/Museo_Slab_700italic_0.otf') format("truetype");
    font-style: italic;
    font-weight: 700;
  }

  /* Medium */
  @font-face {
    font-family: "MuseoSlabItalic9";
    src: url('./fonts/Museo_Slab_900italic.otf') format("truetype");
    font-style: italic;
    font-weight: 900;
  }

  /* Bold */
  @font-face {
    font-family: "MuseoSlabItalic10";
    src: url('./fonts/Museo_Slab_1000italic.otf') format("truetype");
    font-style: italic;
    font-weight: 1000;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    padding: 0;
  }

  .app {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

  .navbar {
    /* background-color: rgba(255, 255, 255, 0.7); */
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 10%;
    background-color: #ffc603;
    z-index: 999;
  }

  .hamburger {
    display: none;
  }

  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
  }

  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
  }

  .nav-link {
    font-size: 20px;
    font-family: "MuseoSlab9";
    color: #22244b;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
  }

  .nav-link:hover {
    border-color: #22244b;
  }

  .logo {
    width: 96px;
    height: 96px;
  }

  .loginBtn {
    padding: 14px 18px;
    text-align: center;
    font-family: "MuseoSlab8";
    border: none;
    border-radius: 100px;
    color: #ffffff;
    background-color: #22244b;
    cursor: pointer;
    transition: 0.3s;
  }

  .loginBtn:hover {
    background-color: #3b3d6e;
  }

.header {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  min-height: 5vh;
  padding: 0% 10%;
  border-radius: 0 0 4% 4%;
}
  .header .headerContent {
    padding: 22% 0% 0% 0%;
    display: flex;
    align-items: center;
  }

  .header .headerLeft {
    flex: 3;
    padding-left: 5%;
  }

  .header .headerLeft h1 {
    font-family: "MuseoSlab8";
  }

  .header .headerLeft h1 .boldText {
    font-family: "MuseoSlab9";
  }

  .header .headerLeft h3 {
    font-family: "MuseoSlab8";
  }

  .header .headerRight {
    flex: 2;
    position: relative;
  }

  .header .headerRight img {
    width: 360px;
    height: 360px;
    position: absolute;
    top: -180px;
    left: 0;
  }

  .header h1 {
    margin: 0;
    max-width: 100%;
    color: #22244b;
    font-size: 64px;
  }

  .boldText {
    font-weight: 700;
  }

  .header h3 {
    margin-bottom: 48px;
    font-size: 24px;
    color: #22244b;
  }

  .button {
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 32px;
    background-color: #22244b;
    font-family: "MuseoSlab8";
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
  }

  .button:hover {
    background-color: #3b3d6e;
  }

  .section1 {
    position: relative;
  }

.section1 .pakotContainer {
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.section1 .pakotContainer .content {
  margin: 10% 10%;
  padding: 5% 4%;
  border-radius: 20px;
  background-color: #f8f9fa;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

  .section1 .pakotContainer .content h3 {
    font-family: "MuseoSlab9";
    font-size: 34px;
    font-weight: 700;
    color: #22244b;
  }

  .section1 .pakot {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, calc(33.33% - 20px)));
    gap: 20px;
  }

  .section1 .pakot .pako {
    flex: 1;
    padding: 0 4% 4% 4%;
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    background-color: #ffc603;
    transition: 0.5s;
  }

  .section1 .pakot .pako:hover {
    transform: translateY(-10px);
  }

  .section1 .logo {
    width: 96px;
    height: 96px;
  }

  .section1 .pako1 {
    flex: 1;
    padding: 0 4% 4% 4%;
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    background-color: #22244b;
    transition: 0.5s;
  }

  .section1 .pakot .pako1:hover {
    transform: translateY(-10px);
  }

  .section1 .pakot .pako .pakoLogo {
    font-size: 22px;
    font-weight: 700;
  }

  .section1 .pako .price {
    font-family: "MuseoSlab9";
    font-size: 48px;
    margin: 0 auto;
    color: #22244b;
  }

  .section1 .pako .price span {
    font-family: "MuseoSlab8";
  }

  .section1 .pako1 .price {
    font-family: "MuseoSlab9";
    font-size: 48px;
    margin: 0 auto;
    color: #fff;
  }

  .section1 .pako1 .price span {
    font-family: "MuseoSlab8";
  }

  .section1 .pakot .pako .pako-details {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .section1 .pakot .pako1 .pako-details {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .section1 .pakot .singleDetail {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .section1 .pakot .singleDetail .left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section1 .pakot .singleDetail .left span {
    font-family: "MuesoSlabItalic5";
    font-size: 22px;
  }

  .section1 .pakot .pako1 .singleDetail .left span {
    font-family: "MuesoSlabItalic5";
    font-size: 22px;
    color: #fff;
  }

  .section1 .pakot .singleDetail .left img {
    width: 28px;
    height: 28px;
  }

  .section1 .pakot .singleDetail .right {
    font-family: "MuseoSlab9";
    font-size: 22px;
    color: #22244b;
  }

  .section1 .pakot .pako1 .singleDetail .right {
    font-family: "MuseoSlab9";
    font-size: 22px;
    color: #fff;
  }

  .section1 .pakot .pako .activateButton {
    margin: 0 auto;
    padding: 8px 32px;
    font-family: "MuseoSlab8";
    font-size: 22px;
    background-color: #22244b;
    border: 2px solid #ffc603;
    color: #ffc603;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }

  .section1 .pakot .pako .activateButton:hover {
    background-color: #ffc603;
    color: #22244b;
    border: 2px solid #22244b;
  }

  .section1 .pakot .pako1 .activateButton {
    margin: 0 auto;
    padding: 8px 32px;
    font-family: "MuseoSlab8";
    font-size: 22px;
    background-color: #ffc603;
    border: 2px solid #22244b;
    color: #22244b;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }

  .section1 .pakot .pako1 .activateButton:hover {
    background-color: #22244b;
    color: #ffc603;
    border: 2px solid #ffc603;
  }

  .pakotContainer .section2 {
    margin-top: 64px;
    display: flex;
    gap: 24px;
    padding: 32px;
    border-radius: 20px;
    background-color: rgb(255, 165, 0, 0.4);
  }

  .pakotContainer .section2 .title {
    font-family: "MuseoSlab9";
    font-size: 18px;
    color: #22244b;
  }

  .pakotContainer .section2 .body {
    font-family: "MuseoSlabItalic7";
    color: #22244b;
  }

  .section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 64px;
  }

  .section3 .headerContent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section3 .headerContent img {
    width: 600px;
  }

  .section3 .title {
    font-family: "MuseoSlab9";
    font-size: 42px;
    color: #676781;
  }

  .section1 .pakotContainer .section3 .pyetjetContainer {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
  }

  .section1 .pakotContainer .section3 .pyetjetContainer .column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .section1 .pakotContainer .section3 .pyetjetContainer .column .pyetjeContainer {
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #676781;
    font-family: "MuseoSlab7";
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .contentBx {
    position: relative;
  }

  .contentBx .label {
    position: relative;
    padding: 10px;
    background-color: #fff;
    color: #676781;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
  }

  .contentBx .label::before {
    content: "+";
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: "MuseoSlab8";
    transform: translateY(-50%);
    color: #676781;
  }

  .contentBx.active .label::before {
    right: 22px;
    content: "-";
  }

  .contentBx .contentP {
    position: relative;
    font-family: "MuseoSlab6";
    color: #676781;
    background-color: #fff;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .contentBx.active .contentP {
    height: 150px;
  }

  .contentBx .contentP p {
    padding: 8px 16px;
  }

  .footer {
    margin-top: auto;
    height: 120px;
    width: 100%;
    background-color: #22244b;
    color: #fff;
  }

  @media screen and (max-width: 1260px) {
    nav .logo {
      width: 80px;
      height: 80px;
    }

    .nav-link {
      font-size: 18px;
    }

    .header .headerLeft h1 {
      font-size: 48px;
    }

    .header .headerLeft h3 {
      font-size: 20px;
    }

    .header .headerRight img {
      width: 280px;
      height: 280px;
    }

    .section1 .pakot {
      grid-template-columns: repeat(auto-fit, minmax(calc(50% - 20px), 1fr));
    }

    .pakotContainer .section2 .title {
      font-size: 16px;
    }
  }

  @media only screen and (max-width: 780px) {
    .navbar {
      padding: 0 4%;
    }

    .nav-menu {
      position: fixed;
      left: -110%;
      top: 62px;
      flex-direction: column;
      gap: 16px;
      background-color: #fff;
      width: 100%;
      height: 100vh;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
      left: 0;
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      gap: 32px;
      padding: 0;
    }

    .nav-menu.active .nav-item {
        margin-top: 15px;
    }

    .hamburger {
      display: block;
      cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .header {
      padding: 0 4%;
    }

    .header .headerContent {
      padding: 50% 0 0 0;
    }

    .header .headerLeft h1 {
      font-size: 32px;
    }

    .header .headerLeft h3 {
      font-size: 18px;
      margin: 12px 0;
    }

    .header .headerLeft .button {
      padding: 12px 48px;
      font-size: 24px;
    }

    .header .headerRight img {
      width: 180px;
      height: 180px;
      top: -100px;
    }

    .section1 .pakotContainer .content h3 {
      font-size: 28px;
    }

    .section1 .pakotContainer .content {
      margin: 0 4%;
    }

    .section1 .pakot {
      grid-template-columns: repeat(auto-fit, minmax(calc(100% - 20px), 1fr));
    }

    .section1 .pakot .pako .price {
      font-size: 36px;
    }

    .section1 .pakot .pako1 .price {
      font-size: 36px;
    }

    .section1 .pakot .singleDetail .left span {
      font-size: 20px;
    }

    .section1 .pakot .pako1 .singleDetail .left span {
      font-size: 20px;
    }
  }

  @media only screen and (max-width: 628px) {
    .section3 .pyetjetContainer {
      flex-direction: column;
      gap: 16px !important;
    }

    .pakotContainer .section2 {
      display: flex;
      flex-wrap: wrap;
    }
  }

  @media only screen and (max-width: 528px) {
    .header .headerContent {
      padding: 75% 0 0 0;
    }

    .header .headerLeft h1 {
      font-size: 24px;
    }

    .header .headerLeft h3 {
      font-size: 14px;
      margin: 12px 0;
    }

    .header .headerLeft .button {
      padding: 8px 32px;
      font-size: 18px;
    }

    .header .headerRight img {
      width: 140px;
      height: 140px;
      top: -100px;
    }

    .section3 .title {
      font-size: 24px;
    }
  }

  .section2-container-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }