@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metal&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Edu+QLD+Hand:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --base-clr: #fff;
  --text-clr: #000;
  --accent-clr: #3883FF;
  --hover-clr: #f2f2f2;
  --secondary-text-clr: #333;
  --line-clr: #d1d1d1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Geist";
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  background: var(--base-clr);
  color: var(--text-clr);
  width: 100%;
  min-height: 100dvh;
}

::selection {
  background: var(--text-clr);
  color: var(--base-clr);
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: flex;
}

.bar {
  flex: 1;
  height: 105vh;
  background: #000;
}

.counter {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-family: "Noto Serif Display";
  font-weight: 200;
  color: #fff;
  z-index: 110;
}

.container {
  opacity: 0;
  transition: opacity 0.1s;
}

/*===================== Header =====================*/

header {
  width: 100%;
  position: relative;
  background: var(--base-clr);
  padding-top: 40px;
}

/********** navbar **********/

nav.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
  background: var(--base-clr);
  display: flex;
  z-index: 99;
  height: 56px;
  width: 90%;
  align-items: center;
  margin: 30px auto;
  padding: 5px 15px;
  gap: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.hide {
  transform: translate(-50%, -150%);
  opacity: 0;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.navbar .logo .logo-img {
  height: 35px;
  overflow: hidden;
  border-radius: 8px;
  width: 35px;
}

.navbar .logo .logo-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.navbar .logo .logo-name {
  font-size: 1.7rem;
  font-weight: 600;
}

.navbar .nav-items {
  list-style-type: none;
  display: flex;
  flex-grow: 1;
  gap: .5rem;
}

.navbar .nav-items .nav-item a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--base-clr);
  color: var(--text-clr);
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms ease;
}

.navbar .nav-items .nav-item a:hover {
  background: var(--hover-clr);
}

.navbar .nav-buttons {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.navbar .nav-buttons .login-btn {
  border: none;
  outline: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--hover-clr);
  color: var(--text-clr);
  font-family: "Geist";
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 150ms ease;
  text-wrap: nowrap;
}

.navbar .nav-buttons .login-btn:hover {
  background: var(--text-clr);
  color: var(--base-clr);
}

.navbar .nav-buttons .signup-btn {
  --arrow-width: 15px;
  --arrow-stroke: 2px;
  border: 0;
  border-radius: 8px;
  color: var(--base-clr);
  padding: 8px 16px;
  font-family: "Geist";
  font-size: 1.2rem;
  background: var(--accent-clr);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  text-wrap: nowrap;
  transition: all 200ms ease;
  cursor: pointer;
}

.navbar .nav-buttons .signup-btn.signup {
  display: none;
}

.navbar .nav-buttons .signup-btn .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar .nav-buttons .signup-btn .arrow {
  width: var(--arrow-width);
  background: var(--accent-clr);
  height: var(--arrow-stroke);
  position: relative;
  transition: 200ms;
}

.navbar .nav-buttons .signup-btn .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--base-clr);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -4px;
  right: 4px;
  transition: 0.2s;
  padding: 4px;
  transform: rotate(-45deg);
}

.navbar .nav-buttons .signup-btn:hover {
  background-color: var(--text-clr);
}

.navbar .nav-buttons .signup-btn:hover .arrow {
  background: var(--base-clr);
}

.navbar .nav-buttons .signup-btn:hover .arrow:before {
  right: 0;
}


.navbar .menu-icon {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 4px;
  box-sizing: content-box;
  width: 35px;
  transition: 150ms ease;
  cursor: pointer;
}

/********** hero-section **********/

.hero-section {
  height: auto;
  width: auto;
  max-width: 100%;
  margin: 40px;
  margin-top: 0;
  padding-top: max(10vh, 5vw);
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  flex-direction: column;
  align-items: center;
}

.hero-section .slogan {
  font-size: 9vw;
  letter-spacing: 5px;
  font-weight: 200;
  line-height: 1.3;
  font-style: italic;
  font-family: "Noto Serif Display";
}

