@charset "UTF-8";
/*------------General Styles------------*/
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.nav,
header,
.logo,
.about,
.about_box,
.shop,
.shop_box,
.slider,
.slider_box,
.people-choice,
.people-choice_box,
.happy-client,
.happy-client_box,
footer,
.contact,
.contact_form,
.contact_box,
.mailing-list,
.social {
  display: flex;
  flex-flow: column wrap;
}

header,
.logo,
.about_box,
.shop,
.shop_box,
.slider_box,
.slider,
.people-choice,
.people-choice_box,
.happy-client,
.happy-client_box,
.mailing-list,
.social {
  align-items: center;
}

p,
.people-choice_list {
  font-size: 19px;
  padding: 10px;
  text-align: justify;
  line-height: 1.3em;
}

.primary-heading {
  color: #fff;
  font-family: "Share Tech Mono", monospace;
  font-size: 2.2em;
  margin-top: auto;
  padding: 3px;
  background-color: rgba(0, 0, 0, 0.502);
}

.primary-button {
  background-color: transparent;
  border: none;
  color: inherit;
}

.secondary-heading {
  font-family: "Norican", cursive;
  text-align: center;
  display: inline-block;
  border-color: #000;
  font-size: 28px;
}

.secondary-heading:before,
.secondary-heading::after {
  content: " ― ";
}

.secondary-heading--white {
  color: #fff;
}

.secondary-btn,
.contact_submit,
.mailing-list_subscribe {
  padding: 10px;
  background-color: #0B1516;
  color: #fff;
  border: none;
  font-size: 19px;
  transition: all 0.4s ease-in-out;
}

.secondary-btn {
  margin: 10px;
  margin-top: auto;
}

.secondary-btn:visited {
  background-color: #d29804;
}

.secondary-btn:focus,
.secondary-btn:hover,
.contact_submit:focus,
.contact_submit:hover,
.mailing-list_subscribe:focus,
.mailing-list_subscribe:hover {
  background-color: #d29804;
}

.terziary-heading {
  font-family: "Courier New", Courier, monospace;
}

.heading-icon {
  max-width: 110px;
}

.link {
  color: #d29804;
  padding: 5px;
}

.link:visited {
  color: #6b6a6a;
}

.link:focus,
.link:hover {
  color: black;
  background-color: #D83D3D;
  text-decoration: none;
}

/*-----------------Navigation----------------*/
nav {
  position: fixed;
  top: 0;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  /* background-color: #000; */
  color: #000;
}

.js-nav--scroll {
  background-color: #393b3a;
  color: #fff;
}

.js-nav--black {
  background-color: #393b3a;
  color: #fff;
}

.js-nav_link--scroll {
  color: #fff;
}

.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav_item {
  padding: 10px;
  display: none;
  background-color: #393b3a;
  align-self: center;
  transition: all 0.4s ease-in-out;
}

.nav_item:first-of-type {
  background-color: transparent;
}

.nav_item:last-of-type {
  margin-bottom: 50px;
}

.nav_item--visible {
  display: block;
}

.nav_item--trigger {
  display: inline-block;
  margin-right: 20px;
  margin-left: auto;
  font-size: 1.7em;
}

.nav_item--trigger:focus,
.nav_item--trigger:hover {
  color: #d29804;
}

.nav_link {
  color: #fff;
  padding: 10px;
  text-decoration: none;
}

.nav_link:focus,
.nav_link:hover {
  background-color: #d29804;
}

