/* #region navbar */

.nav {
  z-index: 2;
  width: 100vw;
  height: 8vh;
  min-height: 60px;
  display: flex;
  /* justify-content: space-between; */
  align-items: stretch;
  position: fixed;
  top: 0vh;
  box-sizing: border-box;
  background-color: white;
  -o-transition: .2s;
  -ms-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  transition: .2s;
}

.white {
  background-color: white;
  width: 50vw;
  font-family: 'Impac', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 250%;
  color: #404041;
  border-bottom: 3px solid #00000000;
  cursor: pointer;
  -o-transition: .2s;
  -ms-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  transition: .2s;
}

.green {
  color: #17b895;
  margin-left: -5vw;
}

.transparent {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0);
  opacity: 0;
}

.btn_nav {
  color: rgba(255, 255, 255, 0.952);
  font-size: 200%;
}

.btn_nav:hover {
  cursor: pointer;
  /* TO DO  */
}

.holder {
  margin-left: 10vw;
  margin-right: 10vw;
  transform: skewX(25deg);
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.holder_mobile {
  margin-left: 10vw;
  transform: skewX(25deg);
  flex: 1;
  justify-content: right;
  align-items: center;
  display: none;
  color: white;
}

.holder_mobile i {
  font-size: 250%;
  margin-left: 65%;
}

.nav_menu_mobile {
  z-index: 1;
  width: 100vw;
  height: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  overflow: hidden;
  top: 8vh;
  box-sizing: border-box;
  background-color: white;
  -o-transition: .3s;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav_menu_mobile>div {
  text-align: center;
  margin-top: 2vh;
  font-size: 140%;
}

.green-nav {
  background-color: #17b895;
  display: inline-block;
  transform: skewX(-25deg);
  margin-right: -5vw;
  width: 80vw;
  display: flex;
  align-items: stretch;
  justify-content: center;
  -o-transition: .2s;
  -ms-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  transition: .2s;
}

.divider {
  background-color: #404041;
  height: 100%;
  width: 30px;
  overflow: hidden;
  display: inline-block;
  /* skew container so that it has angled edge, and set up transition */
  transform: skewX(-25deg);
  transition: width 0.1s ease-in-out;
  -webkit-box-shadow: 6px 0px 32px -1px rgba(0, 0, 0, 0.473);
  -moz-box-shadow: 6px 0px 32px -1px rgba(0, 0, 0, 0.473);
  box-shadow: 6px 0px 32px -1px rgba(0, 0, 0, 0.473);
}

@media screen and (max-width: 790px) {
  .holder {
    display: none;
  }
  .holder_mobile {
    display: flex;
  }
  .logo {
    font-size: 1.5rem;
  }
  .divider {
    width: 15px;
  }
}

/* #endregion */

/* #region description */

.description {
  margin-top: 8vh;
  background: url("../../images/cover_04.jpg") fixed no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
}

.desc-content {
  background-color: rgba(255, 255, 255, 0.795);
  flex: 5 5 45vw;
  border-radius: 10px;
  margin: 5vh 2vw;
  /* min-width: 500px; */
}

.desc-main {
  margin: 6vh 2vw;
  font-size: 150%;
}

.desc-tittle-hr {
  height: 3px;
  background-color: #17b895;
  margin-bottom: 1vh;
  margin-right: auto;
  width: 65%;
}

.desc-subtitle-hr {
  height: 2px;
  opacity: 0.6;
  background-color: #17b895;
  margin-bottom: 1vh;
  margin-right: auto;
  width: 80%;
}



.desc-title {
  font-size: 250%;
  opacity: 0.85;
}

.desc-mini {
  background-color: rgba(255, 255, 255, 0.795);
  flex: 4 4 40vw;
  border-radius: 10px;
  margin: 6vh 2vw;
  /* min-width: 400px; */
}

.desc-buttonHolder {
  background-color: rgba(255, 255, 255, 0.795);
  flex: 5 5 80vw;
  border-radius: 10px;
  margin: 0vh 2vw;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.desc-buttonHolder>i>p {
  font-size: 1.3em;
}

.desc-body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.desc-text {
  flex: 2 2 45%;
  font-size: 0.9em;
}

.desc-price {
  flex: 1 1 100%;
  margin: 0 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  
}

.desc-price>div {
  padding: 0.6vh 1vw;
  margin: 2vh 2vw;
  text-align: center;
  color: black;

}

.desc-price>div>div {
  margin: 0.2vh 3vw;
  border-bottom: solid 2px rgba(0, 0, 0, 0.541);
}

.desc-price>div>span {
  margin-top: 3vh;
  text-align: center;
  font-size: 0.8em;
}

/* .desc-price>div:last-child {
  margin-bottom: 2vh;
} */

.btn-generic {
  opacity: 0.85;
  font-size: 1.5em;
  font-family: 'Nunito', sans-serif;
  color: rgb(255, 255, 255);
  background-color: #1B363F;
  border: 2px solid #1B363F;
  outline: none;
  border-radius: 5px;
  padding: 0.8vh 6vw;
  margin: 2vh 2vw;
  cursor: pointer;
  -o-transition: .2s;
  -ms-transition: .2s;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  transition: .2s;
}

.btn-generic:focus {
  outline: none;
}

.btn-generic:hover {
  background-color: #373737;
  border: 2px solid #373737;
  margin-bottom: 2.5vh;
  margin-top: 1.5vh;
}

@media screen and (max-width: 1250px) {
  .desc_empty {
    display: none;
  }
  .desc-price {
    justify-content: center;
  }
}

@media screen and (max-width: 800px) {
  .desc-price>span {
    margin-top: 5vh;
  }
  .desc-price>i {
    margin-top: 6vh;
  }
  .desc_text {
    text-align: center;
  }
  .desc_text {
    flex: 2 2 calc(40vh + 200px);
  }
  .desc-price {
    flex: 1 1 calc(40vh + 200px);
  }
}

/* #endregion */
