/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
:root {
  --color-gray: #6b6662;
  --color-white: #fff;
  --color-white-2: #f5f5f5;
  --color-black: #0d0c0c;
  --color-gray-border: rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
  font-size: 0.9rem;
}

:root {
  font-size: 20px;
}
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px;
  }
}
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px;
  }
}
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px;
  }
}
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px;
  }
}
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px;
  }
}
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px;
  }
}
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px;
  }
}
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px;
  }
}
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px;
  }
}
@media (max-width: 900.98px) {
  :root {
    font-size: 10px;
  }
}
@media (max-width: 389.98px) {
  :root {
    font-size: 15px;
  }
}
@media (max-width: 375.98px) {
  :root {
    font-size: 14px;
  }
}
@media (max-width: 345.98px) {
  :root {
    font-size: 13px;
  }
}
@media (max-width: 330.98px) {
  :root {
    font-size: 12px;
  }
}
@media (max-width: 320.98px) {
  :root {
    font-size: 11px;
  }
}
@media (max-width: 300.98px) {
  :root {
    font-size: 10px;
  }
}
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px;
  }
}
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px;
  }
}

@media (max-width: 767.98px) and (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px;
  }
}
body {
  font-size: 0.9rem;
  box-sizing: border-box;
  font-family: Sora;
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: var(--color-white-2);
}

