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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul,
ol,
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  height: 100%;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  color: #636267;
  background-color: #F7F7F7;
  scroll-behavior: smooth;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
}

.main {
  padding: 40px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

.section__hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}
.section__main-img-wrapper.section__main-img-wrapper--desktop {
  display: flex;
}
.section__main-img-wrapper.section__main-img-wrapper--mobile {
  display: none;
}
.section__main-img-wrapper {
  position: relative;
  flex: 1;
  border-radius: 32px;
  background-color: #E8A039;
}
.section__main-img-wrapper .main-img {
  flex: 1;
  display: block;
  border-radius: 32px;
  object-fit: cover;
}
.section__main-text-arrow-wrap {
  position: absolute;
  padding: 40px;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #FFFFFF;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: inset 0 -200px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.section__main-text-arrow {
  width: 380px;
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
}
.section__main-img-arrow {
  flex: 1;
  margin: 0 0 0 24px;
  width: 30%;
}
.section__main-info {
  position: relative;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  background-color: #fff;
  overflow: hidden;
}
.logo-link {
  margin: 0 0 32px;
  width: fit-content;
}
.logo-link img {
  height: 120px;
}
.section__main-info-top {
  margin: 0 0 32px;
}
h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  color: #0A1319;
}
h2 {
  margin: 0 0 4px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #0A1319;
}
p {
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  color: #636267;
}
.store-info__list {
  margin: 0 0 8px;
  flex: 1;
}
.store-info__item-wrapper {
  margin: 0 0 24px;
  padding: 54px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid #E7E7E7;

  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.5s forwards;
}
.store-info__item-wrapper:nth-child(1) {
  animation-delay: 0.3s;
}

.store-info__item-wrapper:nth-child(2) {
  animation-delay: 0.6s;
}

.store-info__item-wrapper:nth-child(3) {
  animation-delay: 0.9s;
}

.store-info__item-wrapper:nth-child(4) {
  animation-delay: 1.2s;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.store-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.store-info__link {
  padding: 16px 24px;
  color: #FFFFFF;
  border-radius: 16px;
  background-color: #5F1226;
}
.store-info__link:hover {
  background-color: #FF7553;
}
.store-info__link:active {
  background-color: #5F1226;
  box-shadow: 0 0 0 4px #D4E8DC;
}
.section__copyright {
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.0015em;
  color: #636267;
}

@media all and (max-width: 1400px) {
  .section__main-text-arrow-wrap {
    flex-direction: column-reverse;
  }
  .section__main-img-arrow {
    margin-left: auto;
  }
}
@media all and (max-width: 1100px) {
  .main {
    height: auto;
    padding: 0;
  }
  .section__hero {
    display: flex;
    flex-direction: column;
  }
  .section__main-img-wrapper.section__main-img-wrapper--desktop {
    display: none;
  }
  .section__main-img-wrapper.section__main-img-wrapper--mobile {
    display: flex;
    max-height: 50vh;
  }
  .section__main-img-wrapper {
    position: relative;
    flex: 1;
    border-radius: 16px;
    background-color: #E8A039;
  }
  .section__main-img-wrapper .main-img {
    flex: 1;
    display: block;
    border-radius: 16px;
    object-fit: cover;
  }
  .section__main-text-arrow-wrap {
    border-radius: 16px;
    box-shadow: inset 0 -120px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  .section__main-text-arrow-wrap {
    width: 100%;
    height: 100%;
    padding: 16px;
    flex-direction: column-reverse;
  }
  .section__main-text-arrow {
    font-size: 40px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
  }
  .section__main-img-arrow {
    align-content: flex-end;
    width: 40%;
  }
  .section__main-img-arrow img {
    width: 100%;
    transform: translateY(50px);
  }
  h1 {
    margin: 0 0 8px;
    font-size: 24px;
  }
  h2 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
  }
  .section__main-info-top {
    margin: 0 0 16px;
  }
  .section__main-info {
    padding: 24px 16px;
    border-radius: 0;
  }

  .store-info__item-wrapper {
    margin: 0 0 16px;
    padding: 16px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }
  .store-info {
    width: 100%;
  }
  .store-info__link {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}
@media all  and (min-width: 768px) and (max-width: 1100px) {
  .logo-link {
    margin: 0 0 16px;
  }
  .logo-link img {
    height: 64px;
  }
  .store-info__item-wrapper {
    margin: 0 0 16px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
  
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.5s forwards;
  }
  .store-info__link {
    width: auto;
  }
}
@media all and (max-width: 450px) {
  .logo-link {
    margin: 0 0 16px;
  }
  .logo-link img {
    height: 64px;
  }
  .section__main-text-arrow {
    font-size: 30px;
  }
}
