@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  position: relative;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

button {
  outline: none;
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.no-select {
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

#navbar {
  position: fixed;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 1.3rem 1.3rem 0;
  z-index: 1000;
  border-radius: 50%;
}

#navbar .logo-icon {
  position: relative;
  width: 4rem;
  height: auto;
  padding: 0.8rem;
  background: rgba(26, 39, 86, 0.65);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
          box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#navbar .logo-icon:active {
  background: rgba(40, 52, 96, 0.65);
}

#navbar .logo-text {
  display: none;
}

#navbar .nav-links {
  display: none;
  position: relative;
  list-style-type: none;
  padding: 1rem;
  margin: 0 0 0.8rem 0;
  z-index: 1001;
  background: rgba(26, 39, 86, 0.65);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
          box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#navbar .nav-links li {
  padding: 0.5rem 0.8rem;
  margin: 0.5rem 0;
  border-radius: 10px;
}

#navbar .nav-links li:first-child {
  margin: 0;
}

#navbar .nav-links li:last-child {
  margin: 0;
}

#navbar .nav-links li:active {
  background: rgba(40, 52, 96, 0.65);
}

#navbar .nav-links a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

section {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 0 1.3rem;
}

#hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

#hero .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  -webkit-filter: opacity(0%);
          filter: opacity(0%);
}

#hero .blue-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1A2756;
  opacity: 0.6;
  z-index: -1;
}

#hero .orange-filter {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 45vw;
  height: 60vh;
  background-color: #F08C30;
  opacity: 0.7;
  -webkit-filter: blur(83px);
          filter: blur(83px);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  z-index: 0;
}

#hero h1 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  z-index: 1;
}

#hero p {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-weight: normal;
  z-index: 1;
}

#services {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 1.3rem;
  overflow: hidden;
  background: #F0F0F0;
}

#services ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  height: 100%;
}

#services li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30%;
  width: 100%;
  padding: 1rem;
  margin: 0 0 1rem 0;
  border-radius: 15px;
  background-color: #FFFFFF;
}

#services li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

#services li .services-icon {
  position: relative;
  min-width: 5rem;
  height: 5rem;
  margin: 0 0 1rem 0;
  z-index: 2;
}

#services li h1 {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  margin: 0 0 0.5rem 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
  z-index: 2;
}

#services li .equipments-card-text {
  font-size: 1.2rem;
}

#services li .arrow-go {
  height: 2rem;
  color: #000000;
  z-index: 2;
}

#services li .spot-light {
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translate(-90%) scale(1, 1);
          transform: translate(-90%) scale(1, 1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #F08C30;
  z-index: 1;
}

#services li:last-child {
  margin-bottom: 0;
}

.separator {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.separator .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.separator .watermark {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  color: #283F93;
  opacity: 0.5;
  font-size: 30rem;
  font-weight: bold;
  z-index: -1;
}

.separator .title {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-weight: bold;
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#coffee-introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0 1.3rem;
  background-color: #FFFFFF;
}

#coffee-introduction .text {
  opacity: 0;
}

#coffee-introduction h1 {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #283F93;
  font-size: 1.5rem;
  text-align: left;
}

#coffee-introduction p {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 1rem 0 2rem 0;
}

#publicity-introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0 1.3rem;
  background-color: #FFFFFF;
}

#publicity-introduction .text {
  opacity: 0;
}

#publicity-introduction h1 {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #283F93;
  font-size: 1.5rem;
  text-align: left;
}

#publicity-introduction p {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 1rem 0 2rem 0;
}

#coffee {
  position: relative;
  padding: 0;
  width: 100vw;
  height: auto;
  -webkit-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

#coffee .blend {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#coffee #esmerald .blend-title {
  color: #70B447;
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}

#coffee #esmerald .blend-btn-details {
  -webkit-box-shadow: inset 0px 0px 0px 0.15rem #70B447;
  box-shadow: inset 0px 0px 0px 0.15rem #70B447;
  color: #70B447;
  background: none;
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}

#coffee #esmerald .blend-footer svg {
  fill: #70B447;
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}

#coffee #esmerald .blend-details {
  background-color: #70B447;
}

#coffee #esmerald .blend-details p {
  color: #70B447;
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}

#coffee #esmerald .blend-details table {
  -webkit-box-shadow: inset 0px 0px 0px 2px #71b44780;
  box-shadow: inset 0px 0px 0px 2px #71b44780;
  -webkit-filter: brightness(40%);
          filter: brightness(40%);
}

#coffee #esmerald .blend-details table th {
  background-color: transparent;
  border-bottom: 2px solid #71b44780;
}