/*------------------Header---------------*/
header {
  background-image: url(http://www.lisbonstyle.eu/Imagens/foto0.jpg);
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  background-color: #D3D4CF;
}

.logo-heading {
  margin: 0;
  padding-top: 10px;
  font-family: "Norican", cursive;
  font-size: 3em;
}

.logo-subheading {
  padding: 0;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: "Norican", cursive;
}

.logo-image {
  max-width: 90px;
}

/*---------------About------------------*/
.about {
  border-bottom: 1px solid #000;
  padding: 10%;
}

.about_box {
  padding: 40px 10px;
  justify-content: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

/*--------------Shop By Category--------------*/
.shop {
  background-color: #636262;
  padding-top: 40px;
  padding-bottom: 70px;
}

.shop_box {
  width: 90%;
  padding: 30px 10px;
  background-color: #fff;
  margin: 30px auto;
}

.shop_box .secondary-btn {
  margin-left: auto;
}

/*--------------Slider--------------*/
.slider-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
}

.slider {
  border-bottom: 1px solid #dfdfdf;
}

.slider,
.slider_box {
  position: relative;
}

.slider_box {
  position: relative;
  transition: all 0.7s ease-in-out;
}

.slider_box:nth-of-type(2),
.slider_box:nth-of-type(3) {
  display: none;
}

.slider_arrow--left,
.slider_arrow--right {
  position: absolute;
  font-size: 50px;
  margin: 8px;
  text-shadow: 3px 3px 3px #393B3A;
  color: #000;
  top: 50%;
  cursor: pointer;
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
}

.slider_arrow--left {
  left: 5px;
  transform: translate(0, -50%);
}

.slider_arrow--right {
  right: 5px;
  transform: translate(0, -50%);
}

.slider_quote {
  position: absolute;
  bottom: 0;
  width: 95%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  font-family: "Share Tech Mono", monospace;
  border: 4px double #000;
}

.slider_icon {
  max-width: 60px;
}

.slider-motto {
  display: none;
  padding: 10px;
}

.slider-motto_content {
  padding: 5%;
}

/*---------------People Choice-----------*/
.people-choice {
  margin: 50px 0;
  /* border-bottom: 1px solid #dfdfdf; */
}

.people-choice_box {
  padding: 20px;
  margin: 20px 0;
}

.people-choice_frame {
  position: relative;
  padding: 20px;
  max-width: 400px;
}

.people-choice_ribbon {
  position: absolute;
  top: 70%;
  padding: 10px;
  background-color: #D83D3D;
  font-family: "Share Tech Mono", monospace;
  left: 0;
}

.people-choice_ribbon::before {
  content: " ";
  position: absolute;
  top: -20px;
  left: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent #9e2d2d #9e2d2d transparent;
}

.people-choice_heading {
  font-family: "Share Tech Mono", monospace;
  border-bottom: none;
}

.people-choice_list {
  margin: 10px 30px;
  list-style-type: disc;
}

.people-choice_list li {
  margin: 15px 0;
}

/*-----------Happy Client----------*/
.happy-client {
  padding: 5%;
  background-color: #636262;
}

.happy-client_box {
  margin: 20px;
  padding: 40px 10px;
  text-align: justify;
  background-color: #fff;
  width: 90%;
}

.happy-client_img {
  padding: 5px;
  max-width: 200px;
  border: 4px double transparent;
  border-top-color: #000;
  border-bottom-color: #000;
  transition: all 0.4s ease-in-out;
}

.happy-client_review {
  max-width: 80%;
}

.happy-client_box:focus .happy-client_img,
.happy-client_box:hover .happy-client_img {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left: 4px double #000;
  border-right: 4px double #000;
}

/*---------------------Footer--------------------*/
footer {
  padding: 10px;
}

/*--------------Contact--------------*/
.contact {
  border: 1px solid #000;
  background-color: #fff;
}

.contact_box {
  margin: 0;
  padding: 0;
  flex-flow: row wrap;
}

.contact .secondary-heading {
  border: none;
  padding: 0;
  text-align: center;
}

.contact_input,
textarea,
.contact_submit {
  padding: 20px;
}

.contact_box {
  border-top: 1px solid #dfdfdf;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.contact_input {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #dfdfdf;
  transition: all 0.2s linear;
}

.contact_input:nth-of-type(1) {
  border-right: 1px solid #dfdfdf;
}

textarea {
  border: none;
  border-top: 1px solid auto;
  transition: all 0.4s linear;
}

.contact_box .contact_input {
  flex: 1;
}

/*---------------Mailing List---------------*/
.mailing-list {
  padding: 10px;
  margin: 30px 0;
  border: 1px solid #000;
  background-color: #fff;
}

.mailing-list_module {
  display: flex;
  flex-flow: row nowrap;
}

.mailing-list_input {
  padding: 10px;
}

.mailing-list_heading {
  align-self: center;
}

.mailing-list_message {
  font-family: "Courier New", Courier, monospace;
}

/*--------------Social--------------*/
.social {
  border: 1px solid black;
  background-color: #fff;
}

.social_icons {
  padding: 40px 10px;
  font-size: 2.2em;
  color: #000;
  display: flex;
  justify-content: center;
}

.social_icon {
  margin: 5px;
  padding: 5px;
  transition: all 0.4s ease-in-out;
}

.social_icon:focus,
.social_icon:hover {
  background-color: #D83D3D;
  color: #fff;
}

/*------------Credits--------------*/
.credits {
  display: flex;
  flex-flow: row wrap;
  border: 1px solid black;
  background-color: #fff;
  padding: 3%;
  width: auto;
  margin-top: 10px;
  align-self: stretch;
}

/*----------Media Queries-----------*/
@media screen and (orientation: landscape) {
  header {
    position: relative;
  }

  .logo {
    position: absolute;
    left: 20px;
    top: 10px;
  }
}
@media (min-width: 599px) {
  header {
    background-image: url(http://www.lisbonstyle.eu/Imagens/foto0.jpg);
  }
}
@media (min-width: 700px) {
  .shop,
.happy-client,
.people-choice,
footer {
    flex-flow: row wrap;
    align-items: stretch;
  }

  .secondary-heading {
    width: 100%;
  }

  .shop_box,
.happy-client_box,
.people-choice_box,
.contact,
.mailing-list,
.social {
    flex: 45%;
    margin: 10px;
  }

  .contact,
.mailing-list,
.social {
    flex-flow: column nowrap;
  }

  .shop,
.happy-client,
footer {
    padding: 5%;
  }

  .slider-wrapper {
    margin: 5%;
  }

  .credits {
    width: 100%;
    margin: 10px;
  }
}
@media (min-width: 800px) {
  .slider-wrapper {
    padding: 5%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .slider-motto {
    display: flex;
    flex-flow: column wrap;
  }

  .slider {
    flex: 60%;
    margin: auto 0;
  }

  .slider-motto {
    flex: 40%;
  }
}
@media (min-width: 1000px) {
  header {
    background-image: url(https://s19.postimg.cc/abtgah3mp/focus-3x.jpg);
  }
}
@media (min-width: 1100px) {
  .nav_link {
    color: black;
  }

  .js-nav_link--scroll {
    color: #fff;
  }

  .nav {
    display: flex;
    justify-content: flex-end;
    flex-flow: row nowrap;
    background-color: transparent;
  }

  .nav_item {
    display: flex;
    margin: 0;
    background-color: transparent;
  }

  .nav_item:last-of-type {
    margin-bottom: 0;
  }

  .nav_item--trigger {
    display: none;
  }

  .primary-heading {
    font-size: 3em;
  }

  .shop_box,
.people-choice_box,
.happy-client_box,
.contact,
.mailing-list,
.social {
    flex: 30%;
    margin: 10px;
  }

  .shop {
    padding: 10%;
  }

  .happy-client,
footer {
    padding: 3%;
  }

  .slider {
    flex: 40%;
  }

  .slider-motto {
    flex: 60%;
  }

  .about_content {
    max-width: 70%;
  }
}
@media (min-width: 1500px) {
  .nav_item {
    font-size: 1.2em;
  }

  .primary-heading {
    font-size: 3.5em;
  }

  .shop_box {
    flex: 20%;
  }

  .people-choice_list {
    max-width: 70%;
  }

  .social_icons {
    font-size: 3.8em;
  }
}
/*------- Setting for 4k Ultra HD Television------------*/
@media (min-width: 2000px) {
  body {
    max-width: 2000px;
    margin: auto;
    height: auto;
    border: 1px solid #000;
  }

  header {
    max-height: 1650px;
  }
}
div.gallery {
  margin: 5px;
  border: 0px solid #ccc;
  width: 200px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: 200px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

/* Wrapper */
.icon-button {
  background-color: white;
  border-radius: 3.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  height: 3.6rem;
  line-height: 3.6rem;
  margin: 0 0px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 3.6rem;
}

/* Circle */
.icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
}

.icon-button:hover span {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 3.6rem;
  margin: -1.8rem;
}

.facebook span {
  background-color: #3B5998;
}

.instagram span {
  background-color: #bc2a8d;
}
.map span {
  background-color: #e0ad14;
}

/* Icons */
.icon-button i {
  background: none;
  color: white;
  height: 3.6rem;
  left: 0;
  line-height: 3.6rem;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 3.6rem;
  z-index: 10;
}

.icon-button .fa-facebook {
  color: #3B5998;
}

.icon-button .fa-instagram {
  color: #4099ff;
}

.icon-button .fa-map {
  color: #3B5998;
}

.icon-button:hover .fa-facebook,
.icon-button:hover .fa-map,
.icon-button:hover .fa-instagram {
  color: white;
}



