/******************************************************************


	------------------------
	-- TABLE OF CONTENTS --
	------------------------
	--  00. Font
	--  01. Basic
	--  02. Stars
  --  03. Hero
  --  3-5. Download buttons 
  --  04. Hero --> Front Content
  --  05. Hero --> Background Content
  --  06. Portfolio
  --  6-5. FAQ
  --  07. Footer
  --  08. Page --> About
 
 
 ******************************************************************/

/** 1. Basic
*******************************************************************/

html {
  font-size: 10px !important;
}

body {
  font-family: "Varela Round", sans-serif;
  font-weight: 300;
  font-style: normal;

  color: #fff;
  background: #0c0c0c;

  -webkit-font-smoothing: antialiased;
}

body.contains-hero {
  padding-top: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-family: "Varela Round", sans-serif;
  font-weight: normal;

  color: #fff;
}

h1 {
  /* font-size: 10rem; */
  font-size: 6rem;
  /* color: #6699cc; */
  /* color: #ceebf6; */
  font-family: "Caveat", cursive;
  /* padding-left: 2rem;
  padding-right: 2rem; */
  color: #fff;
  letter-spacing: 0.025em;
}

/* .hero .front-content .container-mid p.subline {
  font-size: 3.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
  letter-spacing: 0.025em;
} */

h2 {
  font-family: "Caveat", cursive;
  font-size: 5rem;
  color: #ceebf6;
}

h3 {
  font-size: 4rem; /* Adjust the size */
  font-weight: bold; /* Make it bold */
  color: #fff;
  /* padding-left: 1rem;
  padding-right: 1rem; */
  /* font-family: 'Arial', sans-serif; 
    color: #333; 
    text-transform: uppercase;  */
  letter-spacing: 0px; /* Adds some letter spacing */
}

h4 {
  /* font-size: 3rem; */
  font-size: 25px;
  color: #f0af4b;
  font-weight: bold;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  /* font-size: 2rem; */
  font-size: 20px;
  color: #ccc;
}