#coffee #esmerald .blend-details table h5 {
  color: #70B447;
}

#coffee #esmerald .blend-details .circle {
  -webkit-box-shadow: inset 0px 0px 0px 0.15rem #71b44780;
  box-shadow: inset 0px 0px 0px 0.15rem #71b44780;
}

#coffee #esmerald .blend-details .filled {
  background-color: #70B447;
}

#coffee #saphire .blend-title {
  color: #1A2756;
  -webkit-filter: brightness(350%);
          filter: brightness(350%);
}

#coffee #saphire .blend-btn-details {
  -webkit-box-shadow: inset 0px 0px 0px 0.15rem #1A2756;
  box-shadow: inset 0px 0px 0px 0.15rem #1A2756;
  color: #1A2756;
  background: none;
  -webkit-filter: brightness(350%);
          filter: brightness(350%);
}

#coffee #saphire .blend-footer svg {
  fill: #1A2756;
  -webkit-filter: brightness(350%);
          filter: brightness(350%);
}

#coffee #saphire .blured-blend-ill {
  opacity: 50%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

#coffee #saphire .blend-details {
  background-color: #1A2756;
}

#coffee #saphire .blend-details p {
  color: #1A2756;
  -webkit-filter: brightness(350%);
          filter: brightness(350%);
}

#coffee #saphire .blend-details table {
  -webkit-box-shadow: inset 0px 0px 0px 2px #1a275680;
  box-shadow: inset 0px 0px 0px 2px #1a275680;
  -webkit-filter: brightness(350%);
          filter: brightness(350%);
}

#coffee #saphire .blend-details table th {
  background-color: transparent;
  border-bottom: 2px solid #1a275680;
}

#coffee #saphire .blend-details table h5 {
  color: #1A2756;
}

#coffee #saphire .blend-details .circle {
  -webkit-box-shadow: inset 0px 0px 0px 0.15rem #1a275680;
  box-shadow: inset 0px 0px 0px 0.15rem #1a275680;
}

#coffee #saphire .blend-details .filled {
  background-color: #1A2756;
}

#coffee .blend-cover {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50vh;
}

#coffee .blend-cover .illustration {
  position: absolute;
  top: 50%;
  left: -50%;
  -webkit-transform: translate(25%, -50%);
          transform: translate(25%, -50%);
  border-radius: 50%;
}

#coffee .blend-cover .blured-blend-ill {
  width: 82vw;
  height: 82vw;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  z-index: 0;
}

#coffee .blend-cover .blend-ill {
  width: 80vw;
  height: 80vw;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

#coffee .blend-cover .blend-img {
  position: relative;
  width: auto;
  height: 60vw;
  z-index: 2;
}

#coffee .blend-cover .blend-shadow {
  position: absolute;
  bottom: 13vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30vw;
  height: 5vh;
  background-color: black;
  border-radius: 50%;
  opacity: .5;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: 1;
}

#coffee .blend-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 30vh;
  padding: 0 1.3rem;
}

#coffee .blend-info .blend-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
}

#coffee .blend-info .blend-btn-details, #coffee .blend-info .blend-btn-buy {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 2rem;
  border-radius: 12px;
  border: none;
}

#coffee .blend-info .blend-btn-details {
  background: none;
  margin: 1rem 0 1rem;
}

#coffee .blend-info .blend-btn-details:active {
  -webkit-filter: brightness(75%);
          filter: brightness(75%);
}

#coffee .blend-info .blend-btn-buy {
  background-color: #F08C30;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

#coffee .blend-info .blend-btn-buy:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

#coffee .blend-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10vh;
  overflow: hidden;
}

#coffee .blend-footer li {
  margin: 0 1rem;
}

#coffee .blend-footer svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 6vh;
}

#coffee .blend-details {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 2rem;
  width: 80vw;
  height: auto;
  padding: 2.5rem 1rem;
  z-index: 20;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  opacity: 0;
}

#coffee .blend-details p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  width: 100%;
}

#coffee .blend-details table {
  width: 60%;
  padding: 0;
  margin: 0;
  border-radius: 15px;
}

#coffee .blend-details table th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.4rem 0;
  border-radius: 10px 10px 0 0;
  border: none;
}

#coffee .blend-details table h5 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
}

#coffee .blend-details .intensity-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4rem 0;
}

#coffee .blend-details .circle {
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem 0 0;
  border-radius: 50%;
}

#coffee .blend-details .circle:last-child {
  margin: none;
}

#coffee .blend-details .filled {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#coffee .blend-details .back {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.3rem 2.5rem;
  border-radius: 10px;
  border: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
}

