/**
* Set up a decent box model on the root element
*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
}

/**
* Make all elements from the DOM inherit from the parent box-sizing
* Since `*` has a specificity of 0, it does not override the `html` value
* making all elements inheriting from the root box-sizing value
* See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
}

body {
  background: #fff;
}

body, ul, ol, dl {
  margin: 0;
}

article, aside, audio,
footer, header, nav, section, video {
  display: block;
}

p {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* sets hyphenation by default on paragraphs */
textarea {
  resize: vertical;
}

/* changes textarea resizing from "both" (UA default) to vertical only */
table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
}

input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  border: 0px;
}

/* removes the inner border effect from focused buttons for form elements in Firefox */
input[type=search] {
  -webkit-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

/* removes the OS X appearance from HTML5 search inputs and submit buttons when viewed in Safari */
input:required:after {
  color: #f00;
  content: " *";
}

/* sets up required form fields with the conventional following red asterix */
input[type=email]:invalid {
  background: #f00;
}

sub, sup {
  line-height: 0;
}

/**
* Basic styles for links
*/
a {
  color: #305fab;
  text-decoration: none;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

html.has-scroll-smooth, [data-scroll-container] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}
/**
* Basic typography style for copy text
*/
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "Cocogoose Light";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_light.woff") format("woff"), url("./fonts/Cocogoose_light.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Pro";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_pro.woff") format("woff"), url("./fonts/Cocogoose_pro.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Semilight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_semilight.woff") format("woff"), url("./fonts/Cocogoose_semilight.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose thin";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_thin.woff") format("woff"), url("./fonts/Cocogoose_thin.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose ultralight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_ultralight.woff") format("woff"), url("./fonts/Cocogoose_ultralight.woff2") format("woff2");
}
body {
  font-size: 14px;
  font-family: "Cocogoose light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-smooth: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
* Clear inner floats
*/
.ultrathin {
  font-family: "Cocogoose ultralight";
}

.pro {
  font-family: "Cocogoose Pro";
}

.semilight {
  font-family: "Cocogoose Semilight";
}

.light {
  font-family: "Cocogoose Light";
}

.thin {
  font-family: "Cocogoose thin";
}

.default-text {
  font-family: "Inter", sans-serif;
}

.numbers {
  font-size: 18px;
  font-weight: 500;
}

.special-text {
  font-family: "Tinos", cursive;
}

.blue-colored {
  color: #305fab;
}

.yellow-colored {
  color: #edae49;
}

.shadowed {
  text-shadow: 2px 1px 0px #ccdde2;
}

.bg-1 {
  background-color: #ccdde2;
}

.bg-2 {
  background-color: #f5f4ed;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.primary-button {
  font-size: 13px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  background-color: #305fab;
  transition: all 0.45s ease-out;
  color: #f5f4ed;
  border-radius: 50px;
}
.primary-button.cancel {
  background-color: rgb(163, 35, 35);
}
.primary-button span {
  position: relative;
  z-index: 4;
}
.primary-button:hover {
  background-color: #edae49;
  color: #305fab;
}

/* From uiverse.io */
.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #201d1f;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #201d1f;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .learn-more .button-text {
    margin: 0 0 0 3rem;
  }

}
header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.header-nav #logo {
  margin-right: 48px;
}
.header-nav #logo img {
  height: 90px;
}
.header-nav .header-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header-nav .header-menu ul li {
  display: inline-block;
  margin: 0 12px;
}
.header-nav .header-menu ul li a {
  display: block;
  font-size: 16px;
  position: relative;
  color: #201d1f;
}
.header-nav .header-menu ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header-nav .header-menu ul li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
}

#left-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-right: 55px;
}
#left-menu li {
  position: relative;
}
#left-menu li .cart-number {
  position: absolute;
  top: -4px;
  right: 4px;
  background-color: #305fab;
  color: #f5f4ed;
  padding: 5px 6px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}
#left-menu li a {
  margin: 0 12px;
}
#left-menu li a img {
  height: 32px;
}

