* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #99d5bb;
  --primary-light-color: #99d5bbb6;
}

::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* ------ General ------ */
section {
  padding: 60px;
}

.gradient-text {
  background: linear-gradient(90deg, #fcfed7, #99d4b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-family: 'BigNoodleTitling-Normal';
  font-size: 160px;
  margin: 0;
}

.section-divider {
  width: 100%;
  /* height: 10px; */
  display: block;
  background: url('../img/divider-line.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .section-title {
    font-size: 140px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 120px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 40px;
  }

  .section-title {
    font-size: 100px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 20px;
  }

  .section-title {
    font-size: 80px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  section {
    padding: 20px;
  }

  .section-title {
    font-size: 60px;
  }
}

/* ------ Header ------ */
header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header.scrolled {
  transition: all 0.3s ease-in-out;
  background: #000000ce;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.756);
}

header.scrolled .header-logo img {
  width: 180px;
}

header .header-logo {
  width: 40%;
  z-index: 100;
}

header .header-logo img {
  width: 250px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

header .header-nav {
  width: calc(100% - 40%);
  height: 100%;
}

header .header-nav nav {
  width: 100%;
  height: 100%;
}

header .header-nav nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  padding: 0;
}

header .header-nav nav ul li {
  padding: 10px 30px;
}

header .header-nav nav ul li a {
  text-decoration: none;
  color: #c0c0c0;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'BigNoodleTitling-Normal';
}

header .header-nav nav ul li a:hover,
header .header-nav nav ul li a.active {
  color: var(--primary-color);
}

/* ------ Hamburger Menu ------ */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99;
  padding-top: 80px;
  text-align: center;
}

.mobile-nav ul {
  list-style-type: none;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  font-family: 'BigNoodleTitling-Normal';
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  header.scrolled {
    backdrop-filter: unset;
  }

  .header-nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-nav.active {
    display: block;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  header .header-nav nav ul li a {
    font-size: 26px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  header .header-nav nav ul li a {
    font-size: 24px;
  }

  header .header-logo img {
    width: 220px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  header .header-nav nav ul li a {
    font-size: 22px;
  }

  header .header-logo img {
    width: 200px;
  }

  header .header-nav nav ul li {
    padding: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  header .header-nav nav ul li a {
    font-size: 22px;
  }

  header .header-logo {
    width: 20%;
  }

  header .header-logo img {
    width: 180px;
  }

  header .header-nav nav ul {
    gap: 20px;
  }

  header .header-nav nav ul li {
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  header .header-logo img {
    width: 180px;
  }

  header .header-nav nav ul li a {
    font-size: 20px;
  }
}

/* ------ Hero Section ------ */
.hero-section {
  color: #fff;
  width: 100%;
  height: 100vh;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: clip;
}

.hero-section .top-gradient {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.922) 25%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.hero-section .bottom-gradient {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.73) 25%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.hero-section .dark-bg {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: -1;
}

.hero-section .hero-content {
  padding: 100px;
  height: 100%;
  text-align: center;
  position: relative;
}

.hero-section .hero-content .inner-content {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 65%;
  background: url('../img/hero-section-before.png');
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 0;
  /* transform: rotate(305deg) rotateX(180deg); */
}

.hero-section .hero-content .left-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section .hero-content .left-content img {
  width: 100%;
  height: auto;
  transform: scale(1.4);
  object-fit: contain;
}

.hero-section .hero-content .left-content img.char-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transform: scale(1.5);
  object-fit: contain;
  filter: saturate(100%) contrast(1) brightness(1);
}

.hero-section .hero-content img.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(-120px);
  filter: saturate(100%) contrast(1) brightness(1) hue-rotate(350deg);
}

.hero-section .hero-content .right-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.hero-section .hero-content .right-content h1,
.hero-section .hero-content .right-content h2,
.hero-section .right-content .hero-content-text {
  text-align: end;
}

.hero-section .right-content h1 {
  font-family: 'BigNoodleTitling-Normal';
  font-size: 250px;
  line-height: 0.8;
}

.hero-section .right-content h2 {
  font-family: 'BigNoodleTitling-Normal';
  font-size: 140px;
  color: rgba(255, 255, 255, 0.634);
  line-height: 0.7;
}

.hero-section .right-content .hero-content-text {
  width: calc(100% - 15%);
  text-align: left;
  padding: 0 10px;
  margin-top: 20px;
}

.hero-section .right-content .hero-content-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #8a8067;
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-section .right-content .hero-content-text p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content .left-content img {
    transform: scale(1.3);
  }

  .hero-section .hero-content .left-content img.char-img {
    transform: scale(1.5);
  }

  .hero-section .hero-content img.hero-logo {
    width: calc(100% - 30px);
  }

  .hero-section .hero-content .right-content h1 {
    font-size: 200px;
  }

  .hero-section .hero-content .right-content h2 {
    font-size: 120px;
  }

  .hero-section .hero-content .right-content .hero-content-text {
    width: 100%;
  }

  .hero-section .right-content .hero-content-text p {
    font-size: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section {
    height: 95vh;
  }

  .hero-section::before {
    height: 65%;
  }

  .hero-section .hero-content {
    padding: 30px 50px;
  }

  .hero-section .hero-content .right-content h1 {
    font-size: 180px;
  }

  .hero-section .hero-content .right-content h2 {
    font-size: 120px;
  }

  .hero-section .hero-content .right-content .hero-content-text {
    width: 100%;
    padding: 0;
  }

  .hero-section .hero-content .right-content .hero-content-text p {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    height: 80vh;
  }

  .hero-section::before {
    height: 75%;
  }

  .hero-section .hero-content {
    padding: 0;
  }

  .hero-section .hero-content .left-content img.char-img {
    transform: scale(1.4);
  }

  .hero-section .hero-content img.hero-logo {
    width: calc(100% - 100px);
  }

  .hero-section .hero-content .right-content h1 {
    font-size: 150px;
  }

  .hero-section .hero-content .right-content h2 {
    font-size: 100px;
  }

  .hero-section .hero-content .right-content .hero-content-text {
    width: 100%;
    padding: 0;
  }

  .hero-section .hero-content .right-content .hero-content-text p {
    font-size: 15px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    height: 100vh;
  }

  .hero-section .hero-content {
    padding: 0;
  }

  .hero-section .hero-content .inner-content {
    flex-direction: column;
  }

  .hero-section .hero-content .left-content {
    max-width: 280px;
  }

  .hero-section .hero-content .right-content {
    align-items: baseline;
    justify-content: flex-start;
  }

  .hero-section .hero-content .right-content h1 {
    font-size: 100px;
  }

  .hero-section .hero-content .right-content h2 {
    font-size: 60px;
  }

  .hero-section .hero-content .right-content .hero-content-text {
    width: 100%;
    padding: 0;
  }

  .hero-section .hero-content .right-content .hero-content-text p {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-section::before {
    content: none;
  }

  .hero-section .hero-content {
    padding: 0;
  }

  .hero-section .hero-content .inner-content {
    flex-direction: column;
  }

  .hero-section .hero-content .left-content img.char-img {
    max-width: 200px;
  }

  .hero-section .hero-content img.hero-logo {
    width: calc(100% - 10px);
    line-height: 0;
    margin-bottom: -100px;
  }

  .hero-section .hero-content .right-content {
    align-items: baseline;
    justify-content: flex-start;
  }

  .hero-section .hero-content .right-content h1 {
    font-size: 100px;
  }

  .hero-section .hero-content .right-content h2 {
    font-size: 60px;
  }

  .hero-section .hero-content .right-content .hero-content-text {
    width: 100%;
    padding: 0;
  }

  .hero-section .hero-content .right-content .hero-content-text p {
    font-size: 13px;
  }
}
/* ------ About and Features Section ------ */

.about-and-features {
  background: url('../img/about-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: clip;
}

.about-and-features .dark-bg {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: -1;
}

/* ------ About Section ------ */
.about-section{
    min-height: calc(100vh - 100px);
    padding-top: 100px;
}

.about-section:before {
  content: '';
  position: absolute;
  top: 260px;
  left: 0;
  max-width: 1000px;
  width: 100%;
  height: 100px;
  background: url('../img/section-title-asset.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-section .inner-content {
  width: 100%;
  height: 100%;
  padding: 50px 10px;
  position: relative;
  top: 0;
  left: 0;
}

.about-section .inner-content::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 100%;
  transform: scale(1.3);
  background: url('../img/parasute.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.about-section .inner-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #e5e6e6b5;
  text-align: justify;
}

.about-section .inner-content p span{
    color: var(--primary-color);
}

.about-section .inner-content p:last-child {
  margin-top: 50px;
}

.about-section .inner-content ul li {
  font-size: 18px;
  line-height: 1.5;
  color: #e5e6e6b5;
  text-align: justify;
  margin-bottom: 5px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-section:before {
    max-width: 750px;
    width: 100%;
    height: 80px;
    top: 255px;
    left: -30px;
  }

  .about-section .inner-content {
    padding: 30px 10px;
  }

  .about-section .inner-content::after {
    width: 420px;
    height: 420px;
    right: -50px;
    top: -250px;
    margin-right: 50px;
  }

  .about-section .inner-content p {
    font-size: 18px;
  }

  .about-section .inner-content p:last-child {
    margin-top: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-section:before {
    max-width: 600px;
    width: 100%;
    height: 80px;
    top: 240px;
    left: -30px;
  }

  .about-section .inner-content {
    padding: 20px 10px;
  }

  .about-section .inner-content::after {
    width: 380px;
    height: 380px;
    right: -30px;
    top: -220px;
    margin-right: 30px;
  }

  .about-section .inner-content p {
    font-size: 16px;
  }

  .about-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about-section:before {
    max-width: 500px;
    width: 100%;
    height: 80px;
    top: 205px;
    left: -30px;
  }

  .about-section .inner-content {
    padding: 20px 0;
  }

  .about-section .inner-content::after {
    width: 300px;
    height: 300px;
    right: -30px;
    top: -150px;
    margin-right: 30px;
  }

  .about-section .inner-content p {
    font-size: 14px;
  }

  .about-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .about-section:before {
    max-width: 408px;
    width: 100%;
    height: 80px;
    top: 170px;
    left: -50px;
  }

  .about-section .inner-content {
    padding: 20px 0;
  }

  .about-section .inner-content::after {
    width: 250px;
    height: 250px;
    right: -30px;
    top: -150px;
    margin-right: 20px;
  }

  .about-section .inner-content p {
    font-size: 13px;
  }

  .about-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .about-section:before {
    max-width: 256px;
    width: 100%;
    height: 60px;
    top: 160px;
    left: -50px;
  }

  .about-section .inner-content {
    padding: 20px 0;
  }

  .about-section .inner-content::after {
    width: 120px;
    height: 120px;
    right: -30px;
    top: -100px;
    margin-right: 30px;
  }

  .about-section .inner-content p {
    font-size: 12px;
  }

  .about-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

/* ------ Features Section ------ */
.features-section{
    padding-top: 100px;
}

.features-section h2 {
  font-size: 100px;
  font-family: 'BigNoodleTitling-Normal';
  z-index: 1;
}

.features-section .features-slider {
  margin-top: 50px;
}

.features-slider .feature-card {
  position: relative;
}

.features-slider .feature-card h3 {
  font-size: 100px;
  line-height: 1;
  font-family: 'BigNoodleTitling-Normal';
  color: var(--primary-light-color);
  position: absolute;
  bottom: 45px;
  right: 45px;
}

.features-slider .feature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .features-section h2 {
    font-size: 80px;
  }

  .features-section .features-slider {
    margin-top: 30px;
  }

  .features-slider .feature-card h3 {
    font-size: 80px;
    bottom: 50px;
  }

  .features-slider .feature-card img {
    transform: scale(1);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .features-section h2 {
    font-size: 60px;
  }

  .features-section .features-slider {
    margin-top: 50px;
  }

  .features-slider .feature-card h3 {
    font-size: 60px;
    bottom: 35px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .features-section h2 {
    font-size: 50px;
  }

  .features-section .features-slider {
    margin-top: 30px;
  }

  .features-slider .feature-card h3 {
    font-size: 40px;
    bottom: 25px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .features-section h2 {
    font-size: 50px;
  }

  .features-section .features-slider {
    margin-top: 30px;
  }

  .features-slider .feature-card h3 {
    font-size: 30px;
    bottom: 15px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .features-section h2 {
    font-size: 40px;
  }

  .features-section .features-slider {
    margin-top: 30px;
  }

  .features-slider .feature-card img {
    width: calc(100% - 20px);
  }

  .features-slider .feature-card h3 {
    font-size: 25px;
    bottom: 15px;
  }
}

/* ------ Features Section ------ */
.features-page-section {
  background: url('../img/about-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: clip;
}

.features-page-section .dark-bg {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: -1;
}

.features-page-section .features-section{
    min-height: calc(100vh - 100px);
    padding-top: 100px;
}
.features-page-section .features-section:before {
  content: '';
  position: absolute;
  top: 260px;
  left: 0;
  max-width: 1000px;
  width: 100%;
  height: 100px;
  background: url('../img/section-title-asset.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.features-page-section .features-section .inner-content {
  width: 100%;
  height: 100%;
  padding: 50px 10px;
  position: relative;
  top: 0;
  left: 0;
}

.features-page-section .features-section .inner-content::after {
  content: '';
  position: absolute;
  top: -500px;
  right: 0px;
  max-width: 500px;
  width: 100%;
  height: 100%;
  background: url('../img/dron.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.features-page-section .features-section .inner-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #e5e6e6b5;
  text-align: justify;
}

.features-page-section .features-section .inner-content p.key-title {
    color: var(--primary-color);
    margin: 0px !important;
}

.features-page-section .features-section .inner-content p span{
    color: var(--primary-color);
}

.features-page-section .features-section .inner-content hr {
    width: 100%;
    height: 2px;
    border: none;
    border-top: 1px solid #e5e6e6b5;
    opacity: 0.5;
    margin: 20px 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .features-page-section .features-section:before {
    max-width: 750px;
    width: 100%;
    height: 80px;
    top: 255px;
    left: -30px;
  }

  .features-page-section .features-section .inner-content {
    padding: 30px 10px;
  }

  .features-page-section .features-section .inner-content::after {
    width: 420px;
    height: 420px;
    right: -50px;
    top: -250px;
    margin-right: 50px;
  }

  .features-page-section .features-section .inner-content p {
    font-size: 18px;
  }

  .features-page-section .features-section .inner-content p:last-child {
    margin-top: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .features-page-section .features-section:before {
    max-width: 600px;
    width: 100%;
    height: 80px;
    top: 240px;
    left: -30px;
  }

  .features-page-section .features-section .inner-content {
    padding: 20px 10px;
  }

  .features-page-section .features-section .inner-content::after {
    width: 380px;
    height: 380px;
    right: -30px;
    top: -220px;
    margin-right: 30px;
  }

  .features-page-section .features-section .inner-content p {
    font-size: 16px;
  }

  .features-page-section .features-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .features-page-section .features-section:before {
    max-width: 500px;
    width: 100%;
    height: 80px;
    top: 205px;
    left: -30px;
  }

  .features-page-section .features-section .inner-content {
    padding: 20px 0;
  }

  .features-page-section .features-section .inner-content::after {
    width: 300px;
    height: 300px;
    right: -30px;
    top: -150px;
    margin-right: 30px;
  }

  .features-page-section .features-section .inner-content p {
    font-size: 14px;
  }

  .features-page-section .features-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .features-page-section .features-section:before {
    max-width: 408px;
    width: 100%;
    height: 80px;
    top: 170px;
    left: -50px;
  }

  .features-page-section .features-section .inner-content {
    padding: 20px 0;
  }

  .features-page-section .features-section .inner-content::after {
    width: 250px;
    height: 250px;
    right: -30px;
    top: -150px;
    margin-right: 20px;
  }

  .features-page-section .features-section .inner-content p {
    font-size: 13px;
  }

  .features-page-section .features-section .inner-content p:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .features-page-section .features-section:before {
    max-width: 256px;
    width: 100%;
    height: 60px;
    top: 160px;
    left: -50px;
  }

  .features-page-section .features-section .inner-content {
    padding: 20px 0;
  }

  .features-page-section .features-section .inner-content::after {
    width: 120px;
    height: 120px;
    right: -30px;
    top: -100px;
    margin-right: 30px;
  }

  .features-page-section .features-section .inner-content p {
    font-size: 12px;
  }

  .features-page-section .features-section .inner-content p:last-child {
    margin-top: 20px;
  }
}


/* ------ Contact Section ------ */

.contact-section {
  width: 100%;
  background: url('../img/contact-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100dvh;
  padding-top: 100px;
}

.contact-section .dark-bg {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: -1;
}

.contact-section h1 {
  text-align: center;
  font-size: 80px;
  font-family: 'BigNoodleTitling-Normal';
}

.contact-section .contact-form input {
  border-radius: 0;
  background: #000804;
  border-color: transparent;
  padding: 15px 20px;
  font-family: 'BigNoodleTitling-Normal';
  font-size: 25px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-section .contact-form textarea {
  border-radius: 0;
  background: #000804;
  border-color: transparent;
  padding: 15px 20px;
  font-family: 'BigNoodleTitling-Normal';
  font-size: 25px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 20px;
  resize: none;
}

.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: #496b5c;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  background: #000804;
  border-color: transparent;
  box-shadow: none;
}

.contact-section .contact-form button {
  border-radius: 0;
  background: url('../img/button-bg.png');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'BigNoodleTitling-Normal';
  font-size: 35px;
  color: #0c140f;
  border: 1px solid transparent;
  width: 30%;
  height: 100%;
  padding: 8px 20px;
}

.contact-section .contact-form button:hover {
  opacity: 0.8;
}

.contact-section .alert {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-section h1 {
    font-size: 60px;
  }

  .contact-section .contact-form input {
    font-size: 20px;
  }

  .contact-section .contact-form textarea {
    font-size: 20px;
  }

  .contact-section .contact-form button {
    font-size: 28px;
    width: 28%;
    padding: 10px 20px;
  }

  .contact-section .alert {
    top: 10px;
    right: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-section h1 {
    font-size: 50px;
  }

  .contact-section .contact-form input {
    font-size: 18px;
  }

  .contact-section .contact-form textarea {
    font-size: 18px;
  }

  .contact-section .contact-form button {
    font-size: 25px;
    width: 25%;
    padding: 15px 20px;
  }

  .contact-section .alert {
    top: 10px;
    right: 10px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact-section h1 {
    font-size: 50px;
  }

  .contact-section .contact-form input {
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .contact-section .contact-form textarea {
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .contact-section .contact-form button {
    font-size: 25px;
    width: 25%;
    padding: 15px 20px;
  }

  .contact-section .alert {
    top: 10px;
    right: 10px;
    font-size: 15px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .contact-section h1 {
    font-size: 40px;
  }

  .contact-section .contact-form input {
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .contact-section .contact-form textarea {
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .contact-section .contact-form button {
    font-size: 20px;
    width: 25%;
    padding: 10px 15px;
  }

  .contact-section .alert {
    top: 10px;
    right: 10px;
    font-size: 12px;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .contact-section h1 {
    font-size: 35px;
  }

  .contact-section .contact-form input {
    font-size: 14px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .contact-section .contact-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .contact-section .contact-form button {
    font-size: 18px;
    width: 25%;
    padding: 10px 15px;
  }

  .contact-section .alert {
    top: 10px;
    right: 10px;
    font-size: 12px;
  }
}

/* ------ Footer Section ------ */
.footer {
  width: 100%;
  background: #010703;
  color: #fff;
  padding: 20px 0;
}

.footer .footer-content p {
  font-size: 24px;
  font-family: 'BigNoodleTitling-Normal';
  color: #fff;
}

.footer .footer-content .footer-link a {
  text-align: right;
  font-size: 24px;
  font-family: 'BigNoodleTitling-Normal';
  color: #fff;
  text-decoration: none;
  text-align: right;
  display: block;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .footer .footer-content p,
    .footer .footer-content .footer-link a {
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer .footer-content p,
    .footer .footer-content .footer-link a {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .footer-content p,
    .footer .footer-content .footer-link a {
        font-size: 16px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .footer .footer-content p,
    .footer .footer-content .footer-link a {
        font-size: 14px;
    }
}

@media (min-width: 320px) and (max-width: 575px) {
    .footer .footer-content p,
    .footer .footer-content .footer-link a {
        font-size: 12px;
    }

    .footer .footer-content .footer-link a {
        text-align: left;
    }
}

.privacy-sec{
    background-color: black;
    min-height: 100dvh;
    padding-top: 100px;
    font-family: 'BigNoodleTitling-Normal';
    line-height: 1.2;
}

.privacy-sec .privacy-title{
    margin-bottom: 20px;
    text-align: center;
    font-size: clamp(40px, 4vw, 80px);
}

.privacy-sec p{
    font-size: 20px;
    color: #ffffffb5;
    margin-bottom: 10px;
}

.privacy-sec p span.bold{
    color: var(--primary-color);
}

.privacy-sec .info-title{
    font-size: 30px;
    margin: 30px 0 30px;
    color: var(--primary-color);
}

.privacy-sec ul li{
    font-size: 20px;
    line-height: 1.2;
    color: #ffffffb5;
    margin-bottom: 10px;
}

.privacy-sec ul li ul{
    margin-top: 10px;
}

.privacy-sec a{
    color: var(--primary-color);
    text-decoration: underline;
}