#coffee .blend-details .back:active {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

#coffee.esmerald-bg {
  background-color: #70B447;
  -webkit-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

#coffee.saphire-bg {
  background-color: #1A2756;
  -webkit-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

#equipment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0;
}

#equipment .equipment-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50vh;
  padding: 0 1.3rem;
}

#equipment .equipment-intro h1 {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #283F93;
  font-size: 2rem;
  text-align: left;
}

#equipment .equipment-intro p {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 1rem 0 2rem 0;
}

#equipment .equipment-intro .equipment-btn-buy {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.4rem 1.5rem;
  border-radius: 12px;
  border: none;
  background-color: #F08C30;
  color: #ffffff;
  text-decoration: none;
}

#equipment .equipment-intro .equipment-btn-buy:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

#equipment .equipment-showcase {
  position: relative;
  width: 100%;
  height: 50vh;
  max-height: 50vh;
  overflow: hidden;
}

#equipment .equipment-showcase .equipment-imgs img {
  height: 100%;
  max-width: 90vw;
  -o-object-fit: cover;
     object-fit: cover;
}

#publicity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: auto;
  padding: 0;
}

#publicity ul {
  position: relative;
  list-style-type: none;
  width: 100vw;
  height: 100vh;
}

#publicity li {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

#publicity li img {
  width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(rgba(255, 255, 255, 0)));
          mask-image: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 100%);
}

#publicity li .info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 1.3rem;
  margin: 0 0 4rem 0;
  opacity: 0;
}

#publicity li h1 {
  font-family: "Montserrat", sans-serif;
  color: #283F93;
  font-size: 1.5rem;
}

#publicity li p {
  font-family: "Roboto", sans-serif;
  color: #000000;
  opacity: 0.8;
  font-size: 1.2rem;
}

#contacts {
  width: 100vw;
  height: auto;
  padding: 4rem 1.3rem;
  background-color: #1A2756;
}

#contacts form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
          box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#contacts form h1 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

#contacts form label {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 0.8rem 0;
}

#contacts form textarea, #contacts form input {
  padding: 1rem;
  border-radius: 15px;
  border: none;
  background-color: white;
}

#contacts form textarea {
  min-height: 25%;
  margin: 0 0 1rem 0;
  resize: none;
}

#contacts form .btn-send {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  width: 50%;
  padding: 0.5 2rem;
  background: #F08C30;
}

#contacts form .btn-send:active {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

#contacts .contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 20vh;
  list-style-type: none;
  margin: 3rem 0 0 0;
}

#contacts .contact-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
}

#contacts .contact-links li a {
  text-decoration: none;
  color: #ffffff;
}

#contacts .contact-links li .contacts-icons {
  width: 1.4rem;
  height: 1.4rem;
  fill: white;
}

