html {
  scroll-behavior: smooth;
  background-color: #e1d4c9;
  font-family: "Inter", sans-serif;
  font-size: 72px;
  box-sizing: border-box;
  color: #403f3d;
}

body {
  max-width: 1440px;
  margin: 0px auto;
  padding: 20px 40px 40px 40px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.burger-body {
  overflow: hidden;
}

.basic-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #403f3d;
}

.nav_wrapper {
  display: flex;
  display: flex;
}

nav {
  width: clamp(600px, 80vw, 1188px);
}
ul {
  list-style-type: none;
  display: flex;
  padding: 0px;
  margin-left: 366px;
  margin-right: 366px;
  justify-content: space-between;
}
a {
  text-decoration: none;
  color: #403f3d;
}
.logo {
  background-image: url(../assets/logo.png);
  width: 100px;
  height: 60px;
  background-size: contain;
}

.logo-link {
  display: block;
  width: inherit;
  height: inherit;
}

.menu {
  display: flex;
  height: 38px;
}

.menu-btn {
  display: none;
}
.menu-btn_line {
  display: none;
}

.cup {
  background-image: url(../assets/coffee-cup.png);
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-top: 16px;
  margin-left: 8px;
}

.underline {
  position: relative;
  transform: scaleX(1);
}

.underline:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #403f3d;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transition: transform 0.4s;
}

.burger-menu {
  margin-top: 20px;
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 80px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: #e1d4c9;
  transform: translateX(150%);
  transition: transform 0.5s;
  z-index: 10;
}

.burger-menu__active {
  transform: translateX(0);
  transition: transform 0.5s;
}

.burger-text {
  margin-top: clamp(10px, 13.6vh, 60px);
  margin-left: auto;
  margin-right: auto;
  color: #403f3d;
  font-size: 32px;
  line-height: 125%;
  font-weight: 600;
  display: flex;
}

.menu-link {
  margin-top: clamp(10px, 10vh, 100px);
}

.burger-svg {
  margin-left: 20px;
}

.hero_wrapper {
  background-image: url(../assets/home/img-hero.jpg);
  height: 644px;
  margin-top: 20px;
  border-radius: 40px;
  background-size: cover;
  background-position: 0px;
  position: relative;
}

.video-wrapper {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  border-radius: 40px;
  overflow: hidden;
}

.video {
  position: relative;
  height: 120%;
  top: -20px;
}

.hero-text {
  padding-top: 100px;
  margin-left: 100px;
  width: 530px;
}

h1 {
  position: relative;
  margin: 0px;
  font-size: 1rem;
  color: #e1d4c9;
  font-weight: 600;
  line-height: 105%;
}

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

.hero_main-text {
  position: relative;
  margin-top: 40px;
  font-size: 16px;
  line-height: 150%;
  color: #e1d4c9;
}

