@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #ffffff;
  background: #131313;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
}

.navbar {
  width: 75%;
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 50;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 768px) {
  .navbar {
    width: 50%;
    position: absolute;
    top: 20%;
    left: 50%;
    z-index: 50;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/Herosection.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(1.6px);
          backdrop-filter: blur(1.6px);
  z-index: 1;
  filter: saturate(0.1) brightness(0.6);
}
.hero .content {
  position: relative;
  top: 12%;
  z-index: 2;
  text-align: center;
}
.hero .content .title {
  font-size: 3.75rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
}
.hero .content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 5rem;
}
.hero .content .cta-button {
  padding: 16px 24px;
  border-radius: 12px;
  font-family: "Instrument Sans", sans-serif;
  border: none;
  cursor: pointer;
  background-color: #d34d2a;
  color: #ffffff;
  font-size: 1.25rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 0px 20px;
  }
  .hero .content {
    margin-top: 50%;
    transform: none;
  }
  .hero .content .title {
    font-size: 2.1rem;
    line-height: 1.3;
  }
  .hero .content .subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero .content .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.featured {
  background: #131313;
  padding: 60px 0px;
  text-align: center;
}
.featured .featured__title {
  font-size: 2rem;
  margin-bottom: 25px;
}
.featured .logo-slider {
  overflow: hidden;
  width: 100%;
}
.featured .logo-track {
  display: flex;
  gap: 60px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.featured .logo-track img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.featured .logo-track img:hover {
  filter: grayscale(0%);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .featured {
    padding: 40px 0;
  }
  .featured .featured__title {
    font-size: 1.5rem;
  }
  .featured .logo-track {
    gap: 28px;
  }
  .featured .logo-track img {
    height: 42px;
  }
}
.about {
  padding: 240px 80px;
  background: #171717;
  position: relative;
  overflow: hidden;
}
.about .about__container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
.about .about__content {
  max-width: 700px;
  padding-right: 120px;
}
.about .about__content .about__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.about .about__content .about__description {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
}
.about .about__image img {
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.about .about__image img:hover {
  filter: grayscale(0%);
}
.about .about__element {
  position: absolute;
  top: 87%;
  left: 20%;
  z-index: 10;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.about .about__element:hover {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .about {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
  }
  .about .about__container {
    flex-direction: column;
    align-items: center;
  }
  .about .about__container .about__content {
    padding-right: 0;
    width: 100%;
  }
  .about .about__container .about__content .about__title {
    font-size: 28px;
  }
  .about .about__element {
    z-index: -1;
    opacity: 0.5;
  }
}
.expeditions {
  padding: 80px 80px;
  background: #131313;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expeditions .expeditions__title {
  text-align: center;
  font-size: 2.5rem;
  font-family: "Instrument Sans", sans-serif;
  margin-bottom: 10px;
}
.expeditions .expeditions__subtitle {
  font-size: 1.125rem;
  margin-bottom: 80px;
  padding-left: 250px;
  padding-right: 250px;
  text-align: center;
}
.expeditions .expeditions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.expeditions .expeditions__grid .expeditions__image {
  width: 100%;
  height: 400px;
  aspect-ratio: 2/3;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  transition: ease-in-out 0.3s;
}
.expeditions .expeditions__grid .expeditions__image:hover {
  transform: translateY(-10px);
  filter: grayscale(0%);
}
.expeditions .expeditions__grid .expeditions__card-title {
  margin-top: 20px;
  font-size: 1.5rem;
  font-family: "Instrument Sans", sans-serif;
  text-decoration: none;
  color: #ffffff;
}
.expeditions .expeditions__grid .expeditions__card-date {
  font-size: 1rem;
  color: #bbbbbb;
}

/* Mobile */
@media (max-width: 768px) {
  .expeditions {
    padding: 40px 20px;
  }
  .expeditions .expeditions__title {
    font-size: 28px;
  }
  .expeditions .expeditions__subtitle {
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .expeditions .expeditions__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .expeditions .expeditions__grid .expeditions__image {
    height: 300px;
    background-size: cover;
  }
  .expeditions .expeditions__grid .expeditions__card-title {
    font-size: 1.25rem;
  }
  .expeditions .expeditions__grid .expeditions__card-date {
    font-size: 0.95rem;
  }
}
.form {
  padding: 80px 80px;
  background: #171717;
  position: relative;
  overflow: hidden;
}
.form .form__container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
.form .form__content {
  max-width: 550px;
}
.form .form__content .form__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.form .form__content .form__description {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
}
.form .contact-form {
  background-color: rgba(84, 84, 84, 0.2392156863);
  padding: 32px;
  min-width: 550px;
  border-radius: 16px;
}
.form .contact-form .form-group {
  margin-bottom: 20px;
}
.form .contact-form .form-group label {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 400;
}
.form .contact-form .form-group input[type=text],
.form .contact-form .form-group input[type=email],
.form .contact-form .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: #131313;
  border: 1px solid #131313;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.3s ease;
}
.form .contact-form .form-group input[type=text]::-moz-placeholder, .form .contact-form .form-group input[type=email]::-moz-placeholder, .form .contact-form .form-group textarea::-moz-placeholder {
  color: #ffffff;
}
.form .contact-form .form-group input[type=text]::placeholder,
.form .contact-form .form-group input[type=email]::placeholder,
.form .contact-form .form-group textarea::placeholder {
  color: #ffffff;
}
.form .contact-form .form-group input[type=text]:focus,
.form .contact-form .form-group input[type=email]:focus,
.form .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
}
.form .contact-form .form-group select {
  width: 100%;
  padding: 16px 20px;
  background-color: #131313;
  border: 1px solid #131313;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Instrument Sans", sans-serif;
  transition: all 0.3s ease;
}
.form .contact-form .form-group select:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
}
.form .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form .contact-form .checkbox-group {
  margin-bottom: 24px;
}
.form .contact-form .checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
}
.form .contact-form .checkbox-group .checkbox-label input[type=checkbox] {
  margin-right: 10px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #ffffff;
  flex-shrink: 0;
}
.form .contact-form .checkbox-group .checkbox-label .checkbox-text {
  color: #ffffff;
  line-height: 1.5;
}
.form .contact-form .checkbox-group .checkbox-label .checkbox-text .privacy-link {
  color: #d34d2a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.form .contact-form .checkbox-group .checkbox-label .checkbox-text .privacy-link:hover {
  color: #eb5e3b;
  text-decoration: underline;
}
.form .contact-form .submit-btn {
  width: auto;
  padding: 12px 32px;
  background-color: #d34d2a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 87, 34, 0.2);
}
.form .contact-form .submit-btn:hover {
  background-color: #eb5e3b;
  box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
  transform: translateY(-1px);
}
.form .contact-form .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(255, 87, 34, 0.2);
}
.form .contact-form .submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}
.form .contact-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form .contact-form .submit-btn.loading {
  pointer-events: none;
  position: relative;
}
.form .contact-form .submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form .contact-form .message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  animation: slideIn 0.3s ease;
}
.form .contact-form .message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form .contact-form .message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form .contact-form .error-text {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.form .contact-form .error-text.show {
  display: block;
}
.form .contact-form .form-group.error input,
.form .contact-form .form-group.error select,
.form .contact-form .form-group.error textarea {
  border-color: #dc3545 !important;
}
.form .contact-form .success-animation {
  animation: successPulse 0.5s ease;
}
@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.form .form__element {
  position: absolute;
  top: 102%;
  left: 10%;
  z-index: 10;
  transform: translate(-50%, -50%) rotate(60deg);
  max-width: 100%;
  height: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .form {
    padding: 40px 20px;
  }
  .form .form__container {
    flex-direction: column;
    gap: 24px;
  }
  .form .form__content {
    text-align: center;
    padding-right: 0;
  }
  .form .form__content .form__title {
    font-size: 28px;
  }
  .form .form__content .form__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .form .contact-form {
    min-width: 100%;
    padding: 20px;
    border-radius: 12px;
  }
  .form .contact-form .submit-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
  }
  .form .form__element {
    display: none;
  }
}
.footer {
  background-color: #131313;
  width: 100%;
  padding: 90px 80px;
  overflow: hidden;
  position: relative;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  gap: 40px;
}
.footer .footer-left {
  flex: 1;
  max-width: 400px;
}
.footer .footer-left .footer-copyright {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer .footer-left .footer-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer .footer-right .footer-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer .footer-right .social-icons {
  display: flex;
  gap: 16px;
}
.footer .footer-right .social-icons .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer .footer-right .social-icons .social-icon i {
  font-size: 20px;
}
.footer .footer-right .social-icons .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.footer .footer-element {
  position: absolute;
  top: 85%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-family: "Instrument Sans", sans-serif;
  font-size: 120px;
  opacity: 0.02;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 80px;
  }
  .footer .footer-content {
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 20px;
  }
  .footer .footer-left {
    max-width: 100%;
  }
  .footer .footer-left .footer-copyright {
    font-size: 18px;
  }
  .footer .footer-left .footer-description {
    font-size: 14px;
  }
  .footer .footer-right {
    max-width: 100%;
  }
  .footer .footer-right .footer-title {
    font-size: 18px;
  }
  .footer .footer-right .social-icons {
    justify-content: center;
    gap: 10px;
  }
  .footer .footer-right .social-icons .social-icon {
    width: 32px;
    height: 32px;
  }
  .footer .footer-right .social-icons .social-icon i {
    font-size: 16px;
  }
  .footer .footer-element {
    font-size: 50px;
  }
}/*# sourceMappingURL=main.css.map */