@media (min-width: 481px) {
  #hero {
    padding: 0 2rem;
  }
  #hero h1 {
    font-size: 3.5rem;
  }
  #hero p {
    max-width: 75%;
    font-size: 1.3rem;
  }
  #services ul {
    width: 60%;
  }
  #services li {
    height: 28%;
    margin: 0 0 2rem 0;
  }
  #coffee-introduction {
    padding: 0 4rem;
  }
  #coffee-introduction h1 {
    font-size: 1.8rem;
  }
  #coffee-introduction p {
    font-size: 1.1rem;
  }
  #coffee .blend-cover .blured-blend-ill {
    width: 80vw;
    height: 80vw;
  }
  #coffee .blend-cover .blend-ill {
    width: 78vw;
    height: 78vw;
  }
  #coffee .blend-cover .blend-img {
    height: 58vw;
  }
  #coffee .blend-cover .blend-shadow {
    bottom: 3vw;
  }
  #coffee .blend-info .blend-title {
    font-size: 4.2rem;
  }
  #coffee .blend-info button {
    padding: 0.8rem 3rem;
  }
  #coffee .blend-details {
    width: 60vw;
  }
  #coffee .blend-details p {
    font-size: 1.2rem;
  }
  #coffee .blend-details table {
    width: 52%;
  }
  #coffee .blend-details .back {
    padding: 0.8rem 3rem;
  }
  #equipment .equipment-intro {
    padding: 0 4rem;
  }
  #equipment .equipment-intro h1 {
    font-size: 1.8rem;
  }
  #equipment .equipment-intro p {
    font-size: 1.1rem;
  }
  #equipment .equipment-showcase .equipment-imgs img {
    max-width: 50vh;
  }
  #publicity-introduction {
    padding: 0 4rem;
  }
  #publicity-introduction h1 {
    font-size: 1.8rem;
  }
  #publicity-introduction p {
    font-size: 1.1rem;
  }
  #publicity li img {
    height: 80vh;
  }
  #publicity li .info {
    margin: 0 0 6rem 0;
  }
  #publicity li h1 {
    font-size: 2.5rem;
  }
  #publicity li p {
    font-size: 1.4rem;
  }
  #contacts {
    padding: 8rem 5.3rem;
  }
  #contacts .contact-links {
    height: 15vh;
    margin: 5rem 0 0 0;
  }
  #contacts .contact-links li {
    font-size: 1.7rem;
    margin: 0 0 1rem 0;
  }
  #contacts .contact-links li .contacts-icons {
    width: 1.7rem;
    height: 1.7rem;
    fill: white;
  }
  #contacts form input {
    font-size: 1.4rem;
  }
  #contacts form textarea {
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  #navbar {
    margin: 0 2rem 2rem 0;
  }
  #navbar .logo-icon {
    width: 5rem;
    padding: 1rem;
  }
  #navbar .nav-links {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
  }
  #navbar .nav-links li {
    margin: 1rem 0;
  }
  #services li .spot-light {
    top: 3rem;
    width: 4rem;
    height: 4rem;
  }
  #services li h1 {
    font-size: 2rem;
  }
  #services li .equipments-card-text {
    font-size: 1.8rem;
  }
  #coffee-introduction {
    padding: 0 6rem;
  }
  #coffee-introduction h1 {
    font-size: 2.2rem;
  }
  #coffee-introduction p {
    font-size: 1.3rem;
  }
  #coffee .blend-info .blend-title {
    font-size: 6rem;
  }
  #coffee .blend-info .blend-btn-details, #coffee .blend-info .blend-btn-buy {
    padding: 1.4rem 5rem;
    font-size: 1.8rem;
    border-radius: 22px;
  }
  #coffee .blend-details {
    width: 70vw;
    padding: 3rem;
    gap: 3rem;
  }
  #coffee .blend-details p {
    font-size: 1.4rem;
  }
  #coffee .blend-details table {
    width: 52%;
  }
  #coffee .blend-details table th {
    padding: 0.6rem 0;
  }
  #coffee .blend-details table h5 {
    font-size: 1.6rem;
  }
  #coffee .blend-details table .intensity-rating {
    padding: 0.6rem 0;
  }
  #coffee .blend-details table .circle {
    width: 1.5rem;
    height: 1.5rem;
  }
  #coffee .blend-details .back {
    padding: 1.2rem 4rem;
    font-size: 1.8rem;
    border-radius: 18px;
  }
  #equipment .equipment-intro {
    padding: 0 6rem;
  }
  #equipment .equipment-intro h1 {
    font-size: 2.2rem;
  }
  #equipment .equipment-intro p {
    font-size: 1.3rem;
  }
  #equipment .equipment-intro .equipment-btn-buy {
    padding: 1rem 3rem;
    font-size: 1.8rem;
    border-radius: 15px;
  }
  #publicity-introduction {
    padding: 0 6rem;
  }
  #publicity-introduction h1 {
    font-size: 2.2rem;
  }
  #publicity-introduction p {
    font-size: 1.3rem;
  }
  #contacts {
    padding: 8rem 6.4rem;
  }
  #contacts .contact-links {
    height: 15vh;
    margin: 5rem 0 0 0;
  }
  #contacts .contact-links li {
    font-size: 1.7rem;
    margin: 0 0 1rem 0;
  }
  #contacts .contact-links li .contacts-icons {
    width: 1.7rem;
    height: 1.7rem;
    fill: white;
  }
  #contacts form h1 {
    font-size: 2.5rem;
  }
  #contacts form label {
    font-size: 1.2rem;
  }
  #contacts form input {
    font-size: 1.4rem;
  }
  #contacts form textarea {
    font-size: 1.4rem;
    min-width: 10vh;
  }
  #contacts form .btn-send {
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  #navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    padding: 2rem;
  }
  #navbar .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  #navbar .logo-icon {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0;
    width: 3rem;
  }
  #navbar .logo-icon:active {
    background: none;
  }
  #navbar .logo-text {
    display: block;
    width: 8rem;
  }
  #navbar .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    margin: 0;
    padding: 0;
  }
  #navbar .nav-links a {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  #hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  #hero p {
    max-width: 65%;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  #services ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 50%;
  }
  #services li {
    position: relative;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }
  #services li h1 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
  }
  #services li .equipments-card-text {
    font-size: 1.6rem;
  }
  #services li .spot-light {
    top: 2rem;
    width: 4rem;
    height: 4rem;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
  }
  #services a:hover > .spot-light {
    -webkit-transform: scale(20) !important;
            transform: scale(20) !important;
  }
  .separator .title {
    font-size: 3.5rem;
  }
  #coffee-introduction {
    padding: 0 8rem;
  }
  #coffee-introduction h1 {
    font-size: 2.5rem;
  }
  #coffee-introduction p {
    font-size: 1.5rem;
  }
  #coffee .blend {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto;
  }
  #coffee .blend-cover {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 4;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 40vw;
    height: 100%;
  }
  #coffee .blend-cover .illustration {
    position: absolute;
    top: 50%;
    left: -50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #coffee .blend-cover .blured-blend-ill {
    width: 52vw;
    height: 52vw;
  }
  #coffee .blend-cover .blend-ill {
    width: 50vw;
    height: 50vw;
  }
  #coffee .blend-cover .blend-img {
    height: 38vw;
  }
  #coffee .blend-cover .blend-shadow {
    bottom: 11vw;
    right: 0;
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: 20vw;
  }
  #coffee .blend-info {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 17rem;
    height: 100%;
    padding: 4rem 2rem;
  }
  #coffee .blend-info .blend-btn-details {
    display: none;
  }
  #coffee .blend-info .blend-btn-buy {
    padding: 1rem 4rem;
    font-size: 1.6em;
    border-radius: 12px;
  }
  #coffee .blend-details {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    width: auto;
    height: 100%;
    padding: 0 2rem;
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
  }
  #coffee .blend-details p {
    font-size: 1.3rem;
  }
  #coffee .blend-details .back {
    display: none;
  }
  #coffee #esmerald .blend-details {
    background-color: transparent;
  }
  #coffee #saphire .blend-details {
    background-color: transparent;
  }
  #coffee .blend-footer {
    position: absolute;
    bottom: 1rem;
  }
  #equipment .equipment-intro {
    padding: 0 8rem;
  }
  #equipment .equipment-intro h1 {
    font-size: 2.5rem;
  }
  #equipment .equipment-intro p {
    font-size: 1.5rem;
  }
  #equipment .equipment-intro button {
    padding: 0.8rem 2.5rem;
    font-size: 1.6rem;
    border-radius: 15px;
  }
  #equipment .equipment-showcase .equipment-imgs img {
    max-width: 45vh;
  }
  #publicity-introduction {
    padding: 0 8rem;
  }
  #publicity-introduction h1 {
    font-size: 2.5rem;
  }
  #publicity-introduction p {
    font-size: 1.5rem;
  }
  #publicity .publicity-jobs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  #publicity ul {
    width: 70vw;
  }
  #publicity li img {
    width: 35vw;
    height: 80vh;
    max-width: 36vw;
  }
  #publicity li .info {
    position: relative;
  }
  #contacts {
    padding: 8rem 15rem;
  }
}

