/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

@font-face {
  font-family: 'FiraGoReg';
  src: url('/assets/fonts/FiraGO-Regular.otf') format('truetype');
}

@font-face {
  font-family: 'FiraGoBold';
  src: url('/assets/fonts/FiraGO-Bold.otf') format('truetype');
}

@font-face {
  font-family: 'HelveticaNeueBlack';
  src: url('/assets/fonts/HelveticaNeueBlack.otf') format('truetype');
}

@font-face {
  font-family: 'HelveticaNeueMedium';
  src: url('/assets/fonts/HelveticaNeueMedium.otf') format('truetype');
}

@font-face {
  font-family: 'HelveticaNeueHeavy';
  src: url('/assets/fonts/HelveticaNeueHeavy.otf') format('truetype');
}

@font-face {
  font-family: 'HelveticaNeueLight';
  src: url('/assets/fonts/HelveticaNeueLight.otf') format('truetype');
}




/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;


  --hue-color: 190;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'FiraGoReg', sans-serif;
  --biggest-font-size: 2.3rem;
  --h1-font-size: 1.25rem;
  --h2-font-size: 1.05rem;
  --h3-font-size: 0.9rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: .3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 2.3rem;
    --h1-font-size: 1.25rem;
    --h2-font-size: 1.15rem;
    --h3-font-size: 0.95rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-second: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme,
.change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 3.5rem 0 2.5rem;
}

.upper-service {
  padding-left: 15%;
  padding-right: 15%;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle {
  color: var(--white-color);
}

.nav__logo {
  font-size: 24px;
  font-weight: var(--font-semi-bold);
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__item a {
  font-family: FiraGoBold !important;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: .4s;
  }

  .language-switcher {
    margin-top: 40px;
  }

  .discover__card-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
  }

  .discover__card {
    width: 96%;
  }

  .upper-service {
    padding-left: 2%;
    padding-right: 2%;
  }

  .footer__info {
    flex-direction: column;
    text-align: center;
  }

  .home__social {
    margin-left: 1px !important;

  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
}

.nav__link:hover {
  color: var(--text-color);
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -.75rem;
  left: 0;
}

/* Language Switcher Styles */
.language-switcher {}

.language-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 80px;
  height: 34px;
  background-color: #f0f0f0;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.language-toggle:hover {
  background-color: #e0e0e0;
}

.language-option {
  flex: 1;
  text-align: center;
  font-weight: 500;
  color: #666;
  z-index: 1;
  transition: color 0.3s ease;
}

.language-option.active {
  color: #fff;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 38px;
  height: 30px;
  background-color: #007bff;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

/* Active State for English */
.language-toggle[data-lang="en"] .toggle-slider {
  transform: translateX(38px);
}

.language-toggle[data-lang="en"] .language-option[data-lang="ka"] {
  color: #666;
}

.language-toggle[data-lang="en"] .language-option[data-lang="en"] {
  color: #fff;
}


/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 83%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
  color: var(--white-color);
}

.home__data {
  background-color: rgb(4 37 44 / 74%);
  padding: 20px;
  animation: fadeLeft 1s forwards ease-in-out;

}

.home__data .button {
  margin-top: 12px;
  border-radius: 100px;

}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  font-family: FiraGoReg;
  margin-bottom: var(--mb-0-75);
}

.home__data-title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1-5);
}

.home__social {
  margin-left: 30px;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.home__social-link {
  font-size: 1.2rem;
  width: max-content;
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 20px;
  bottom: 1rem;
  width: 228px;
  animation: fadeDown 1s forwards ease-in-out;

}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-subtitle {
  font-size: 13px;
  font-family: HelveticaNeueMedium;

}

.home__info-overlay {
  min-width: 60%;
}

.home__info-button {
  font-size: var(--smaller-font-size);
  text-align: center;
  margin-top: 10px;
}

.contact-bold {
  color: #e8f2ff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.home__info-overlay {
  overflow: var(--img-hidden);
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
  animation: fadeRight 1s forwards ease-in-out;

}

.home__info-img:hover {
  transform: var(--img-scale);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: var(--font-semi-bold);
  transition: .3s;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
  padding: 15px;

}

.about__container {
  row-gap: 2.5rem;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.section-hr {
  margin-top: 2%;
  width: 40%;
  margin-left: 30%;
}

.slider-container {
  max-width: 400px;
  max-height: 300px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  animation: fadeLeft 1s forwards ease-in-out;

}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 300px;
  object-fit: cover;
}

.slider-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
}

.slider-buttons button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.slider-buttons button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



#sliderWrapper3 img {
  margin-left: 15px;
  margin-right: 15px;
}

#sliderWrapper2 img {
  margin-left: 25px;
  margin-right: 15px;
}