#menu-click {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#mainMenu {
  padding-top: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 8;
  background-color: #ccdde2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(0, -100%);
}
#mainMenu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg1.png");
  background-size: contain;
  background-position: right center;
  opacity: 0.15;
  z-index: 0;
}
#mainMenu .main-menu-list {
  list-style: none;
}
#mainMenu .main-menu-list li a {
  font-size: 32px;
  display: inline-block;
  margin: 14px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .main-menu-list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mainMenu .main-menu-list li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}
#mainMenu .sub-menu {
  list-style: none;
}
#mainMenu .sub-menu li a {
  font-size: 18px;
  display: inline-block;
  margin: 10px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .sub-menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scaleY(1.001);
}
#mainMenu .sub-menu li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}

.menu-contact-box {
  padding: 10px;
}
.menu-contact-box .c-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
}
.menu-contact-box p {
  font-size: 14px;
  line-height: 2;
}
.menu-contact-box .direction-link {
  font-size: 18px;
}
.menu-contact-box .direction-link a {
  position: relative;
}
.menu-contact-box .direction-link a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background-color: #edae49;
  height: 2px;
}
.menu-contact-box .default-text {
  font-size: 16px;
  margin-left: 10px;
}
.menu-contact-box .default-text a {
  position: relative;
}
.menu-contact-box .default-text a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-contact-box .default-text a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}

@media only screen and (max-width: 1400px) {
  .header-nav .header-menu ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    display: none;
  }
  #mainMenu {
    justify-content: flex-start;
    overflow-y: scroll;
    padding-top: 120px;
  }
  #mainMenu .main-menu-list li a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  #left-menu {
    padding-left: 0;
  }
  #left-menu li a img {
    width: 24px;
  }
  .header-nav #logo {
    margin-right: 15px;
  }
}
footer {
  padding: 60px 0 0 0;
  background-color: #305fab;
  color: #f5f4ed;
  position: relative;
}
footer .footer-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .footer-flex .footer-item {
  width: 33.33%;
  margin-bottom: 48px;
}
footer .footer-flex .footer-item .footer-item-title {
  font-size: 1rem;
  font-weight: bold;
}
footer .footer-flex .footer-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .footer-flex .footer-item ul li a {
  display: inline-block;
  line-height: 2.3;
  position: relative;
  font-size: 13px;
  color: #f5f4ed;
}
footer .footer-flex .footer-item ul li a:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  transition: all 0.25s ease-in-out;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}
footer .footer-flex .footer-item ul li a:hover:before {
  width: 100%;
}
footer .footer-flex .footer-item ul li a .default-text {
  font-size: 15px;
}
footer .foot-end {
  padding: 15px 0;
  margin-top: 30px;
}
footer .foot-end #seperator {
  position: relative;
}
footer .foot-end #seperator:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1.001);
  width: 100%;
  height: 1px;
  background-color: #edae49;
  z-index: 0;
}
footer .foot-end #seperator .d-inline-flex {
  background-color: #305fab;
  position: relative;
  padding: 4px;
}
footer #footer-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 33.33%;
}
footer #footer-image img {
  max-width: none;
  max-height: 450px;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  footer .footer-flex {
    flex-wrap: wrap;
  }
  footer .footer-flex .footer-item {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  footer #footer-image {
    width: 100%;
    opacity: 0.05;
  }
  footer #footer-image img {
    max-height: 100vh;
  }
}
#landing-section {
  background-color: #fff;
}

@media only screen and (min-width: 1024px) {
  .landing-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.landing-image {
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.landing-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.landing-content {
  position: relative;
  height: 100vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.landing-content .landing-content-wrapper {
  width: 60%;
}
.landing-content .landing-content-wrapper h2 {
  line-height: 1;
  font-size: 4.25rem;
  margin-bottom: 32px;
}
.landing-content .landing-content-wrapper h2 span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  padding: 8px 0;
}
.landing-content .landing-content-wrapper h2 .sliding-box {
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 110%;
  background-color: #edae49;
  z-index: 1;
  transform: translateX(-100%);
}
.landing-content .landing-content-wrapper p {
  font-size: 0.975rem;
  line-height: 1.8;
  padding-right: 20px;
}

#about-section {
  padding: 5rem 0 2rem 0;
  position: relative;
}
#about-section:before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("../images/steps/step3_art.svg");
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: right top;
  opacity: 0.15;
  transform: rotateZ(180deg) rotateX(180deg);
}
#about-section .about-title {
  font-size: 5rem;
  line-height: 1;
  color: #305fab;
}
#about-section .about-title span {
  color: #edae49;
}
#about-section .ng-img {
  margin-top: -200px;
}
#about-section .ng-img2 {
  margin-top: -200px;
}