@media (min-width: 1201px) {
  #navbar {
    padding: 3rem 4rem;
  }
  #hero {
    padding: 0 4rem;
  }
  #services {
    padding: 4rem;
  }
  #services ul {
    gap: 2rem;
  }
  #services li .spot-light {
    top: 5rem;
    left: 50%;
  }
  .separator {
    padding: 0 4rem;
  }
  #coffee-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #coffee-introduction h1 {
    width: 80%;
  }
  #coffee-introduction p {
    width: 80%;
  }
  #coffee .blend-cover {
    width: 38vw;
  }
  #coffee .blend-cover .blured-blend-ill {
    width: 47vw;
    height: 47vw;
  }
  #coffee .blend-cover .blend-ill {
    width: 45vw;
    height: 45vw;
  }
  #coffee .blend-cover .blend-img {
    height: 35vw;
  }
  #coffee .blend-cover .blend-shadow {
    bottom: 13vw;
    width: 18vw;
  }
  #coffee .blend-info {
    padding: 4rem 4rem;
  }
  #coffee .blend-details {
    padding: 0 10rem 0 4rem;
  }
  #coffee .blend-details table {
    width: 45%;
  }
  #coffee .blend-footer {
    bottom: 0.5rem;
  }
  #equipment .equipment-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #equipment .equipment-intro h1 {
    width: 80%;
  }
  #equipment .equipment-intro p {
    width: 80%;
  }
  #equipment .equipment-showcase .equipment-imgs img {
    max-width: 45vh;
  }
  #publicity-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #publicity-introduction h1 {
    width: 80%;
  }
  #publicity-introduction p {
    width: 80%;
  }
  #contacts {
    padding: 8rem 24rem;
  }
  #contacts .contact-links li {
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
  }
  #contacts .contact-links li .contacts-icons {
    width: 2rem;
    height: 2rem;
    fill: white;
  }
}

