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

body {
  font-family: 'Helvetica Neue', Helvetica;
}
#pcontent{
	display: bloc;
}
.clear{
	clear: both;
}

.wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .wrapper {
    width: 90%;
  }
}

.buynow{
	display: inline-block;
	margin-top: 8px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
	background: #ea6e6d;
	
	font-family: 'Helvetica Neue', Helvetica;
	font-weight: 400;
	font-size: 17px;
	color: #fff;
	text-decoration: none;
	font-style:uppercase;
	
	letter-spacing: 1.5px;
	
}
.buynow:hover{
	background: #e26362;
	
}


.pagebanner{	
	display: table;
	width: 100%;
	table-layout: fixed;
	overflow: hidden;
	background: #a9c9d9;
}
.bleft{
	display: table-cell;
	width: 45%;
	vertical-align: middle;
}
.pagebanner > .bleft > img{
	display: block;
	width: 225%;
	
	
}
.bright{
	display: table-cell;
	width: 55%;
	vertical-align: middle;
}
.bannerdescription{
	display: block;
	width: 50%;
	min-width: 300px;
	font-size: 1.1rem;
}
.space3 {
  padding-bottom: 1rem;
}


@media (max-width: 992px) {
	.pagebanner > .bleft > img{
		width: 320%;
		margin-left: -25%;
	}
	
}
@media (max-width: 800px) {
	.pagebanner > .bleft > img{
		width: 390%;
		margin-left: -30%;
	}
	.bannerdescription{		
		width: 99%;
		min-width: 10px;
	}
	.pagebanner{
		width: 120%;
		margin-left: -10%;
	}
}
@media (max-width: 520px) {
	.bannerdescription{
		font-size: 0.8rem;
	}
	.space3 {
	  padding-bottom: 0.3rem;
	}
		
}

/*BBO POPUP*/
#bbopopup {
	display: none;
	width: 90%;
	height: 450px;
	margin: 0 auto;
	background: #fff;
	position: fixed;
	left: 50%;
	top: 270px;
	margin-left: -45%;
	margin-top: -225px;
	z-index: 999999999;
}
#bbomask {
	display: none;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	background: black;
	position: fixed;
	left: 0;
	top: 0;
	margin-left: 0;
	margin-top: 0;
	z-index: 99999999;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	opacity: 0.6;
}
#closepopup {
	display: block;
	width: 100%;
	height: 40px;
}
.closepopupx {
	display: block;
	width: 60px;
	height: 40px;
	float: right;
	text-align: center;
	color: #555;
	background: #fff;
	font-size: 24px;
	line-height: 40px;
	font-family: arial;
	cursor: pointer;
}
.closepopupx:hover {
	color: #000;
	background: #eee;
}
#BBO_iframeContent {
	display: none;
	width: 100%;
	height: 410px;
}
.bbob{
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0 auto;
	height: 22px;
	background: #ec008c;
	text-decoration: none;
	font-size: 12px;
	line-height: 22px;
	color: #fff;			
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-khtml-border-radius: 6px;			
}
.bbob:hover{
	background: #c90278;
}
/*STOP BBO POPUP*/

/*--------------------------------- TABS ---------------------------------*/

.tab_wrapper {
  width: 100%;
  height: 4.95rem;
  padding-left: 4.9rem;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 10;
}

.tab {
  width: 80vw;
  overflow: hidden;
}

.tab button {
  width: 20%;
  background-color: inherit;
  font-weight: 300;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1.9rem 0 1.9rem 0;
  transition: 0.3s;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.tablinks {
  cursor: pointer;
}

.tab button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.tab button.active {
  font-weight: bold;
}

.tabcontent {
  display: none;
  border-top: none;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.tab .icon {
    display: none;
}

a.icon {
  color: #000;
  text-align: right;
  font-size: 2rem;
  padding: 0.5rem;
}

.return_tabBtn {
  display: none;
}

@media screen and (max-width: 900px) {
  .tab {
    width: 98vw;
    padding-left: 0;
  }
  .tab button {
    width: 100%;
    display: none;
    background-color: #fff;
  }
  .tab button:hover {
    background-color: #d1d1d1;
  }
  .tab a.icon {
    float: right;
    display: block;
    position: fixed;
    right: 1.4rem;
  }
  #myTab {
    position: fixed;
  }
  .tab.responsive {
    position: relative;
  }
  .tab.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .tab.responsive button {
    float: none;
    display: block;
    text-align: center;
  }
  .return_tabBtn {
    display: block;
  }
}

@media (min-width: 900px) and (max-width: 1300px) {
  .tab_wrapper {
    padding-left: 5rem;
  }
  .tab {
    width: 90vw;
  }
  .tab button {
    letter-spacing: 0.1rem;
  }
}

/*-------------- RETURN --------------*/

.return_btn {
  position: absolute;
  text-decoration: none;
  color: #000;
  z-index: 10;
  font-size: 1rem;
}

.return_btn button {
  border: none;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.6);
  width: 4.95rem;
  height: 4.95rem;
  position: absolute;
  z-index: 10;
  font-size: 2.6rem;
  cursor: pointer;
}

