@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.menu {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #213329;
  z-index: 9998;
  padding: 2rem;
  padding-top: calc(80px + 2rem);
}
.menu.open {
  display: flex;
}
.menu.close {
  display: none;
}
.menu * {
  color: #ffffff;
  font-size: 1rem;
}
.menu li {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.menu li div {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  z-index: 1000;
  font-size: 1.2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
.header img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .hamburger-menu {
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.header .hamburger-menu .open.open-icon {
  display: flex;
}
.header .hamburger-menu .open.close-icon {
  display: none;
}
.header .hamburger-menu .close.open-icon {
  display: flex;
}
.header .hamburger-menu .close.close-icon {
  display: none;
}
.header .header-primary-ul {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 100px;
}
.header .header-primary-ul .header-primary-li {
  list-style: none;
  width: auto;
  min-width: 130px;
  height: 100%;
  position: relative;
  padding: 1rem;
}
.header .header-primary-ul .header-primary-li .header-primary-a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.header .header-primary-ul .header-secondary-ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  padding: 1rem;
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 999;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.3);
}
.header .header-primary-ul .header-secondary-ul .header-secondary-li {
  list-style: none;
  padding: 0.5rem 0;
}
.header .header-primary-ul .header-primary-li:hover + .header-secondary-ul,
.header .header-primary-ul .header-secondary-ul:hover {
  display: flex;
}

@media only screen and (max-width: 550px) {
  .header .header-primary-ul {
    display: none;
  }
  .header {
    justify-content: space-between;
  }
  .header a {
    order: 1;
  }
  .header a img {
    height: 40px;
  }
  .header .hamburger-menu {
    order: 2;
    display: flex;
    width: 100px;
    height: 100%;
  }
}
@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 4rem;
  padding-bottom: 2rem;
  background-color: #213329;
}
.footer .footer-top {
  width: 90%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ffffff;
}
.footer .footer-top .footer-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 4rem;
  width: auto;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.footer .footer-top .footer-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer .footer-top .footer-slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.footer .footer-top .footer-slogan h2 {
  font-weight: normal;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}
.footer .footer-top .footer-slogan img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-middle {
  width: 90%;
  padding: 0 1rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #ffffff;
}
.footer .footer-middle ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-middle ul a {
  color: #ffffff;
}
.footer .footer-middle ul li {
  list-style: none;
}
.footer .footer-middle ul li ul {
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-bottom p {
  color: #ffffff;
}

@media only screen and (max-width: 1200px) {
  .footer .footer-top .footer-slogan img {
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 1100px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 4rem;
    height: auto;
  }
  .footer .footer-top .footer-image {
    width: 100%;
    aspect-ratio: auto;
  }
  .footer .footer-top .footer-image img {
    max-width: 200px;
  }
  .footer .footer-top .footer-slogan {
    width: 100%;
    min-height: 200px;
    padding: 2rem;
    order: 1;
  }
  .footer .footer-top .footer-slogan h2 {
    font-size: 2rem;
  }
  .footer .footer-top .footer-slogan img {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 800px) {
  .footer {
    padding: 4rem 2rem;
  }
}
@font-face {
  font-family: "questrial";
  src: url("./Questrial-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "questrial";
  color: #000000;
}

html,
body {
  overflow-x: hidden;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.content {
  margin-top: 80px;
  width: 100%;
}
.content .costs {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem;
}
.content .costs .page-title {
  width: 100%;
  height: 80px;
  font-size: 2rem;
}
.content .costs .cost-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
}
.content .costs .cost-wrapper .cost-block {
  width: calc(50% - 2rem);
  background-color: #6b705c;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.content .costs .cost-wrapper .cost-block * {
  color: #ffffff;
}
.content .costs .cost-wrapper .cost-block .title {
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  word-break: break-word; /* Forces the text to break within words */
  overflow-wrap: break-word; /* Adds support for breaking long words */
  -webkit-hyphens: auto;
          hyphens: auto; /* Adds a hyphen if the word is broken */
}
.content .costs .cost-wrapper .cost-block .title::after {
  content: "";
  display: block;
  width: 40%;
  height: 1.5px;
  background-color: #ffffff;
  margin-top: 0.4rem;
}
.content .costs .cost-wrapper .cost-block .minutes,
.content .costs .cost-wrapper .cost-block .cost {
  width: 100%;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}
.content .costs .cost-wrapper .cost-block .cost,
.content .costs .cost-wrapper .cost-block .description {
  margin-bottom: 2rem;
}
.content .costs .cost-wrapper .cost-block .description {
  flex: 1;
  max-width: 400px;
}
.content .costs .cost-wrapper .cost-block a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border-radius: 5px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.content .costs .cost-wrapper .cost-block a:hover {
  background-color: #e6e6e6;
}

@media only screen and (max-width: 1000px) {
  .content .costs .cost-wrapper {
    flex-direction: column;
  }
  .content .costs .cost-wrapper .cost-block {
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .content .costs {
    padding: 2rem;
  }
}/*# sourceMappingURL=kota.costs.css.map */