.container {
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.container_header {
  margin: 0 auto;
  padding: 0 1.8rem;
  width: 100%;
}
@media (max-width: 768px) {
  .container_header {
    padding: 0 1rem;
  }
}

.section__title {
  color: var(--color-black);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: -3.04px;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.socials {
  display: flex;
  gap: 0.7rem;
}
.socials a {
  display: inline-block;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.socials a i {
  transition: all 0.3s;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.socials a:hover {
  background-color: var(--color-primary);
}
.socials a:hover i {
  color: var(--color-white);
}

.cards__wrapper_3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.hoverable {
  overflow: hidden;
  position: relative;
  border-radius: 1.5rem;
}
.hoverable img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hoverable:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cards__wrapper_3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.mobile-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12.5px);
  display: none;
}
@media (min-width: 768px) {
  .mobile-nav {
    visibility: hidden;
  }
}
.mobile-nav__wrapper {
  display: grid;
  height: fit-content;
  background-color: #6b6662;
  grid-template-rows: auto 1fr;
  padding: 2rem 1rem 1rem 1rem;
  position: relative;
  border-radius: 0;
  display: none;
}
.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav__logo {
  height: 3rem;
}
.mobile-nav__logo img {
  height: 100%;
}
.mobile-nav__close {
  background-color: var(--color-white);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  position: relative;
  display: none;
}
.mobile-nav__close .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mobile-nav__close .icon svg {
  height: 30%;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0.4rem;
  padding: 2rem 0 1rem 0;
}
.mobile-nav__list li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav__list__link {
  border-radius: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  width: 100%;
  padding: 1rem 0;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 50;
  display: none;
}
.popup .overlay {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(1, 1, 61, 0.8);
}
.popup.successful .popup__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
}
.popup.successful .popup__bottom p {
  text-align: center;
  font-family: Montserrat;
  font-size: 0.8rem;
  line-height: 0.9rem; /* 128.571% */
  width: 80%;
}
.popup.successful .popup-icon {
  background-color: #f6f6f6;
  width: 12.7rem;
  height: 9.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5.75rem;
}
.popup.successful .popup-icon i {
  font-size: 5rem;
  color: var(--color-red);
}
.popup__close {
  background-color: var(--color-white);
  position: absolute;
  top: -3.7rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__close svg {
  width: 1rem;
}
.popup__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  max-width: 23.4rem;
  width: 100%;
  height: 28rem;
}
.popup__content {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  padding: 2.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-radius: 1rem;
  z-index: 1;
}
.popup__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
}
.popup__top h3 {
  color: var(--color-primary);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.popup__top p {
  color: #424242;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
.popup__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.popup__form input {
  height: 3.5rem;
  width: 100%;
  border-radius: 5rem;
  border: none;
  outline: none;
  background-color: transparent;
  border: 0.05rem solid rgba(17, 17, 17, 0.15);
  text-align: center;
  color: #dbdbdb;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  transition: all 0.3s;
}
.popup__form input:focus {
  border-color: var(--color-red);
  color: var(--color-red);
}
.popup__form input:focus::placeholder {
  color: var(--color-red);
}
.popup__form input[type=number]::-webkit-outer-spin-button, .popup__form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.popup__form button {
  width: 100%;
  height: 3.5rem;
  background-color: var(--color-red);
  color: var(--color-white);
  border-radius: 5rem;
}
.popup__form p {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 0.9rem; /* 128.571% */
  width: 80%;
}

.show-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 55;
  display: none;
}
.show-popup .overlay {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.5);
}
.show-popup__wrapper {
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 30rem;
  width: 30rem;
  max-width: 60svw;
  border-radius: 1.3rem;
  overflow: hidden;
  transition: all 0.5s ease;
}
.show-popup__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.show-popup__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.show-popup__close {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  background-color: var(--color-gray);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.show-popup__close svg {
  width: 30%;
}

.collection {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 50;
  display: none;
}
.collection .overlay {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.5);
}
.collection__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: fit-content;
  width: fit-content;
  max-width: 60vw;
  transition: all 0.5s ease;
}
.collection__content {
  max-height: 80vh;
  overflow-y: auto;
  background-color: var(--color-white-2);
  border-radius: 1.7rem;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  max-width: 61rem; /* max 4 ustun */
  gap: 0.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.collection__content::-webkit-scrollbar {
  display: none;
}
.collection__img {
  height: 12rem;
  width: 12rem;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
}
.collection__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.collection__close {
  position: absolute;
  right: -2.2rem;
  top: -2.2rem;
  background-color: var(--color-white);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.collection__close svg {
  width: 30%;
}

@media (max-width: 768px) {
  .popup__wrapper {
    top: 100%;
    transform: translate(-50%, -100%);
    max-width: 100%;
    height: 29rem;
  }
  .popup__content {
    border-radius: 1rem 1rem 0 0;
  }
  .show-popup__wrapper {
    background-color: var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh;
    width: 95%;
    max-width: 100%;
  }
  .show-popup__img {
    height: 100%;
    width: 100%;
  }
  .show-popup__img img {
    height: 100;
    width: 100%;
    object-fit: contain;
  }
  .collection__wrapper {
    width: 100%;
    max-width: 95%;
  }
  .collection__content {
    border-radius: 1rem;
    grid-template-columns: 1fr 1fr;
    max-width: auto;
  }
  .collection__img {
    position: relative;
    width: 100%;
    height: 10rem;
    border-radius: 0.8rem;
    background-color: var(--color-white);
  }
  .collection__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .collection__close {
    right: 0;
    top: -3rem;
  }
}
.card {
  background-color: var(--color-white);
  height: 24rem;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1.3rem;
  transition: all 0.3s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.05);
}
.card__img {
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__img img {
  max-width: 100%;
  max-height: 95%;
}
.card__info {
  height: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: sans-serif;
}
.card__info h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.card__info h6 {
  color: rgba(13, 12, 12, 0.6);
  font-size: 0.9rem;
}
.card__info h5 {
  font-size: 1rem;
  line-height: 140%;
}

.philosophy__card {
  height: 15rem;
  padding: 0.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 1.3rem;
  overflow: hidden;
}
.philosophy__card_img {
  display: none;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.philosophy__card_img img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.philosophy__card_text {
  position: relative;
  z-index: 2;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 1.1rem;
}
.philosophy__card_text p {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -1.5px;
}
.philosophy__card:hover .philosophy__card_img img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .card {
    height: 20rem;
  }
  .philosophy__card_text p {
    font-size: 1.2rem;
  }
}
.header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 5.5rem;
  transition: all 0.3s;
  padding-top: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__logo {
  height: 2.7rem;
}
.header__logo img {
  height: 100%;
}
.header__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__navigation__link {
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s;
  color: var(--color-white);
  border-radius: 5rem;
  border: 0.05rem solid var(--color-white);
}
.header__navigation__link:hover {
  background-color: var(--color-white);
  color: var(--color-gray);
}
.header__mobile__btn {
  background-color: var(--color-white);
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  display: none;
}
.header__mobile__btn img {
  max-width: 50%;
}
.header.header__scrolled {
  height: 4rem;
  background-color: var(--color-gray);
  box-shadow: 0 -50px 70px 10px var(--color-gray);
  margin-top: 0;
  padding-top: 0;
}
.header.scroll-end {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .header {
    margin-top: 0;
  }
  .header__navigation {
    display: none;
  }
  .header__mobile__btn {
    display: flex;
  }
}
.footer {
  margin-top: 3rem;
  height: 100vh;
  padding: 0.6rem;
}
.footer .container_header {
  height: 100%;
  display: flex;
}
.footer__wrapper {
  background-image: url("../../img/pictures/footer-bg.png");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1.3rem;
  padding: 1.2rem 1.2rem 2rem 1.2rem;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
}
.footer__content {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1.2rem;
  border-radius: 1.3rem;
}
.footer__content_top {
  padding: 1.8rem 0;
}
.footer__content_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.8rem 0;
  gap: 1.2rem;
}
.footer__list a {
  font-size: 0.85rem;
  font-style: normal;
  line-height: 140%;
}
.footer .corner {
  display: inline-block;
  height: fit-content;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-white-2);
  padding: 1.4rem 1.2rem;
  border-top-right-radius: 1.5rem;
}
.footer .corner-shape {
  position: absolute;
  height: 2rem;
  width: 2rem;
  transform: rotate(90deg);
}
.footer .corner-shape_1 {
  top: -2rem;
  left: 0;
}
.footer .corner-shape_2 {
  right: -2rem;
  bottom: 0;
}