#id1 {
  position: relative;
}
#id1:before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("../images/steps/step5_art.svg");
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: right top;
  opacity: 0.15;
}

.about-text-image-wrapper .about-title {
  position: relative;
  line-height: 1;
}
.about-text-image-wrapper .about-title span {
  display: block;
  position: relative;
  font-size: 9vw;
  text-align: center;
}
.about-text-image-wrapper .about-title span:first-of-type {
  z-index: 2;
}
.about-text-image-wrapper .about-title span:last-of-type {
  z-index: 2;
}
.about-text-image-wrapper .about-title img {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 275px;
  height: auto;
}

#our-products {
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}
#our-products .mySwiper {
  position: relative;
  margin-bottom: 60px;
}
#our-products .mySwiper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}
#our-products .mySwiper .swiper-slide {
  flex-grow: 1;
}
#our-products .mySwiper2 .swiper-slide-prev {
  opacity: 0 !important;
}
#our-products .mySwiper2 .swiper-slide {
  opacity: 0 !important;
}
#our-products .mySwiper2 .swiper-slide-active {
  opacity: 1 !important;
}
#our-products .swiper-slide-thumb-active .roast-type {
  border-color: #edae49;
}
#our-products .roast-type {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 3px solid transparent;
}
#our-products .roast-type:hover {
  cursor: pointer;
}
#our-products .roast-type img {
  max-width: 18px;
  display: block;
  margin-right: 16px;
}
#our-products .roast-type p {
  font-size: 14px;
  margin-bottom: 0;
}
#our-products .product-content .productName {
  font-size: 32px;
  margin-bottom: 24px;
}
#our-products .product-content p {
  line-height: 1.8;
}
#our-products .product-content #coffee-type-list {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#our-products .product-content #coffee-type-list li {
  margin: 16px 24px;
  margin: 0 10px;
  display: inline-block;
}
#our-products .product-content #coffee-type-list li input {
  display: none;
}
#our-products .product-content #coffee-type-list li label {
  border: 1px solid #ccdde2;
  display: inline-block;
  padding: 16px 48px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
}
#our-products .product-content #coffee-type-list li label:hover {
  cursor: pointer;
}
#our-products .product-content #coffee-type-list li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#our-products .product-content #coffee-type-list li label span {
  font-size: 16px;
}
#our-products .product-content #coffee-type-list li label .price {
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
}
#our-products .product-content #coffee-type-list li label .price ins {
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
}
#our-products .product-content #coffee-type-list2 {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#our-products .product-content #coffee-type-list2 li {
  margin: 0 10px;
  display: inline-block;
}
#our-products .product-content #coffee-type-list2 li input {
  display: none;
}
#our-products .product-content #coffee-type-list2 li label {
  border: 1px solid #ccdde2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 32px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
  height: 100%;
}
#our-products .product-content #coffee-type-list2 li label .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px 0;
  background-color: #edae49;
  text-align: center;
  font-size: 11px;
}
#our-products .product-content #coffee-type-list2 li label:hover {
  cursor: pointer;
}
#our-products .product-content #coffee-type-list2 li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#our-products .product-content #coffee-type-list2 li label span {
  font-size: 16px;
  display: block;
  text-align: center;
}
#our-products .product-content #coffee-type-list2 li label .price {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #305fab;
}
#our-products .product-content #coffee-type-list2 li label .price ins {
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
#our-products .product-content #coffee-type-list2 li label .price del {
  font-size: 16px;
  display: block;
}
#our-products .product-content #coffee-type-list3 {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#our-products .product-content #coffee-type-list3 li {
  margin: 0 10px;
  display: inline-block;
  margin-bottom: 24px;
}
#our-products .product-content #coffee-type-list3 li input {
  display: none;
}
#our-products .product-content #coffee-type-list3 li label {
  border: 1px solid #ccdde2;
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
}
#our-products .product-content #coffee-type-list3 li label:hover {
  cursor: pointer;
}
#our-products .product-content #coffee-type-list3 li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#our-products .product-content #coffee-type-list3 li label span {
  font-size: 16px;
  display: block;
  text-align: center;
}
#our-products .product-content #coffee-type-list3 li label .price {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}
#our-products .product-content #coffee-type-list3 li label .price ins {
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
#our-products .product-content #coffee-type-list3 li label .price del {
  font-size: 16px;
  display: block;
}
#our-products .product-content #coffee-type-list2 li input:checked ~ label {
  background-color: #ccdde2;
}
#our-products .product-content #coffee-type-list2 li input:checked ~ label svg {
  display: block;
}
#our-products .product-content #coffee-type-list3 li input:checked ~ label {
  background-color: #ccdde2;
}
#our-products .product-content #coffee-type-list3 li input:checked ~ label svg {
  display: block;
}
#our-products .learn-more {
  transform: scale(0.8);
}