@media (min-width: 1920px) {
  #navbar {
    padding: 4rem 6rem;
  }
  #hero {
    padding: 0 6rem;
  }
  #hero h1 {
    font-size: 4.8rem;
    max-width: 48%;
  }
  #hero p {
    font-size: 1.4rem;
    max-width: 48%;
  }
  #services {
    padding: 6rem;
  }
  #services ul {
    gap: 4rem;
  }
  #services li a {
    gap: 1rem;
  }
  #services li h1 {
    font-size: 2.3rem;
  }
  #services li .spot-light {
    top: 6rem;
    left: 50%;
  }
  #services li .arrow-go {
    height: 2.3rem;
  }
  .separator {
    padding: 0 6rem;
  }
  .separator .title {
    font-size: 4rem;
  }
  #coffee-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #coffee-introduction h1 {
    width: 80%;
    font-size: 3.5rem;
  }
  #coffee-introduction p {
    width: 75%;
  }
  #coffee .blend-cover {
    width: 34vw;
  }
  #coffee .blend-cover .blured-blend-ill {
    width: 42vw;
    height: 42vw;
  }
  #coffee .blend-cover .blend-ill {
    width: 40vw;
    height: 40vw;
  }
  #coffee .blend-cover .blend-img {
    height: 30vw;
  }
  #coffee .blend-cover .blend-shadow {
    bottom: 12.5vw;
    width: 14vw;
  }
  #coffee .blend-info {
    padding: 4rem 10rem;
    gap: 18rem;
  }
  #coffee .blend-details {
    padding: 0 12rem 0 10rem;
    gap: 2rem;
  }
  #coffee .blend-details p {
    font-size: 1.5rem;
  }
  #coffee .blend-details table {
    width: 35%;
  }
  #coffee .blend-footer {
    bottom: 0.5rem;
  }
  #equipment {
    height: 100vh;
  }
  #equipment .equipment-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #equipment .equipment-intro h1 {
    width: 80%;
    font-size: 3.5rem;
  }
  #equipment .equipment-intro p {
    width: 75%;
  }
  #equipment .equipment-showcase {
    height: 50vh;
    max-height: 50vh;
  }
  #equipment .equipment-showcase .equipment-imgs img {
    max-width: 45vh;
  }
  #publicity-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #publicity-introduction h1 {
    width: 80%;
    font-size: 3.5rem;
  }
  #publicity-introduction p {
    width: 75%;
  }
  #publicity ul {
    width: 70vw;
  }
  #publicity .publicity-jobs {
    gap: 4rem;
  }
  #contacts {
    padding: 8rem 40rem;
  }
  #contacts .contact-links li {
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
  }
  #contacts .contact-links li .contacts-icons {
    width: 2rem;
    height: 2rem;
    fill: white;
  }
}