/*=============== DISCOVER ===============*/
.discover__card {
  position: relative;
  width: 200px;
  overflow: var(--img-hidden);
}


.discover__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 50%;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.discover__card:nth-child(2) {
  animation-delay: 0.3s;
}

/* Image Animation */
.discover__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transform: scale(0.8);
  opacity: 0;
  animation: zoomIn 1s forwards ease-in-out 0.5s;
}


/* Text Animation */
.discover__title {
  font-size: 1.4rem;
  margin: 15px 0 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards ease-in-out 0.8s;
}

.discover__description {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards ease-in-out 1s;
  font-family: HelveticaNeueMedium !important;

}

/* Hover Effect */
.discover__card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
}

.discover__card {
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Active Class - When the Element is Visible */
.discover__card.show {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 51.25%;
}

.video-container iframe {
  padding: 1.5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#youtubeVideo {
  width: 100%;
  /* Default for desktops/laptops */
  height: auto;
  aspect-ratio: 16 / 9;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}




.contact-form {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.subscribe__bg hr {
  height: 1px;
  width: 100%;
  margin-bottom: 30px;
}

.form-upper {
  color: #FFFFFF !important;
}

/* Form Title */
.form-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #FFFFFF
}

/* Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Full-width field */
.full-width {
  grid-column: span 2;
}

/* Form Group */
.form-group {
  position: relative;
}

.section__title_about__title {
  font-size: 13.5px;
}

/* Centering the contact section */
.subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: url('/assets/img/pxfuel.jpg') no-repeat center center/cover;
}

.subscribe__bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  /* background: #272b5b ; */
  /* background: #272b5b  url('/assets/img/pxfuel.jpg') no-repeat center center/cover; */

  animation: fadeIn 1s ease-in-out;
}

.about__data p {
  margin-top: 15px;
  font-size: 16px;
  font-family: FiraGoReg !important;
  margin-bottom: 13px;
}

.about__data h2 {
  font-size: 18px;
  font-family: FiraGoReg !important;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  text-align: center;
  font-family: FiraGoReg;
}

/* Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(1, 2fr) !important;
  gap: 20px;
}

/* Make full-width fields span the grid */
.full-width {
  grid-column: span 2;
}

/* Input Fields */
.form-group {
  position: relative;
  width: 100%;
}

input {
  font-family: FiraGoReg;

  width: 100%;
  padding: 14px 14.2px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  font-size: 14.2px;
  border-radius: 8px;
  outline: none;
  transition: 0.3s ease-in-out;
  color: #ffffff;
  padding-top: 17px;
}

/* Placeholder Styling */
input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Labels */
label {
  font-family: FiraGoReg;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

/* Label Moves Up on Focus */
input:focus+label,
input:not(:placeholder-shown)+label {
  top: 12px;
  font-size: 12px;
  color: #00c6ff;
}

/* Focus Effect */
input:focus {
  border-color: #00c6ff;
}

/* Red border on invalid input */
.form-group input:invalid,
.form-group textarea:invalid {
  border: 2px solid red;
}

textarea {
  padding-top: 17px;
  font-family: FiraGoReg;

  width: 100%;
  height: 100px;
  padding: 19px 11px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  font-size: 14.2px;
  border-radius: 5px;
  outline: none;
  transition: 0.3s ease-in-out;
  resize: none;
  color: #ffffff;

  /* Prevent resizing if not needed */
}

/* Placeholder styling */
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea:focus+label,
textarea:not(:placeholder-shown)+label {
  top: 12px;
  font-size: 12px;
}

/* Error Effect */
input.error,
textarea.error {
  border-color: red;
  animation: shake 0.4s ease-in-out 2;
}

/* Shake Animation */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }
}

/* Submit Button */
.submit-call-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  border: none;
  font-size: 18px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-top: 10px;
}

.submit-call-btn:hover {
  background: linear-gradient(to right, #0072ff, #00c6ff);
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(0, 198, 255, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}







/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__title,
.footer__subtitle {
  font-size: var(--h3-font-size);
}

.footer__title {
  margin-bottom: var(--mb-0-5);
}

.footer__description {
  margin-bottom: var(--mb-2);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
}

.footer__link:hover {
  color: var(--title-color);
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
}

.footer__copy,
.footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}

.footer__terms-link:hover {
  color: var(--text-color);
}

.footer__container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
}

.footer__info p {
  margin: 5px 0;
}

.footer__info a {
  color: #ffcc00;
  text-decoration: none;
}

.footer__info a:hover {
  text-decoration: underline;
}


/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: .5rem;
  display: flex;
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: .4s;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 5rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .60rem;
  background-color: var(--scroll-bar-color);
}

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

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

.discover__card-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px
}

