html,
body {
  height: 100%;
}

body {
  background-color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.body--noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

strong {
  font-weight: 700 !important;
}

section {
  padding: 75px 0;
}
@media (max-width: 768px) {
  section {
    padding: 45px 0;
  }
}

.title {
  text-align: center;
  font-weight: 700;
  font-size: 46px;
  line-height: 130%;
  color: #000;
}
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }
}

.btnplay-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .btnplay-place {
    margin-top: 30px;
  }
}

.btnplay {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btnplay img {
  width: 250px;
}
.btnplay:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .btnplay img {
    width: 180px;
  }
}

.header {
  border-bottom: 4px solid #EE912F;
}
@media (max-width: 768px) {
  .header {
    border-bottom: 2px solid #EE912F;
  }
}

.header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logomain img {
  width: 150px;
}
@media (max-width: 768px) {
  .logomain img {
    width: 120px;
  }
}

.header-menu .hmbtn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 20;
}
.header-menu .hmbtn span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}
.header-menu .hmbtn span:nth-child(1) {
  top: 10px;
}
.header-menu .hmbtn span:nth-child(2) {
  top: 18px;
}
.header-menu .hmbtn span:nth-child(3) {
  top: 26px;
}
.header-menu .hmbtn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 18px;
}
.header-menu .hmbtn.active span:nth-child(2) {
  opacity: 0;
}
.header-menu .hmbtn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
}
@media (max-width: 768px) {
  .header-menu .hmbtn {
    display: block;
  }
}
.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header-menu ul li a {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}
.header-menu ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header-menu nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    padding-top: 80px;
    -webkit-transition: 0.23s;
    transition: 0.23s;
    opacity: 0;
    visibility: hidden;
  }
  .header-menu nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-menu nav.active {
    opacity: 1;
    visibility: visible;
  }
}

.hero {
  min-height: 700px;
  background-image: url(../img/heroimage.jpg);
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    min-height: 300px;
  }
}

.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about__content {
  width: 100%;
}
.about__content .title {
  text-align: left;
  margin-bottom: 40px;
}
.about__content p {
  font-size: 16px;
  line-height: 130%;
}
.about__content ul {
  margin: 24px 0;
  list-style-type: disc;
  padding-left: 30px;
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.about__image {
  min-width: 400px;
  max-width: 400px;
}
.about__image img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .about__image {
    min-width: 300px;
    max-width: 300px;
  }
}

.gallery {
  background-color: #F5F5F5;
}
.gallery__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .gallery__box {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .gallery__box {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
  }
}
.gallery .gallery-item {
  overflow: hidden;
}
.gallery .gallery-item a {
  overflow: hidden;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s;
  transition: 1s;
}
.gallery .gallery-item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.seevideo .title {
  margin-bottom: 60px;
}
.seevideo__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.seevideo__box video {
    width: 100%;
    max-width: 500px;
    height: 700px;
    background: #000;
}
@media (max-width: 768px) {
  .seevideo__box video {
    height: 400px;
  }
}

.revs {
  background-color: #F5F5F5;
}
.revs__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .revs__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.revs .revs-item {
  background-color: #F8DB45;
  padding: 24px;
  border-radius: 24px;
}
.revs .revs-item__name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.revs .revs-item__stars {
  margin-bottom: 15px;
}
.revs .revs-item__txt {
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 768px) {
  .revs .revs-item {
    padding: 16px;
    border-radius: 14px;
  }
  .revs .revs-item__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .revs .revs-item__stars {
    margin-bottom: 15px;
  }
  .revs .revs-item__txt {
    font-size: 18px;
    line-height: 130%;
  }
}

.forma .title,
.forma p {
  text-align: left;
  color: #fff;
}
.forma p {
  margin-bottom: 40px;
}
.forma form {
  background-color: #161735;
  padding: 40px clamp(14px, 3.333vw, 40px);
  border-radius: 20px;
}
.forma button {
  border: none;
  background-color: #F1BC43;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 30px;
}
.form-group input,
.form-group textarea {
  background-color: #fff;
  width: 100%;
  font-size: 16px;
  padding: 20px;
  border-radius: 20px;
  border: none;
  color: #0C0D14;
}
.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #0C0D14;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #0C0D14;
}
.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #0C0D14;
}
.form-group input::-ms-input-placeholder, .form-group textarea::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  color: #0C0D14;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #0C0D14;
}
.form-group textarea {
  height: 200px;
  resize: none;
  font-family: "Montserrat", sans-serif;
}

.agreem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.agreem p {
  margin-bottom: 0;
  line-height: 140%;
  color: #fff;
}
.agreem a {
  color: #fff;
  text-decoration: underline;
}
.agreem a:hover {
  text-decoration: underline;
}

.checkbox {
  position: relative;
  width: 20px;
  height: 20px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
}

.checkbox label {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #6842FF;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
  cursor: pointer;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
}

.checkbox input:checked + label {
  background-color: #6842FF;
  border-color: #6842FF;
}

.checkbox input:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.text-page {
  padding: clamp(45px, 7.333vw, 75px) 0;
}
.text-page h1 {
  margin-bottom: 40px;
}
.text-page h3 {
  font-size: clamp(22px, 3.333vw, 28px);
  font-weight: 700;
  line-height: 125%;
  margin-top: 50px;
  margin-bottom: 30px;
}
.text-page p {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 20px;
}
.text-page ul {
  list-style-type: disc;
  padding-left: 30px;
  max-width: 700px;
}
.text-page ol {
  list-style-type: decimal;
  padding-left: 30px;
  max-width: 700px;
}

.footer {
  background-color: #161735;
  padding: 50px 0;
}
.footer .f-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.footer .f-logo img {
  width: 150px;
}
.footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.footer nav ul li a {
  color: #fff;
  font-size: 20px;
}
.footer nav ul li a:hover {
  text-decoration: underline;
}
.footer p {
  text-align: center;
  margin-top: 50px;
  color: #fff;
  font-size: 14px;
  line-height: 130%;
}
.footer p a {
  color: #fff;
  font-size: 14px;
}
.footer p a:hover {
  text-decoration: underline;
}
.footer .fttil {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer .fttil {
    font-size: 20px;
  }
  .footer nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.subscr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.subscr form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 600px;
}
.subscr form input {
  background-color: #fff;
  border: none;
  border-radius: 5px 0 0 5px;
  height: 50px;
  width: 100%;
  padding-left: 20px;
}
.subscr form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  height: 50px;
  border: none;
  background-color: #F1BC43;
  color: #000;
  border-radius: 0 5px 5px 0;
  font-weight: 600;
}

.cooksection {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #161735;
  color: #fff;
  border: 2px solid #fff;
  padding: 40px;
}
.cooksection p {
  margin-bottom: 30px;
}
.cooksection div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.cooksection button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F1BC43;
  padding: 10px 20px;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.cooksection button:hover {
  background-color: #e6ad2b;
}