/*****BEGIN GENERAL SITE FORMATTING*****/
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  scroll-behavior: smooth;

  z-index: 20;
}

html {
  overscroll-behavior-y: none;
}

body {
  background-color: white;
  color: white;

  margin: 0;

  overscroll-behavior-y: none;
}

.background-image {
  position: fixed;
  display: block;

  min-width: 100%;
  min-height: 100%;

  top: 80px;

  background: url('../images/khuvahomebackground.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: scroll;
  background-size: cover;
  background-color: #6c97b8;

  z-index: 1;

  -webkit-transform: translate3d(0,0,0);
}

.page-content {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  height: 95%;

  padding: 2vw 5%;

  overflow: hidden;

  margin: 2.5% 0;
}

select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;

  font-size: 12px;
  font-family: "Open Sans", sans-serif;

  background: url('../images/locationsdropdown.png');
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: white;

  width: 150px;
  height: 25px;

  border-style: none;
  border: 1px solid #6c97b8;

  transition: all .2s ease-in-out;

  padding: 3px;
}

select:focus {
  outline: none;
}
/*****END GENERAL SITE FORMATTING*****/

/*****BEGIN TEXT FORMATTING SECTION*****/
h1 {
  display: block;

  font-family: "Open Sans", sans-serif;
  font-size: 60px;

  color: #445b2a;
  font-weight: 300;

  margin: 0 5%;
  padding-bottom: 20px;

  text-align: center;
}

.page-title {
  display: block;
  position: relative;

  width: 100vw;
  height: 70px;

  margin-bottom: 20px;
  margin-top: 160px;
}

p, label {
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7em;

  word-wrap: break-word;

  margin: 0 5%;
  padding-bottom: 20px;

  opacity: 1;

  color: black;
}

label {
  display: inline-block;
  line-height: 0;
}

.subtitle {
  font-size: 20px;
}

.center {
  text-align: center;
}

a {
  color: black;
}

@media screen and (max-width: 1000px) {
  p, label {
    font-size: 14px;
  }

  .subtitle {
    font-size: 18px;
  }
}

@media all and (max-width: 890px) {
  .subtitle, .center {
    text-align: center;
  }
}

@media all and (max-width: 445px) {
  h1 {
    font-size: 40px;
  }

  .page-title {
    height: 50px;
  }
}

@media all and (max-width: 265px) {
  h1 {
    font-size: 20px;
  }

  .page-title {
    height: 25px;
  }
}
/*****END TEXT FORMATTING SECTION*****/

/*****BEGIN HEADER FORMATTING SECTION*****/
header {
  display: block;
  position: fixed;

  width: 100%;
  height: 130px;

  top: 0;
  left: 0;

  background-color: white;

  z-index: 9999;
}

.header-buttons {
  position: absolute;
  display: block;

  transition: all .2s ease-in-out;

  margin-top: 40px;

  height: 60px;
}

.header-buttons:hover, #header-logo:hover {
  transform: scale(1.1);
}

#header-logo {
  display: inline;
  position: absolute;

  transition: all .2s ease-in-out;

  height: 110px;
  width: auto;

  padding-top: 10px;

  left: 0;
  right: 0;
  margin: auto;
}

#header-shop {
  left: 13%;
}

#header-product {
  left: 28%;
}

#header-contact {
  right: 28%;
}

#header-about {
  right: 13%;
}

.mobile-menu {
  position: relative;
  display: inline-block;

  width: 100%;

  z-index: 200;

  overflow: scroll;

  cursor: pointer;
}

.click-off {
  position: relative;

  top: 130px;

  height: 100vh;
  width: 100%;

  background-color: rgba(0, 0, 0, 0.5);

  cursor: pointer;
}

.click-off a {
  display: block;

  padding: 14px 16px 14px 5%;

  background-color: white;

  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  color: black;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.click-off a:hover {
  background-color: #d9d9d9;
}

.no-scroll {
  overflow: hidden;
}

@media screen and (max-height: 485px) {
  .click-off {
    height: 400px;
  }

  .mobile-menu {
    height: 150px;
  }
}
/*****END HEADER FORMATTING SECTION*****/

/*****BEGIN FOOTER FORMATTING SECTION*****/
footer {
  display: block;
  position: relative;

  margin-top: auto;
  margin-bottom: 10px;
  padding-right: 5%;
  padding-left: 5%;

  height: 60px;
  width: 90%;

  background-color: white;

  z-index: 990;
}

.fill-mobile {
  display: inline;
  position: relative;

  margin: none;
  padding: none;
}

.footer-content {
  display: inline-block;
  position: relative;

  margin: 0;

  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: italic;

  padding-bottom: 0px;
}

.social-media {
  position: relative;

  float: right;

  height: 35px;
  width: 35px;

  margin-left: 10px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.social-media:hover, #footer-logo:hover {
  -webkit-transform: scale(1.1) translateY(-50%);
  -ms-transform: scale(1.1) translateY(-50%);
  transform: scale(1.1) translateY(-50%);
}

.vertical-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 535px) {
  .footer-content {
    height: 40px;
    width: 50%;
  }
}

@media screen and (max-width: 410px) {
  .footer-content {
    height: 60px;
    width: 35%;

    font-size: 12px;
  }
}

@media screen and (max-width: 345px) {
  .fill-mobile {
    width: 100%;
  }

  .vertical-center {
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .social-media, #footer-logo {
    margin-top: 5px;
  }

  .social-media:hover, #footer-logo:hover {
    -webkit-transform: scale(1.1) translateY(0);
    -ms-transform: scale(1.1) translateY(0);
    transform: scale(1.1) translateY(0);
  }

  #footer-logo {
    margin-right: 0;
  }

  footer {
    height: 90px;
  }
}

@media screen and (max-width: 194px) {
  footer {
    height: 160px;
  }

  .fill-mobile {
    display: flex;

    justify-content: center;

    text-align: center;
  }

  .social-media {
    margin-bottom: 5px;
    float: none;
  }

  #facebook {
    margin-left: 0;
  }
}
/*****END FOOTER FORMATTING SECTION*****/
