:root {
  --dark: #333132;
  --white: #ffffff;
  --red: #db4a5a;
  --yellow: #f9ae41;
}



/* Hero/Header */

#video_wrapper {  
  position: relative;
  z-index: 1;
  overflow: hidden; 
  padding-top: 56.25%; /* 16:9 */
  height: 0;
}

video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100%;
}

#image_wrapper {
  position: relative;
  width: 100vw;
  z-index: 1;
  overflow: hidden; 
}

#image_wrapper img {
  width: 100vw;
}

#logo_overlay {
  z-index: 99;
  position: absolute;
  top: 20%;
  left: 20%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

}

@media only screen and (max-width: 920px){
  #logo_overlay {
    left: 50%;
    transform: translate(-50%, -30%);
  -ms-transform: translate(-50%, -30%); 
  }
 }

#logo_overlay img {
  width: 30vw;
}

@media only screen and (max-width: 920px){
  #logo_overlay img {
    width: 60vw;
  }
 }

#cta_button_wrapper {
  z-index: 100;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

i.fa-angle-down {
  font-size: 6rem;
  text-align: center;
  text-decoration: none;
  color: #db4a5a;
}

i.fa-angle-down:hover {
  color: #888b8d;
}

@media only screen and (max-width: 920px) {
#cta_button_wrapper {
  transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
}
}

@media only screen and (max-width: 920px) {
 i.fa-angle-down {
 font-size: 4rem;
}
}

a.cta_button  {
  display: block;
  text-decoration: none;
  border: 1px solid #ece8e4;
  color: #ece8e4;
  background-color: transparent;
  font-size: 16px;
  padding:1em;
  text-align: center;
}

a.cta_button:hover {
  color: #888b8d;
  border: 2px solid #888b8d;
}

@media only screen and  (orientation: portrait) {
#cta_button_wrapper {display: none;}
}

#header_logo {
  position: relative;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}

#header_logo img {
  width: 30vw;
}

@media only screen and (max-width: 920px){
 #header_logo img {
   width: 50vw;
 }
}

@media only screen and (max-width: 600px) {
 #header_logo img {
   width: 75vw;
 }
}


/* Datepicker */

.datepicker_wrapper {
  width: 30vw;
  padding: 30px;
  margin-left:auto;
  margin-right: auto;
}

@media (max-width: 768px) { /*breakpoint*/
  .datepicker_wrapper {
    width: 100%;
  }
}

.booqable-datepicker {
  border: 2px solid #000;
}



/* Product */

@media (min-width: 768px) { /*breakpoint*/
.booqable-component.booqable-component-product-detail {
  margin: 10px, 500px;
}
}

@media (min-width: 768px) { /*breakpoint*/
#booqable-product_wrapper {
  width: 50vw;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
}

.addcart_wrapper {
  width: 30vw;
  padding: 30px;
  margin-left:auto;
  margin-right: auto;
}

@media (max-width: 768px) { /*breakpoint*/
  .addcart_wrapper {
    width: 100vw;
  }
  }
  

/* Cart */

.booqable-component #booqable-sidebar-inner .button-group .bq-button:not(:last-child) {
  display:none;
}


/* ==================================== */
/* Typography */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Dosis", sans-serif;
  font-weight: 400;  
  background-color: var(--white);
  color: var(--dark);
}


p, ul {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding: 0;
  text-align: center;
}

a {
  color: #273335;
}

h1, h2, h3 {
  font-weight: 700;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  font-family: "Dosis", sans-serif;
}

h1 {
  font-size: 2rem;
  line-height: 1;
  color: var(--red);; 
  text-align: center;
  margin-top: 4rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  padding-top: 0rem;
}

.footnote {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.button {
  background-color: #273335;
  color: white;
  padding: 0.5rem;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style-position: inside;
  margin-top: 1rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 700px) {
h1 {
  padding: 1rem 2rem 0.5rem 2rem;
}
h2, h3 {
  padding: 0rem 2rem 0.5rem 2rem;
}
p {
  padding: 0rem 2rem 0rem 2rem;
}
}

/*===============================*/
/* Content layout */

/* main content div */
.content {
  margin: 0 auto;
  max-width: 800px;
  
}

.content img { 
 max-width: 80%;
/* center horiz. */
 display: block;
 margin-left: auto;
 margin-right: auto;
}

.content > img {
 margin-top: 3em;
}


/*Two column - desktop, one column - mobile*/
#flexContainer {
  display: block;
  justify-content: center;
}

.flexItem {
  flex: 50%;
  justify-content: center;
  padding-right: 1em;
}

.flexItem > img {
  margin-bottom: 1em;
}


@media only screen and (min-width: 700px) {
  #flexContainer {
    display: flex;
  }
}

@media only screen and (max-width: 700px) {
.flexItem {
    margin-bottom: 2em;
    padding-right: 0em;
  }
}


/*======================================*/
/* Icons */	

ul.social-media-list {
    list-style-type: none;
    padding: 0;
}

/* horizontal bar*/
  ul.social-media-list li {
  display: inline-block;
  margin: 0.5rem;
}




/*=======================================*/
/* Map */


.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    margin-top: 1em;
    margin-bottom: 1em;
}

.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
 



/*=======================================*/
/* Contact Section */

.contact-box {
  background: #d38377;
  height: auto;
  padding: 1rem 2rem 2rem 2rem;
  color: #273335;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.contact-box h1 {
  color: #273335;
}

.contact-form { 

}

textarea, input, select {
  background-color: #ece8e4;
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: none;
  font-size: 1rem;
}


button[type=submit] {
  width: 50%;
  background-color: #273335;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

button[type=submit]:hover {
  background-color: #ece8e4;
color: #273335;
}

@media only screen and (orientation: portrait) and (max-width: 600px) {
.contact-box {
  padding: 2rem 0 2rem 0;
}}

@media only screen and (max-width: 600px) {
textarea, input[type=text], input[type=telephone], input[type=email], input[type=submit], select {
  width: 90%;
}}


/*=======================================*/
/* Footer */


footer{
   
    background: var(--red);
    height: auto;
    padding: 2rem 2rem 3rem 2rem;
    color: var(--dark);
    margin-top: 50px;
    
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 2rem 3rem 0;

}

.footer-socials-booqable{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 2rem 3rem 0;
  font-size: 2em;
}

.footer-socials li{
  margin: 0 0.5rem;
}

.footer-socials-booqable li{
  margin: 0 0.5rem;
}

.footer-socials a:hover i{
    color: #888b8d;
}

.footer-socials-booqable a:hover i{
  color: #888b8d;
}

.footer-bottom{
  float: left;
    background: var(--red);
    text-align: center;
}

.footer-menu {
  float: right;
}

.footer-menu ul{
  display: flex;
}

.footer-menu ul li{
  padding-right: 2rem;
  display: block;
}

.footer-menu ul li a{
  color: #273335;
  text-decoration: none;
}

.footer-menu ul li a:hover{
  color: #ece8e4;
}

@media (max-width: 600px) {

.footer-menu {
  float: none;
  display: flex;
  justify-content: center;
}


.footer-bottom{
  float: none;
  padding-top: 5rem;
  background: var(--red);
  text-align: center;
 }

}