@media (max-width: 768px) {
  .footer {
    height: fit-content;
    padding: 0;
  }
  .footer__wrapper {
    border-radius: 0;
    padding: 4rem 1.2rem 2rem 1.2rem;
    gap: 3rem;
  }
  .footer__list {
    flex-direction: column;
    padding: 1.8rem 0 5rem;
  }
  .footer .corner {
    width: 100%;
  }
  .footer .corner-shape_2 {
    display: none;
  }
}
.head {
  height: 100vh;
  padding: 0.6rem;
}
.head .container_header {
  height: 100%;
  display: flex;
}
.head__wrapper {
  background-image: url("../../img/pictures/head-bg.png");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1.3rem;
  padding: 1.2rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
}
.head__content {
  height: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.head__content__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 34%;
  color: var(--color-white);
}
.head__content__top h3 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 192%;
  text-align: left;
  width: 100%;
}
.head__content__top h1 {
  font-size: 8rem;
  font-weight: 700;
  line-height: 100%;
  width: 100%;
  text-align: left;
}
.head__content__top p {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 130% */
}
.head__content__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head__corner_left {
  width: 16rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem;
}
.head__corner_left .part {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 0.05rem solid var(--color-gray-border);
  padding: 0.1rem 0.6rem;
  border-radius: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.head__corner_left .part p {
  font-size: 0.75rem;
  line-height: 130%;
}
.head__corner_left .part-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.head__corner_left .part-2 .corner-img {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  padding: 0.15rem;
  background-color: var(--color-white);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.5);
}
.head__corner_left .part-2 .corner-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.head__corner_left .part-2 .corner-img:first-child {
  transform: translateY(0.8rem);
  z-index: 3;
}
.head__corner_left .part-2 .corner-img:nth-child(2) {
  z-index: 2;
  padding-top: 0.5rem;
}
.head__corner_left .part-2 .corner-img:last-child {
  transform: translateY(-0.8rem);
  z-index: 1;
  padding-top: 0.5rem;
}
.head__corner_right button {
  border: 0.05rem solid var(--color-gray-border);
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translateY(-0.5rem);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}
.head__corner_right .corner-btn {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-white-2);
  padding: 0.6rem 0.6rem 0 0.6rem;
  border-top-left-radius: 1.5rem;
}
.head__corner_right a {
  display: inline-block;
  color: var(--color-black);
  padding: 0.9rem 1.8rem;
  border: 0.05rem solid var(--color-black);
  border-radius: 5rem;
}
.head__corner_right .corner-shape {
  position: absolute;
  height: 2rem;
  width: 2rem;
}
.head__corner_right .corner-shape_1 {
  left: -2rem;
  bottom: 0;
}
.head__corner_right .corner-shape_2 {
  right: 0;
  top: -2rem;
}

.story {
  padding: 3rem 0;
}
.story__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.story__left {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.8rem;
}
.story__left_text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.story__left_text h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.story__left_img {
  width: 10rem;
}
.story__right p {
  font-size: 1.4rem;
  line-height: 140%;
  word-spacing: 0.6rem;
}
.story__right p img {
  height: 2.5rem;
  aspect-ratio: 3/1;
  vertical-align: middle;
  border-radius: 5rem;
}