.return::after {
  content: "";
  transform: rotate(90deg);
  position: absolute;
  top: 11.6rem;
  left: -3.9rem;
  width: 12.5rem;
  z-index: 10;
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .return_btn,
  .return_btn button,
  .return::after {
    display: none;
  }
}

/*---------------------------------- MAIN ----------------------------------*/

#main .hero {
  background: url("../img/main/hero_background.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.main_header {
  padding: 2rem 0 5.6rem 0;
  text-align: center;
}

.main_header img {
  width: 60%;
  padding: 2rem;
}

.main_header .block {
  font-size: 1.3rem;
  font-weight: 300;
}

.no_frame {
  font-size: 1.6rem;
  font-weight: 100;
}

.no_frame .bold {
  padding: 0.4rem 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.no_frame_main::before {
  content: "";
  width: 90%;
  height: 10rem;
  border: 1px solid #000;
  border-bottom: none;
  position: absolute;
  left: 5%;
  top: 1.5rem;
}

.no_frame_main::after {
  content: "";
  width: 90%;
  height: 6rem;
  border: 1px solid #000;
  border-top: none;
  position: absolute;
  left: 5%;
  top: 22rem;
}

.info {
  position: relative;
  font-weight: 300;
  padding: 3.75rem 0 3.75rem 0;
}

.info::before {
  content: "";
  width: 3.1rem;
  height: 1rem;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
}

.align_right {
  text-align: right;
  font-weight: 100;
  line-height: 1.4rem;
}

.align_left {
  text-align: left;
  font-weight: 100;
  line-height: 1.4rem;
}

.info_title {
  display: block;
  padding-bottom: 1.5rem;
}

.min_mission_Y span,
.min_mission_eclat span,
.min_ritual span,
.min_club_mission span {
  padding: 1.25rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  position: absolute;
  z-index: 2;
}

.min_mission_Y img,
.min_mission_eclat img,
.min_ritual img,
.min_club_mission img {
  padding: 0.3rem;
}

.min_mission_Y,
.min_mission_eclat,
.min_ritual,
.min_club_mission {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.site_bottom {
  padding-bottom: 3.7rem;
}

.semibold {
  font-weight: 400;
}

.bold {
  font-weight: bold;
}

.block {
  display: block;
}

.space {
  padding-bottom: 1rem;
}

.space2 {
  padding-bottom: 1.8rem;
}

img {
  width: 100%;
}

@media (max-width: 576px) {
  .no_frame_main::before {
    height: 12rem;
    top: 0.5rem;
  }
  .main_header img {
    width: 100%;
  }
  .align_right {
    text-align: center;
    padding-bottom: 1rem;
  }
  .align_left {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .no_frame_main::after {
    top: 24rem;
  }
}

/*--------------------------------- RITUAL ---------------------------------*/


#ritual .hero {
  background: url("../img/ritual/hero_background.png");
  background-size: cover;
  height: 100vh;
}

.ritual_header {
  padding: 8rem 0 5.6rem 0;
  text-align: center;
}

.ritual_header .block {
  font-size: 1.6rem;
  padding-bottom: 1.8rem;
}

.no_frame_ritual {
  font-size: 1.3rem;
}

.no_frame_ritual::before {
  content: "";
  width: 90%;
  height: 8rem;
  border: 1px solid #000;
  border-bottom: none;
  position: absolute;
  left: 5%;
  top: -1rem;
}

.no_frame_ritual::after {
  content: "";
  width: 90%;
  height: 6rem;
  border: 1px solid #000;
  border-top: none;
  position: absolute;
  left: 5%;
  top: 21rem;
}

.ritual-info {
  font-size: 2rem;
  width: 100%;
  text-align: center;
}

.steps {
  border-bottom: 1px solid #000;
  padding: 3.7rem 0 3.7rem 0;
}

.step_title {
  font-size: 1.8rem;
  font-weight: 100;
}

.before1::before {
  content: "1.";
}
.before2::before {
  content: "2.";
}
.before3::before {
  content: "3.";
}
.before4::before {
  content: "4.";
}

.before1::before,
.before2::before,
.before3::before,
.before4::before {
  font-size: 9rem;
  color: #000;
  position: absolute;
  left: -8.75rem;
  top: -1.8rem;
  font-weight: 100;
}

.step_desc {
  display: block;
  padding-top: 1.25rem;
  font-size: 1.4rem;
  font-weight: 100;
}

.last_step {
  padding: 3.75rem 0 3.75rem 0;
}

@media (max-width: 992px) {
  .steps img,
  .last_step img {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .step_title {
    font-size: 1.4rem;
  }
  .before1::before,
  .before2::before,
  .before3::before,
  .before4::before {
    font-size: 5rem;
    left: -4rem;
    top: -0.8rem;
  }
  .step_desc {
    font-size: 1.2rem;
  }

  .no_frame {
    font-size: 1.2rem;
  }

  .no_frame_ritual::before {
    height: 4rem;
    top: 0;
  }
  .no_frame_ritual::after {
    height: 6rem;
    top: 23rem;
  }
}

/*-------------------------------- MISSION Y --------------------------------*/

#mission_Y .hero {
  background: url("../img/mission_Y/hero_background.png");
  background-size: cover;
  height: 100vh;
}

.description {
  font-weight: 100;
  font-size: 1.2rem;
}

.mission_Y_header {
  text-align: center;
  padding: 3.1rem 5rem 5rem 5rem;
  border: 1px solid #000;
  font-weight: 300;
}

.mission_Y_header img {
  padding-bottom: 2.5rem;
}

.mission_Y_header span {
  font-size: 1.8rem;
}

@media (max-width: 992px) {
  .products .col-12 {
    padding: 5.6rem 0 5.6rem 0;
    border-top: 1px solid #000;
  }
}

@media (min-width: 993px) {
  .products {
    border-top: 1px solid #000;
    padding: 5.6rem 0 5.6rem 0;
  }
}


@media (max-width: 576px) {
  .mission_Y_header {
    padding: 3rem;
  }
}

/*------------------------------ MISSION ECLAT ------------------------------*/

#mission_eclat .hero {
  background: url("../img/mission_eclat/hero_background.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.hero .container,
.hero_row {
  height: inherit;
}

.mission_eclat_header {
  text-align: center;
  padding: 3.1rem 3.1rem 5.6rem 3.1rem;
  border: 1px solid #000;
  font-weight: 300;
}

.eclat_title {
  color: #6b561c;
  font-size: 3rem;
  padding-bottom: 1.8rem;
}

.eclat_title img {
  width: inherit;
  max-width: 250px;
}

.eclat_title_desc {
  font-size: 1.6rem;
}

.price {
	font-size: 0.5em;
	vertical-align:super;
}

.height {
  height: 100%;
}

.frame_prod {
  padding: 1.25rem 1.25rem 1.25rem 6.25rem;
  border: 1px solid #000;
  position: relative;
  z-index: 1;
}

.frame_img {
  position: absolute;
  z-index: 2;
  left: -1rem;
  top: -6.25rem;
  width: 200%;
}

.prod5 {
  padding-top: 1.25rem;
}

@media (max-width: 576px) {
  .frame_prod {
    padding: 1rem 1rem 1rem 3rem;
  }
}

/*------------------------------ CLUB MISSION ------------------------------*/

#club_mission .hero {
  background: url("../img/club_mission/hero_background.png");
  background-size: cover;
  height: 100vh;
}

.club_header {
  text-align: center;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  padding: 1rem;
}

.club_header_shadow {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
}

.club_title {
  color: #ea6d6c;
  padding: 0.3rem;
  display: block;
  padding: 2rem 0 1rem 0;
  font-size: 2.4rem;
}

.mission_club_logo {
  width: 30%;
}

.club_header_light {
  position: relative;
  display: block;
  padding-top: 5rem;
  font-size: 1.3rem;
  font-weight: 100;
}

.club_header_light::before {
  content: "";
  width: 3.1rem;
  height: 1rem;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
}

.club_header_bold {
  padding: 2rem;
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
}

.benefits {
  border-bottom: 1px solid #000;
  padding: 3.75rem 0 3.75rem 0;
  font-size: 2rem;
}

.benefit_desc {
  font-size: 1.2rem;
  font-weight: 300;
}

.italic {
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
}

.sign_up {
  padding:3.75rem;
  text-align: center;
  font-weight: 300;
}

.sign_up_title {
  font-size: 3rem;
  color: #ea6d6c;
  display: block;
  padding-bottom: 1.25rem;
}

.sign_up_info {
  font-size: 1.8rem;
  display: block;
  padding-bottom: 1.25rem;
}

.sign_up_note {
  font-size: 2rem;
  display: block;
  padding-bottom: 4rem;
  font-weight: bold;
}

.sign_up_btn {
  font-size: 2rem;
  border: none;
  color: #fff;
  background-color: #000;
  padding: 1.8rem 3.75rem 1.8rem 3.75rem;
  font-weight: bold;
}

@media (max-width: 992px) {
  .club_header {
    padding: 0.8rem;
  }
  .club_title {
    padding: 0 0 1rem 0;
    font-size: 2rem;
  }
  .club_header_light {
    padding-top: 5rem;
    font-size: 1.1rem;
  }
  .club_header_bold {
    padding: 2rem;
    font-size: 1.2rem;
  }

  .sign_up {
    padding:2rem;
  }
  .sign_up_title {
    font-size: 2.6rem;
  }
  .sign_up_info {
    font-size: 1.4rem;
  }
  .sign_up_note {
    font-size: 1.8rem;
    padding-bottom: 3rem;
  }
  .sign_up_btn {
    font-size: 1.8rem;
    padding: 1.6rem 3rem 1.6rem 3rem;
  }

  .benefit_img {
    padding: 2rem;
  }
}

@media (min-width: 1100px) {
  .benefit_img {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .benefit_desc {
    font-size: 1rem;
  }
  .italic {
    font-size: 1rem;
  }
  .club_header_light::before {
    display: none;
  }
  .club_header_light {
    padding-top: 2rem;
  }
  .club_header_bold {
    padding: 1rem;
  }
}
