/* -----------------------------  CSS Reset*/
/*    width: calc(25% - 20px);*/
*,
:before,
:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
img,
object,
embed,
canvas,
video,
audio,
picture,
svg,
figure {
  max-width: 100%;
  height: auto;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
body::-webkit-scrollbar {
  width: 12px;
  /*largeur scrollbar */
}
body::-webkit-scrollbar-track {
  background: #eceecb;
  /* couleur tracking area */
}
body::-webkit-scrollbar-thumb {
  background-color: #c9ce83;
  /* couleur scroll thumb */
  border-radius: 20px;
  border: 3px solid #c9ce83;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f0f1e3;
  scroll-behavior: smooth;
}
.center {
  width: 1440px;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
html {
  font-size: 16px;
}
h1 {
  font-size: 130px;
  font-family: 'Playfair Display', serif;
  color: white;
  padding: 80px 0px 0 0px;
  text-align: right;
  letter-spacing: 5px;
  font-weight: 400;
  display: block;
}
h2 {
  color: #a8ac82;
  font-size: 25px;
  font-weight: 700;
}
h3 {
  font-size: 25px;
  font-weight: 400;
  color: #a8ac82;
  padding-bottom: 0px;
  padding-top: 60px;
  text-align: left;
}
h4 {
  color: black;
  font-size: 30px;
}
h5 {
  font-weight: 300;
  font-family: playfair display;
  color: #c9ce98;
}
@keyframes breath {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 140% auto;
  }
}
.spinner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  z-index: 999999;
}
.spinner-wrapper .spinner {
  background-image: url(imgs/SVG/logo.svg);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30%;
  left: 49%;
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
}
header {
  margin-bottom: 20vh;
  background-image: url(imgs/pexels-yosi-azwan-3752402ciel2.jpg);
  background-repeat: no-repeat;
  animation: breath 50s linear infinite;
  background-position: center;
  min-height: 840px;
}
header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  z-index: 99999;
}
header nav {
  color: white;
}
header nav .burger {
  position: fixed;
  right: 8vw;
  width: 40px;
  height: 40px;
  border: solid 2px #c9ce98;
  border-radius: 50%;
  margin-right: auto;
  margin-top: 30px;
  z-index: 200;
  transition: background-color 0.6s;
}
header nav .burger:hover {
  background-color: #c9ce98;
}
header nav .burger .ham {
  cursor: pointer;
  webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  moz-user-select: none;
  webkit-user-select: none;
  ms-user-select: none;
  user-select: none;
}
header nav .burger .hamRotate.active {
  transform: rotate(45deg);
}
header nav .burger .hamRotate180.active {
  transform: rotate(180deg);
}
header nav .burger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: white;
  stroke-width: 5.5;
  stroke-linecap: round;
}
header nav .burger .ham .top {
  stroke-dasharray: 40 82;
}
header nav .burger .ham .middle {
  stroke-dasharray: 40 111;
}
header nav .burger .ham .bottom {
  stroke-dasharray: 40 161;
}
header nav .burger .ham.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
header nav .burger .ham.active .middle {
  stroke-dashoffset: 23px;
}
header nav .burger .ham.active .bottom {
  stroke-dashoffset: -83px;
}
header nav .menu {
  background-color: #221f26;
  position: fixed;
  top: 0%;
  bottom: 0;
  width: 100%;
  flex-direction: column;
  padding: 10px;
  z-index: 50;
  transition: 0.5s;
  right: 100%;
}
header nav .menu.is-open {
  right: 0;
}
header nav .menu li {
  width: 100%;
  text-align: center;
  padding: 30px;
  font-weight: 700;
}
header nav .menu li a {
  color: white;
  font-size: 5rem;
  padding: 30px;
  transition: color 0.6s;
}
header nav .menu li a:hover {
  color: #c9ce98;
}
header nav .flex .logo {
  margin-right: auto;
  display: flex;
  z-index: 55;
}
header nav .flex .logo img {
  z-index: 20;
  height: 60px;
  width: 100px;
  margin: 20px 0;
  transition: color 0.2s;
}
header nav .flex .logo img:hover {
  fill: #c9ce98;
}
header nav .flex .logo h5 {
  color: white;
  text-align: center;
  padding-top: 30px;
  transition: color 0.7s;
}
header nav .flex .logo h5:hover {
  color: #c9ce98;
}
header .center {
  position: relative;
}
header .center h1 {
  text-align: center;
}
header .center .teapots img {
  display: flex;
  position: absolute;
  top: 185%;
  left: 50%;
  transform: translate(-50%) rotate3d(1, 1, 1, 0.01deg);
  width: 20%;
  -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.2));
  z-index: 10;
}
header .center .teapots :nth-of-type(2) {
  width: 14%;
  top: 190%;
  left: 50%;
  z-index: 9;
}
header .center .teapots :nth-of-type(3) {
  width: 14.7%;
  top: 190%;
  left: 50%;
  z-index: 9;
}
.abouttea .flex {
  padding-top: 200px;
  padding-bottom: 200px;
}
.abouttea .flex article {
  padding: 0px 50px;
  width: 50%;
}
.abouttea .flex article h2 {
  text-align: left;
  position: relative;
}
.abouttea .flex article h2::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 90px;
  height: 2px;
  background-color: #a8ac82;
}
.abouttea .flex article p {
  line-height: 2;
  padding-top: 60px;
}
.abouttea .flex .container {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.abouttea .flex .container .reveal {
  position: relative;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.abouttea .flex .container .reveal img {
  width: 100%;
  height: 100%;
  filter: sepia(20%);
}
.tea h2 {
  text-align: left;
  display: inline-block;
  position: relative;
  padding: 0 20px 60px 20px;
}
.tea h2::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  width: 90px;
  height: 2px;
  background-color: #a8ac82;
}
.tea .flex a {
  background-image: url(imgs/greenTea.jpg);
  background-position: center;
  background-size: cover;
  min-height: 350px;
  width: 50%;
  filter: grayscale(0);
  transition: filter 0.6s ease-in-out;
}
.tea .flex a:hover {
  filter: grayscale(0.9);
}
.tea .flex a:nth-of-type(2) {
  background-image: url(imgs/teavrac.jpg);
  width: 50%;
}
.tea .flex a:nth-of-type(3) {
  background-image: url(imgs/rooibos.jpg);
  width: calc(100% / 3);
}
.tea .flex a:nth-of-type(4) {
  background-image: url(imgs/infusions.jpg);
  width: calc(100% / 3);
}
.tea .flex a:nth-of-type(5) {
  background-image: url(imgs/matcha.jpg);
  width: calc(100% / 3);
}
.tea .flex a h4 {
  text-align: center;
  vertical-align: middle;
  padding: 170px 0;
  color: white;
}
.sav {
  background-color: #c9ce83;
  padding-top: 40px;
}
.sav h2 {
  text-align: left;
  color: black;
  position: relative;
  padding: 0px 20px 0px 20px;
}
.sav h2::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  width: 90px;
  height: 2px;
  background-color: black;
}
.sav article {
  width: 25%;
  text-align: center;
  padding: 60px ;
}
.sav article img {
  padding: 30px;
  width: 200px;
  height: 110px;
}
.otherproducts .flex a {
  background-image: url(imgs/teaware.jpg);
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  width: 50%;
  filter: grayscale(0);
  transition: filter 0.6s ease-in-out;
}
.otherproducts .flex a:hover {
  filter: grayscale(0.9);
}
.otherproducts .flex a:nth-of-type(2) {
  background-image: url(imgs/coffretthé.jpg);
  width: 50%;
}
.otherproducts .flex a h4 {
  text-align: center;
  vertical-align: middle;
  padding: 170px 0 170px 0;
  color: white;
}
.valeurs {
  height: 110vh;
}
.valeurs .flex {
  padding-top: 200px;
  padding-bottom: 200px;
}
.valeurs .flex article {
  padding: 0px 50px;
  width: 50%;
}
.valeurs .flex article h2 {
  text-align: left;
  position: relative;
}
.valeurs .flex article h2::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 90px;
  height: 2px;
  background-color: #a8ac82;
}
.valeurs .flex article p {
  line-height: 2;
  padding-top: 60px;
}
.valeurs .flex .container {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.valeurs .flex .container .reveal {
  position: relative;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.valeurs .flex .container .reveal img {
  width: 100%;
  height: 100%;
  filter: sepia(20%);
}
.blog {
  background-image: url(imgs/pexels-nipananlifestylecom-1581484.jpg);
  background-attachment: fixed;
  background-position: bottom center;
  background-size: cover;
  min-height: 60vh;
  text-align: center;
  align-items: center;
  padding: 300px 0;
  color: white;
  cursor: pointer;
  position: relative;
}
.blog a h4 {
  color: white;
}
.blog p {
  font-size: 1.4rem;
  padding-top: 20px;
}
.blog .sociaux {
  position: absolute;
  left: 0%;
  bottom: 0%;
}
.blog .sociaux li {
  background-color: #c9ce83;
  padding: 10px 5px;
}
.blog .sociaux li a {
  color: white;
}
.blog .sociaux li a ion-icon {
  height: 30px;
  width: 30px;
  transition: fill 0.6s;
  padding: 5px;
}
.blog .sociaux li a ion-icon:hover {
  fill: #5a5a57;
}
.newsletter {
  text-align: center;
  padding-bottom: 40px;
}
.newsletter h3 {
  color: black;
  padding: 40px 0 20px 0;
  text-align: center;
}
.newsletter p {
  padding-bottom: 50px;
}
.newsletter .formulaire {
  margin-bottom: 1em;
  transition: all 0.3s;
}
.newsletter .formulaire :focus-within {
  transform: scale(1.05);
}
.newsletter .formulaire .form-label {
  font-size: 1em;
  display: block;
  opacity: 1;
  transform: translateY(-5.5em);
  transform-origin: 0 0;
  transition: all 0.3s;
}
.newsletter .formulaire :focus {
  box-shadow: none;
  outline: none;
  border-color: #a8ac82;
}
.newsletter .formulaire .form-control {
  padding: 20px;
  box-shadow: none;
  border-radius: 0px;
  border-style: none none solid none;
  width: 50%;
  transition: all 0.5s;
  border-color: #a8ac82;
}
.newsletter .formulaire .form-control:focus + .form-label {
  transform: translateY(-5.5em);
}
.newsletter .formulaire .envoyer {
  background-color: #c9ce83;
  color: white;
  font-size: 1.2em;
  width: 50%;
  padding: 20px;
  border-radius: 2px;
  border-style: none none solid none;
  transition: all 0.5s;
  cursor: pointer;
}
.newsletter .formulaire .envoyer:hover {
  background-color: #c1cc25;
}
footer {
  background-color: #c9ce83;
  align-items: center;
  min-height: 100px;
  color: white;
  padding: 20px;
}
footer .flex {
  justify-content: center;
}
footer .flex .logof {
  height: 30px;
  width: 30px;
  display: block;
  padding-left: 0px;
}
footer .flex p {
  padding: 0px 20px;
}
footer ul {
  align-items: center;
  justify-content: space-between;
}
footer .mentions {
  padding-bottom: 30px;
}
footer .mentions li {
  padding: 10px;
}
footer .mentions li a {
  color: white;
  transition: color 0.6s;
}
footer .mentions li a:hover {
  color: #5a5a57;
}
@media screen and (max-width: 1600px) {
  .center {
    width: 100%;
  }
  header {
    min-height: 80vh;
  }
  header .center .menu {
    z-index: 150;
  }
  header .center .teapots img {
    top: 120%;
  }
  header .center .teapots :nth-of-type(2) {
    top: 130%;
  }
  header .center .teapots :nth-of-type(3) {
    top: 130%;
  }
}
@media screen and (max-width: 1440px) {
  .center {
    width: 100%;
  }
  header {
    min-height: 75vh;
  }
}
@media screen and (max-width: 1368px) {
  .center {
    width: 100%;
  }
  header nav .menu li a {
    font-size: 3rem;
  }
  header .center .teapots img {
    top: 100%;
  }
  header .center .teapots :nth-of-type(2) {
    top: 110%;
  }
  header .center .teapots :nth-of-type(3) {
    top: 110%;
  }
}
@media screen and (max-width: 1280px) {
  .center {
    width: 100%;
  }
  header .herotext {
    padding: 0;
  }
  header .center .teapots img {
    top: 130%;
  }
  header .center .teapots :nth-child(2) {
    top: 150%;
  }
  header .center .teapots :nth-child(3) {
    top: 150%;
  }
  .abouttea .center .container {
    padding-top: 10vh;
    height: 70vh;
  }
}
@media screen and (max-width: 1024px) {
  .center {
    width: 100%;
  }
  header {
    padding: 0;
    height: 60vh;
  }
  header nav .menu li a {
    font-size: 2rem;
  }
  header .center .teapots img {
    top: 150%;
  }
  header .center .teapots :nth-of-type(2) {
    top: 160%;
  }
  header .center .teapots :nth-of-type(3) {
    top: 160%;
  }
  .abouttea {
    padding-top: 0vh;
    height: auto;
  }
  .abouttea .flex .container {
    padding-top: 15vh;
    height: 70vh;
  }
  .sav article img {
    width: 350px;
    height: 130px;
  }
  .valeurs {
    height: auto;
  }
  .blog {
    min-height: 70vh;
  }
}
@media screen and (max-width: 960px) {
  .center {
    width: 100%;
  }
  header {
    min-height: 68vh;
    background-image: url(imgs/pexels-yosi-azwan-3752402ciel22.jpg);
  }
  header .center .teapots img {
    top: 360%;
  }
  header .center .teapots :nth-of-type(2) {
    top: 370%;
  }
  header .center .teapots :nth-of-type(3) {
    top: 370%;
  }
  .abouttea {
    height: 100%;
  }
  .abouttea .flex article {
    width: 100%;
  }
  .abouttea .flex .container {
    padding-top: 1vh;
    width: 100%;
    height: 100%;
  }
  .tea .center a {
    height: 250px;
  }
  .sav article {
    width: 50%;
  }
  .valeurs .center article {
    width: 100%;
  }
  .valeurs .center .container {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .center {
    width: 100%;
  }
  header {
    min-height: 70vh;
    background-image: url(imgs/pexels-yosi-azwan-3752402ciel22.jpg);
  }
  header .herotext {
    padding-top: 10vh;
    padding-bottom: 10vh;
    font-size: 8rem;
  }
  header .center .teapots img {
    top: 130%;
    width: 30%;
  }
  header .center .teapots :nth-child(2) {
    top: 136%;
    width: 21%;
  }
  header .center .teapots :nth-child(3) {
    top: 136%;
    width: 22%;
  }
  header h1 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .center {
    width: 100%;
  }
  .abouttea {
    height: 100%;
  }
  .abouttea .flex article {
    width: 100%;
  }
  .abouttea .flex .container {
    padding-top: 1vh;
    width: 100%;
    height: 100%;
  }
  .tea .flex a {
    width: 100%;
  }
  .tea .flex a:nth-of-type(2) {
    width: 100%;
  }
  .tea .flex a:nth-of-type(3) {
    width: 100%;
  }
  .tea .flex a:nth-of-type(4) {
    width: 100%;
  }
  .tea .flex a:nth-of-type(5) {
    width: 100%;
  }
  .otherproducts .flex a {
    width: 100%;
  }
  .otherproducts .flex a:nth-of-type(2) {
    width: 100%;
  }
  .valeurs {
    height: 100%;
  }
  .valeurs .flex article {
    width: 100%;
  }
  .valeurs .flex .container {
    padding-top: 1vh;
    width: 100%;
    height: 100%;
  }
  .newsletter .formulaire .form-control {
    width: 80%;
  }
  .newsletter .formulaire .envoyer {
    width: 80%;
  }
}
@media screen and (max-width: 610px) {
  .center {
    width: 100%;
  }
  header nav .menu li a {
    font-size: 2rem;
  }
  header .center h1 {
    font-size: 7rem;
    padding-top: 10vh;
    padding-bottom: 15vh;
  }
  header .center .teapots img {
    top: 110%;
    width: 30%;
  }
  header .center .teapots :nth-child(2) {
    top: 115%;
    width: 21%;
  }
  header .center .teapots :nth-child(3) {
    top: 115%;
    width: 22%;
  }
  .blog {
    background-image: url(imgs/pexels-nipananlifestylecom-15814842.jpg);
  }
}
@media screen and (max-width: 540px) {
  .center {
    width: 100%;
  }
  header .center h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 485px) {
  .center {
    width: 100%;
  }
  header .center h1 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 425px) {
  .center {
    width: 100%;
  }
  header {
    background-image: url(imgs/pexels-yosi-azwan-3752402ciel222.jpg);
  }
  header nav .menu li {
    padding-top: 2rem;
  }
  header nav .menu li a {
    text-align: center;
    padding: 0;
  }
  header .center h1 {
    padding-top: 14vh;
    padding-bottom: 15vh;
    font-size: 4.5rem;
  }
  .abouttea .center {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
  .sav .flex article {
    width: 100%;
  }
  footer .center {
    text-align: center;
    justify-content: center;
  }
  footer .center .flex li {
    padding-bottom: 5vh;
  }
}
@media screen and (max-width: 384px) {
  .center {
    width: 100%;
  }
  header .center h1 {
    padding-top: 10vh;
    padding-bottom: 15vh;
    font-size: 4rem;
  }
}
@media screen and (max-width: 375px) {
  .center {
    width: 100%;
  }
  header .center h1 {
    padding-top: 14vh;
    padding-bottom: 16vh;
    font-size: 4rem;
  }
}
@media screen and (max-width: 360px) {
  .center {
    width: 100%;
  }
  header .center h1 {
    padding-top: 12vh;
    padding-bottom: 13vh;
  }
}
@media screen and (max-width: 320px) {
  .center {
    width: 100%;
  }
  header {
    height: 70vh;
  }
  header .center h1 {
    padding-top: 14vh;
    padding-bottom: 16vh;
    font-size: 3rem;
  }
}
