@charset "UTF-8";
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* ------------------------------------------------------------------------------------------------------------------------------
ROOT
--------------------------------------------------------------------------------------------------------------------------------*/
:root {
  --container-width: 123.125rem;
  --font: "Montserrat", sans-serif;
  --black: #000;
  --black-100: #292626;
  --black-200: #1e1e1e;
  --white: white;
  --white-100: #f7e8d1;
  --placeholder: #52483E;
  --main:#F7E8D1;
  --green: #99A165;
  --brown: #52483E;
  --scrollbar: gray;
  --scrollbar-track: gray;
  --scrollbar-thumb: var(--placeholder);
}

/* ------------------------------------------------------------------------------------------------------------------------------
TYPOGRAPHY
--------------------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------------------------------------------------------------------------------------
BASE
--------------------------------------------------------------------------------------------------------------------------------*/
* {
  margin: 0;
  border: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

.bred {
  border: 0.0625rem red solid;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  inline-size: 100%;
  block-size: 100%;
}

body {
  background: var(--main);
  overscroll-behavior: none;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-wrap: balance;
}

svg {
  max-width: 3.125rem;
  max-height: 3.125rem;
}

.container {
  margin-inline: auto;
  min-inline-size: 20rem;
  max-inline-size: var(--container-width);
  padding-inline: 14.0625rem;
}
.container__long {
  margin-inline: auto;
  min-inline-size: 20rem;
  max-inline-size: var(--container-width);
  padding-inline: 1.5625rem;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.image-bg {
  position: relative;
}
.image-bg img {
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  -o-object-fit: cover;
     object-fit: cover;
  block-size: 100%;
  inline-size: 100%;
}

.wrapper {
  display: flex;
  min-block-size: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: hidden;
  flex-direction: column;
}

.main {
  position: relative;
  flex: 1 1 auto;
}

/* ------------------------------------------------------------------------------------------------------------------------------
FOOTER
--------------------------------------------------------------------------------------------------------------------------------*/
.footer {
  background: var(--green);
  padding-block: 4.5625rem;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer h3 {
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--main);
  margin-bottom: 0.625rem;
}
.footer p {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--main);
}
.footer .column-logo {
  max-width: 13.25rem;
  flex-shrink: 0;
}
.footer .column-social__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .column-social a {
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
}
.footer .column-social a:hover {
  transform: scale(1.1);
}

/* ------------------------------------------------------------------------------------------------------------------------------
HEADER
--------------------------------------------------------------------------------------------------------------------------------*/
.header {
  background-image: url("../images/paper-bg.png");
  background-size: auto 100%;
  height: 100%;
}
.header__aspect {
  aspect-ratio: 192/115;
}
.header__banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-block-start: 6.625rem;
  padding-block-end: 16.5625rem;
  min-height: 75rem;
}
.header__logo {
  z-index: 1;
  display: block;
  aspect-ratio: 210/85;
  max-width: 13.75rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.header__logo:hover {
  transform: scale(1.1);
}
.header__top {
  height: 50%;
}
.header__bottom {
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
}
.header h1 {
  font-size: 3.4375rem;
  z-index: 1;
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  font-style: italic;
  color: var(--text-100);
}
.header p {
  font-size: 2.5rem;
  z-index: 1;
  position: relative;
  margin-bottom: 3.75rem;
}
.header__arrow {
  z-index: 1;
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 4.375rem;
  transition: all 0.3s ease-in-out;
}
.header__arrow:hover {
  transform: scale(1.1);
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-1 Japan Symbols
--------------------------------------------------------------------------------------------------------------------------------*/
.symbols-one__centered {
  display: flex;
  justify-content: center;
  padding-top: 6.8125rem;
  padding-bottom: 6.4375rem;
}
.symbols-one__centered img {
  max-width: 12.25rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-2 Xanakai
--------------------------------------------------------------------------------------------------------------------------------*/
.xanakai {
  padding-top: 2.5rem;
  padding-bottom: 9.875rem;
}
.xanakai__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.625rem;
}
.xanakai .card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
  min-width: 0;
}
.xanakai .card__top {
  display: flex;
  align-items: center;
  gap: 2.4375rem;
}
.xanakai .card__icon {
  width: 6.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #52483e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xanakai .card__icon img {
  width: 58%;
}
.xanakai .card__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.xanakai .card__info h2 {
  font-style: italic;
  font-weight: 400;
  font-size: 1.875rem;
  color: var(--black-100);
}
.xanakai .card__info span {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 107%;
  color: var(--black);
}
.xanakai .card__middle {
  overflow: hidden;
  border-radius: 5rem 1.25rem 1.25rem 1.25rem;
}
.xanakai .card__middle img {
  transition: all 0.3s ease-in-out;
}
.xanakai .card__middle:hover img {
  transform: scale(1.1);
}
.xanakai .card__bottom {
  padding-top: 0.3125rem;
}
.xanakai .card__bottom p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 125%;
  color: var(--black);
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-3 Karakuli
--------------------------------------------------------------------------------------------------------------------------------*/
.symbols-two {
  padding-bottom: 12.5rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-4 Mountain
--------------------------------------------------------------------------------------------------------------------------------*/
.mountain {
  padding-bottom: 0.5rem;
}
.mountain__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.1875rem;
}
.mountain__grid .img-bird {
  margin-top: -0.625rem;
  margin-bottom: 0.625rem;
  max-width: 15.25rem;
}
.mountain__grid .img-veer {
  margin-top: 1.25rem;
  align-self: flex-end;
  max-width: 15.6875rem;
}
.mountain__item {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  min-width: 0;
}
.mountain__item p {
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 136%;
  color: var(--black-200);
  width: 90%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-5 Paper
--------------------------------------------------------------------------------------------------------------------------------*/
.paper {
  padding-bottom: 12.3125rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
Predlojenie 6
--------------------------------------------------------------------------------------------------------------------------------*/
.symbols-three {
  padding-bottom: 10rem;
}
.symbols-three__centered {
  display: flex;
  justify-content: center;
}
.symbols-three__centered img {
  max-width: 31.625rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-7 Kobo daci
--------------------------------------------------------------------------------------------------------------------------------*/
.kobo {
  padding-bottom: 7.9375rem;
}
.kobo__grid {
  display: grid;
  grid-template-columns: 10fr 21fr;
  gap: 3.125rem;
}
.kobo .card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.6875rem;
}
.kobo .card__image {
  overflow: hidden;
  min-height: inherit;
  border-radius: 5rem 1.25rem 1.25rem 1.25rem;
}
.kobo .card__headrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5625rem;
}
.kobo .card__headrow h2 {
  font-style: italic;
  font-weight: 400;
  font-size: 1.875rem;
  color: var(--balck-100);
}
.kobo .card__headrow span {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 107%;
  color: var(--black);
}
.kobo .card__headcol {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.kobo .card__headcol h2 {
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--balck-100);
}
.kobo .card__headcol span {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 107%;
  color: var(--black);
}
.kobo .card__icon--left {
  flex-shrink: 0;
  width: 100%;
  max-width: 9.4375rem;
}
.kobo .card__icon--right {
  flex-shrink: 0;
  width: 100%;
  max-width: 13.5625rem;
}
.kobo .card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.kobo .card__text p:first-child {
  padding-top: 0.9375rem;
  margin-bottom: 2.1875rem;
}
.kobo .card__text p:last-child {
  border-radius: 1.5625rem;
  padding: 2.5rem 3.3125rem;
  background: var(--green);
  color: var(--white-100);
}
.kobo .card__text p {
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 132%;
  color: var(--black-100);
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-8 Umbrella
--------------------------------------------------------------------------------------------------------------------------------*/
.umbrella {
  padding-bottom: 6.6875rem;
}
.umbrella__flex {
  display: flex;
  justify-content: center;
}
.umbrella__flex img {
  max-width: 13.5rem;
}

/* ------------------------------------------------------------------------------------------------------------------------------
s-9 Subscribe
--------------------------------------------------------------------------------------------------------------------------------*/
.subscribe {
  padding-bottom: 6.5rem;
}
.subscribe__grid {
  display: grid;
  grid-template-columns: 120fr 180fr;
  gap: 3.75rem;
}
.subscribe__grid .column-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-width: 0;
}
.subscribe__grid .column-2 form {
  height: 100%;
  min-width: 9.375rem;
  display: flex;
  gap: 1.6875rem;
  align-items: center;
  justify-content: flex-end;
}
.subscribe__grid h2 {
  font-style: italic;
  font-weight: 600;
  font-size: 2.75rem;
  color: var(--black-100);
  margin-bottom: 1.0625rem;
}
.subscribe__grid p {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--blaCK-100);
}
.subscribe__grid input {
  border: 0.125rem solid var(--green);
  border-radius: 6.25rem;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  max-width: 39.25rem;
  width: 100%;
  min-height: 3.75rem;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--black-100);
}
.subscribe__grid button {
  border-radius: 6.25rem;
  padding: 0.625rem;
  width: 100%;
  max-width: 11.9375rem;
  min-height: 3.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--main);
  background: var(--green);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.subscribe__grid button:hover {
  opacity: 0.8;
}
.subscribe__grid button:disabled {
  opacity: 0.5 !important;
}

.form-success {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-success.show {
  opacity: 1;
  text-align: right;
}

/* ------------------------------------------------------------------------------------------------------------------------------
KEYFRAMES
--------------------------------------------------------------------------------------------------------------------------------*/
@keyframes show-header {
  0% {
    inset-block-start: -100%;
  }
  100% {
    inset-block-start: 0;
  }
}
@keyframes fade-up-big {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------
MEDIAQUERIES 
--------------------------------------------------------------------------------------------------------------------------------*/
/*# sourceMappingURL=main.min.css.map */
