/* HERO + MENU */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../image/1920x1200.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.hero__title {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 22px;
  color: #fff;
  text-align: center;
  font-family: "Toxigenesis", sans-serif;
}

.hero__desc {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  font-family: "Toxigenesis", sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: 250ms;
}

nav.scrolling {
  background-color: #000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  height: 64px;
}

.navbar__logo {
  position: relative;
  z-index: 10;
  width: 200px;
}

.navbar__logo img {
  max-width: 100%;
}

.hamburger {
  position: relative;
  z-index: 10;
}

.hamburger .line{
  width: 44px;
  height: 4px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line:nth-child(2){
  opacity: 0;
}

.hamburger.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

.hamburger.is-active + .menu {
  right: 0;
}

.menu {
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  padding: 64px 0 8px;
  background-color: black;
  transition: 250ms;
}

.menu li {
  list-style: none;
  font-family: "Toxigenesis", sans-serif;
  cursor: pointer;
}

.menu__item a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  text-align: center;
}

.submenu {
  display: none;
  background-color: #fff;
  padding: 8px 0px 12px 0px;
}

.submenu__item a {
  font-size: 14px;
  line-height: 30px;
  color: #9d9d9d;
}

.submenu__dropdown span {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  display: inline-flex;
  margin-left: 6px;
  margin-bottom: 2px;
}

.submenu__dropdown.is-active .submenu {
  display: block;
}

.submenu__dropdown2 span {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  display: inline-flex;
  margin-left: 6px;
  margin-bottom: 2px;
}

.submenu__dropdown2.is-active .submenu {
  display: block;
}
/* END HERO + MENU */

/* PRICING */
.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__video {
  padding: 15px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.pricing__video iframe {
  width: 100%;
  height: 175px;
}

.pricing__keyboard {
  display: none;
}
/* END PRICING */

/* TEST */
.test__video {
  padding: 15px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.pricing__video iframe {
  max-width: 100%;
}
/* END TEST */

/* PACKAGE */
.package__advantages {
  display: none;
}
/* END PACKAGE */

/* REVIEWS */
.reviews__list-item {
  margin-bottom: 22px;
  line-height: 28px;
  text-align: left;
  list-style: none;
}
/* END REVIEWS */

/* HOW */
.how {
  background-image: url('../image/1920x1200.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* END HOW */

/* FAQ */
.faq__question {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 32px;
  font-family: "Toxigenesis", sans-serif;
  font-weight: 700;
  text-align: center;
}

.faq__answer {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.faq a {
  text-decoration: underline;
  color: #000;
}
/* END FAQ */

/* CONTACT */
.contact {
  background-color: #000;
}

.contact__question {
  padding-bottom: 50px;
  border-bottom: 1px solid #222;
  font-size: 30px;
  line-height: 33px;
  color: #fff;
  font-family: "Toxigenesis", sans-serif;
  font-weight: 700;
}

.contact__copy {
  margin: 32px 0;
  line-height: 30px;
  color: #fff;
}
/* END CONTACT */

/* CONTACT */
.patches img {
  max-width: 100%;
  height: auto;
}

.patches img:hover {
  -webkit-filter: brightness(130%); 
 }

.patches__wrapper {
  display: grid;
  grid-gap: 16px;
}
/* END CONTACT */


/* MEDIA QUERIES */
@media screen and (min-width: 768px) {
  .hero {
    height: 60vh;
  }

  .pricing__video iframe {
    height: 375px;
  }

  .package__advantages {
    display: block;
    padding: 70px 0;
    background-image: url('../image/1920x1200.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }

  .package__advantages-box {
    height: 158px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
	padding:15px;
	text-align: center
  }

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

  .package__advantages-box-title {
    font-size: 30px;
    margin-bottom: 20px;
	font-weight: bold;
    font-family: "Toxigenesis", sans-serif;
  }

  .package__advantages-box-desc {
    font-size: 17px;
  }

  .patches__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1200px) {
  .hero {
    height: 640px;
  }

  .hero__title {
    font-size: 65px;
    line-height: 1.1;
  }

  .hero__desc {
    font-size: 28px;
    line-height: 45px;
  }

  .hamburger {
    display: none;
  }

  .navbar__logo {
    margin-bottom: -4px;
  }

  .menu {
    position: static;
    background: transparent;
    display: flex;
    margin: 0;
    padding: 0;
    width: auto;
  }

  .menu__item {
    padding: 0 15px;
  }

  .submenu {
    position: absolute;
    left: 0px;
    top: 40px;
    width: 220px;
    border-radius: 2px;
  }

.submenu__dropdown {
    position: relative;
  }

  .submenu__dropdown:hover .submenu {
    display: block;
  }

    .submenu__dropdown2 {
    position: relative;
  }

  .submenu__dropdown2:hover .submenu {
    display: block;
  }

  .submenu__item a {
    text-align: left;
    padding-left: 16px;
    padding: 2px 16px 2px;
    color: #333;
  }

  .submenu__item a:hover {
    background-color: #eee;
  }

  .pricing__video iframe {
    height: 535px;
  }

  .pricing__keyboard {
    display: block;
    margin: 0 auto;
  }

  .package__advantages-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .package__advantages-box {
    width: 31%;
    margin-bottom: 0;
  }

  .package__sides {
    display: flex;
    margin: 74px 0 24px;
  }

  .reviews__list {
    column-count: 2;
    width: 110%;
  }

  .reviews__list-item {
    max-width: 500px;
  }

  .patches__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}