a,
a:hover,
a:focus {
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.blog-button {
  position: fixed;
  z-index: 10;
  top: 1rem;
  right: 0%;

  cursor: pointer;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.blog-button p {
  font-size: 2.2rem;
  font-weight: 400;
  font-weight: bold;

  margin: 0;
  padding: 1.5rem 7.5rem 1.5rem 4.5rem;

  -webkit-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: 0.15s ease;
  letter-spacing: 0.01em;

  color: #ffffff;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  background: #6699cc;
}

.blog-button:hover p {
  padding: 1.5rem 10rem 1.5rem 4.5rem;
}

.faq-button {
  position: fixed;
  z-index: 10;
  top: 8rem;
  right: 0%;

  cursor: pointer;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

.faq-button p {
  font-size: 2.2rem;
  font-weight: 400;
  font-weight: bold;

  margin: 0;
  padding: 1.5rem 7.5rem 1.5rem 4.5rem;

  -webkit-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: 0.15s ease;
  letter-spacing: 0.01em;

  color: #ffffff;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  background: #6699cc;
}

.faq-button:hover p {
  padding: 1.5rem 10rem 1.5rem 4.5rem;
}

.navigation-button {
  position: fixed;
  z-index: 10;
  top: 19.5rem;
  left: 100%;

  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.navigation-button p {
  font-size: 2.2rem;
  font-weight: 400;
  font-weight: bold;

  margin: 0;
  padding: 1.5rem 7.5rem 1.5rem 4.5rem;

  -webkit-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: 0.15s ease;
  letter-spacing: 0.01em;

  color: #ffffff;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  background: #6699cc;
}

.navigation-button:hover p {
  padding: 1.5rem 10rem 1.5rem 4.5rem;
}

@media (max-width: 700px) {
  html {
    font-size: 8px !important;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 6px !important;
  }
}

@media (orientation: landscape) and (max-height: 420px) {
  html {
    font-size: 8px !important;
  }
}

/** 2. Stars  **/
.stars {
  pointer-events: none;
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 100000;
  background: rgba(0, 0, 0, 0);
  /* linear-gradient(210deg, rgba(26, 188, 156, 1) 0%, rgba(142, 68, 173, 1) 100%); */
}

/** 3. Hero
*******************************************************************/

.hero {
  position: fixed;
  z-index: 0; /* this used to be -1. Set to 0 to allow for clicking Download buttons */
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

.hero .animation-container {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.hero .animation-container.animation-fade {
  opacity: 0;
}

.hero .animation-container.animation-fade.run-animation {
  opacity: 1;
}

.hero .animation-container.animation-fade-up {
  -webkit-transform: translateY(10vh);
  -ms-transform: translateY(10vh);
  transform: translateY(10vh);

  opacity: 0;
}

.hero .animation-container.animation-fade-up.run-animation {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);

  opacity: 1;
}

.hero .download-buttons {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/** 3-5. Download buttons */
.hero .download-buttons img {
  width: auto;
  height: 7rem;
  margin-right: 5px;
  margin-left: 5px;
  margin-bottom: 10px;
}

/** 4. Hero --> Front Content 
*******************************************************************/

.hero .front-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

.hero .front-content .container-mid {
  position: absolute;
  top: 50%;
  left: 0;

  width: 100%;
  padding: 0 0px;

  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.hero .front-content .container-mid .header {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero .front-content .container-mid .header .text-group {
  text-align: left;
}

.hero .front-content .container-mid .header img {
  width: auto;
  height: 13rem;
  position: relative;
  flex-shrink: 0;
}

.hero .front-content .container-mid h1 {
  font-weight: bold;

  margin-top: 0;
  /* margin-bottom: 0.24em; */
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero .front-content .container-mid h2 {
  font-weight: bold;

  margin-top: 0;
  /* margin-bottom: 0.24em; */
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero .front-content .container-mid p.subline {
  font-size: 3.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
  letter-spacing: 0.025em;
}

/** 5. Hero --> Background Content 
*******************************************************************/

.hero .background-content {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;

  overflow: hidden;

  width: 100%;
  height: 100%;
}

.hero .background-content .background-content-inner {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  -webkit-transform: translate3d(-50%, -50%, 0px) !important;
  transform: translate3d(-50%, -50%, 0px) !important;
}

.hero .background-content.parallax-on .background-content-inner {
  width: 110%;
  height: 110%;
}

.hero .background-content .background-overlay {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  opacity: 0.5;
  background: #111;
}

.hero .background-content .background-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: url(../img/background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero .our-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  gap: 0; /* Adjust space between the items */
}

.hero .appstore-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem; /* 5px top and bottom, 0px left and right */
  padding-top: 5rem;
  flex-wrap: wrap;
  gap: 0; /* Adjust space between the items */
}

/* Set height for the laurels */
.hero .left-laurel,
.hero .right-laurel {
  height: 3.5rem; /* Set the desired height */
}

/* Flip the right laurel horizontally */
.hero .right-laurel {
  transform: scaleX(-1); /* Flips the image */
}

/* Custom style for 'Our Reviews' text */
.hero .our-reviews-text {
  font-size: 3rem; /* Adjust the size */
  font-weight: bold; /* Make it bold */
  color: #fff;
  /* font-family: 'Arial', sans-serif; 
    color: #333; 
    text-transform: uppercase;  */
  letter-spacing: 0px; /* Adds some letter spacing */
}

.hero .appstore-ratings-gap {
  font-size: 0.5rem; /* Adjust the size */
  font-weight: bold; /* Make it bold */
  padding: 0 2rem; /* 5px top and bottom, 0px left and right */
  /* font-family: 'Arial', sans-serif; 
    color: #333; 
    text-transform: uppercase;  */
}

.hero .rating-group {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin: 0 10px;
}

.hero .appstore-ratings-text {
  font-size: 2rem; /* Adjust the size */
  font-weight: bold; /* Make it bold */
  padding-left: 0.5rem;
  color: #fff;
  /* font-family: 'Arial', sans-serif; 
    color: #333; 
    text-transform: uppercase;  */
  /* letter-spacing: 2px;  */
}

.hero .review-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero .review-container::-webkit-scrollbar {
  display: none;
}

.hero .review-scroll {
  display: inline-flex;
  padding: 0.5rem 0;
}

.hero .review-card {
  flex: 0 0 auto;
  width: 30rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero .review-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero .review-text {
  font-size: 15px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.hero .review-text-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/** Shared with class="dialog" **/
.full-review-text {
  font-size: 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.full-review-text-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.review-author {
  font-size: 15px;
  font-style: italic;
}

.review-rating {
  color: gold;
  font-size: 2rem;
}

.dialog {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}

.dialog-content {
  /* background-color: rgba(0,0,0,0.9); */
  background-color: rgb(22, 26, 43);
  padding: 2rem;
  border: 0.1rem solid #888;
  width: 80%;
  max-width: 60rem;
  border-radius: 1rem;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #aaa;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/** End of Shared with class="dialog"

/** 6. PORTFOLIO
*******************************************************************/

.portfolio {
  padding: 0 30px;
}

.portfolio .item {
  position: relative;

  display: block;
  overflow: hidden;

  /* max-width: 990px; */
  /* max-height: 990px; */
  margin: 0 auto 25rem auto;

  /* border: 6px solid #fff; */
}

/* .portfolio .item:before
{
    display: block;

    padding-top: 56.25%;

    content: '';
} */

.portfolio .item:last-child {
  margin-bottom: 0;
}

.portfolio .item .item-cover {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-position: center;
  background-size: cover;
}

.portfolio .item i {
  font-size: 2.2rem;
  line-height: 3em;

  position: absolute;
  z-index: 10;
  top: 50%;
  right: 0;

  width: 3em;
  padding: 0;

  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  text-align: center;

  opacity: 0;
  color: #111;
  background: #fff;
}

.portfolio .item:hover i {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  opacity: 1;
}

/* Adjust the styling for the item-content */
.item-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  /* top: 0;
    left: 0;

    width: 100%;
    height: 100%; */
}

.item-content-reverse {
  flex-direction: row-reverse;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style for the video container */
.visual-container {
  /* margin: 0 auto; */
  /* position: absolute; */
  /* top: 50%; */
  width: 300px; /* Adjust as needed */
  margin-right: 10%;
  /* Add spacing between video and text */
}

.visual-container-reverse {
  /* margin: 0 auto; */
  /* position: absolute; */
  /* top: 50%; */
  width: 300px; /* Adjust as needed */
  margin-left: 10%;
  /* Add spacing between video and text */
}

.item img {
  max-height: 90vh;
  max-width: 300px;
  border-radius: 25px;
}

/* Style for the text description */
.item-description {
  width: 500px; /* Adjust as needed */
  text-align: center;
}

.item-description p {
  font-size: 3rem;
  color: #ccc;
  padding-bottom: 3rem;
}

.item-description h3 {
  color: #f0af4b;
  font-weight: bold;
  font-size: 6rem;
  padding-bottom: 4rem;
  padding-top: 3rem;
}

/* .item-description  p {
    font-size: 20px;
} */

/* Responsive styles for the video container */
.item iframe {
  /* pointer-events: none; */
  /* width="295" height="640"  */
  /* height: 100%;   */
  border-radius: 25px;
  max-height: 90vh;
  /* width: 46vh;  */
  /* 100/56.25 = 560/315 = 1.778 */

  /* width: 100%; */
}

/* Responsive styles for the text description */
@media screen and (max-width: 768px) {
  .item-content {
    flex-direction: column;
  }
  .item-content-reverse {
    flex-direction: column;
  }
  .visual-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin: 0 auto; */
    margin-right: 0;
  }
  .visual-container-reverse {
    width: 100%;
    display: flex;
    justify-content: center;
    /* margin: 0 auto; */
    margin-left: 0;
  }
  .item-description {
    width: 100%;
  }
}

/** 6-5. FAQ
*******************************************************************/

.portfolio .faq .faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Varela Round", sans-serif;
  /* font-style: normal; */
  color: #fff;
  /* font-size: 2rem; */
  background-color: transparent; /* Transparent background */
}

.portfolio .faq .faq-container .faq-question {
  padding: 10px;
  padding-right: 30px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;

  border-top: 2px solid white; /* White top border */
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative; /* Added */
}

.portfolio .faq .faq-container .faq-question:hover {
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Lighter background color on hover */
  color: #fff; /* Change text color on hover */
}

.portfolio .faq .faq-container .faq-answer {
  padding-left: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.portfolio .faq .faq-container .faq-answer .link {
  text-decoration: underline;
}

.portfolio .faq .faq-container .faq-answer.show {
  max-height: 2200px;
  /* Enable vertical scrolling if content exceeds the maximum height */
  overflow-y: auto;
}

.portfolio .faq .faq-container .faq-plus {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
}

.portfolio .faq .faq-container .faq-question.expanded .faq-plus {
  transform: translateY(-50%) rotate(45deg); /* Rotate the plus sign */
}

/** Explore More Section **/
.explore-more {
  max-width: 800px;
  margin: 0 auto 5rem auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-align: center;
}

.explore-more p {
  /* font-size: 2rem; */
  font-size: 20px;
  color: #ccc;
  margin-bottom: 3rem;
  /* line-height: 2.5rem; */
}

.explore-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.explore-links li {
  margin-bottom: 1.5rem;
}

.explore-links a {
  /* font-size: 2rem; */
  font-size: 20px;
  color: #ceebf6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.explore-links a:hover {
  color: #f0af4b;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .explore-more {
    padding: 2rem;
  }

  .explore-more p,
  .explore-links a {
    font-size: 2.5rem;
  }
}

/** 7. FOOTER
*******************************************************************/

.footer {
  overflow: hidden;

  padding: 10rem 0;

  text-align: center;
}

.footer p {
  font-size: 1.4rem;

  display: inline-block;

  margin: 0;
  margin-right: 1.4em;

  vertical-align: middle;
  letter-spacing: 0.05em;

  opacity: 0.85;
}

.footer i {
  font-size: 2.6rem;
  line-height: 2.4em;

  display: inline-block;

  width: 2.4em;

  cursor: pointer;
  vertical-align: middle;

  color: #111;
  border-radius: 100%;
  background: #fff;
}

.footer p a {
  font-weight: bold;
  color: #ceebf6;
}

/** 8. Page --> About
*******************************************************************/

.about {
  margin: 20rem 0 5rem 0;
}

.about .container-fluid {
  max-width: 900px;
  padding: 0 30px;
}

.about h1 {
  margin-bottom: 0.6em;
}

.about h4 {
  margin-bottom: 1.4em;
}

.about p {
  line-height: 2.4em;

  margin-bottom: 1.6em;
}

.about .social-links {
  margin: 3rem 0 4rem 0;
  padding: 0;

  list-style: none;
}

.about .social-links li {
  font-size: 2rem;

  display: inline-block;

  margin-right: 1em;
}

.about h6 {
  margin-bottom: 0.6em;
}