.hero-section .title {
  font-size: 19vw;
  font-weight: 500;
  line-height: 1;
}

.line-mask,
.line-mask1 {
  overflow: hidden;
}

.line-mask p,
.line-mask1 p {
  margin: 0;
  display: block;
}


.hero-section-img {
  position: relative;
  height: max-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--base-clr); */
}

.hero-section-img .img {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  height: max-content;
  z-index: 0;
  overflow: hidden;
  padding: 40px 0;
  padding-bottom: 30px;
  /* background: var(--base-clr); */
}

.hero-section-img .img .hero-img {
  width: 1200px;
  max-width: 100vw;
  height: 120vh;
  border-radius: 100px;
  transition: border-radius 0.28s;
  will-change: width, transform;
  overflow: hidden;
  background: var(--base-clr);
  background: black;
  z-index: 10;
}
.hero-section-img .img .hero-img .grad1,
.hero-section-img .img .hero-img .grad2,
.hero-section-img .img .hero-img .grad3,
.hero-section-img .img .hero-img .grad4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  animation: moveGrad 6s infinite alternate ease-in-out;
}

.hero-section-img .img .hero-img .grad1 {
  height: 100%;
  width: 60%;
  left: -50px;
  top: -100px;
  background: radial-gradient(closest-side, #00ffe7, #8f00ff);
  box-shadow: 0 0 50px #00ffe7;
  animation-duration: 4s;
}

.hero-section-img .img .hero-img .grad2 {
  height: 60%;
  width: 30%;
  bottom: -40px;
  left: -80px;
  background: radial-gradient(closest-side, #ff00f7, #6a00ff);
  box-shadow: 0 0 50px #ff00f7;
  animation-duration: 5s;
}

.hero-section-img .img .hero-img .grad3 {
  height: 70%;
  width: 30%;
  bottom: 40px;
  right: -120px;
  background: radial-gradient(closest-side, #00c3ff, #1e00ff);
  box-shadow: 0 0 50px #00c3ff;
  animation-duration: 6s;
}

.hero-section-img .img .hero-img .grad4 {
  height: 60%;
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, cyan, rgb(172, 63, 255));
  box-shadow: 0 0 40px #00fff0;
  animation-duration: 3s;
}

@keyframes moveGrad {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(20px, -15px) scale(1.05) rotate(15deg);
  }

  50% {
    transform: translate(-20px, 15px) scale(0.95) rotate(-10deg);
  }

  75% {
    transform: translate(15px, -10px) scale(1.03) rotate(5deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

.hero-section-img .img .hero-img .over {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  backdrop-filter: blur(50px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Geist", sans-serif;
  user-select: none;
  font-size: 8vw;
}
.hero-section-img .img .hero-img img.img2 {
  display: none;
}

.hero-section-img .img .hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/*************** features *****************/
section.features {
  padding: 20px 0;
  background: var(--base-clr);
  color: var(--text-clr);
}

.features .features-title {
  text-align: center;
  font-size: 8vw;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 100px 0;
  font-family: "Noto Serif Display";
  font-weight: 200;
}

.features .features-items {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.features .features-items .features-item {
  display: flex;
  gap: 40px;
}

.features .features-items .features-item:nth-child(even) {
  flex-direction: row-reverse;
}

.features .features-items .features-item .item-text {
  padding: 40px;
  width: 50%;
}

.features .features-items .features-item .item-text .item-title {
  font-size: 4.8rem;
  font-weight: 200;
}

.features .features-items .features-item .item-text .item-desc {
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: 200;
  color: var(--secondary-text-clr);
}

.features .features-items .features-item .item-image {
  height: 90vh;
  width: 50%;
}

.features .features-items .features-item .reveal-inner,
.features .features-items .features-item .reveal-bl {
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.features .features-items .features-item .reveal-inner {
  background: var(--secondary-text-clr);
}

.features .features-items .features-item .reveal-bl {
  overflow: hidden;
}

.features .features-items .features-item .reveal-bl .image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.features .features-items .features-item .reveal-bl .image.img2 {
  display: none;
}

/*************** About *****************/

section.about {
  padding: 40px 0;
}

.about .container {
  overflow: hidden;
}

.about .container .slide {
  position: relative;
  display: flex;
  white-space: nowrap;
  gap: 2rem;
  margin-bottom: 5rem;
}

.about .container .phrase {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 7.5vw;
  white-space: nowrap;
  font-family: "Noto Serif Display";
  font-weight: 200;
}

.about .container .phrase img {
  width: auto;
  height: 7.5vw;
  border-radius: 100px;
  object-fit: cover;
}

.about .container .slide[data-left="-40%"] {
  left: -40%;
}

.about .container .slide[data-left="-25%"] {
  left: -25%;
}

.about .container .slide[data-left="-75%"] {
  left: -75%;
}

.about .container .relative {
  position: relative;
}

.textContainer {
  padding: 20px 60px;
}

.textContainer #paragraph {
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: var(--secondary-text-clr);
  margin-top: 2rem;
  text-align: left;
}

.textContainer .about {
  font-size: 8vw;
  font-family: "Noto Serif Display";
  font-weight: 300;
  margin-bottom: 100px;
}

.blur {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  margin-bottom: 0.5em;
}

.about {
  font-size: 5rem;
  font-weight: 300;
  text-align: center;
}

/*************** gallary *****************/

.gallery {
  height: 175vh;
  background: #111;
  position: relative;
  display: flex;
  gap: 2vw;
  padding: 2vw;
  box-sizing: border-box;
  overflow: hidden;
}

.column {
  position: relative;
  height: 100%;
  width: 25%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.imageContainer {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
}

.imageContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Match SCSS offsets */
.column:nth-of-type(1) {
  top: -45%;
}

.column:nth-of-type(2) {
  top: -95%;
}

.column:nth-of-type(3) {
  top: -45%;
}

.column:nth-of-type(4) {
  top: -75%;
}

/*************** features *****************/

section.faq {
  padding: 20px 30px;
  padding-top: 100px;
}

.faq .faq-title {
  font-size: 8vw;
  text-align: center;
  font-family: "Noto Serif Display";
  font-weight: 200;
}

.faq-accordians {
  max-width: 1400px;
  margin: 40px auto;
  overflow: hidden;
  background: var(--base-clr);
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--line-clr);
  /* border-bottom: 1px solid var(--text-clr); */
}

.accordion-header {
  padding: 40px;
  cursor: pointer;
  background: var(--base-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 2px;
}

.accordion-header:hover {
  background: var(--hover-clr);
}

.accordion-header .icon {
  /* font-size: 1.5rem; */
  transition: transform 0.3s;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  padding: 0 40px;
  font-size: 3rem;
  background: var(--base-clr);
  font-weight: 200;
  color: var(--secondary-text-clr);
}

.accordion-content p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.5;
}

/*************** Pricing *****************/

section.pricing {
  padding: 20px 30px;
}

.pricing .pricing-title {
  font-size: 8vw;
  text-align: center;
  font-family: "Noto Serif Display";
  font-weight: 200;
}

.pricing .pricing-items {
  margin-top: 100px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.pricing .pricing-items .pricing-1,
.pricing .pricing-items .pricing-2 {
  width: 50%;
  display: flex;
  gap: 20px;
}

.pricing .pricing-items .pricing-item {
  height: 100%;
  width: 50%;
  border: 1px solid var(--line-clr);
  border-radius: 2rem;
  background: var(--base-clr);
  min-width: 200px;
  padding: 30px;
}

.pricing .pricing-items .pricing-item .head {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-clr);
  width: 100%;
}

.pricing .pricing-items .pricing-item .head .price {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing .pricing-items .pricing-item .head .name {
  font-size: 1.5rem;
  font-weight: 500;
  width: 100%;
}

.pricing .pricing-items .pricing-item .head .desc {
  font-size: 1.3rem;
  color: var(--secondary-text-clr);
  font-weight: 300;
}

.pricing .pricing-items .pricing-item .body {
  padding: 20px 0;
  min-height: 300px;
}

.pricing .pricing-items .pricing-item .body .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pricing .pricing-items .pricing-item .body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  gap: .5rem;
  font-weight: 300;
  color: var(--secondary-text-clr);
}

.pricing .pricing-items .pricing-item .plan {
  width: 100%;
  position: relative;
  height: 45px;
  border: none;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  background: var(--text-clr);
  color: var(--base-clr);
  cursor: pointer;
}

.pricing .pricing-items .pricing-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 50%;
  border: 1px solid var(--line-clr);
  border-radius: 2rem;
  background: var(--base-clr);
  min-width: 200px;
  padding: 30px;
}

.pricing .pricing-items .pricing-item .plan {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  background: var(--text-clr);
  color: var(--base-clr);
  cursor: pointer;
  margin-top: auto;
  transition: 150ms ease;
}
.pricing .pricing-items .pricing-item .plan:hover{
  background: #222;
}

/*************** Footer *****************/

footer.footer {
  margin-top: 50px;
  /* height: 85vh; */
  position: relative;
  padding: 40px 60px 0px;
  overflow: hidden;
  background: var(--text-clr);
}

.footer .footer-items {
  border-bottom: 1px solid var(--line-clr);
  height: auto;
  width: 100%;
  display: flex;
}

.footer .footer-items .footer-item,
.footer .footer-items .contact-form {
  height: 100%;
  width: 50%;
}

.footer .footer-items .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-items .footer-item .logo,
.footer .footer-items .footer-item .footer-links {
  width: 100%;
  height: 100px;
}

.footer .footer-items .footer-item .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item .logo .logo-img {
  display: inline-block;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  overflow: hidden;
}

.footer-item .logo .logo-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.footer-item .logo .logo-name {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--base-clr);
}

.footer .footer-items .footer-item .footer-links {
  height: auto;
  flex-grow: 1;
  display: flex;
}

.footer-item .footer-links .quick-links,
.footer-item .footer-links .contact-links {
  height: 100%;
  width: 50%;
  padding: 20px;
}

.footer-item .footer-links .quick-links p,
.footer-item .footer-links .contact-links p {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--base-clr);
}

.footer-item .footer-links .quick-links .links,
.footer-item .footer-links .contact-links .links {
  list-style-type: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-links .links li a,
.contact-links .links li a {
  font-size: 1.7rem;
  font-family: "Geist";
  text-decoration: none;
  font-weight: 350;
  letter-spacing: 1px;
  color: var(--line-clr);
  transition: 200ms ease;
}

.quick-links .links li a:hover,
.contact-links .links li a:hover {
  color: var(--base-clr);
}

.footer-items .contact-form {
  padding: 20px 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-items .contact-form .contact {
  min-width: 300px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-items .contact-form .contact p {
  color: var(--base-clr);
}

.footer-items .contact-form .contact {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.footer-items .contact-form .contact input,
.footer-items .contact-form .contact textarea {
  font-family: "Geist";
  border: none;
  border-bottom: 1px solid var(--line-clr);
  outline: none;
  height: 50px;
  font-size: 1.4rem;
  color: var(--base-clr);
  font-weight: 300;
  letter-spacing: 2px;
  transition: border 200ms ease-in-out;
  padding: 15px;
  width: 100%;
  background: transparent;
}

.footer-items .contact-form .contact input:hover,
.footer-items .contact-form .contact textarea:hover {
  border-color: var(--hover-clr);
}

.footer-items .contact-form .contact input:focus,
.footer-items .contact-form .contact textarea:focus {
  border-color: var(--base-clr);
}

.footer-items .contact-form .contact textarea {
  height: 200px;
  resize: none;
}

.footer-items .contact-form .contact button {
  margin-top: .5rem;
  font-size: 1.5rem;
  font-family: "Geist";
  font-weight: 300;
  letter-spacing: 2px;
  width: 200px;
  padding: 8px 16px;
  border: none;
  outline: none;
  background: var(--base-clr);
  color: var(--text-clr);
  cursor: pointer;
  transition: background 100ms ease-in-out;
}

.footer-items .contact-form .contact button:hover {
  background: var(--hover-clr);
}

.footer .footer-copyright {
  height: 115px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .footer-copyright .copyright {
  font-size: 2rem;
  font-weight: 250;
  color: var(--base-clr);
  letter-spacing: 2px;
}

.footer .footer-copyright .links {
  display: flex;
  gap: 1.5rem;
}

.footer .footer-copyright .links a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 250;
  letter-spacing: 2px;
  color: var(--base-clr);
}

.particle-section {
  position: relative;
  overflow: hidden;
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;

}

.particle-section>*:not(canvas) {
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .navbar .nav-buttons .signup-btn.signup {
    display: flex;
  }

  .navbar .nav-buttons .signup-btn {
    display: none;
  }

  .navbar .nav-buttons .signup-btn.dash-btn {
    display: flex;
  }

  .pricing .pricing-items {
    flex-direction: column;
  }

  .pricing .pricing-items .pricing-1,
  .pricing .pricing-items .pricing-2 {
    width: 100%;
  }

  .footer .footer-items {
    flex-direction: column;
  }

  .footer .footer-items .footer-item,
  .footer .footer-items .contact-form {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .navbar {
    position: relative;
    justify-content: space-between;
  }

  .navbar .nav-buttons span.separator {
    height: 30px;
    display: inline-block;
    background: var(--line-clr);
    width: 1px;
  }

  .navbar .menu-icon {
    display: flex;
  }

  .navbar .menu-icon svg {
    fill: var(--text-clr);
  }

  .navbar .menu-icon:hover {
    background: var(--hover-clr);
  }

  .navbar .nav-items {
    position: absolute;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    /* height: 300px; */
    padding: 20px;
    gap: 10px;
    width: 250px;
    top: 70px;
    right: 0px;
    flex-direction: column;
    background: var(--base-clr);
    display: none;
  }

  .navbar .nav-items li.nav-item a {
    min-width: 100%;
    display: inline-block;
    font-size: 1.35rem;
  }

  .navbar .nav-items {
    opacity: 0;
    transform: translateY(20px);
    /* start slightly lower */
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    /* hidden by default */
  }

  .navbar .nav-items.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    /* slide up */
  }

  .navbar .nav-items.closing {
    opacity: 0;
    transform: translateY(-20px);
    /* slide down when closing */
  }

  .hero-section .title {
    font-size: 17vw;
  }

  .features .features-title {
    font-size: 8.5vw !important;
    margin: 70px 0 !important;
  }

  .features .features-items .features-item {
    flex-direction: column-reverse;
  }

  .features .features-items .features-item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .features .features-items .features-item .item-text {
    width: 100%;
  }

  .features .features-items .features-item .item-image {
    width: 100%;
  }

  .textContainer .about,
  .faq .faq-title,
  .pricing .pricing-title {
    font-size: 11vw;
  }

  .textContainer {
    padding: 20px 40px;
  }

  .textContainer #paragraph {
    font-size: 3.8rem;
  }

  .accordion-header {
    font-size: 3.3rem;
  }

  .accordion-content {
    font-size: 2rem;
  }

  .footer .footer-copyright {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .hero-section .slogan {
    font-size: 15vw;
  }

  .hero-section .slogan .line-mask1 p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .features .features-title {
    margin: 50px 0 !important;
  }

  .features .features-items .features-item .item-text .item-title {
    font-size: 4.2rem;
  }

  .features .features-items .features-item .item-text .item-desc {
    font-size: 1.7rem;
  }

  .textContainer .about,
  .faq .faq-title,
  .pricing .pricing-title {
    font-size: 13vw;
  }

  .textContainer #paragraph {
    font-size: 3rem;
  }

  .accordion-header {
    font-size: 2.3rem;
  }

  .accordion-content {
    font-size: 1.5rem;
  }

  .pricing .pricing-items .pricing-1,
  .pricing .pricing-items .pricing-2 {
    width: 100%;
    flex-direction: column;
  }

  .pricing .pricing-items .pricing-item {
    width: 100%;
  }

  .footer .footer-items .footer-item .footer-links {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer .footer-copyright .copyright {
    font-size: 1.5rem;
  }

  .footer .footer-copyright .links a {
    font-size: 1.4rem;
  }
  
}

@media (max-width: 600px) {

  .navbar .nav-buttons .login-btn {
    display: none;
  }

  .hero-section .title {
    font-size: 16vw;
  }

  .hero-section .slogan {
    font-size: 17vw;
    line-height: 1.8;
  }

  .hero-section-img .img .hero-img {
    height: 100vh;
  }

  .hero-section-img .img .hero-img img {
    display: none;
  }

  .hero-section-img .img .hero-img img.img2 {
    display: block;
  }

  .features .features-title {
    margin: 50px 0 !important;
    font-weight: 250;
    font-size: 12vw !important;
  }

  .features .features-title .line-mask p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .features .features-items .features-item .reveal-bl .image.img2 {
    display: block;
  }

  .features .features-items .features-item .reveal-bl .image {
    display: none;
  }

  .features .features-items .features-item .item-text .item-title {
    font-size: 8vw;
    font-weight: 350;
    word-wrap: wrap;
  }

  .features .features-items .features-item .item-text .item-desc {
    font-size: 1.4rem;
  }

  .about .container .phrase {
    font-size: 8vw;
    font-weight: 500;
  }

  .textContainer .about,
  .faq .faq-title,
  .pricing .pricing-title {
    font-size: 15vw;
  }

  .textContainer {
    padding: 20px 30px;
  }

  .textContainer #paragraph {
    font-size: 2.3rem;
    font-weight: 600;
  }

  .gallery {
    display: none;
  }

  section.faq {
    padding-top: 0px;
  }

  .accordion-header {
    font-size: 2rem;
    padding: 30px;
  }

  .accordion-content {
    padding: 0 20px;
    font-size: 1.5rem;
  }

  footer.footer {
    padding: 60px 25px;
    padding-bottom: 0;
  }

  .footer-item .footer-links .quick-links,
  .footer-item .footer-links .contact-links {
    width: 100%;
  }

  .footer .footer-copyright {
    padding: 20px 0;
    height: 90px;
  }

  .footer .footer-copyright .copyright {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .footer .footer-copyright .links a {
    font-size: .9rem;
  }

  .quick-links .links li a,
  .contact-links .links li a {
    font-size: 1.3rem;
  }
  .navbar .nav-buttons .signup-btn.dash-btn {
    display: flex;
    font-size: 1rem;
  }
}

@media (max-width: 405px) {
  .navbar .logo .logo-name {
    font-size: 1.5rem;
  }

  .navbar .logo .logo-img {
    height: 30px;
    width: 30px;
  }
  .navbar .nav-buttons .signup-btn.dash-btn {
    display: flex;
    font-size: 1rem;
    padding: 8px;
  }
}

@media (max-width: 390px) {
  .navbar .nav-buttons .login-btn {
    display: block;
    padding: 7px 10px;
  }
  .navbar .nav-buttons .signup-btn.dash-btn{
    font-size: .8rem;
  }
  .navbar .nav-buttons .signup-btn.signup {
    display: none;
  }

  .accordion-header {
    font-size: 1.7rem;
  }

  .accordion-content {
    font-size: 1.2rem;
  }
}