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

ul {
  padding-left: 0;
  list-style: none;
  margin: auto;
}

.navigation__link,
.button,
.slider__arrow,
.button_footer {
  cursor: pointer;
  transition: all, 0.7s, ease-out;
}

html {
  font-size: 10px;
}

.button,
body {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #403f3d;
}

body {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #e1d4c9;
  padding: 0 40px;
}
.body__wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.h1 {
  font-size: 7.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 105%;
  color: #e1d4c9;
}
.h1__colored {
  color: #b0907a;
  font-style: italic;
}

.h2 {
  font-size: 6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  text-align: center;
  margin: 100px 0 40px 0;
}

.h2__colored {
  color: #b0907a;
  font-style: italic;
}

.h3 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/*start header*/

.header {
  margin: 18px 0 18px 0;
  width: 100%;
  max-width: 1440px;
}

.wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
}
.logo__img {
  width: 100px;
  height: 60px;
}
.header__hamburger {
  display: none;
}
.header__navigation {
  width: 100%;
  max-width: 456px;
  display: flex;
}
a.navigation__link {
  text-decoration: none;
  color: #403f3d;
  margin-right: 8px;
}
.navigation {
  width: 100%;
  max-width: 456px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.navigation__link {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  position: relative;
}

.header__menu {
  display: flex;
  align-items: center;
  position: relative;
}

.navigation__link::after,
.header__menu::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #403f3d;
  position: absolute;
  bottom: -4px;
  left: 50%;
  border-radius: 7px;
  transition: all 500ms ease;
}

.header__menu::after {
  bottom: 18px;
}

.navigation__link:hover::after,
.header__menu:hover::after {
  left: 0;
  width: 100%;
}

.navigation__link.link__menu:hover::after {
  content: '';
  width: 0%;
  height: 0px;
}

/*finish header*/

/*start Enjoy*/

.enjoy__wrapper {
  position: relative;
  border-radius: 40px;
  height: 644px;
  padding: 100px 0 0 100px;
  max-width: 1360px;
}
#background-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.enjoy__content {
  position: relative;
  width: 100%;
  max-width: 530px;
  z-index: 1;
}

.p__enjoy {
  font-size: 1.6rem;
  color: #e1d4c9;
  font-weight: 400;
  line-height: 150%;
  margin: 40px 0;
}

.button {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 17px 63px;
  background-color: #e1d4c9;
  border: 2px solid #e1d4c9;
  border-radius: 100px;
  cursor: pointer;
}

.button__menu {
  width: 200px;
  height: 64px;
  position: relative;
  padding: 20px 78px 20px 65px;
  transition: all 0.8s ease;
}
.button__menu-text {
  position: absolute;
  right: 78px;
  top: 19px;
}
.button__img-cup {
  position: absolute;
  right: 64px;
  top: 19px;
  opacity: 0;
}

@media (hover: hover) {
  .button__menu:hover .button__img-cup {
    opacity: 1;
  }
  .button__menu:hover .button__menu-text {
    transform: translateX(-14px);
  }
}

/*end Enjoy*/

/*start Favourites Coffee*/
.slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider__arrow {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid #665f55;
  padding: 17px;
  transition: all 0.7s ease;
}
@media (hover: hover) {
  .slider__arrow:hover {
    background-color: #665f55;
  }
  .slider__arrow:hover path {
    stroke: #e1d4c9;
  }
}
.slider__wrapper {
  overflow: hidden;
  width: 480px;
}

.layout-1-column {
  display: flex;
  position: relative;
  left: 0px;
  transition: 1s;
}
.slider__img {
  width: 480px;
  margin-bottom: 20px;
}

.favCoffee__card {
  text-align: center;
}

.p__slider {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  margin: 16px auto;
  max-width: 480px;
}

.slider__indicators {
  display: flex;
  width: 144px;
  justify-content: space-between;
  margin: 40px auto 0;
}

.indicator {
  width: 40px;
  height: 4px;
  border-radius: 100px;
  background-color: #c1b6ad;
}
.indicator__progress {
  background-color: #665f55;
}

/*end Favourites Coffee*/

/*start About*/
.about__h2 {
  font-size: 5.98rem;
  text-align: left;
}

.about__column {
  display: flex;
  justify-content: space-between;
}

.about-img__box {
  width: 660px;
}

.about-img__box > *:first-child {
  margin-bottom: 40px;
}

.about-img {
  width: 100%;
  max-width: 660px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 110%;
  background-repeat: no-repeat;
  transition: all 0.7s;
  border-radius: 20px;
}
@media (hover: hover) {
  .about-img:hover {
    background-size: 100%;
  }
}

.about-img__1 {
  height: 590px;
  background-image: url(../assets/images/about-1.svg);
}