@media (min-width: 2200px) {
  #navbar {
    padding: 6rem 14rem;
  }
  #navbar .logo-icon {
    width: 4rem;
  }
  #navbar .logo-text {
    width: 10rem;
    height: 2.8rem;
  }
  #navbar .nav-links {
    font-size: 1.5rem;
  }
  #hero {
    padding: 0 14rem;
  }
  #hero h1 {
    font-size: 4.8rem;
    max-width: 50%;
  }
  #hero p {
    font-size: 1.4rem;
    max-width: 50%;
  }
  #services {
    padding: 8rem;
  }
  #services ul {
    gap: 5rem;
  }
  #services li h1 {
    font-size: 2.5rem;
  }
  #services li .services-icon {
    height: 6rem;
  }
  #services li .equipments-card-text {
    font-size: 2.5rem;
  }
  #services li .arrow-go {
    height: 2.8rem;
  }
  .separator .title {
    font-size: 4.2rem;
  }
  #coffee-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 14rem;
  }
  #coffee-introduction h1 {
    width: 80%;
    font-size: 3.8rem;
  }
  #coffee-introduction p {
    width: 70%;
    font-size: 1.8rem;
  }
  #coffee .blend-cover {
    width: 34vw;
  }
  #coffee .blend-cover .blured-blend-ill {
    width: 39vw;
    height: 39vw;
  }
  #coffee .blend-cover .blend-ill {
    width: 38vw;
    height: 38vw;
  }
  #coffee .blend-cover .blend-img {
    height: 28vw;
  }
  #coffee .blend-cover .blend-shadow {
    bottom: 11.5vw;
    width: 13vw;
  }
  #coffee .blend-info {
    padding: 4rem 12rem;
    gap: 27rem;
  }
  #coffee .blend-info .blend-title {
    font-size: 7rem;
  }
  #coffee .blend-info .blend-btn-buy {
    padding: 1.2rem 4.5rem;
    font-size: 2rem;
  }
  #coffee .blend-details {
    padding: 0 20rem 0 12rem;
    gap: 3rem;
  }
  #coffee .blend-details p {
    font-size: 1.8rem;
  }
  #coffee .blend-details table {
    width: 37%;
  }
  #coffee .blend-details table th {
    padding: 0.5rem;
  }
  #coffee .blend-details table h5 {
    font-size: 2rem;
  }
  #coffee .blend-details table .intensity-rating {
    padding: 0.5rem 0;
  }
  #coffee .blend-details table .circle {
    width: 2.2rem;
    height: 2.2rem;
  }
  #coffee #esmerald .blend-details table {
    -webkit-box-shadow: inset 0px 0px 0px 0.28rem #71b44780;
    box-shadow: inset 0px 0px 0px 0.28rem #71b44780;
  }
  #coffee #esmerald .blend-details table th {
    border-bottom: 5px solid #71b44780;
  }
  #coffee #esmerald .blend-details .circle {
    -webkit-box-shadow: inset 0px 0px 0px 0.23rem #71b44780;
    box-shadow: inset 0px 0px 0px 0.23rem #71b44780;
  }
  #coffee #saphire .blend-details table {
    -webkit-box-shadow: inset 0px 0px 0px 0.28rem #1a275680;
    box-shadow: inset 0px 0px 0px 0.28rem #1a275680;
  }
  #coffee #saphire .blend-details table th {
    border-bottom: 5px solid #1a275680;
  }
  #coffee #saphire .blend-details .circle {
    -webkit-box-shadow: inset 0px 0px 0px 0.23rem #1a275680;
    box-shadow: inset 0px 0px 0px 0.23rem #1a275680;
  }
  #coffee .blend-footer {
    bottom: 0.3rem;
  }
  #equipment {
    height: 100vh;
  }
  #equipment .equipment-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 14rem;
  }
  #equipment .equipment-intro h1 {
    width: 80%;
    font-size: 3.8rem;
  }
  #equipment .equipment-intro p {
    width: 70%;
    font-size: 1.8rem;
  }
  #equipment .equipment-showcase {
    height: 50vh;
    max-height: 50vh;
  }
  #equipment .equipment-showcase .equipment-imgs img {
    max-width: 45vh;
  }
  #publicity-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 14rem;
  }
  #publicity-introduction h1 {
    width: 80%;
    font-size: 3.8rem;
  }
  #publicity-introduction p {
    width: 70%;
    font-size: 1.8rem;
  }
  #publicity li h1 {
    font-size: 3.5rem;
  }
  #publicity li p {
    font-size: 2rem;
  }
  #publicity li .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  #publicity .publicity-jobs {
    gap: 6rem;
  }
  #contacts {
    padding: 10rem 52rem;
  }
  #contacts form {
    gap: 0.15rem;
    padding: 3rem;
    border-radius: 25px;
  }
  #contacts form h1 {
    font-size: 3rem;
  }
  #contacts form label {
    font-size: 1.4rem;
  }
  #contacts form input {
    font-size: 1.6rem;
  }
  #contacts form textarea {
    font-size: 1.6rem;
  }
  #contacts .contact-links li {
    font-size: 2.6rem;
    margin: 0 0 2rem 0;
    gap: 2rem;
  }
  #contacts .contact-links li .contacts-icons {
    width: 2.6rem;
    height: 2.6rem;
    fill: white;
  }
}