#our-products .product-content #coffee-type-list li input:checked ~ label {
  background-color: #ccdde2;
}

#our-products .product-content #coffee-type-list li input:checked ~ label svg {
  display: block;
}

div.marquee {
  position: absolute;
  width: 100%;
  color: transparent;
  font-size: 5.6vw;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #B7ADA1;
  z-index: 0;
  text-transform: uppercase;
  transform: translate(0%);
  opacity: 0.2;
  white-space: nowrap;
}

@media (max-width: 991px) {
  div.marquee {
    font-size: 36px;
    line-height: 38px;
  }
}
div.marquee.marquee-1 {
  top: 10vw;
  -webkit-animation: marquee 40s linear infinite running;
          animation: marquee 40s linear infinite running;
}

div.marquee.marquee-1 span {
  margin: 0 30px;
}

@media (max-width: 991px) {
  div.marquee.marquee-1 {
    top: 19vw;
    font-size: 9vw;
  }
}
div.marquee.marquee-2 {
  top: 15vw;
  -webkit-animation: marqueereverse 40s linear infinite running;
          animation: marqueereverse 40s linear infinite running;
}

div.marquee.marquee-2 span {
  margin: 0 30px;
}

@media (max-width: 991px) {
  div.marquee.marquee-2 {
    top: 28vw;
    font-size: 9vw;
  }
}
@-webkit-keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@-webkit-keyframes marqueereverse {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marqueereverse {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(-100%);
  }
}
#ng-ng .boxed-content {
  background-color: #fff;
}

#ng-ng {
  margin-top: -120px;
  margin-bottom: -80px;
}

#boxed-sections .container-fluid {
  padding: 0;
}
#boxed-sections .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
#boxed-sections .container-fluid .row > * {
  padding: 0;
}
#boxed-sections .box-image {
  height: 100vh;
}
#boxed-sections .box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#boxed-sections .boxed-content {
  padding: 0 50px;
  height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#boxed-sections .boxed-content .boxed-title {
  font-size: 2.5rem;
  color: #305fab;
}
#boxed-sections .boxed-content p {
  font-size: 16px;
}
#boxed-sections #forf1 .boxed-content {
  padding: 30px 0px;
}

.what-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 48px;
}
.what-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 24px;
  margin-right: 30px;
}
.what-list li img {
  height: 64px;
  opacity: 0.75;
  margin-right: 32px;
}
.what-list .what-texts h4 {
  font-size: 16px;
}
.what-list .what-texts p {
  font-size: 14px;
}

#journey .container-fluid {
  padding: 0;
}
#journey .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
#journey .container-fluid .row > * {
  padding: 0;
}
#journey .journey-content {
  height: 89vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 60px;
  background-color: #ccdde2;
}

#journey .col-lg-4:nth-of-type(1) .j-wrapper {
  background-color: #ccdde2;
}
#journey .col-lg-4:nth-of-type(2) .j-wrapper {
  background-color: #fff;
}
#journey .col-lg-4:nth-of-type(3) .j-wrapper {
  background-color: #f5f4ed;
}

