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

  --font-primary: "Hanken Grotesk", sans-serif;
  --font-secondary: "League Spartan", sans-serif;

  --clr-grey: #9ba6ab;
}

html {
  background-color: #272f45;
}

.app {
  display: flex;
  flex-direction: column;
  font-family: var(--font-secondary);
  max-width: 1360px;
  padding: 0 100px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.app__loader {
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: #000000df;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.app__loader img {
  min-width: 100px;
  width: 40%;
  max-width: 130px;
  margin: auto;
}
.app__loader img:first-child {
  margin-bottom: -15%;
  animation: scale 1700ms infinite 100ms alternate
    cubic-bezier(0.95, 0.05, 0.795, 0.99);
}
.app__loader img:last-child {
  min-width: 40px !important;
  width: 50% !important;
  max-width: 100px;
}
.hide {
  display: none !important;
}

@keyframes scale {
  from {
    transform: scale(0.7);
    opacity: 1;
  }
  to {
    transform: scale(0.8);
    opacity: 0.7;
  }
}

.app__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
}

.app__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.app__logo img {
  width: 54px;
}
.app__logo h1 {
  color: var(--clr-grey);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.125rem;
  line-height: 1;
  text-transform: capitalize;
}

.app__search {
  width: 176px;
  height: 41px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  border-bottom: 1px var(--clr-grey) solid;
  line-height: 0;
}

.app__search img {
  width: 21.45px;
}
.app__search img:hover {
  cursor: pointer;
}
.app__search input {
  width: 100%;
  background-color: transparent;
  font-size: 16px;
  color: var(--clr-grey);
  border: none;
  outline: 0;
  line-height: 0;
}
.app__search input::placeholder {
  text-transform: capitalize;
  color: var(--clr-grey);
}
.app__search:has(input:hover),
.app__search:has(input:focus) {
  border-bottom-color: #c8cad9;
  border-bottom-width: 3px;
  transition: border-bottom-width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 144px;
  /* gap: 26px; */
}
.section {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
}
.section__two {
  display: flex;
  flex-direction: row;
}

.section__two--alpha .text__wrapper {
  --gap: 10px;
  padding: 0;
  align-items: center;
  padding-top: calc(25% - 2 * var(--gap));
  gap: var(--gap);
  text-align: center;
}

.section--bg-green {
  background-color: #46c9bc;
}
.section--bg-violet {
  background-color: #7778c6;
}
.section--bg-orange {
  background-color: #e97864;
}
.section--bg-blue {
  background-color: #557581;
}
.section--bg-sky {
  background-color: #82c9d8;
}
.section__img {
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}
.section:not(.section__img) {
  z-index: 1;
}
.section__img--main {
  max-height: 80vh;
}
.text__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 92px 60px;
  align-items: baseline;
}

.section__img--kickstarter {
  position: absolute;
  top: 7%;
  right: 3%;
  width: 10%;
  height: auto;
}

.section__title,
.section__description,
.section__btn {
  color: white;
}
.section__title {
  font-family: var(--font-secondary);
  text-transform: uppercase;
}
.section__title--main {
  font-size: clamp(35px, calc(10 * 0.7vw + 12px), 80px) !important;
}
.section__title--secondary {
  font-size: clamp(24px, calc(10 * 0.7vw - 12px), 50px) !important;
}
.section__title--third {
  font-size: clamp(14px, calc(10 * 0.7vw), 26px) !important;
}

.section__description {
  font-family: var(--font-primary);
  line-height: 1;
  font-weight: 300;
}
.section__description--main {
  font-size: clamp(14px, calc(10 * 0.3vw), 32px) !important;
  width: 37%;
}
.section__description--second {
  font-size: clamp(8px, calc(10 * 0.3vw), 14px) !important;
}
.section__description--third {
  display: none;
  font-size: clamp(8px, calc(10 * 0.3vw), 14px) !important;
}

.section__btn {
  border: 3px #eec9a2 solid;
  background-color: transparent;
  padding: 7px 12px;
  cursor: pointer;
  text-transform: uppercase;
}
.section__btn:hover {
  background-color: #eec9a2;
}
.section__btn--main {
  font-size: clamp(16px, calc(10 * 0.3vw), 24px) !important;
  padding: 15px 30px !important;
  place-self: start;
  margin-top: auto;
  text-transform: capitalize;
}
.section__btn--second {
  margin-top: auto;
  margin-bottom: 30%;
  padding: 7px 14px;
  font-size: clamp(14px, calc(10 * 0.3vw), 22px) !important;
  font-weight: bold;
}