.about {
  background-color: var(--color-white);
  padding-top: 10rem;
}
.about__wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
}
.about__img {
  height: 50rem;
}
.about__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about__info {
  margin-top: 10rem;
  padding-left: 3.5rem;
  font-family: Inter;
}
.about__info h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1px;
}
.about__info p {
  font-size: 1rem;
  line-height: 150%;
  margin-top: 3.1rem;
}
.about__info_bottom {
  display: flex;
  flex-direction: column;
}
.about__info_bottom ul {
  border-top: 1px solid #8d9691;
  margin-top: 4.25rem;
}
.about__info_bottom li {
  padding: 1.75rem 0;
  font-size: 1rem;
  line-height: 150%;
  border-bottom: 1px solid #8d9691;
}
.about__info_bottom img {
  align-self: flex-end;
  height: 15rem;
}

.products {
  background-color: var(--color-white-2);
  padding-top: 7.5rem;
}
.products__wrapper {
  margin-top: 2.4rem;
}

.philosophy {
  margin-top: 6rem;
}
.philosophy__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.philosophy__head p {
  width: 30%;
}
.philosophy__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.philosophy__wrapper .philosophy__card:nth-child(1) {
  grid-column: 1/span 2;
}

.contact {
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact__form {
  display: grid;
  margin-top: 1.8rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.contact__form__field {
  width: 100%;
  height: 2.5rem;
  border: none;
  outline: none;
  border-radius: 2rem;
  padding: 0.6rem 1.8rem;
  background-color: var(--color-white);
  font-size: 0.8rem;
  font-family: Sora;
  overflow: hidden;
  resize: none;
}
.contact__form__field::placeholder {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.3);
}
.contact__form__field::-webkit-scrollbar {
  display: none;
}
.contact__form__field:nth-child(3) {
  grid-column: 1/span 2;
}
.contact__form__field:nth-child(4) {
  padding: 1rem 1.8rem;
  grid-column: 1/span 2;
  height: 5rem;
  border-radius: 1.2rem;
}
.contact__form button {
  grid-column: 1/span 2;
  height: 2.25rem;
  border: none;
  outline: none;
  border-radius: 5rem;
  padding: 0 1.8rem;
  background-color: #ef7d00;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact h2 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: -2px;
}
.contact p {
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .head {
    padding: 0;
  }
  .head__wrapper {
    border-radius: 0;
    padding: 1.2rem 1.2rem 6rem 1.2rem;
  }
  .head__content__top {
    width: 90%;
  }
  .head__content__top h3 {
    font-size: 0.8rem;
  }
  .head__content__top h1 {
    font-size: 4rem;
    text-align: center;
  }
  .head__corner_left {
    width: 20rem;
  }
  .head__corner_right {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    background-color: var(--color-white-2);
    border-top-left-radius: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0.6rem;
    gap: 0.5rem;
  }
  .head__corner_right button {
    border: 0.05rem solid var(--color-black);
    grid-column: 2/span 1;
    transform: translateY(0);
  }
  .head__corner_right .corner-btn {
    width: 100%;
    grid-column: 1/span 1;
    grid-row: 1/span 1;
    position: static;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
  .head__corner_right a {
    width: 100%;
    height: 3rem;
    padding: 0rem 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .head__corner_right .corner-shape_1 {
    display: none;
  }
  .story__wrapper {
    grid-template-columns: 1fr;
  }
  .story__left {
    grid-template-columns: 1fr;
  }
  .story__left_img {
    width: 100%;
    height: 7rem;
  }
  .about {
    padding-top: 3rem;
  }
  .about__wrapper {
    grid-template-columns: 100%;
  }
  .about__img {
    height: 30rem;
  }
  .about__info {
    margin-top: 2rem;
    padding-left: 0;
  }
  .about__info_bottom img {
    align-self: center;
  }
  .philosophy {
    margin-top: 5rem;
  }
  .philosophy__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .philosophy__head p {
    width: 100%;
  }
  .philosophy__head h2 {
    width: 100%;
    text-align: right;
  }
  .philosophy__wrapper {
    grid-template-columns: 1fr;
  }
  .philosophy__wrapper .philosophy__card:nth-child(1) {
    grid-column: auto;
  }
  .contact__form {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .contact__form__field {
    height: 3rem;
    padding: 1rem 1.8rem;
    border-radius: 2rem;
  }
  .contact__form__field:nth-child(3) {
    grid-column: 1/span 1;
  }
  .contact__form__field:nth-child(4) {
    grid-column: 1/span 1;
    height: 5rem;
    border-radius: 1.5rem;
  }
  .contact__form button {
    grid-column: 1/span 1;
    height: 3rem;
  }
}

/*# sourceMappingURL=style.css.map */