.j-wrapper {
  position: relative;
  padding: 40px 0 90px 0;
}
.j-wrapper .journey-img {
  padding: 40px;
}
.j-wrapper .journey-img img {
  display: block;
  margin: 0 auto;
}
.j-wrapper .j-content {
  padding: 0 50px;
  text-align: center;
}
.j-wrapper .j-content img {
  height: 26px;
  margin: 0 auto;
  margin-bottom: 24px;
  display: block;
  max-width: none;
  width: auto;
}
.j-wrapper .j-content .j-title {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 24px;
}

#testimonials {
  padding: 120px 0 20px 0;
  overflow: hidden;
  position: relative;
}
#testimonials .marquee-whole {
  margin-top: 40px;
}
#testimonials .marquee {
  position: static;
  -webkit-animation-duration: 80s;
          animation-duration: 80s;
}
#testimonials .review-box {
  padding: 20px 40px;
  margin-bottom: 40px;
  text-align: center;
}
#testimonials .review-box .review-image {
  background-color: #ccdde2;
  display: inline-block;
  margin: 0 auto;
  padding: 10px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
#testimonials .review-box .review-image img {
  display: block;
  margin: 0 auto;
  width: 64px;
}
#testimonials .review-box .review-content .main-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 24px;
}
#testimonials .review-box .review-content p {
  font-size: 13px;
}
#testimonials .review-box .review-content .review-name {
  font-size: 0.875rem;
}

.journey-content {
  position: relative;
}
.journey-content img {
  height: 32px;
  margin-bottom: 32px;
  display: block;
}
.journey-content h4 {
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
}

#subscription {
  padding: 120px 0;
}
#subscription h4 {
  font-size: 2rem;
}
#subscription p {
  margin-bottom: 0;
}
#subscription .subscribe {
  position: relative;
}
#subscription .subscribe input {
  height: 60px;
  width: 100%;
  border-radius: 50px;
  outline: none;
  box-shadow: none;
  border: 1px solid #201d1f;
}
#subscription .subscribe .buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 2;
}
#subscription .subscribe .buttons .learn-more .circle {
  background-color: #edae49;
}

.swiper-pagination-bullet-active {
  background: #edae49;
}

#whycoffee {
  padding: 90px 0;
  background-color: #f5f4ed;
  position: relative;
}
#whycoffee:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/bg1.png");
  background-size: 75%;
  background-position: bottom right;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.why-titel {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}
.why-titel small {
  display: block;
  font-size: 50%;
  color: #edae49;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.why-titel span {
  color: #305fab;
}

.why-box {
  padding: 20px;
  border: 1px solid #eaeaea;
}
.why-box .why-image {
  margin-bottom: 20px;
}
.why-box .why-image img {
  display: block;
}
.why-box .why-text {
  text-align: center;
}
.why-box .why-text h4 {
  font-size: 16px;
  margin-bottom: 16px;
}
.why-box .why-text p {
  font-size: 13px;
}