@media (min-width: 2560px) {
  #navbar {
    padding: 4rem 10rem;
  }
  #navbar .logo-icon {
    width: 5rem;
  }
  #navbar .logo-text {
    width: 10rem;
    height: 4rem;
  }
  #navbar .nav-links {
    font-size: 1.8rem;
  }
  #hero {
    padding: 0 10rem;
  }
  #hero h1 {
    font-size: 6.5rem;
    max-width: 50%;
  }
  #hero p {
    font-size: 1.8rem;
    max-width: 48%;
  }
  #services {
    padding: 10rem;
  }
  #services ul {
    gap: 6rem;
  }
  #services li a {
    gap: 3rem;
  }
  #services li h1 {
    font-size: 3.3rem;
  }
  #services li .services-icon {
    height: 8rem;
  }
  #services li .equipments-card-text {
    font-size: 2.8rem;
  }
  #services li .spot-light {
    top: 5rem;
    left: 50%;
    width: 5rem;
    height: 5rem;
  }
  #services li .arrow-go {
    height: 3.3rem;
  }
  .separator {
    padding: 0 10rem;
  }
  .separator .title {
    font-size: 5.5rem;
  }
  #coffee-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10rem;
  }
  #coffee-introduction h1 {
    width: 80%;
    font-size: 4.5rem;
  }
  #coffee-introduction p {
    width: 75%;
    font-size: 1.8rem;
  }
  #coffee .blend-cover {
    width: 34vw;
  }
  #coffee .blend-cover .blured-blend-ill {
    width: 40vw;
    height: 40vw;
  }
  #coffee .blend-cover .blend-ill {
    width: 38vw;
    height: 38vw;
  }
  #coffee .blend-cover .blend-img {
    height: 29vw;
  }
  #coffee .blend-cover .blend-shadow {
    bottom: 13vw;
    width: 14vw;
  }
  #coffee .blend-info {
    padding: 4rem 12rem;
    gap: 27rem;
  }
  #coffee .blend-info .blend-title {
    font-size: 9rem;
  }
  #coffee .blend-info .blend-btn-buy {
    padding: 1.5rem 5rem;
    font-size: 2.2rem;
  }
  #coffee .blend-details {
    padding: 0 20rem 0 12rem;
    gap: 3rem;
  }
  #coffee .blend-details p {
    font-size: 2rem;
  }
  #coffee .blend-details table {
    width: 37%;
  }
  #coffee .blend-details table th {
    padding: 1rem;
  }
  #coffee .blend-details table h5 {
    font-size: 2.2rem;
  }
  #coffee .blend-details table .intensity-rating {
    padding: 1rem 0;
  }
  #coffee .blend-details table .circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  #coffee #esmerald .blend-details table {
    -webkit-box-shadow: inset 0px 0px 0px 0.3rem #71b44780;
    box-shadow: inset 0px 0px 0px 0.3rem #71b44780;
  }
  #coffee #esmerald .blend-details table th {
    border-bottom: 6px solid #71b44780;
  }
  #coffee #esmerald .blend-details .circle {
    -webkit-box-shadow: inset 0px 0px 0px 0.25rem #71b44780;
    box-shadow: inset 0px 0px 0px 0.25rem #71b44780;
  }
  #coffee #saphire .blend-details table {
    -webkit-box-shadow: inset 0px 0px 0px 0.3rem #1a275680;
    box-shadow: inset 0px 0px 0px 0.3rem #1a275680;
  }
  #coffee #saphire .blend-details table th {
    border-bottom: 6px solid #1a275680;
  }
  #coffee #saphire .blend-details .circle {
    -webkit-box-shadow: inset 0px 0px 0px 0.25rem #1a275680;
    box-shadow: inset 0px 0px 0px 0.25rem #1a275680;
  }
  #coffee .blend-footer {
    bottom: 0.3rem;
  }
  #equipment {
    height: 100vh;
  }
  #equipment .equipment-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10rem;
  }
  #equipment .equipment-intro h1 {
    width: 80%;
    font-size: 4.5rem;
  }
  #equipment .equipment-intro p {
    width: 75%;
    font-size: 1.8rem;
  }
  #equipment .equipment-showcase {
    height: 50vh;
    max-height: 50vh;
  }
  #equipment .equipment-showcase .equipment-imgs img {
    max-width: 45vh;
  }
  #publicity-introduction {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10rem;
  }
  #publicity-introduction h1 {
    width: 80%;
    font-size: 4.5rem;
  }
  #publicity-introduction p {
    width: 75%;
    font-size: 1.8rem;
  }
  #publicity ul {
    width: 70vw;
  }
  #publicity li h1 {
    font-size: 3.5rem;
  }
  #publicity li p {
    font-size: 2rem;
  }
  #publicity li .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  #publicity .publicity-jobs {
    gap: 6rem;
  }
  #contacts {
    padding: 10rem 54rem;
  }
  #contacts form {
    gap: 0.2rem;
    padding: 4rem;
    border-radius: 30px;
  }
  #contacts form h1 {
    font-size: 3rem;
  }
  #contacts form label {
    font-size: 1.5rem;
  }
  #contacts form input {
    font-size: 1.8rem;
  }
  #contacts form textarea {
    font-size: 1.8rem;
  }
  #contacts .contact-links li {
    font-size: 3rem;
    margin: 0 0 2rem 0;
    gap: 2rem;
  }
  #contacts .contact-links li .contacts-icons {
    width: 3rem;
    height: 3rem;
    fill: white;
  }
}
/*# sourceMappingURL=style.css.map */