.about-img__2 {
  height: 430px;
  background-image: url(../assets/images/about-2.svg);
}

.about-img__3 {
  height: 430px;
  background-image: url(../assets/images/about-3.svg);
}

.about-img__4 {
  height: 590px;
  background-image: url(../assets/images/about-4.svg);
}

/*end About*/

/*start Mobile App*/
.mobileApp__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

@media (width < 1410px) {
  .about__column {
    flex-direction: column;
    align-items: center;
  }

  .about-img__2,
  .about-img__3 {
    display: none;
  }

  .mobileApp__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.mobileApp__content {
  max-width: 630px;
}

.mobileApp__h2 {
  text-align: left;
  margin-top: 144px;
}

.mobileApp__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}

.button-box {
  display: flex;
}

.button_transparent {
  border-radius: 100px;
  border: 1px solid #665f55;
  padding: 12px 20px;
  display: flex;
  margin-right: 20px;
  transition: all 0.8s ease;
}
@media (hover: hover) {
  .button_transparent:hover {
    color: #e1d4c9;
    background-color: #665f55;
  }
  .button_transparent:hover svg path {
    stroke: #e1d4c9;
    fill: #e1d4c9;
  }
}

.button__img {
  margin-right: 8px;
}

.button-text__container {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 116px;
}

.button-text__little {
  font-size: 1rem;
  line-height: 140%;
}
/*end Mobile App*/

/*start footer*/
.footer__wrapper {
  border-radius: 40px;
  background-color: #665f55;
  margin-top: 100px;
  margin-bottom: 100px;
}

.layout-2-column {
  display: flex;
}

.footer__column {
  width: 100%;
  max-width: 530px;
  margin: 100px 0 100px 100px;
}

.footer__h2 {
  text-align: left;
  margin-top: 0px;
  color: #e1d4c9;
}

.h2__colored {
  color: #b0907a;
}

.button_footer {
  padding: 15px 17px;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid #c1b6ad;
  transition: all 0.7s ease;
}
@media (hover: hover) {
  .button_footer:hover {
    background-color: #e1d4c9;
  }
  .button_footer:hover svg path {
    stroke: #403f3d;
  }
}
.button_footer-instagram {
  margin: 0 10px;
}

.footer__h3 {
  color: #e1d4c9;
  margin: 32px 0 40px;
}

.column__link {
  margin-top: 20px;
  display: flex;
  text-align: center;
  text-decoration: none;
}

.column__link-border {
  max-width: 182px;
  position: relative;
}

.column__link-border::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #e1d4c9;
  position: absolute;
  bottom: -4px;
  left: 50%;
  border-radius: 7px;
  transition: all 500ms ease;
}

.column__link-border:hover::after {
  left: 0;
  width: 100%;
}

.link__text {
  font-size: 1.6rem;
  line-height: 150%;
  color: #e1d4c9;
}

.link__image {
  margin-right: 6px;
}
.column__link-time {
  cursor: default;
}

/*Media*/
@media (width < 1050px) {
  .layout-2-column {
    flex-direction: column;
  }
  .footer__column-left {
    margin: 100px 60px 0;
  }
  .footer__column-right {
    margin: 100px 60px 112px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    max-width: 688px;
  }
  .logo {
    z-index: 4;
  }
  .header__hamburger {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    margin-top: 10px;
    border-radius: 100px;
    border: 1px solid #403f3d;
    z-index: 5;
  }
  .header__hamburger::before,
  .header__hamburger::after {
    content: '';
    background-color: #403f3d;
    position: absolute;
    width: 17px;
    height: 2.2px;
    transition: transform 0.5s;
  }
  .header__hamburger::before {
    top: 17px;
    left: 13px;
  }
  .header__hamburger::after {
    bottom: 16px;
    left: 13px;
  }
  .header__hamburger.active::before {
    transform: rotate(45deg);
    top: 20px;
  }
  .header__hamburger.active::after {
    transform: rotate(-45deg);
    bottom: 20px;
  }

  .header__navigation {
    position: absolute;
    right: -100%;
    top: 80px;
    background-color: #e1d4c9;
    padding: 0;
    max-width: 768px;
    height: 100vh;
    z-index: 2;
    visibility: hidden;
    transition: all 0.5s ease;
  }
  .header__navigation.active {
    transform: translateX(-100%);
    visibility: visible;
  }

  .navigation {
    display: block;
    margin-top: 80px;
  }
  .navigation__link {
    display: block;
    font-size: 32px;
    font-style: normal;
    line-height: 125%;
    padding-bottom: 60px;
  }
  a.navigation__link {
    margin-right: 3px;
  }
  .navigation__link.link__menu {
    padding-bottom: 0;
  }
  .header__menu {
    position: absolute;
    right: -100%;
    top: 600px;
    width: 100%;
    max-width: 768px;
    justify-content: center;
    z-index: 4;
    visibility: hidden;
    transition: all 0.5s ease;
  }
  .header__menu.active {
    transform: translateX(-100%);
    visibility: visible;
  }
  .menu-img {
    width: 40px;
    height: 40px;
    margin-left: 16px;
  }
  .navigation__link::after {
    background: transparent;
  }
  .enjoy__wrapper {
    padding: 100px 60px;
  }
  .button__img-cup {
    opacity: 1;
  }
  .button__menu-text {
    transform: translateX(-14px);
  }
  .about__h2 {
    max-width: 688px;
    min-height: 450px;
    margin: 100px auto 0;
  }
  .slider__arrow {
    cursor: none;
  }

  .about__column {
    margin-top: 40px;
  }

  .about-img__box {
    width: 688px;
  }

  .about-img {
    max-width: 688px;
    background-size: 107%;
  }

  .mobileApp__wrapper {
    flex-direction: column;
  }

  .mobileApp__img {
    max-width: 630px;
    margin: 100px auto;
  }
  .mobileApp__h2 {
    margin-top: 0;
  }
  .mobileApp__content {
    max-width: 680px;
  }

  .layout-2-column {
    flex-direction: column;
  }
  .footer__wrapper {
    margin: 0 auto 40px;
  }
  .footer__h3 {
    margin-top: 0px;
  }
  .footer__column-left {
    margin: 100px 60px 0;
  }
  .footer__h2 {
    margin-bottom: 41px;
  }
  .footer__column-right {
    margin: 100px 60px 103px;
  }
  .header__menu {
    border: none;
  }
  .header__menu.active {
    border: none;
  }
}