.hero-button {
  position: relative;
  margin-top: 40px;
  padding-top: 6px;
  width: 200px;
  height: 64px;
  background-color: #e1d4c9;
  border-radius: 100px;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.btn-link {
  display: flex;
  width: inherit;
  height: inherit;
  position: relative;
}

.btn-line {
  width: fit-content;
  margin-left: 78px;
  margin-top: 15px;
  transform: translate(0px);
  transition: 0.4s;
}

.icon-place {
  width: 20px;
  height: 20px;
  opacity: 0;
  position: absolute;
  left: 120px;
  top: 15px;
  transition: 0.4s;
  background-image: url(../assets/coffee-cup.png);
  background-size: contain;
}

.fav-coffee {
  margin-top: 100px;
}

h2 {
  margin: 0px;
  font-size: 60px;
  text-align: center;
  font-weight: 600;
}

.home-slider {
  margin-top: 40px;
  display: flex;
}

.btn {
  margin-top: 10px;
  margin-left: 3px;
  display: flex;
  border-color: #665f55;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 1px solid;
  justify-content: center;
  align-self: center;
}

.prev-arr {
  margin-top: 20px;
}

.prod-wrapper {
  width: 1152px;
  margin-left: 41px;
}

.slider-window {
  width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  width: fit-content;
  transition: transform 1s;
}

.prod-card {
  width: 480px;
  text-align: center;
  margin-right: 100px;
}

.coffee-img {
  margin-top: 5px;
  background-image: url(../assets/home/coffee-slider-1.png);
  width: 480px;
  height: 480px;
  background-size: cover;
}

.coffee-img-2 {
  margin-top: 5px;
  background-image: url(../assets/home/coffee-slider-2.png);
  width: 480px;
  height: 480px;
  background-size: cover;
}

.coffee-img-3 {
  margin-top: 5px;
  background-image: url(../assets/home/coffee-slider-3.png);
  width: 480px;
  height: 480px;
  background-size: cover;
}

.coffee-name {
  margin-top: 23px;
}
.coffee-font {
  font-size: 24px;
  font-weight: 600;
}

.description {
  margin-top: 15px;
  font-size: 16px;
  line-height: 150%;
  color: #403f3d;
}

.coffee-price {
  margin-top: 17px;
}

.next {
  margin-left: 39px;
}
.next-arr {
  margin-top: 20px;
}

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

.contr-line {
  width: 37px;
  height: 4px;
  background-color: #c1b6ad;
}

.dark-line {
  width: 0px;
  height: 100%;
  background-color: #665f55;
}

.about {
  margin-top: 100px;
}

.about-title {
  text-align: left;
  line-height: 75px;
}

.about-photos {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 660px 660px;
  row-gap: 40px;
  grid-template-rows: 430px 120px 430px;
  column-gap: 40px;
}

.photo {
  background-color: cadetblue;
}

.about-1 {
  grid-row-end: span 2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.img-1 {
  position: absolute;
  top: -65px;
  left: -32px;
  transform: scale(1);
  transition: 0.5s;
}

.about-3 {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.img-3 {
  position: absolute;
  top: -150px;
  left: -32px;
  transform: scale(1);
  transition: 0.5s;
}

.about-4 {
  border-radius: 20px;

  grid-row-end: span 2;
  overflow: hidden;
  position: relative;
}

.img-4 {
  position: absolute;
  top: -65px;
  left: -32px;
  transform: scale(1);
  transition: 0.5s;
}

.about-2 {
  border-radius: 20px;
  background-color: #b0907a;
  overflow: hidden;
  position: relative;
}

.img-2 {
  position: absolute;
  top: -150px;
  left: -32px;
  transform: scale(1);
  transition: 0.5s;
}

.apps {
  margin-top: 100px;
  display: flex;
}

.apps-text {
  width: 630px;
}

.apps-title {
  margin-top: 144px;
  text-align: left;
  line-height: 75px;
}

.app-description {
  font-size: 16px;
  line-height: 150%;
  color: #403f3d;
  margin-top: 42px;
}

.apps-btn {
  display: flex;
  margin-top: 40px;
  width: 420px;
  justify-content: space-between;
}

.store-btn {
  width: 200px;
  height: 62px;
  border-radius: 100px;
  border: 1px solid #665f55;
  display: flex;
  transition: 2s;
}

.icon {
  width: 36px;
  height: 36px;
  position: relative;
  margin-top: 13px;
  margin-left: 20px;
  transition: 2s;
}

.icon-svg {
  position: absolute;
  top: 0px;
  transition: 2s;
}

.icon-text {
  margin-left: 8px;
  color: #403f3d;
}

.icon-comment {
  line-height: 140%;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 0px;
}
.app-name {
  line-height: 150%;
  font-weight: 600;
  font-size: 16px;
  margin: 2px -1px;
}

.apps-img {
  background-image: url(../assets/home/mobile-screens.png);
  margin-left: 100px;
  width: 630px;
  height: 630px;
}
footer {
  margin-top: 100px;
  background-color: #665f55;
  border-radius: 40px;
  height: 450px;
  display: flex;
}

.footer-wrapper {
  display: flex;
  margin-top: 100px;
  margin-left: 100px;
  justify-content: space-between;
}

.networks-wrapper {
  width: 530px;
}

.motto-1 {
  line-height: 125%;
  font-size: 60px;
  font-weight: 600;
  color: #e1d4c9;
}

.motto-2 {
  line-height: 125%;
  font-size: 60px;
  font-weight: 600;
  color: #b0907a;
  font-style: italic;
}

.networks {
  margin-top: 40px;
  width: 204px;
  display: flex;
  justify-content: space-between;
}

.net-icons {
  border: 1px solid #c1b6ad;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  transition: 1s;
  cursor: pointer;
}

.net-icon-wrapper {
  position: relative;
  margin: 18px 18px;
}

.net-svg {
  position: absolute;
}

.contact-wrapper {
  margin-left: 100px;
  margin-top: 35px;
}
.contact-title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 600;
  color: #e1d4c9;
}

.details-wrapper {
  margin-top: 38px;
}

.contact-info {
  display: flex;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 16px;
  line-height: 150%;
  font-weight: 600;
  color: #e1d4c9;
  margin-left: 30px;
}

.contact-icon {
  position: relative;
}

.contact-svg {
  position: absolute;
}

.contact-link {
  position: relative;
  transform: scaleX(1);
  width: fit-content;
}

.contact-link:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e1d4c9;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transition: transform 0.4s;
}