.home__social-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 5px;
  height: 25.3px !important;
  width: 25.3px !important;

}

.ri-facebook-box-fill {
  color: blue !important;
  font-size: 25px;
}

.ri-instagram-fill {
  font-size: 25px;
  background: radial-gradient(circle at 30% 110%,
      #ffdb8b 0%,
      #ee653d 25%,
      #d42e81 50%,
      #a237b6 75%,
      #3e57bc 100%);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}
.header-logo{
  width: 35px;
  height: 35px;

}
.header-logo-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap:10px
}


/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (min-width: 320px) {
  .place__container {
    grid-template-columns: max-content;
    justify-content: center;
  }

  .experience__content {
    padding: 0;
  }

  .experience__overlay:nth-child(1) {
    width: 190px;
  }

  .experience__overlay:nth-child(2) {
    width: 80px;
  }

  .home__info {
    width: 220px;
    padding: 1rem;
  }

  .video-container {
    padding-top: 50% !important;
  }

  .home__data-subtitle {
    font-size: 14.5px !important;
  }

  .experience__img,
  .video__container {
    padding: 0;
  }

  .discover__card-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
  }

  .discover__card {
    width: 96%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    /* One column */
  }

  .form-group {
    grid-column: span 1;
    /* Make all fields full width */
  }

  .form-group.full-width {
    grid-column: span 1;
    /* Ensure full width */
  }
}

/* For medium devices */
@media screen and (min-width: 568px) {
  .video__container {
    display: grid;
    grid-template-columns: .6fr;
    justify-content: center;
  }

  .place__container {
    grid-template-columns: repeat(3, max-content);
  }

  .subscribe__form {
    width: 470px;
    margin: 0 auto;
  }

  .discover__card-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
  }

  .discover__card {
    width: 90%;
  }

  .video-container {
    padding-top: 45%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    /* One column */
  }

  .form-group {
    grid-column: span 1;
    /* Make all fields full width */
  }

  .form-group.full-width {
    grid-column: span 1;
    /* Ensure full width */
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }

  .nav__link:hover {
    color: var(--white-color);
  }

  .nav__dark {
    position: initial;
  }

  .nav__menu {
    display: flex;
    column-gap: 2rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .change-theme-name {
    display: none;
  }

  .change-theme {
    color: var(--white-color);
  }

  .active-link::before {
    background-color: var(--white-color);
  }

  .scroll-header .nav__link {
    color: var(--text-color);
  }

  .scroll-header .active-link {
    color: var(--title-color);
  }

  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }

  .scroll-header .change-theme {
    color: var(--text-color);
  }

  .section {
    padding: 5rem 0 2rem;
  }

  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr .5fr;
  }

  .home__data {
    align-self: flex-end;
  }



  .home__info {
    bottom: 3rem;
  }

  .video-container {
    padding-top: 50%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__data,
  .about__title {
    text-align: center;
    padding: 5px;

  }

  .about__title {
    margin-bottom: var(--mb-1-5);
  }

  .about__description {
    margin-bottom: var(--mb-2);
  }

  .discover__container {
    margin-left: auto;
    margin-right: auto;
  }

  .discover__container,
  .place__container {
    padding-top: 2rem;
  }

  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }

  .experience__overlay:nth-child(2) {
    width: 160px;
  }

  .subscribe__bg {
    padding: 15px;
  }

  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }

  .subscribe__input {
    padding: 0 .5rem;
  }

  .footer__rights {
    flex-direction: row;
    justify-content: center;
  }

  .discover__card-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
  }

  .discover__card {
    width: 80%;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 20px;
  }

  /* Make full-width fields span the grid */
  .full-width {
    grid-column: span 2 !important;
    ;
  }

  /* Input Fields */
  .form-group {
    position: relative;
    width: 100%;
  }


}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__container {
    grid-template-rows: 2fr .5fr;
  }

  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }

  .video-container {
    padding-top: 35%;
  }

  .home__info-title {
    font-size: var(--normal-font-size);
  }

  .home__info-img {
    width: 240px;
  }

  .about__img-one {
    width: 230px;
  }

  .about__img-two {
    width: 290px;
  }

  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
    padding: 10px;

  }

  .discover__title {
    font-size: var(--h2-font-size);
  }

  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: 3.5rem;
  }

  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }

  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }

  .video__container {
    grid-template-columns: .7fr;
  }

  .video__description {
    padding: 0 8rem;
  }

  .place__container {
    gap: 3rem 2rem;
  }

  .place__card,
  .place__img {
    height: 263px;
  }

  .footer__content {
    justify-items: center;
  }

  .discover__card-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px
  }

  .discover__card {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }

  .home__container,
  .home__img {
    height: 640px;
  }
}