@media (max-width: 758px) {
  body {
    padding: 0 16px;
  }

  .h1 {
    font-size: 5.2rem;
    margin-top: 5px;
  }
  .p__enjoy {
    margin-top: 50px;
    margin-bottom: 38px;
  }

  .enjoy__wrapper {
    padding: 60px 16px;
    height: 552px;
  }

  .h2 {
    font-size: 5rem;
  }

  .about-img__box,
  .mobileApp__img {
    width: 580px;
  }

  .mobileApp__h2,
  .mobileApp__text {
    max-width: 570px;
  }

  .about__column {
    margin-top: 39px;
  }
}

@media (max-width: 650px) {
  .slider__arrow {
    display: none;
  }
  .slider {
    justify-content: center;
  }

  .p__slider {
    max-width: 348px;
  }

  .h2 {
    font-size: 4.2rem;
  }

  .about-img__box,
  .mobileApp__img {
    width: 480px;
  }
  .about-img {
    width: 480px;
    background-size: inherit;
  }

  .mobileApp__h2 {
    max-width: 480px;
  }

  .mobileApp__text {
    max-width: 440px;
  }
}

@media (max-width: 515px) {
  .slider__wrapper {
    width: 348px;
  }
  .slider__img {
    width: 348px;
  }
  .h2 {
    font-size: 3.9rem;
  }

  .about-img__box,
  .mobileApp__img {
    width: 405px;
  }
  .about-img {
    width: 405px;
  }
  .button-box {
    flex-direction: column;
    max-width: 200px;
  }
  .button_transparent:first-child {
    margin-bottom: 20px;
  }

  .footer__h2 {
    max-width: 370px;
  }

  .mobileApp__img {
    margin-top: 30px;
  }
}

@media (max-width: 450px) {
  .h1 {
    font-size: 4.7rem;
  }
  .about-img__box,
  .mobileApp__img {
    width: 348px;
  }
  .about-img {
    width: 348px;
  }
  .mobileApp__h2,
  .mobileApp__text {
    max-width: 380px;
  }

  .footer__column {
    max-width: 316px;
  }
  .footer__column-left {
    margin: 60px 16px 40px;
  }
  .footer__column-right {
    margin: 0 auto 65px;
  }
}

@media (max-width: 400px) {
  .wrapper {
    max-width: 348px;
  }

  .h1 {
    font-size: 4.2rem;
  }

  .h2 {
    font-size: 3.2rem;
  }

  .enjoy__content {
    width: 100%;
    max-width: 316px;
  }

  .layout-1-column {
    width: 348px;
  }
  .slider__img {
    width: 348px;
  }

  .about__h2 {
    max-width: 348px;
    min-height: 320px;
    margin: 100px auto 0;
  }

  .mobileApp__h2,
  .mobileApp__text {
    max-width: 348px;
  }
  .mobileApp__text {
    margin-bottom: 41px;
  }

  .button_transparent {
    width: 200px;
  }

  .mobileApp__content {
    min-width: 348px;
  }

  .mobileApp__img {
    max-width: 348px;
    margin-top: 39px;
  }
}