@media only screen and (max-width: 1400px) {
  .landing-content .landing-content-wrapper h2 {
    font-size: 3.25rem;
  }
  .landing-content .landing-content-wrapper p {
    font-size: 0.875rem;
  }
  #about-section .about-title {
    font-size: 4.25rem;
  }
  #our-products .roast-type {
    padding: 16px 0;
  }
  #ng-ng {
    margin: -20px 0 -20px 0;
  }
  .j-wrapper .j-content .j-title {
    font-size: 2.1rem;
  }
}
@media only screen and (max-width: 1204px) {
  .landing-image {
    position: static;
    height: 50vh;
  }
  .landing-content {
    height: 50vh;
  }
  .landing-content .landing-content-wrapper {
    width: 100%;
  }
  .landing-content .landing-content-wrapper h2 {
    font-size: 3.25rem;
  }
  .about-text-image-wrapper .about-title span {
    font-size: 9vh;
  }
  .about-text-image-wrapper .about-title img {
    width: 150px;
  }
  .slide-shop img {
    height: auto;
  }
  .swiper-slide-active .slide-shop {
    margin-left: 0;
  }
  .slide-shop .coffee-cat {
    padding: 40px;
    position: static;
    opacity: 1;
    text-align: center;
  }
  .slide-shop .coffee-cat .coffee-cat-desc {
    display: none;
  }
  #boxed-sections .boxed-content {
    height: auto;
    padding: 0 30px;
  }
  #journey .journey-content {
    height: 60vh;
    padding: 0 30px;
  }
  #id1:before {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .landing-content {
    padding-top: 40px;
  }
  .landing-content .landing-content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  #about-us {
    padding: 40px 0;
  }
  .about-text-image-wrapper .about-title span {
    font-size: 7vh;
  }
  .about-text-image-wrapper .about-title img {
    display: none;
  }
  #about-us .floating {
    top: 20%;
    height: 50%;
  }
  #about-us .about-lists {
    flex-direction: column;
  }
  #about-us .about-lists li {
    margin: 16px 0;
  }
  .slide-shop .coffee-cat {
    width: auto;
    padding: 10px;
  }
  .slide-shop .coffee-cat .coffee-cat-title {
    font-size: 16px;
  }
  #boxed-sections .box-image {
    height: 50vh;
  }
  #boxed-sections .boxed-content {
    padding: 10px;
  }
  #subscription {
    text-align: center;
  }
  #subscription .subscribe {
    margin-top: 32px;
  }
  #our-products .mySwiper {
    margin-bottom: 15px;
  }
  #our-products .roast-type p {
    font-size: 18px;
  }
  #our-products .coffee-product {
    width: 85%;
    margin: 0 auto;
  }
  .marquee {
    display: none;
  }
  #our-products .product-content #coffee-type-list li label, #our-products .product-content #coffee-type-list3 li label {
    padding: 12px 16px;
  }
  #our-products .product-content #coffee-type-list2 li label {
    padding: 24px 32px;
  }
  #our-products .product-content #coffee-type-list2 li {
    height: 96px;
    margin-bottom: 64px;
  }
  #our-products .product-content #coffee-type-list2 li:last-of-type {
    margin-bottom: 24px;
  }
  .boxed-content {
    padding: 0 30px !important;
  }
  .what-list li {
    display: block;
    margin-bottom: 32px;
  }
  .what-list li img {
    margin: 0;
    margin-bottom: 32px;
  }
  #ng-ng {
    margin: 0;
    padding-bottom: 32px;
  }
  .j-wrapper .j-content {
    padding: 0 30px;
    text-align: center;
  }
  .section-title span img {
    height: 20px;
    margin: 0 24px;
  }
  #about-section .about-title {
    font-size: 3rem;
  }
}
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.section-title {
  margin-bottom: 32px;
}
.section-title span {
  position: relative;
  padding: 12px 0px;
  line-height: 1;
}
.section-title span img {
  height: 32px;
  margin: 0 24px;
}
.section-title span:before, .section-title span:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #edae49;
  position: absolute;
  left: 0;
  transform: scaleY(1.001);
}
.section-title span:before {
  top: 0;
}
.section-title span:after {
  bottom: 0;
}

.floating1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.floating2 {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #edae49;
  height: 0;
  opacity: 0.75;
}

.top-line {
  top: 0;
}

.bottom-line {
  bottom: 0;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  margin-bottom: 4px;
  font-weight: 500;
  opacity: 0.9;
}
.form-group .form-control {
  border-radius: 0px;
  border: 1px solid #ccdde2;
  background-color: #fafafa;
  font-size: 14px;
}

#page-title {
  background-color: #f5f4ed;
  padding: 175px 0 30px 0;
}
#page-title h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #305fab;
}
#page-title p {
  font-size: 13px;
}

@media only screen and (max-width: 600px) {
  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 32px;
  }
  #page-title {
    background-color: #f5f4ed;
    padding: 120px 0 30px 0;
  }
  .section-title h2 {
    font-size: 1.2rem;
  }
  .section-title h2 .text:before {
    display: none;
  }
  .section-title h2 .text:after {
    display: none;
  }
  .section-title span img {
    height: 20px;
    margin: 0 10px;
  }
}
#billing-address {
  display: none;
  margin-top: 40px;
}

#diff-address {
  display: inline-block;
}