.app__footer {
  width: 100%;
  color: #92a1a9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 94px;
  text-align: center;
  font-family: var(--font-primary);
}
.footer__mailing {
  --width: 360px;
  --height: 60px;

  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: inherit;
  font-weight: 300;
  width: 100%;
}

.footer__mailing h2 {
  font-size: clamp(14px, 3vw, 36px);
}
.footer__mailing p {
  padding-bottom: 37px;
  font-size: clamp(12px, 3vw, 18px);
}
.footer__mailing input {
  color: #eec9a2;
  outline: none;
  text-align: center;
  padding: 15px 25px;
  font-size: clamp(12px, 3vw, 18px);
}

.footer__mailing input,
.footer__mailing button {
  background-color: transparent;
  border: 2px #eec9a2 solid;
  width: var(--width);
  height: var(--height);
  max-width: 50%;
}
.contact__items {
  padding-bottom: 21px;
}
.contact__item {
  text-decoration: none;
  color: #92a1a9;
  text-transform: capitalize;
  font-size: clamp(13px, 3vw, 20px);
}

/* Media Query */

@media screen and (min-width: 1025px) {
  .text__wrapper {
    padding: 65px 60px;
  }
  .section__description--main {
    width: 67%;
  }
  .section__description--second {
    width: 80%;
    font-size: clamp(8px, calc(10 * 0.3vw), 19px) !important;
  }
  .section__description--third {
    font-size: 18px !important;
  }
  .section__title--third {
    font-size: clamp(14px, calc(10 * 0.7vw), 35px) !important;
  }
}
@media screen and (min-width: 900px) {
  .section__two {
    gap: 26px;
  }
  .section__two--alpha .section__description--third {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .section__two .section .text__wrapper {
    padding: 30px !important;
  }
  .text__wrapper {
    padding: 42px 45px;
  }
  .section__title--main {
    font-size: 65px;
  }
  .section__description--main {
    font-size: 30px;
    width: 50%;
  }
  .section__btn--main {
    font-size: 21px;
  }
}

@media screen and (max-width: 768px) {
  .app {
    padding: 0 0px;
  }

  .app__logo img {
    width: 36px;
  }
  .app__logo h1 {
    font-size: 14px;
  }
  .app__search {
    width: 100px;
  }
  .app__search img {
    width: 17.5px;
  }
  .app__header {
    padding-inline: 60px;
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .text__wrapper {
    padding: 50px 40px;
  }
  .section__two .section .text__wrapper {
    padding: 30px !important;
  }
  .section__title--main {
    font-size: 60px;
  }
  .section__description--main {
    font-size: 23px;
    width: 60%;
  }
  .section__btn--main {
    font-size: 18px;
    padding: 10px 17px !important;
  }
  .app__footer {
    padding-inline: 20px;
    gap: 45px;
  }
}

@media screen and (max-width: 425px) {
  * {
    --padding-inline: 35px;
  }
  .app {
    padding: 0;
  }
  .app__header {
    padding-left: var(--padding-inline);
    padding-right: var(--padding-inline);
  }
  .app__logo span {
    display: none;
  }
  .app__search {
    width: 95px;
  }
  .app__search input {
    font-size: 13.5px;
  }
  .section__two .section .text__wrapper {
    padding: 17px 15px !important;
  }
  .section__title--third {
    font-size: clamp(9px, calc(10 * 0.3vw), 17px) !important;
  }
  .sections {
    padding-bottom: 85px;
  }

  .footer__mailing {
    --height: 47px;
  }
}

@media screen and (max-width: 320px) {
  .text__wrapper {
    padding: 15px;
  }
  .section__title--secondary {
    font-size: 12px !important;
    padding-bottom: 5px;
  }
  .section__description--second {
    font-size: 10px !important;
  }
  .section__btn--second {
    font-size: 12px !important;
  }
  .section__btn--second {
    margin-bottom: 10%;
  }
}
