@charset "UTF-8";
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, address,
em, img,
strike, strong,
ol, ul, li,
fieldset, form, label, legend,
article, aside,
figure, figcaption, footer, header,
menu, nav, output, section,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Panton-Regular", sans-serif;
  color: #000;
}

@font-face {
  font-family: Panton-BlackCaps;
  src: url(../font/Panton-BlackCaps.otf);
}

@font-face {
  font-family: Panton-Regular;
  src: url(../font/Panton-Regular.otf);
}

@font-face {
  font-family: Panton-Black;
  src: url(../font/Panton-Black.otf);
}

@font-face {
  font-family: Panton-Light;
  src: url(../font/Panton-Light.otf);
}

@font-face {
  font-family: Panton-Bold;
  src: url(../font/Panton-Bold.otf);
}

@font-face {
  font-family: Panton-ExtraLight;
  src: url(../font/Panton-ExtraLight.otf);
}

@font-face {
  font-family: Panton-LightCaps;
  src: url(../font/Panton-LightCaps.otf);
}

@font-face {
  font-family: Panton-LightitalicCaps;
  src: url(../font/Panton-LightitalicCaps.otf);
}

@font-face {
  font-family: Panton-LightitalicCaps;
  src: url(../font/Panton-ExtraLight.otf);
}

@font-face {
  font-family: Panton-BoldItalic;
  src: url(../font/Panton-BoldItalic.otf);
}

@font-face {
  font-family: Panton-BlackitalicCaps;
  src: url(../font/Panton-BlackitalicCaps.otf);
}

@font-face {
  font-family: Roboto-Black;
  src: url(../font/Roboto-Black.ttf);
}

@font-face {
  font-family: Roboto-Light;
  src: url(../font/Roboto-Light.ttf);
}

@font-face {
  font-family: Roboto-MediumItalic;
  src: url(../font/Roboto-MediumItalic.ttf);
}

@font-face {
  font-family: KaushanScript-Regular;
  src: url(../font/KaushanScript-Regular.ttf);
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.wrapper1500 {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 1500px) {
  .wrapper1500 {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1200px) {
  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header {
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding: 30px 60px;
  z-index: 99999999999;
  position: fixed;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 150px;
}

.header__logo {
  width: 15%;
}

.header__logo img {
  max-width: 220px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__nav {
  width: 80%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-right: 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__nav ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  /*li:hover a {
        transition: all .5s;
        color: $gold;
      }
      li:hover a:after {
        width: 100%;
        background: $gold;
      }*/
}

.header__nav ul li a {
  text-decoration: none;
  font-size: 2.9rem;
  color: #000;
  padding: 15px 0;
  position: relative;
}

.header__nav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  height: 3px;
  width: 0;
  background: transparent;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.header__nav ul li a.underline-active {
  color: #C59100;
}

.header__nav ul li a.underline-active:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  height: 3px;
  width: 100%;
  background: #C59100;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.header__bracket {
  width: 5%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
}

.header__bracket a {
  display: block;
  position: relative;
}

.header__bracket-counter {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #C59100;
  border-radius: 100%;
  top: 30px;
  left: 35px;
}

.header__bracket-counter p {
  color: #fff;
  font-family: "Panton-Bold", sans-serif;
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 1.6rem;
}

.current-active2 {
  color: #C59100 !important;
}

.current-active2:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  height: 3px;
  width: 100% !important;
  background: #C59100 !important;
  -webkit-transition: width .5s ease, background-color .5s ease;
  transition: width .5s ease, background-color .5s ease;
}

.header.header-fixed {
  height: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header.header-fixed .header__logo img {
  max-width: 180px;
}

.hamburger-container {
  display: none;
}

.menu-button {
  border: 4px solid #000;
  width: 60px;
  height: 58px;
  border-radius: 50px;
}

.menu-button-bar1, .menu-button-bar2, .menu-button-bar3 {
  position: relative;
  top: 11px;
  left: 5px;
  border-radius: 0px;
  display: block;
  background-color: #000;
  width: 30px;
  height: 3px;
  margin: 5px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.animate1 {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translate(0px, 8px) rotate(45deg);
          transform: translate(0px, 8px) rotate(45deg);
}

.animate2 {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  opacity: 0;
}

.animate3 {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translate(0px, -8px) rotate(-45deg);
          transform: translate(0px, -8px) rotate(-45deg);
}

@media screen and (max-width: 1700px) {
  .header {
    padding: 30px 30px;
  }
  .header__nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1550px) {
  .header__logo img {
    max-width: 170px;
  }
  .header__nav ul li a {
    font-size: 2.4rem;
  }
  .header__bracket a img {
    max-width: 55px;
  }
  .header__bracket a img {
    max-width: 40px;
  }
  .header__bracket-counter {
    width: 20px;
    height: 20px;
    top: 25px;
    left: 30px;
  }
  .header {
    height: 130px;
  }
  .header__bracket-counter p {
    font-size: 1.4rem;
    top: 4px;
    left: 6px;
  }
  .header.header-fixed {
    height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.header-fixed .header__logo img {
    max-width: 130px;
  }
  .header__nav {
    padding-left: 0px;
  }
}

@media screen and (max-width: 1300px) {
  .header__logo img {
    max-width: 150px;
  }
  .header__nav ul li a {
    font-size: 2rem;
  }
  .header__bracket a img {
    max-width: 45px;
  }
  .header__bracket-counter {
    top: 20px;
    left: 20px;
    height: 20px;
    width: 20px;
  }
  .header__bracket-counter p {
    top: 4px;
    left: 6px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1050px) {
  .header__nav {
    display: none;
  }
  .hamburger-container {
    width: 20%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    display: block;
  }
  .header__logo {
    -webkit-box-ordinal-group: 3;
            order: 2;
    width: 60%;
    text-align: center;
  }
  .header__bracket {
    -webkit-box-ordinal-group: 4;
            order: 3;
    width: 20%;
  }
  .header.header-active {
    flex-wrap: wrap;
  }
  .header.header-active .header__nav {
    display: block;
    -webkit-box-ordinal-group: 5;
            order: 4;
    margin: 0 auto;
    flex-wrap: wrap;
    position: absolute;
    width: 100%;
    top: 100px;
    left: 0;
    z-index: 10;
    background-color: #fff;
    padding-top: 10px;
  }
  .header.header-active.header-fixed .header__nav {
    top: 70px;
  }
  .header.header-active .header__nav ul {
    display: block;
    padding-bottom: 30px;
    width: 100%;
  }
  .header.header-active .header__nav li {
    text-align: center;
    padding: 10px 0;
  }
  .header {
    height: 120px;
  }
  .header__nav ul li a.underline-active:after {
    width: 0px;
  }
}

@media screen and (max-width: 500px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__logo img {
    max-width: 130px;
  }
  .header__bracket a img {
    max-width: 40px;
  }
  .header.header-active .header__nav {
    padding-top: 10px;
    position: absolute;
    top: 114px;
  }
}

.footer {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid black;
}

.footer-nav {
  width: 85%;
}

.footer-nav ul {
  display: -webkit-box;
  display: flex;
}

.footer-nav ul li {
  padding-right: 50px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 2.4rem;
}

.footer-nav ul li a:hover {
  color: #C59100;
}

.footer-social {
  width: 15%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.footer-social li {
  padding-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.footer-social li:last-of-type {
  padding-right: 0px;
}

.footer-wds {
  width: 100%;
  text-align: center;
  padding-top: 50px;
  font-size: 1.9rem;
}

.footer-logo:hover {
  fill: #C59100;
}

@media screen and (max-width: 1500px) {
  .footer-nav ul li a {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1200px) {
  .footer-nav ul li a {
    font-size: 1.8rem;
  }
  .footer {
    padding: 40px 20px;
  }
  .footer-wds {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1100px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .footer-nav ul li {
    padding: 0;
  }
  .footer-social {
    width: 100%;
    -webkit-box-pack: center;
            justify-content: center;
    padding-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .footer-nav ul li {
    width: 33.33%;
  }
  .footer-nav ul li:first-of-type {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    -webkit-box-pack: center;
            justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .footer-nav ul li {
    width: 100%;
    padding-bottom: 10px;
  }
}

.contact-form {
  width: 100%;
  display: -webkit-box;
  display: flex;
  position: relative;
  padding-top: 50px;
  margin-top: 150px;
}

.contact-form__info {
  width: 25%;
  background-color: #F4F4F4;
  margin-right: 20px;
  min-height: 474px;
}

.contact-form__info h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  padding: 30px 30px 30px 40px;
}

.contact-form__info address {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.1rem;
  padding: 5px 0;
  padding-left: 80px;
  background-image: url(../images/contact-sign1.png);
  background-repeat: no-repeat;
  background-position: 35px 50%;
}

.contact-form__info p {
  font-size: 1.7rem;
  padding-left: 80px;
  background-image: url(../images/contact-sign2.png);
  background-repeat: no-repeat;
  background-position: 33px 100%;
  margin-bottom: 15px;
  line-height: 20px;
}

.contact-form__info a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;
  padding-left: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.contact-form__info a:nth-of-type(2), .contact-form__info a:nth-of-type(4) {
  margin-bottom: 40px;
}

.contact-form__info a:nth-of-type(1), .contact-form__info a:nth-of-type(3) {
  background-image: url(../images/contact-sign3.png);
  background-repeat: no-repeat;
  background-position: 37px 50%;
}

.contact-form__info a:nth-of-type(2), .contact-form__info a:nth-of-type(4) {
  background-image: url(../images/contact-sign4.png);
  background-repeat: no-repeat;
  background-position: 33px 50%;
}

.contact-form__info-base {
  width: 370px;
  height: 30px;
  background-color: #C59100;
  position: absolute;
  bottom: 0;
}

.contact-form__form {
  width: 75%;
  position: relative;
  min-height: 474px;
  z-index: 2;
  background: #fff;
}

.contact-form__form-header {
  border: 2px solid #1D1D1B;
  width: 50%;
  position: relative;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  text-align: center;
  padding: 20px;
  min-height: 74px;
}

.contact-form__form-header:after {
  content: "";
  height: 6px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 69px;
}

.form1 {
  border: 2px solid #1D1D1B;
  padding: 20px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
          justify-content: flex-end;
  min-height: 400px;
}

.form1__name, .form1__company, .form1__tel {
  margin-right: 1%;
}

.form1__name, .form1__surname, .form1__company, .form1__email, .form1__tel {
  width: 49.5%;
  margin-bottom: 10px;
}

.form1__code {
  width: 29.5%;
  margin-bottom: 10px;
  margin-right: 1%;
}

.form1__image {
  width: 19%;
  margin-bottom: 10px;
  background-color: #808080;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.7rem;
}

.form1__area {
  width: 100%;
  margin-bottom: 10px;
}

.form1 input, .form1 textarea {
  padding: 10px;
  font-size: 1.4rem;
  color: #706F6F;
  font-family: "Panton-Regular", sans-serif;
  border: none;
  border: 1px solid #1D1D1B;
  outline: none;
}

.form1 input:hover, .form1 input:focus {
  outline: 1px solid #1D1D1B;
}

.form1 textarea:hover, .form1 textarea:focus {
  outline: 1px solid #1D1D1B;
}

.form1 textarea {
  height: 154px;
}

.form1 input::-webkit-input-placeholder, .form1 textarea::-webkit-input-placeholder {
  color: #706F6F;
  font-size: 1.4rem;
  font-family: "Panton-Regular", sans-serif;
  opacity: 1;
}

.form1 input:-ms-input-placeholder, .form1 textarea:-ms-input-placeholder {
  color: #706F6F;
  font-size: 1.4rem;
  font-family: "Panton-Regular", sans-serif;
  opacity: 1;
}

.form1 input::placeholder, .form1 textarea::placeholder {
  color: #706F6F;
  font-size: 1.4rem;
  font-family: "Panton-Regular", sans-serif;
  opacity: 1;
}

.form1 input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: black;
  color: white;
  padding: 10px 30px 10px 20px;
  background-image: url(../images/contact-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px bottom 50%;
  font-size: 1.4rem;
  text-align: left;
  cursor: pointer;
}

@media screen and (max-width: 1550px) {
  .contact-form {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .contact-form__info-base {
    width: 354px;
  }
  .contact-form__info {
    width: 30%;
  }
  .contact-form__form {
    width: 70%;
  }
  .contact-form__info h2 {
    font-size: 2.2rem;
  }
  .contact-form__info address {
    font-size: 1.8rem;
  }
  .contact-form__info p, .contact-form__info a {
    font-size: 1.6rem;
  }
  .contact-form__info p {
    font-size: 2rem;
  }
  .contact-form__form-header {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1200px) {
  .contact-form__info-base {
    width: 28.4%;
  }
}

@media screen and (max-width: 1100px) {
  .contact-form {
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .contact-form__info {
    width: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
    margin: 0;
    min-height: auto;
    margin-bottom: 30px;
  }
  .contact-form__info h2 {
    width: 100%;
  }
  .contact-form__info-wrapper1, .contact-form__info-wrapper2 {
    width: 50%;
  }
  .contact-form__form {
    width: 100%;
  }
  .contact-form {
    padding: 0;
  }
  .contact-form__form {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1050px) {
  .contact-form {
    margin-top: 100px;
  }
}

@media screen and (max-width: 800px) {
  .form1__name, .form1__company, .form1__tel {
    margin-right: 1.5%;
  }
  .form1__name, .form1__surname, .form1__company, .form1__email, .form1__tel {
    width: 49.25%;
  }
  .form1__code {
    width: 30%;
    margin-right: 1.5%;
  }
  .form1__image {
    width: 17.75%;
  }
}

@media screen and (max-width: 700px) {
  .contact-form {
    padding: 0;
  }
  .contact-form__info h2 {
    text-align: center;
  }
  .contact-form__info-wrapper1, .contact-form__info-wrapper2 {
    width: 100%;
  }
  .contact-form__info-wrapper1 address, .contact-form__info-wrapper1 p, .contact-form__info-wrapper1 a, .contact-form__info-wrapper2 address, .contact-form__info-wrapper2 p, .contact-form__info-wrapper2 a {
    width: 300px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  .form1__name, .form1__company, .form1__tel {
    margin-right: 0%;
  }
  .form1__name, .form1__surname, .form1__company, .form1__email, .form1__tel {
    width: 100%;
  }
  .form1__code {
    width: 67.5%;
    margin-right: 2.5%;
  }
  .form1__image {
    width: 30%;
  }
  .contact-form__form-header {
    width: 100%;
  }
  .form1 textarea {
    height: 100px;
  }
}

@media screen and (max-width: 400px) {
  .contact-form__info h2 {
    text-align: center;
  }
  .contact-form__info-wrapper1, .contact-form__info-wrapper2 {
    width: 100%;
  }
  .contact-form__info-wrapper1 address, .contact-form__info-wrapper1 p, .contact-form__info-wrapper1 a, .contact-form__info-wrapper2 address, .contact-form__info-wrapper2 p, .contact-form__info-wrapper2 a {
    padding-left: 50px;
  }
  .contact-form__info-wrapper1 h2, .contact-form__info-wrapper2 h2 {
    padding: 30px 30px 30px 40px;
  }
  .contact-form__info-wrapper1 address, .contact-form__info-wrapper2 address {
    background-position: 13px 50%;
  }
  .contact-form__info-wrapper1 p, .contact-form__info-wrapper2 p {
    background-position: 11px 100%;
  }
  .contact-form__info-wrapper1 a:nth-of-type(1), .contact-form__info-wrapper1 a:nth-of-type(3), .contact-form__info-wrapper2 a:nth-of-type(1), .contact-form__info-wrapper2 a:nth-of-type(3) {
    background-position: 15px 50%;
  }
  .contact-form__info-wrapper1 a:nth-of-type(2), .contact-form__info-wrapper1 a:nth-of-type(4), .contact-form__info-wrapper2 a:nth-of-type(2), .contact-form__info-wrapper2 a:nth-of-type(4) {
    background-position: 11px 50%;
  }
}

.contact-localization h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 15rem;
  color: #E6E6E6;
  padding: 30px 0 30px;
  position: relative;
}

.contact-localization figure {
  position: absolute;
  top: 590px;
  right: 0px;
  z-index: 1;
  overflow: hidden;
  width: 600px;
  height: 360px;
}

.contact-localization figure img {
  position: absolute;
  right: -50px;
}

.contact-localization__map {
  height: 500px;
  width: 100%;
  z-index: 2;
  margin-bottom: 50px;
}

@media screen and (max-width: 1500px) {
  .contact-localization h2 {
    font-size: 10rem;
  }
  .contact-localization figure {
    top: 570px;
    width: 400px;
    height: 260px;
  }
  .contact-localization figure img {
    right: -100px;
  }
}

@media screen and (max-width: 1300px) {
  .contact-localization figure img {
    right: -150px;
  }
}

@media screen and (max-width: 1100px) {
  .contact-localization figure {
    top: 780px;
  }
  .contact-localization figure img {
    right: -150px;
  }
}

@media screen and (max-width: 1050px) {
  .contact-localization h2 {
    padding: 30px 20px;
  }
  .contact-localization figure {
    top: 950px;
    display: none;
  }
  .contact-localization figure img {
    right: -150px;
  }
  .contact-localization__map {
    height: 400px;
  }
}

@media screen and (max-width: 600px) {
  .contact-localization h2 {
    font-size: 5rem;
  }
  .contact-localization__map {
    height: 350px;
  }
}

.subgallery-others {
  width: 100%;
}

.subgallery-others__heading {
  font-family: "Panton-Bold", sans-serif;
  font-size: 3rem;
  padding-bottom: 20px;
  position: relative;
}

.subgallery-others__heading:after {
  content: "";
  height: 1px;
  width: 14%;
  background: #1D1D1B;
  position: absolute;
  top: 50px;
  left: 0;
}

.subgallery-slider-bottom-container {
  margin: 40px 0;
}

.subgallery-slider-bottom__slide {
  height: 200px;
  width: 20%;
  background-size: cover;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
  text-decoration: none;
  background-position: center;
}

.subgallery-slider-bottom__slide:hover .subgallery-slider-bottom__slide-overlay {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
}

.subgallery-slider-bottom__slide-overlay {
  background: rgba(197, 145, 0, 0.58);
  width: 100%;
}

.subgallery-slider-bottom__slide-overlay h2 {
  font-family: "Panton-BlackCaps", sans-serif;
  color: white;
  padding: 20px;
}

.subgallery-slider-bottom__slide1 {
  background-image: url(../images/subgallery-bottom1.jpg);
}

.subgallery-slider-bottom__slide2 {
  background-image: url(../images/subgallery-bottom2.jpg);
}

.subgallery-slider-bottom__slide3 {
  background-image: url(../images/subgallery-bottom3.jpg);
}

.subgallery-slider-bottom__slide4 {
  background-image: url(../images/subgallery-bottom4.jpg);
}

.subgallery-slider-bottom__slide5 {
  background-image: url(../images/subgallery-bottom5.jpg);
}

.subgallery-slider-bottom__slide6 {
  background-image: url(../images/subgallery-bottom4.jpg);
}

.subgallery-slider-bottom-container.swiper-container {
  width: 100%;
  height: 200px;
}

.subgallery-slider-bottom-container .swiper-button-next, .subgallery-slider-bottom-container .swiper-button-prev {
  height: 100%;
  top: 0;
  width: 50px;
  margin-top: 0;
  background-color: rgba(197, 145, 0, 0.89);
}

.subgallery-slider-bottom-container .swiper-button-next {
  right: 0;
  background-image: url(../images/subgallery-bottom-arrow-right.png);
  background-size: 25px 40px;
}

.subgallery-slider-bottom-container .swiper-button-prev {
  left: 0;
  background-image: url(../images/subgallery-bottom-arrow-left.png);
  background-size: 25px 40px;
}

@media screen and (max-width: 1599px) {
  .subgallery-others {
    max-width: 1200px;
  }
  .subgallery-slider-bottom-container.swiper-container {
    width: 100%;
    height: 180px;
  }
  .subgallery-others__heading {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 1200px) {
  .subgallery-others {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1000px) {
  .subgallery-others__heading:after {
    width: 30%;
  }
  .subgallery-slider-bottom__slide-overlay h2 {
    text-align: center;
  }
}

@media screen and (max-width: 700px) {
  .subgallery-others__heading {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 500px) {
  .subgallery-others__heading:after {
    width: 40%;
  }
}

.subgallery-slider-main {
  max-width: 1920px;
}

.subgallery-slider-main__slide {
  display: -webkit-box;
  display: flex;
}

.subgallery-slider-main__slide-picture {
  box-sizing: content-box;
  width: 100%;
  margin-left: 50px;
  background-image: url(../images/galler2-main1.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

.subgallery-slider-main__description {
  width: 22%;
  margin-left: 3%;
  margin-top: 50px;
}

.subgallery-slider-main__description h2 {
  font-size: 4.8rem;
  font-family: "Panton-Bold", sans-serif;
  padding-bottom: 35px;
  border-bottom: 1px solid black;
}

.subgallery-slider-main__description p {
  text-align: justify;
  font-family: "Panton-Regular", sans-serif;
  padding: 25px 0;
  font-size: 2rem;
}

.subgallery-whole {
  margin-top: 150px;
  max-width: 1550px;
  display: -webkit-box;
  display: flex;
  position: relative;
}

.subgallery-2 {
  display: -webkit-box;
  display: flex;
  position: relative;
  left: -25px;
  width: inherit;
}

.subgallery-slider-main-wrapper {
  margin: 50px 0;
  width: 70%;
}

.subgallery-slider-main-wrapper.swiper-container {
  width: 100%;
  height: 700px;
}

.subgallery-slider-main-wrapper.swiper-container-vertical > .swiper-pagination-bullets {
  left: 0px;
}

.subgallery-slider-main-wrapper .swiper-pagination-bullet-active {
  height: 20px;
  width: 20px;
  background: #C59100 !important;
  border: 5px solid #C59100 !important;
  opacity: 1;
}

.subgallery-slider-main-wrapper .swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  border: 4px solid #fff;
  opacity: 1;
}

@media screen and (max-width: 1599px) {
  .subgallery-whole {
    max-width: 1250px;
  }
  .subgallery-slider-main-wrapper.swiper-container {
    height: 500px;
  }
  .subgallery-slider-main__description {
    width: 30%;
  }
  .subgallery-slider-main-wrapper {
    width: 70%;
  }
  .subgallery-slider-main__description h2 {
    font-family: "Panton-Bold", sans-serif;
    font-size: 3.5rem;
  }
  .subgallery-slider-main__description p {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 1550px) {
  .subgallery-whole {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1350px) {
  .subgallery-whole {
    max-width: 1200px;
    display: -webkit-box;
    display: flex;
    position: relative;
  }
  .subgallery-2 {
    display: -webkit-box;
    display: flex;
    position: relative;
    left: 0px;
    width: inherit;
  }
  .subgallery-whole {
    max-width: 1200px;
  }
  .subgallery-slider-main__slide-picture {
    margin-left: 0;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .subgallery-whole {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1050px) {
  .subgallery-whole {
    margin-top: 100px;
  }
}

@media screen and (max-width: 1000px) {
  .subgallery-slider-main__description {
    width: 40%;
  }
  .subgallery-slider-main-wrapper {
    width: 60%;
  }
}

@media screen and (max-width: 1000px) {
  .subgallery-slider-main__description h2 {
    padding-bottom: 20px;
  }
  .subgallery-slider-main__description p {
    padding: 15px 0;
  }
}

@media screen and (max-width: 700px) {
  .subgallery-slider-main__description {
    width: 100%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    margin-left: 0;
  }
  .subgallery-slider-main-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
            order: 2;
    margin: 25px 0;
  }
  .subgallery-2 {
    flex-wrap: wrap;
  }
  .subgallery-slider-main__description {
    margin-top: 20px;
  }
  .subgallery-slider-main__description h2 {
    font-size: 2.5rem;
  }
  .subgallery-slider-main__description p {
    font-size: 1.5rem;
  }
  .subgallery-slider-main-wrapper.swiper-container {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .subgallery-slider-main-wrapper.swiper-container {
    height: 350px;
  }
}

.lokal1 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7060.jpg);
}

.lokal2 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7064.jpg);
}

.lokal3 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7071.jpg);
}

.lokal4 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7072.jpg);
}

.lokal5 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7073.jpg);
}

.lokal6 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7076.jpg);
}

.lokal7 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7077.jpg);
}

.lokal8 {
  background-image: url(../images/Musso/Galeria/Lokal/fot_Piotr_Szalanski_7092.jpg);
}

.warsztaty_sushi1 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4292.jpg);
}

.warsztaty_sushi2 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4295.jpg);
}

.warsztaty_sushi3 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4296.jpg);
}

.warsztaty_sushi4 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4300.jpg);
}

.warsztaty_sushi5 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4303.jpg);
}

.warsztaty_sushi6 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4311.jpg);
}

.warsztaty_sushi7 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4319.jpg);
}

.warsztaty_sushi8 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4323.jpg);
}

.warsztaty_sushi9 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4326.jpg);
}

.warsztaty_sushi10 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4341.jpg);
}

.warsztaty_sushi11 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4433-2.jpg);
}

.warsztaty_sushi12 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4440-2.jpg);
}

.warsztaty_sushi13 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/fot_Piotr_Szalanski_4456-2.jpg);
}

.gallery {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  padding: 50px 0;
  margin-top: 150px;
}

.gallery-slider-container {
  width: 80%;
  min-height: 550px;
}

.gallery-description {
  width: 20%;
  margin-left: 3%;
  min-height: 550px;
}

.gallery-description h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 4.8rem;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}

.gallery-description h2:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background-color: #000;
  left: 0;
  bottom: 0;
}

.gallery-description p {
  font-size: 2rem;
  text-align: justify;
  line-height: 30px;
}

.gallery-slider-wrapper {
  display: -webkit-box;
  display: flex;
}

.gallery-slide {
  height: 550px;
  width: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  color: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.gallery-slide:hover .gallery-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.gallery-slide-text {
  width: 30%;
  height: 50%;
  background-color: rgba(77, 77, 77, 0.82);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

.gallery-slide-text h2 {
  color: white;
  font-size: 2.1rem;
  position: absolute;
  width: 400%;
  left: 50%;
  bottom: 0;
  margin-right: -50%;
  -webkit-transform: rotate(-90deg) translate(0%, -50%);
          transform: rotate(-90deg) translate(0%, -50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.gallery-slide10 {
  background: #fff;
}

.gallery-slide1 {
  background-image: url(../images/Musso/Galeria/Lokal/Musso_Sushi.jpg);
}

.gallery-slide2 {
  background-image: url(../images/Musso/Galeria/Warsztaty_Sushi/glowne.png);
}

.gallery-slide3 {
  background-image: url(../images/gallery3.jpg);
}

.gallery-slide4 {
  background-image: url(../images/gallery4.jpg);
}

.gallery-slide5 {
  background-image: url(../images/gallery2.jpg);
}

.gallery-slide6 {
  background-image: url(../images/gallery3.jpg);
}

.gallery-slider-container.swiper-container {
  height: 600px;
}

.gallery-slider-container.swiper-container .swiper-wrapper {
  height: 550px;
}

.gallery-slide.swiper-slide {
  width: 300px;
}

.gallery-slider-container.swiper-container .swiper-scrollbar {
  bottom: 20px;
}

.gallery-slider-container.swiper-container .swiper-scrollbar-drag {
  height: 200%;
  border-radius: 0;
  top: -2px;
  background-color: #C59100;
}

@media screen and (max-width: 1550px) {
  .gallery {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .gallery {
    max-width: 1200px;
  }
  .gallery-description h2 {
    font-size: 3.4rem;
  }
  .gallery-description p {
    font-size: 1.5rem;
    line-height: 23px;
  }
  .gallery-slide-text h2 {
    font-size: 1.8rem;
  }
  .gallery-slider-container.swiper-container {
    height: 500px;
  }
  .gallery-slider-container.swiper-container .swiper-wrapper {
    height: 450px;
  }
}

@media screen and (max-width: 1200px) {
  .gallery {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1050px) {
  .gallery {
    flex-wrap: wrap;
  }
  .gallery-slider-container {
    width: 100%;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .gallery-description {
    width: 100%;
    -webkit-box-ordinal-group: 2;
            order: 1;
    min-height: auto;
    padding-bottom: 30px;
    margin: 0;
  }
  .gallery {
    margin-top: 100px;
  }
}

.waitress {
  margin-top: 150px;
}

.waitress__ad {
  background-image: url(../images/work-waitress.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  height: 500px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  overflow: hidden;
}

.waitress__ad h2 {
  font-family: "Roboto-Black", sans-serif;
  font-size: 5.6rem;
  color: #C59100;
  width: 60%;
  text-align: center;
  padding-bottom: 25px;
}

.waitress__ad h3 {
  font-family: "Roboto-Light", sans-serif;
  font-size: 2.5rem;
  width: 60%;
  text-align: center;
  padding-bottom: 10px;
}

.waitress__info {
  border-top: 1px solid #C59100;
  border-bottom: 1px solid #C59100;
  padding-top: 50px;
  padding-bottom: 50px;
}

.waitress__info h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 4.3rem;
  padding-left: 50px;
  padding-bottom: 20px;
}

.waitress__info ul li {
  font-family: "Roboto-Light", sans-serif;
  font-size: 2.3rem;
  padding-left: 50px;
  background-image: url(../images/waitress-list.png);
  background-repeat: no-repeat;
  background-position: center left;
  margin-bottom: 15px;
}

.waitress__info ul li:last-child {
  margin-bottom: 50px;
}

.waitress__info-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.waitress__info-social p {
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.4rem;
  padding-right: 20px;
}

.waitress__info-social a {
  width: 30px;
  height: 30px;
}

.waitress__form-wrapper {
  width: 75%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.waitress__form-wrapper h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 3.5rem;
  padding-bottom: 20px;
}

.waitress__form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.waitress__form-container-inputs {
  width: 48.5%;
  margin-right: 3%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.waitress__form-container-inputs input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: none;
  border: 1px solid #808080;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 10px;
  outline: none;
  font-size: 1.6rem;
  height: 44px;
}

.waitress__form-container-inputs input:hover, .waitress__form-container-inputs input:focus {
  box-shadow: 0 0 0 1px #808080;
}

.waitress__form-container-inputs input::-webkit-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.waitress__form-container-inputs input:-ms-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.waitress__form-container-inputs input::placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.waitress__form-container-add {
  width: 48.5%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.waitress__form-container-add input, .waitress__form-container-add div {
  width: 100%;
}

.waitress__form-container-checkbox {
  padding-bottom: 10px;
  padding-left: 50px;
}

.waitress__form-container-send {
  width: 100%;
  padding-top: 20px;
}

.waitress__form-container-send input[type="checkbox"] {
  display: none;
}

.waitress__form-container-send input[type="checkbox"] + label {
  color: #4C4C4C;
  font-size: 1.8rem;
}

.waitress__form-container-send input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/waitress-checkbox.svg) center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-left: -50px;
}

.waitress__form-container-send input[type="checkbox"]:checked + label span {
  background: url(../images/waitress-checkbox-arrow.svg) center no-repeat;
}

.waitress__form-container-send input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #C59100;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 2rem;
  font-family: "Roboto-MediumItalic", sans-serif;
  padding-right: 70px;
  padding-left: 60px;
  background-image: url(../images/work-button-arrow.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0px;
  background-size: 40px 20px;
  outline: none;
  margin-left: 50px;
  margin-top: 20px;
}

.waitress__button {
  border-top: 1px solid #C59100;
  padding-bottom: 50px;
}

.waitress__button button {
  float: right;
  overflow: hidden;
  font-size: 3rem;
  color: #fff;
  font-family: "Roboto-Black", sans-serif;
  border: none;
  outline: none;
  background-color: #C59100;
  background-image: url(../images/work-button-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 50px 30px;
  background-position: right 10px bottom 50%;
  padding: 15px 80px;
  -webkit-animation-name: work-button;
          animation-name: work-button;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.chef__ad {
  background-image: url(../images/work-chef.jpg);
}

.chef__form-wrapper {
  width: 75%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.chef__form-wrapper h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 3.5rem;
  padding-bottom: 20px;
}

.chef__form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.chef__form-container-inputs {
  width: 48.5%;
  margin-right: 3%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.chef__form-container-inputs input {
  width: 100%;
  border: none;
  border: 1px solid #808080;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 10px;
  outline: none;
  height: 44px;
}

.chef__form-container-inputs input:hover, .chef__form-container-inputs input:focus {
  box-shadow: 0 0 0 1px #808080;
}

.chef__form-container-inputs input::-webkit-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.chef__form-container-inputs input:-ms-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.chef__form-container-inputs input::placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.chef__form-container-add {
  width: 48.5%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.chef__form-container-add input, .chef__form-container-add div {
  width: 100%;
}

.chef__form-container-checkbox {
  padding-bottom: 10px;
  padding-left: 50px;
}

.chef__form-container-send {
  width: 100%;
  padding-top: 20px;
}

.chef__form-container-send input[type="checkbox"] {
  display: none;
}

.chef__form-container-send input[type="checkbox"] + label {
  color: #4C4C4C;
  font-size: 1.8rem;
}

.chef__form-container-send input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/waitress-checkbox.svg) center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-left: -50px;
}

.chef__form-container-send input[type="checkbox"]:checked + label span {
  background: url(../images/waitress-checkbox-arrow.svg) center no-repeat;
}

.chef__form-container-send input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #C59100;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 2rem;
  font-family: "Roboto-MediumItalic", sans-serif;
  padding-right: 70px;
  padding-left: 60px;
  background-image: url(../images/work-button-arrow.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0px;
  background-size: 40px 20px;
  outline: none;
  margin-left: 50px;
  margin-top: 20px;
}

.master__form-wrapper {
  width: 75%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.master__form-wrapper h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 3.5rem;
  padding-bottom: 20px;
}

.master__form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.master__form-container-inputs {
  width: 48.5%;
  margin-right: 3%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.master__form-container-inputs input {
  width: 100%;
  border: none;
  border: 1px solid #808080;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 10px;
  outline: none;
  height: 44px;
}

.master__form-container-inputs input:hover, .master__form-container-inputs input:focus {
  box-shadow: 0 0 0 1px #808080;
}

.master__form-container-inputs input::-webkit-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.master__form-container-inputs input:-ms-input-placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.master__form-container-inputs input::placeholder {
  color: #4C4C4C;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.6rem;
  opacity: 1;
}

.master__form-container-add {
  width: 48.5%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.master__form-container-add input, .master__form-container-add div {
  width: 100%;
}

.master__form-container-checkbox {
  padding-bottom: 10px;
  padding-left: 50px;
}

.master__form-container-send {
  width: 100%;
  padding-top: 20px;
}

.master__form-container-send input[type="checkbox"] {
  display: none;
}

.master__form-container-send input[type="checkbox"] + label {
  color: #4C4C4C;
  font-size: 1.8rem;
}

.master__form-container-send input[type="checkbox"] + label span {
  display: inline-block;
  width: 25px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/waitress-checkbox.svg) center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-left: -50px;
}

.master__form-container-send input[type="checkbox"]:checked + label span {
  background: url(../images/waitress-checkbox-arrow.svg) center no-repeat;
}

.master__form-container-send input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #C59100;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  font-size: 2rem;
  font-family: "Roboto-MediumItalic", sans-serif;
  padding-right: 70px;
  padding-left: 60px;
  background-image: url(../images/work-button-arrow.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0px;
  background-size: 40px 20px;
  outline: none;
  margin-left: 50px;
  margin-top: 20px;
}

.inputfile {
  width: 0.1px !important;
  height: 0.1px !important;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  font-family: "Panton-Light", sans-serif;
  height: 44px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #808080;
  display: inline-block;
  border: 1px solid #808080;
  border-radius: 3px;
  padding-left: 100px;
  padding-top: 15px;
  background-image: url(../images/form-plus.svg);
  background-repeat: no-repeat;
  background-position: left 40px center;
  background-size: 30px;
  margin-bottom: 10px;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background-color: none;
  box-shadow: 0 0 0 1px #808080;
}

.inputfile + label {
  cursor: pointer;
  /* "hand" cursor */
}

.input-after {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 10px;
  width: 100%;
  padding: 5px 50px;
}

.input-after p {
  font-size: 1.6rem;
  width: 100%;
}

.input-after div {
  font-size: 2rem;
  width: 20px;
  color: red;
  cursor: pointer;
}

@media screen and (max-width: 1550px) {
  .waitress {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .waitress__ad {
    height: 350px;
  }
  .waitress__ad h2 {
    font-size: 4rem;
  }
  .waitress__ad h3 {
    font-size: 1.8rem;
  }
  .waitress__info h2 {
    font-size: 3rem;
  }
  .waitress__info ul li {
    font-size: 1.6rem;
  }
  .waitress__form-wrapper h2, .chef__form-wrapper h2 {
    font-size: 2.4rem;
  }
  .waitress__form-container-inputs input, .chef__form-container-inputs input {
    font-size: 1.1rem;
  }
  .waitress__form-container-send input[type="checkbox"] + label, .chef__form-container-send input[type="checkbox"] + label {
    font-size: 1.6rem;
  }
  .waitress__form-container-send input[type="submit"], .chef__form-container-send input[type="submit"] {
    font-size: 2rem;
  }
  .waitress__button button, .chef__button button {
    font-size: 2.2rem;
    background-size: 50px 20px;
    padding: 10px 50px;
  }
}

@media screen and (max-width: 1050px) {
  .waitress {
    margin-top: 100px;
  }
}

@media screen and (max-width: 700px) {
  .waitress__form-wrapper, .chef__form-wrapper {
    width: 100%;
  }
  .waitress__form-container-inputs, .chef__form-container-inputs {
    width: 100%;
    margin: 0;
  }
  .waitress__form-container-add, .chef__form-container-add {
    width: 100%;
  }
  .waitress__form-container-send input[type="submit"], .chef__form-container-send input[type="submit"] {
    margin: 0 auto;
    display: block;
    margin-top: 15px;
  }
  .inputfile + label {
    background-position: left 20px center;
    padding-left: 70px;
  }
}

@media screen and (max-width: 500px) {
  .waitress__info ul li, .waitress__info h2 {
    padding-left: 30px;
  }
}

@media screen and (max-width: 400px) {
  .waitress__ad h2 {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}

.order-form {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.order-form-radio-wrapper {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 50px;
}

.order-form-radio1, .order-form-radio2, .order-form-radio3 {
  width: 350px;
}

.order-form-radio1 select, .order-form-radio2 select, .order-form-radio3 select {
  display: none;
  margin-top: 20px;
  outline: none;
  font-size: 1.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 5px 10px;
  padding-right: 40px;
  border: 1px solid #000;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
  font-family: "Roboto-Black", sans-serif;
  font-size: 3.5rem;
  padding-left: 80px;
  padding-top: 4px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-position: 0px 50%;
  background-size: contain;
  margin-bottom: 15px;
}

.order-form-radio1 h2 span, .order-form-radio2 h2 span, .order-form-radio3 h2 span {
  font-family: "Roboto-Light", sans-serif;
  font-size: 3.5rem;
  color: #C59100;
}

.order-form-radio1 ul li, .order-form-radio2 ul li, .order-form-radio3 ul li {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.order-form-radio1 ul li input[type=radio], .order-form-radio2 ul li input[type=radio], .order-form-radio3 ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}

.order-form-radio1 ul li label, .order-form-radio2 ul li label, .order-form-radio3 ul li label {
  display: block;
  position: relative;
  font-size: 2em;
  padding: 8px 0px 8px 50px;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

.order-form-radio1 ul li .check, .order-form-radio2 ul li .check, .order-form-radio3 ul li .check {
  display: block;
  position: absolute;
  border: 1px solid #C59100;
  border-radius: 100%;
  height: 16px;
  width: 16px;
  top: 10px;
  left: 10px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}

.order-form-radio1 ul li .check::before, .order-form-radio2 ul li .check::before, .order-form-radio3 ul li .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 2px;
  left: 2px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.order-form-radio1 ul li input[type=radio]:checked ~ .check, .order-form-radio2 ul li input[type=radio]:checked ~ .check, .order-form-radio3 ul li input[type=radio]:checked ~ .check {
  border: 1px solid #C59100;
}

.order-form-radio1 ul li input[type=radio]:checked ~ .check::before, .order-form-radio2 ul li input[type=radio]:checked ~ .check::before, .order-form-radio3 ul li input[type=radio]:checked ~ .check::before {
  background: #C59100;
}

.order-form-radio1 ul li input[type=radio]:checked ~ label, .order-form-radio2 ul li input[type=radio]:checked ~ label, .order-form-radio3 ul li input[type=radio]:checked ~ label {
  color: #C59100;
}

.order-form-radio1 ul li input#order-datapick, .order-form-radio2 ul li input#order-datapick, .order-form-radio3 ul li input#order-datapick {
  visibility: hidden;
  border: none;
  font-size: 1.8rem;
  font-family: "Roboto-Light", sans-serif;
  display: block;
  margin: 20px 0 20px 0px;
  outline: none;
  border: 1px solid #C59100;
  padding: 5px 10px;
  width: auto;
  text-align: center;
}

.order-form-radio1 h2 {
  padding-left: 60px;
  background-image: url(../images/order-icon1.svg);
}

.order-form-radio2 {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0 50px;
  width: 450px;
}

.order-form-radio2 h2 {
  background-image: url(../images/order-icon2.svg);
}

.order-form-radio3 h2 {
  background-image: url(../images/order-icon3.svg);
}

.order-form-main {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 15px;
}

.order-form-main input {
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.7rem;
  border: none;
  border: 1px solid #000;
  padding: 13px 20px;
  margin-bottom: 20px;
  outline: none;
}

.order-form-main input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main input::placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main1 {
  width: 32%;
  margin-right: 2%;
}

.order-form-main1 input {
  width: 100%;
}

.order-form-main2 {
  width: 32%;
  margin-right: 2%;
}

.order-form-main2 .order-number-wrapper {
  width: 100%;
  display: -webkit-box;
  display: flex;
}

.order-form-main2 .order-number-wrapper input {
  width: 32%;
  margin-right: 2%;
}

.order-form-main2 .order-number-wrapper input:last-of-type {
  margin-right: 0;
}

.order-form-main2 input {
  width: 100%;
}

.order-form-main2 .order__form-container-checkbox {
  width: 100%;
  padding-left: 50px;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"] {
  display: none;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label {
  color: #000;
  font-size: 1.8rem;
  margin-left: -50px;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label span {
  display: inline-block;
  width: 26px;
  height: 24px;
  vertical-align: middle;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 20px;
}

.order-form-main2 .order__form-container-checkbox input[type="checkbox"]:checked + label span {
  background: url(../images/order-checkbox-arrow.svg) center no-repeat;
}

.order-form-main3 {
  width: 32%;
}

.order-form-main3 textarea {
  width: 100%;
  border: none;
  border: 1px solid #000;
  font-family: "Roboto-Light", sans-serif;
  font-size: 1.7rem;
  padding: 13px 20px;
  margin-bottom: 20px;
  height: 184px;
  outline: none;
  resize: none;
}

.order-form-main3 textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main3 textarea:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main3 textarea::placeholder {
  color: #000;
  opacity: 1;
}

.order-form-main-button-send {
  width: 100%;
}

.order-form-base {
  display: -webkit-box;
  display: flex;
  width: 100%;
  padding-top: 25px;
}

.order-form-base__text1 {
  width: 32%;
  margin-right: 2%;
}

.order-form-base__text2 {
  width: 205px;
}

.order-form-base__text2 p:first-child {
  padding-bottom: 10px;
}

.order-form-base p {
  text-align: left;
  font-size: 1.8rem;
}

.order-form-main input:hover, .order-form-main input:focus, .order-form-main3 textarea:hover, .order-form-main3 textarea:focus {
  outline: 1px solid #000;
}

@media screen and (max-width: 1500px) {
  .order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
    font-size: 2.5rem;
  }
  .order-form-radio1 h2 span, .order-form-radio2 h2 span, .order-form-radio3 h2 span {
    font-size: 2.5rem;
  }
  .order-form-radio1 ul li label, .order-form-radio2 ul li label, .order-form-radio3 ul li label {
    font-size: 1.8rem;
  }
  #order-datapick {
    font-size: 1.6rem !important;
  }
  .order-form-main input, .order-form-main3 textarea {
    font-size: 1.3rem;
  }
  .order-form-main3 textarea {
    height: 170px;
  }
  .order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label {
    font-size: 1.5rem;
  }
  .order-form-base p {
    font-size: 1.5rem;
  }
  .order-form-base input {
    font-size: 1.8rem;
  }
  .order-form-radio1, .order-form-radio3 {
    width: 265px;
  }
  .order-form-radio2 {
    width: 466px;
    padding: 0px 100px;
  }
}

@media screen and (max-width: 1200px) {
  .order-form-radio-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    width: 285px;
  }
  .order-form-radio2 {
    padding: 0px;
    border: 0;
  }
  .order-form-main {
    padding-top: 50px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 850px) {
  .order-form-main1 {
    width: 100%;
    margin: 0;
  }
  .order-form-main2 {
    width: 100%;
    margin: 0;
  }
  .order-form-main3 {
    width: 100%;
  }
  .order-form-base {
    flex-wrap: wrap;
  }
  .order-form-base__text1, .order-form-base__text2 {
    width: 100%;
  }
  .order-form-base__text2 p:first-child {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 900px) {
  .order-form-radio-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    margin-bottom: 30px;
  }
  .order-form-radio3 ul li input#order-datapick {
    margin: 0 auto;
    margin-top: 20px;
  }
  .order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
    padding-left: 60px;
  }
  .order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label span {
    margin-top: 5px;
  }
}

@media screen and (max-width: 500px) {
  .order-form-radio-wrapper {
    padding-top: 10px;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    width: 245px;
  }
}

@media screen and (max-width: 350px) {
  .order-form-radio-wrapper {
    padding-top: 10px;
  }
  .order-form-base input {
    font-size: 1.3rem;
  }
  .order-form-radio1 h2, .order-form-radio2 h2, .order-form-radio3 h2 {
    font-size: 2.2rem;
  }
  .order-form-radio1 h2 span, .order-form-radio2 h2 span, .order-form-radio3 h2 span {
    font-size: 2.2rem;
  }
  .order-form-radio1 ul li label, .order-form-radio2 ul li label, .order-form-radio3 ul li label {
    font-size: 1.5rem;
  }
  #order-datapick {
    font-size: 1.6rem !important;
  }
  .order-form-main input, .order-form-main2 textarea {
    font-size: 1.2rem;
  }
  .order-form-main2 textarea {
    height: 106px;
  }
  .order-form-main2 .order__form-container-checkbox input[type="checkbox"] + label {
    font-size: 1.4rem;
  }
  .order-form-base p {
    font-size: 1.4rem;
  }
  .order-form-base input {
    font-size: 1.5rem;
  }
  .order-form-radio1, .order-form-radio3 {
    width: 265px;
  }
  .order-form-radio2 {
    width: 466px;
  }
  .order-form-radio1, .order-form-radio2, .order-form-radio3 {
    width: 222px;
  }
}

.order-header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 50px;
  padding-bottom: 50px;
  margin-top: 150px;
}

.order-header h2 {
  font-family: "Panton-Regular", sans-serif;
  font-size: 4.5rem;
  color: #C59100;
}

.order-header span {
  padding-left: 30px;
  font-size: 5.3rem;
  font-family: "Panton-Bold", sans-serif;
  color: #000;
}

.order-pick-list {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 20px;
}

.order-pick-list ul {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #000;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.order-pick-list ul li {
  position: relative;
  top: 1px;
  width: 20%;
  padding: 25px 0px;
  border: 1px solid #000;
  text-align: center;
  margin: 0 8px;
}

.order-pick-list ul li a {
  text-decoration: none;
  color: #000;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.5rem;
}

.order-pick-list ul li:hover {
  background-color: #C59100;
}

.order-pick-list ul li:hover a {
  color: #fff;
}

.order-pick-list-active {
  background: #C59100;
  border-bottom: none !important;
}

.order-pick-list-active a {
  color: #fff !important;
}

.order-pick-list-active a {
  color: #fff;
}

.order-content {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 25px 48px;
  display: -webkit-box;
  display: flex;
}

.order-content-row {
  margin-left: -1%;
  margin-right: -1%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 102%;
}

.order-cube-huge {
  width: 38%;
  border: 1px solid #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 20px;
}

.order-cube-huge__background {
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.order-cube-huge__name {
  padding-left: 15px;
  padding-right: 15px;
}

.order-cube-huge__name h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.7rem;
  padding: 10px 0;
}

.order-cube-huge__name p {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding-bottom: 15px;
  position: relative;
}

.order-cube-huge__bracket {
  display: -webkit-box;
  display: flex;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #000;
  height: 80px;
}

.order-cube-huge__bracket h3 {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding: 15px 0;
}

.order-cube-huge__bracket-price {
  padding-right: 40px;
  text-align: center;
}

.order-cube-huge__bracket-price p {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.2rem;
}

.order-cube-huge__bracket-quantity {
  padding-right: 40px;
  text-align: center;
}

.order-cube-huge__bracket-quantity-input {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.order-cube-huge__bracket-quantity-input input {
  width: 35px;
  height: 20px;
  border-radius: 50px;
  border: none;
  border: 1px solid black;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 0px;
  outline: none;
}

.order-cube-huge__bracket-quantity-input input[type=button] {
  -ms-grid-row-align: center;
      align-self: center;
  border: none;
  background: none;
  outline: none;
  width: 20px;
  font-size: 1.9rem;
  font-family: "Panton-Light", sans-serif;
  margin-bottom: 4px;
}

.order-cube-huge__bracket-add {
  text-align: center;
}

.order-cube-huge__bracket-add h3 {
  padding-bottom: 5px;
}

.order-cube-huge__bracket-add img {
  max-width: 100%;
  height: auto;
}

.order-cube-huge__background1 {
  background-image: url(../images/order-product1.jpg);
}

.order-cube-huge__background2 {
  background-image: url(../images/order-product1.jpg);
}

.order-cube-huge__background3 {
  background-image: url(../images/order-product1.jpg);
}

.order-cube {
  width: 18%;
  border: 1px solid #000;
  margin-left: 1%;
  margin-right: 1%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  min-height: 200px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.order-cube__background {
  height: 200px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 11;
}

.order-cube__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 9;
}

.order-cube__promotion {
  width: 160px;
  height: 64px;
  background: url(../images/order-promotion-background.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -17px;
  top: 20px;
  z-index: 12;
}

.order-cube__promotion p {
  position: absolute;
  top: 25%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2rem;
  font-family: "Panton-Bold", sans-serif;
  color: #fff;
  padding-top: 8%;
}

.order-cube__name {
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.order-cube__name h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.7rem;
  padding: 10px 0;
}

.order-cube__name p {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding-bottom: 15px;
  position: relative;
}

.order-cube__bracket {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #000;
  height: 80px;
}

.order-cube__bracket h3 {
  font-family: "Panton-Regular", sans-serif;
  font-size: 1.2rem;
  padding: 15px 0;
}

.order-cube__bracket-price {
  text-align: center;
}

.order-cube__bracket-price p {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.2rem;
}

.order-cube__bracket-quantity {
  text-align: center;
  padding-left: 20px;
}

.order-cube__bracket-quantity h3 {
  padding-bottom: 12px;
}

.order-cube__bracket-quantity-input {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.order-cube__bracket-quantity-input input {
  width: 35px;
  height: 20px;
  border-radius: 50px;
  border: none;
  border: 1px solid black;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 1px;
}

.order-cube__bracket-quantity-input input[type=button] {
  border: none;
  background: none;
  outline: none;
  width: 20px;
  font-size: 1.9rem;
  font-family: "Panton-Light", sans-serif;
  margin-bottom: 6px;
}

.order-cube__bracket-add {
  text-align: center;
}

.order-cube__bracket-add h3 {
  padding-bottom: 6px;
}

.order-cube__bracket-add img {
  max-width: 100%;
  height: auto;
}

.order-cube__background1 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background2 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background3 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background4 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background5 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background6 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background7 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background8 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background9 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background10 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background11 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube__background12 {
  background-image: url(../images/order-product2.jpg);
}

.order-cube:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999999;
  box-shadow: 0px 0px 20px -1px #4f4f4f;
  border: none;
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
}

.order-cube-huge:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999999;
  box-shadow: 0px 0px 20px -1px #4f4f4f;
  border: 1px solid white;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.order-navigation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.order-navigation-prev {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.8rem;
  padding-right: 10px;
}

.order-navigation-prev img {
  padding-left: 5px;
}

.order-navigation-numbers {
  display: -webkit-box;
  display: flex;
}

.order-navigation-numbers p {
  font-family: "Panton-Regular", sans-serif;
  font-size: 2.3rem;
  width: 25px;
  height: 25px;
  padding-top: 1px;
  padding-left: 5px;
}

.order-navigation-numbers p.active {
  border: 1px solid #C59100;
  border-radius: 100%;
}

.order-navigation-next {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.8rem;
  padding-left: 10px;
}

.order-navigation-next img {
  padding-right: 5px;
}

.order-bracket-logo:hover path {
  fill: #000;
}

.order-nav-fill {
  display: none;
}

.order-navigation-button, .order-navigation-numbers {
  padding-top: 5px;
  padding-bottom: 5px;
}

.order-navigation-button:hover .order-nav {
  display: none;
  cursor: pointer;
}

.order-navigation-button:hover .order-nav-fill {
  display: -webkit-box;
  display: flex;
  cursor: pointer;
}

@media screen and (max-width: 1750px) {
  .order-cube__bracket-quantity {
    padding-left: 0;
  }
}

@media screen and (max-width: 1700px) {
  .order-header h2 {
    font-size: 3.5rem;
  }
  .order-header span {
    font-size: 4.5rem;
  }
  .order-pick-list ul li a {
    font-size: 2rem;
  }
  .order-pick-list ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
  .order-cube__bracket-price p {
    font-size: 1.5rem;
  }
  .order-cube__bracket-add img {
    max-width: 20px;
  }
  .order-cube__background {
    height: 150px;
  }
  .order-cube-huge__background {
    height: 200px;
  }
  .order-cube__bracket h3 {
    padding-left: 4px;
  }
  .order-cube__bracket-add h3 {
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 1550px) {
  .order-header {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .order-cube__bracket-add h3 {
    padding-bottom: 3px;
  }
  .order-cube__bracket-quantity {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1320px) {
  .order-cube-huge__bracket-price p {
    font-size: 1.5rem;
  }
  .order-cube__bracket-quantity {
    padding-left: 0px;
  }
  .order-cube-huge__bracket-price p {
    margin-top: 5px;
  }
}

@media screen and (max-width: 1254px) {
  .order-cube-huge__bracket-add img {
    max-width: 20px;
  }
  .order-cube-huge__bracket-price p {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .order-content .order-row {
    flex-wrap: wrap;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .order-cube-huge {
    width: 64.6666%;
    margin-bottom: 30px;
  }
  .order-cube {
    width: 31.3333%;
    margin-bottom: 30px;
  }
  .order-cube-huge__bracket-add img, .order-cube__bracket-add img {
    max-width: 100%;
  }
  .order-cube-huge__bracket-price p {
    margin-top: 5px;
  }
  .order-cube__bracket-price p {
    margin-top: 3px;
  }
}

@media screen and (max-width: 1050px) {
  .order-cube:hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    z-index: 9999999;
    box-shadow: 0px 0px 0px 0px #4f4f4f;
    border: 1px solid #000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .order-cube-huge:hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    z-index: 9999999;
    box-shadow: 0px 0px 0px 0px #4f4f4f;
    border: 1px solid #000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .order-header {
    margin-top: 100px;
  }
  .order-cube__bracket-add img {
    padding-top: 2px;
  }
}

@media screen and (max-width: 990px) {
  .order-cube__bracket-add img {
    padding-top: 0px;
  }
}

@media screen and (max-width: 865px) {
  .order-cube__bracket-add img {
    max-width: 20px;
  }
}

@media screen and (max-width: 860px) {
  .order-cube__bracket-price p {
    margin-top: -2px;
  }
}

@media screen and (max-width: 750px) {
  .order-header span {
    width: 100%;
    display: block;
    padding-left: 0;
  }
}

@media screen and (max-width: 700px) {
  .order-cube-huge__bracket {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .order-cube-huge__bracket-price, .order-cube-huge__bracket-quantity {
    padding-right: 0px;
  }
  .order-cube__bracket-add img {
    max-width: 100%;
  }
  .order-cube__bracket-price p {
    margin-top: 3px;
  }
  .order-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .order-content .order-row {
    margin-bottom: 0px;
  }
  .order-cube-huge {
    width: 48%;
    margin-bottom: 30px;
  }
  .order-cube {
    width: 48%;
    margin-bottom: 30px;
  }
  .order-cube-huge__background {
    height: 150px;
  }
  .order-pick-list ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    border-bottom: none;
    flex-wrap: wrap;
  }
  .order-pick-list ul li {
    width: auto;
    padding: 10px 10px;
    border: none;
  }
}

@media screen and (max-width: 500px) {
  .order-pick-list ul {
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    flex-wrap: wrap;
  }
  .order-pick-list ul li {
    padding: 10px 0px;
  }
  .order-header {
    padding-bottom: 30px;
  }
  .order-header h2 {
    font-size: 3rem;
    text-align: center;
  }
  .order-header span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 440px) {
  .order-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .order-cube__background {
    height: 200px;
  }
  .order-content .order-row {
    margin-bottom: 0px;
  }
  .order-cube-huge {
    width: 100%;
    margin-bottom: 30px;
  }
  .order-cube {
    width: 100%;
    margin-bottom: 30px;
  }
}

/*.event-banner1 {
  background-image: url(../images/Musso/Wydarzenia/1.Kurs_Sushi/Kurs_Sushi_Podstrona.jpg);
}
.event-banner2 {
  background-image: url(../images/Musso/Wydarzenia/2.Warsztaty_Sushi_dla_Klienta_Korporacyjnego/Kurs_Sushi_Podstrona.jpg);
}
.event-banner3 {
  background-image: url(../images/Musso/Wydarzenia/3.Warsztaty_origami/Warsztaty_Origami_podstrona.jpg);
}
.event-banner4 {
  background-image: url(../images/Musso/Wydarzenia/4.Voucher/Voucher_Podstrona.jpg);
}
.event-banner5 {
  background-image: url(../images/Musso/Wydarzenia/5.Walentynki/Walentynki_Podstrona.jpg);
}
.event-banner6 {
  background-image: url(../images/Musso/Wydarzenia/6.Dzień_kobiet/Dzień_Kobiet_Podstrona.jpg);
}
.event-banner7 {
  background-image: url(../images/Musso/Wydarzenia/7.Targ_Rybny/Targ_Rybny_Podstrona.jpg);
}
.event-banner8 {
  background-image: url(../images/Musso/Wydarzenia/1.Kurs_Sushi/Kurs_Sushi_Podstrona.jpg);
}*/
.event-banner {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  height: 300px;
  background: transparent;
}

.event-banner-text {
  margin-top: 150px;
  margin-left: 15%;
}

.event-banner-text h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 5.5rem;
  color: #fff;
  padding-left: 140px;
  background-image: url(../images/event-banner-hat.svg);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: 0 50%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.event-banner-text h3 {
  font-family: "Panton-ExtraLight", sans-serif;
  font-size: 3.6rem;
  color: #fff;
  padding-left: 140px;
}

.event-banner-text h3 span {
  font-size: 5.5rem;
}

.event-sushi {
  position: absolute;
  right: 0px;
  z-index: -1;
}

.event-offer {
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: flex;
}

.event-offer-course {
  width: 40%;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.3rem;
}

.event-offer-course a {
  text-decoration: none;
}

.event-offer-course div.event-scroll {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-right: 40%;
  border: 1px solid #000;
  background-color: #fff;
  cursor: pointer;
  height: 75px;
}

.event-offer-course div.event-scroll p {
  text-align: center;
  padding: 25px;
  color: black;
}

.event-offer-course div.event-offer-active {
  background-color: #C59100;
}

.event-offer-course div.event-offer-active p {
  color: #fff;
}

.event-offer-course div.event-scroll:hover {
  background-color: #C59100;
}

.event-offer-course div.event-scroll:hover p {
  color: #fff;
}

.event-offer-list {
  width: 45%;
}

.event-offer-list h2.biznes-font {
  font-size: 2.1rem;
  line-height: 2.5rem;
  padding-bottom: 10px;
  font-family: "Roboto-Light", sans-serif;
}

.event-offer-list h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 3.4rem;
  padding-top: 10px;
  padding-left: 50px;
  padding-bottom: 35px;
}

.event-offer-list ul li {
  font-family: "Roboto-Light", sans-serif;
  font-size: 2.1rem;
  line-height: 2.5rem;
  padding-left: 50px;
  margin-top: 16px;
  margin-bottom: 16px;
  background-image: url(../images/event-list-background.png);
  background-repeat: no-repeat;
  background-position: left top 6px;
}

.event-padding h2 {
  padding-left: 0;
}

.event-padding a {
  text-decoration: none;
  color: #000;
}

.event-info {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid #C59100;
  border-bottom: 1px solid #C59100;
}

.event-info p {
  padding: 0 50px;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.5rem;
  line-height: 3rem;
}

.event-info p a {
  text-decoration: none;
  color: #000;
}

.event-form-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.event-form-header h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 3.4rem;
}

.event-form-header img {
  position: relative;
  right: -35px;
}

.form-event {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.form-event select {
  height: 56px;
}

.form-event input, .form-event textarea, .form-event select {
  width: 100%;
  padding: 15px;
  outline: none;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  border: none;
  border: 1px solid #000;
  resize: none;
  margin-bottom: 20px;
  color: #000;
  cursor: pointer;
}

.form-event select {
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-event textarea {
  height: 202px;
}

.form-event input:hover, .form-event input:focus, .form-event select:hover, .form-event select:focus, .form-event textarea:focus, .form-event textarea:hover {
  outline: 1px solid #000;
}

.form-event input[type="submit"]:hover, .form-event input[type="submit"]:focus {
  outline: none;
  background-color: #fff !important;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.75);
  color: #C59100;
}

.form-event input::-webkit-input-placeholder, .form-event textarea::-webkit-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input:-ms-input-placeholder, .form-event textarea:-ms-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input::placeholder, .form-event textarea::placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input::-webkit-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event input:-ms-input-placeholder {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  opacity: 1;
}

.form-event-area1 {
  width: 28%;
  margin-right: 2.5%;
}

.form-event-area2 {
  width: 28%;
  margin-right: 2.5%;
}

.form-event-area3 {
  width: 39%;
}

.form-event-area4 {
  width: 69.5%;
  margin-left: 30.5%;
  display: -webkit-box;
  display: flex;
}

.form-event-area4 p {
  width: 44%;
  font-size: 1.7rem;
}

.form-event-area4 section {
  width: 56%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.form-event-area4 section input, .form-event-area4 section div:first-of-type {
  width: 30%;
}

.form-event-area4 section input:first-of-type, .form-event-area4 section div:first-of-type {
  margin-right: 5%;
}

.form-event-area4 section input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #C59100 !important;
  border-radius: 50px;
  border: none;
  color: #fff;
}

.form-event-area4 section div:first-of-type {
  border: 1px solid black;
  margin-bottom: 20px;
  text-align: center;
}

.form-event-area4 section div:last-of-type {
  width: 100%;
}

.form-event-area4 section div:last-of-type input[type="checkbox"] {
  display: none;
}

.form-event-area4 section div:last-of-type input[type="checkbox"] + label {
  color: #000;
  font-size: 1.7rem;
}

.form-event-area4 section div:last-of-type input[type="checkbox"] + label span {
  display: inline-block;
  width: 26px;
  height: 24px;
  vertical-align: middle;
  border: 1px solid #000;
  cursor: pointer;
  margin-right: 20px;
}

.form-event-area4 section div:last-of-type input[type="checkbox"]:checked + label span {
  background: url(../images/order-checkbox-arrow.svg) center no-repeat;
}

.form-event .style2 {
  margin-top: -75px;
}

@media screen and (max-width: 1700px) {
  .event-sushi img {
    max-width: 400px;
  }
}

@media screen and (max-width: 1500px) {
  h2.biznes-font {
    font-size: 1.6rem !important;
    line-height: 2rem !important;
    padding-bottom: 10px;
    font-family: "Roboto-Light", sans-serif;
  }
  .event-banner-text h3 span {
    font-size: 4rem;
  }
  .event-banner-text {
    background-size: 80px;
  }
  .event-banner-text h2 {
    font-size: 4rem;
    padding-left: 120px;
  }
  .event-banner-text h3 {
    font-size: 3.2rem;
    padding-left: 120px;
  }
  .event-offer-course {
    font-size: 1.9rem;
    width: 32%;
  }
  .event-offer-list h2 {
    font-size: 2.7rem;
    padding-bottom: 20px;
  }
  .event-offer-list ul li {
    font-size: 1.6rem;
    line-height: 2rem;
    background-position: left top 4px;
  }
  .event-offer-course div.event-scroll, .banner-search__bar {
    margin-right: 20%;
  }
  .banner-search__bar {
    margin-right: 20% !important;
  }
  .event-sushi img {
    max-width: 350px;
  }
  .event-form-header h2 {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 1200px) {
  .event-sushi img {
    max-width: 250px;
  }
  .event-offer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1050px) {
  h2.biznes-font {
    padding-top: 20px !important;
  }
  .banner-search__bar {
    margin: 10px auto !important;
  }
  .event-offer-course div.event-scroll {
    margin: 0 auto;
  }
  .style2 {
    margin-top: 0px !important;
  }
  .event-sushi {
    display: none;
  }
  .event-offer {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .event-offer-course {
    width: 100%;
  }
  .event-offer-course div.event-scroll {
    width: 50%;
    margin: 0 auto;
  }
  .event-offer-list {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .event-offer-list h2 {
    padding-top: 40px;
    padding-left: 0px;
  }
  .event-form-header {
    padding-bottom: 40px;
  }
  .form-event-area1 {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .form-event-area2 {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .form-event-area3 {
    width: 100%;
    margin-right: 0;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .form-event-area4 {
    width: 100%;
    -webkit-box-ordinal-group: 5;
            order: 4;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .form-event-area4 p {
    width: 100%;
    padding-bottom: 20px;
  }
  .form-event-area4 section {
    width: 100%;
  }
  .event-offer.event-padding .event-offer-list {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .event-offer-list ul li {
    background-position: left top 2px;
  }
}

@media screen and (max-width: 700px) {
  .event-offer.event-padding .event-offer-list {
    -webkit-box-align: start !important;
            align-items: flex-start !important;
  }
  .event-offer.event-padding h2 {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .event-offer.event-padding a {
    text-decoration: none;
    color: #000;
  }
  .event-info p {
    font-size: 2.2rem;
    padding-left: 0px;
    padding-right: 0px;
  }
  .event-form-header img {
    max-width: 200px;
    right: -25px;
  }
  .event-offer-list ul li {
    padding-left: 30px;
    margin-left: 10px;
    line-height: 1.8rem;
  }
  .event-offer {
    padding-left: 0px;
    padding-right: 0px;
  }
  .event-offer-course {
    padding-left: 20px;
    padding-right: 20px;
  }
  .event-banner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
  .event-banner-text {
    margin: 0;
    padding: 0;
    padding-top: 90px;
    background-position: top center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .event-banner-text h3 {
    padding: 0;
    text-align: center;
  }
  .event-banner-text h2 {
    padding: 20px 0 20px 70px;
    background-size: 50px;
  }
}

@media screen and (max-width: 600px) {
  .event-offer-course div.event-scroll {
    width: 70%;
  }
}

@media screen and (max-width: 520px) {
  .form-event-area4 section {
    justify-content: space-around;
  }
  .form-event-area4 section input, .form-event-area4 section div:first-of-type {
    width: 47.5%;
  }
  .form-event-area4 section input:first-of-type, .form-event-area4 section div:first-of-type {
    margin: 0;
    margin-bottom: 20px;
  }
  .form-event-area4 section input:first-of-type {
    margin-right: 5%;
  }
  .event-offer-course div.event-scroll {
    width: 100%;
  }
  .event-form-header img {
    display: none;
  }
  .event-banner-text h2 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 350px) {
  .form-event-area4 section input:first-of-type {
    font-size: 1.6rem;
  }
  .form-event-area4 section input:first-of-type::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  .form-event-area4 section input:first-of-type:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .form-event-area4 section input:first-of-type::placeholder {
    font-size: 1.6rem;
  }
}

.event-categories {
  padding: 20px 0 40px 0;
  margin-top: 150px;
}

.event-categories ul {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.event-categories ul li {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  padding: 10px 0px 10px 70px;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
  background-size: 45px;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.event-categories ul li:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.event-categories ul li.event-active {
  color: #C59100;
}

.event-categories ul li.event-active:hover {
  opacity: 1;
}

.event-categories1 {
  background-image: url(../images/event-list-sign1.svg);
}

.event-categories1.event-active {
  background-image: url(../images/event-list-sign1-active.svg);
}

.event-categories2 {
  background-image: url(../images/event-list-sign2.svg);
}

.event-categories2.event-active {
  background-image: url(../images/event-list-sign2-active.svg);
}

.event-categories3 {
  background-image: url(../images/event-list-sign3.svg);
}

.event-categories3.event-active {
  background-image: url(../images/event-list-sign3-active.svg);
}

.event-categories4.event-active {
  background-image: url(../images/event-list-sign4-active.svg);
}

.event-categories4 {
  background-image: url(../images/event-list-sign4.svg);
}

.event-categories5 {
  background-image: url(../images/event-list-sign5.svg);
}

.event-categories5.event-active {
  background-image: url(../images/event-list-sign5-active.svg);
}

.event-elements {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.event-element:nth-child(3n+3) {
  margin-right: 0;
}

.event-element {
  width: 29%;
  min-height: 525px;
  border: 2px solid #fff;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  margin-right: 6.5%;
  margin-bottom: 80px;
}

.event-element-wrapper1 {
  width: 100%;
}

.event-element-wrapper2 {
  width: 100%;
}

.event-element__background {
  height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.event-element__header h2 {
  padding-top: 10px;
  height: 70px;
  line-height: 29px;
  white-space: pre-wrap;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-line-clamp: 2;
  display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-element__text {
  display: none;
  padding-top: 30px;
}

.event-element__text p {
  font-size: 1.9rem;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 2.5rem;
  padding-left: 15px;
  padding-right: 15px;
}

.event-element__price p {
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: "Panton-ExtraLight", sans-serif;
  font-size: 1.9rem;
  padding-left: 15px;
  padding-right: 15px;
}

.event-element__price p span {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.9rem;
}

.event-element__button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.event-element__button a {
  text-align: right;
}

.event-element__button button {
  cursor: pointer;
  margin-top: 20px;
  padding: 10px;
  font-size: 2.4rem;
  border: none;
  border: 1px solid #000;
  background-color: #fff;
}

.event-element:hover {
  border: 2px solid #000;
  -webkit-transition: all 1.3s;
  transition: all 1.3s;
  min-height: 525px;
}

.event-element:hover .event-element__background {
  display: none;
}

.event-element:hover .event-element__button button {
  background-color: #000;
  color: #fff;
}

.event-element:hover .event-element__text {
  display: block;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.event-element:hover .event-element__header h2 {
  overflow: visible;
  text-overflow: inherit;
  height: auto;
  display: block;
}

.event-element1 {
  background-image: url(../images/Musso/Wydarzenia/1.Kurs_Sushi/Kurs_Sushi_Miniatura.jpg);
}

.event-element2 {
  background-image: url(../images/Musso/Wydarzenia/2.Warsztaty_Sushi_dla_Klienta_Korporacyjnego/Kurs_Sushi_Miniatura.jpg);
}

.event-element3 {
  background-image: url(../images/Musso/Wydarzenia/3.Warsztaty_origami/Warsztaty_Origami_Miniatura.jpg);
}

.event-element4 {
  background-image: url(../images/Musso/Wydarzenia/4.Voucher/Voucher_Miniaturka.jpg);
}

.event-element5 {
  background-image: url(../images/Musso/Wydarzenia/5.Walentynki/Walentynki_miniaturka.jpg);
}

.event-element6 {
  background-image: url(../images/Musso/Wydarzenia/6.Dzień_kobiet/Dzień_Kobiet_Miniaturka.jpg);
}

.event-element7 {
  background-image: url(../images/Musso/Wydarzenia/7.Targ_Rybny/Targ_Rybny_Miniaturka.jpg);
}

.event-element8 {
  background-image: url(../images/event-element3.jpg);
}

.event-element9 {
  background-image: url(../images/event-element9.jpg);
}

@media screen and (max-width: 1500px) {
  .event-categories ul li {
    font-size: 2rem;
    background-size: 35px;
    padding-left: 60px;
  }
  .event-element__header h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    height: 55px;
  }
  .event-element__price p {
    font-size: 1.4rem;
  }
  .event-element__price p span {
    font-size: 2rem;
  }
  .event-element__button button {
    font-size: 1.8rem;
  }
  .event-element__price p {
    padding-bottom: 0px;
  }
  .event-element {
    min-height: 425px;
  }
  .event-element:hover {
    min-height: 425px;
  }
  .event-element__text p {
    font-size: 1.4rem;
  }
  .event-element__background {
    height: 300px;
  }
}

@media screen and (max-width: 1200px) {
  .event-element__background {
    height: 270px;
  }
}

@media screen and (max-width: 1050px) {
  .event-element {
    margin-right: 2%;
    width: 32%;
  }
}

@media screen and (max-width: 900px) {
  .event-element {
    margin-right: 1%;
    width: 49%;
    margin-bottom: 50px;
  }
  .event-element:nth-child(2n+2) {
    margin-right: 0;
  }
  .event-elements {
    justify-content: space-around;
  }
}

@media screen and (max-width: 500px) {
  .event-element {
    margin-right: 0%;
    width: 100%;
    margin-bottom: 50px;
    min-height: 430px !important;
  }
  .event-element:hover {
    min-height: 430px !important;
  }
  .event-categories ul {
    margin: 0 auto;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .event-categories ul li {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .event-categories {
    padding-top: 0px;
  }
}

.main-slider {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 11;
  position: relative;
  margin-top: 150px;
}

.slide {
  max-width: 1920px;
  width: 100%;
}

.slide__wrapper {
  width: 85%;
  margin: 0 auto;
}

.slide__content {
  padding-top: 80px;
}

.slide__content p {
  font-family: "Panton-ExtraLight", sans-serif;
  font-size: 3.5rem;
  color: #fff;
}

.slide__buttons a button {
  margin-top: 30px;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.5rem;
  border: none;
  background: none;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 10px 10px;
  width: 145px;
  cursor: pointer;
  outline: none;
}

.slide__buttons a:first-child button {
  background: #000;
  color: #fff;
  margin-right: 30px;
}

.slide__buttons a:last-child button {
  background: #fff;
  color: #000;
}

.slide {
  background-color: lightgrey;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center;
}

.slide1 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_1.jpg);
}

.slide2 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_2.jpg);
}

.slide3 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_3.jpg);
}

.slide4 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_4.jpg);
}

.slide5 {
  background-image: url(../images/Musso/Slider/Musso_Sushi_5.jpg);
}

.slide__hide1 {
  width: 100%;
  height: 300px;
  background-color: #F2F6F7;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  position: relative;
  top: 450px;
  margin-left: -150px;
  position: absolute;
  z-index: 10;
}

.slide__hide2 {
  width: 100%;
  height: 200px;
  background-color: #F2F6F7;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  position: relative;
  top: 600px;
  margin-left: 100px;
  margin-left: 100px;
  position: absolute;
  z-index: 10;
}

.slider-container.swiper-container {
  height: 570px;
  position: relative;
}

.slider-container.swiper-container .swiper-button-next {
  top: 35%;
  right: 10%;
  left: auto;
  background-image: url(../images/main-slider-arrow1.svg);
  background-size: 20px;
}

.slider-container.swiper-container .swiper-button-prev {
  top: 28%;
  left: auto;
  right: 10%;
  background-size: 20px;
  background-image: url(../images/main-slider-arrow2.svg);
}

.main-slider-button {
  z-index: 13;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #000;
  margin-left: 70%;
  position: absolute;
  top: 520px;
  cursor: pointer;
  background-image: url(../images/main-slider-arrow3.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.order-main-heading h2 {
  font-family: "Panton-Bold", sans-serif;
  background-color: #F2F6F7;
  font-size: 7.2rem;
  padding-left: 50px;
  padding-bottom: 40px;
  padding-top: 10px;
}

.order-main-heading h2 span {
  color: #C59100;
  font-size: 5.5rem;
  padding-right: 3%;
}

.order-main-pick-list {
  background: #F2F6F7;
}

.order-main-active {
  background: #fff;
  border-bottom: none !important;
}

.order-main-active a {
  color: #000 !important;
}

.order-main-pick-list ul li:hover {
  background: #fff;
}

.order-main-pick-list ul li:hover a {
  color: #000;
}

.order-navigation {
  position: relative;
}

.order-navigation a {
  text-decoration: none;
  color: #000;
  padding: 10px 20px;
  border: none;
  border: 1px solid #C59100;
  border-radius: 50px;
  background-color: #fff;
  font-size: 2rem;
  position: absolute;
  right: 50px;
  top: 20px;
}

.order-navigation a:hover {
  color: #fff;
  border: 1px solid #C59100;
  background-color: #C59100;
}

@media screen and (max-width: 1650px) {
  .main-slider-button {
    margin-left: 72%;
  }
}

@media screen and (max-width: 1550px) {
  .main-slider {
    margin-top: 130px;
  }
}

@media screen and (max-width: 1500px) {
  .slide__content p {
    font-size: 2.5rem;
  }
  .slide__buttons button {
    font-size: 1.2rem;
    width: 120px;
  }
  .order-main-heading h2 span {
    font-size: 3.9rem;
    padding-right: 2%;
  }
  .order-main-heading h2 {
    font-size: 5.2rem;
  }
  .slide__hide2 {
    top: 540px;
  }
  .slide__hide1 {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
    top: 410px;
  }
  .main-slider-button {
    margin-left: 70%;
    top: 475px;
  }
  .main-slider {
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .slider-container.swiper-container {
    height: 520px;
  }
}

@media screen and (max-width: 1385px) {
  .main-slider-button {
    margin-left: 71%;
  }
}

@media screen and (max-width: 1250px) {
  .main-slider-button {
    margin-left: 73%;
  }
}

@media screen and (max-width: 1200px) {
  .slide__hide2 {
    top: 490px;
  }
  .slide__hide1 {
    -webkit-transform: rotate(11deg);
            transform: rotate(11deg);
    top: 380px;
  }
  .main-slider-button {
    margin-left: 71%;
    top: 435px;
  }
  .slider-container.swiper-container {
    height: 500px;
  }
  .slide {
    height: 470px;
  }
  .slide__wrapper {
    width: 90%;
  }
  .slider-container.swiper-container .swiper-button-next, .slider-container.swiper-container .swiper-button-prev {
    right: 3%;
  }
}

@media screen and (max-width: 1050px) {
  .main-slider {
    margin-top: 100px;
  }
  .slide__hide1 {
    top: 350px;
  }
  .slide__hide2 {
    top: 450px;
  }
  .main-slider-button {
    top: 395px;
  }
  .slider-container.swiper-container {
    height: 450px;
  }
  .slide {
    height: 430px;
  }
  .order-navigation {
    padding-top: 0px;
    padding-bottom: 80px;
  }
  .order-navigation a {
    color: #000;
    padding: 10px 20px;
    border: none;
    border: 1px solid #C59100;
    border-radius: 50px;
    background-color: #fff;
    font-size: 2rem;
    position: absolute;
    right: auto;
    top: 50px;
  }
  .order-content {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 950px) {
  .main-slider-button {
    margin-left: 73%;
  }
}

@media screen and (max-width: 800px) {
  .slide__hide1 {
    top: 340px;
  }
  .slide__hide2 {
    top: 420px;
  }
  .main-slider-button {
    margin-left: 71%;
    top: 375px;
  }
  .order-main-heading h2 span {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .slide__hide1, .slide__hide2, .main-slider-button {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .main-slider {
    padding-top: 10px;
  }
  .slide {
    background-size: 1200px;
  }
  .slider-container.swiper-container {
    height: 300px;
  }
  .main-slider {
    padding-bottom: 0;
  }
  .slide__content {
    padding-top: 50px;
  }
  .order-main-heading h2 {
    padding-top: 30px;
    text-align: center;
    padding-left: 0;
  }
  .order-main-pick-list {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .slide {
    background-size: 1100px;
  }
  .slide__content p {
    font-family: "Panton-Regular", sans-serif;
  }
  .order-main-heading h2 span {
    font-size: 2.9rem;
  }
  .order-main-heading h2 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 400px) {
  .slide {
    background-size: 1050px;
  }
}

@media screen and (max-width: 330px) {
  .slider-container.swiper-container .swiper-button-next, .slider-container.swiper-container .swiper-button-prev {
    right: 1%;
  }
}

.main-chef-wrapper {
  padding-top: 50px;
  border-top: 1px solid #C59100;
  border-bottom: 1px solid #C59100;
}

.main-chef {
  display: -webkit-box;
  display: flex;
}

.main-chef1 {
  width: 60%;
  background-image: url(../images/main-chef-background.png);
  background-repeat: no-repeat;
  background-size: 480px;
  background-position: left 220px bottom 0;
}

.main-chef1-heading {
  position: relative;
  height: 100px;
  margin-bottom: 20px;
}

.main-chef1-heading div {
  height: 80px;
  width: 145px;
  border: 1px solid #000;
}

.main-chef1-heading h2 {
  font-size: 3rem;
  background-color: #fff;
  position: relative;
  top: -65px;
  padding: 10px 0px 10px 30px;
  font-family: "Panton-Regular", sans-serif;
}

.main-chef1-heading h2 span {
  font-family: "Panton-Bold", sans-serif;
  color: #C59100;
}

.main-chef1-quote {
  font-family: "Panton-Light", sans-serif;
  font-size: 2.5rem;
  line-height: 31px;
}

.main-chef1-quote p:last-child {
  padding-top: 30px;
  padding-bottom: 70px;
}

.main-chef2-wrapper {
  width: 450px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.main-chef2 {
  width: 100%;
  position: relative;
  top: -30px;
}

.main-chef2-heading {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
}

.main-chef2-heading div {
  height: 80px;
  width: 50%;
  border: 1px solid #000;
}

.main-chef2-heading h2 {
  font-size: 3rem;
  background-color: #fff;
  position: relative;
  top: -65px;
  padding: 10px 0px 10px 30px;
  font-family: "Panton-Regular", sans-serif;
}

.main-chef2-heading h2 span {
  font-family: "Panton-Bold", sans-serif;
  color: #C59100;
}

.main-chef2-row {
  width: 100%;
  display: -webkit-box;
  display: flex;
  height: 195px;
  text-decoration: none;
  color: #000;
}

.main-chef2-row-text {
  width: 50%;
}

.main-chef2-row-text h2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.4rem;
  padding: 15px 0;
  margin-right: 15px;
  border-bottom: 1px solid #000;
}

.main-chef2-row-text p {
  display: block;
  font-family: "Panton-Light", sans-serif;
  font-size: 1.9rem;
  line-height: 2.75rem;
  margin: 15px;
  height: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-wrap;
}

.main-chef2-row-img {
  height: 195px;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-chef2-row-img h2 {
  background-color: #000;
  position: relative;
  top: 30px;
  color: #fff;
  float: left;
  width: auto;
  padding: 8px 20px;
  font-family: "Panton-Light", sans-serif;
  font-size: 1.5rem;
}

.main-chef-slide-img1 {
  background-image: url(../images/main-chef2.jpg);
}

.main-chef-slide-img2 {
  background-image: url(../images/main-chef2.jpg);
}

.main-chef-slide-img3 {
  background-image: url(../images/main-chef1.jpg);
}

.main-chef-slide-img4 {
  background-image: url(../images/main-chef1.jpg);
}

.swiper-container.main-chef-slider-container {
  height: 390px;
}

.swiper-container.main-chef-slider-container .main-chef-slide h2 {
  margin-right: 15px;
  margin-left: 15px;
}

.swiper-container.main-chef-slider-container .main-chef-slide p {
  margin-right: 15px;
  margin-left: 15px;
}

.main-chef2-row-img h2 {
  margin-left: 0px !important;
}

.swiper-container.main-chef-slider-container .swiper-pagination {
  left: 25%;
  bottom: 0;
}

.swiper-container.main-chef-slider-container .swiper-pagination-bullet {
  background: #000;
  opacity: 1;
  height: 12px;
  width: 12px;
}

.swiper-container.main-chef-slider-container .swiper-pagination-bullet-active {
  background: #C59100;
}

@media screen and (max-width: 1500px) {
  .main-chef1-heading h2, .main-chef2-heading h2 {
    font-size: 2.1rem;
  }
  .main-chef1-quote, .main-chef2-row-text h2 {
    font-size: 1.7rem;
  }
  .main-chef2-row-text p {
    font-size: 1.5rem;
  }
  .main-chef1-quote {
    line-height: 25px;
  }
  .main-chef1 {
    background-size: 400px;
    background-position: left 120px bottom 0;
  }
  .main-chef1-quote p:last-child {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 1500px) {
  .main-chef {
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .main-chef1-heading h2, .main-chef2-heading h2 {
    top: -60px;
  }
}

@media screen and (max-width: 1050px) {
  .main-chef {
    flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
  }
  .main-chef1 {
    width: 510px;
  }
  .main-chef2-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .main-chef2 {
    top: 0px;
  }
}

@media screen and (max-width: 550px) {
  .main-chef1 {
    background: none !important;
  }
  .main-chef1-quote {
    text-align: justify;
  }
  .main-chef1-quote p br {
    content: "";
  }
  .main-chef2-wrapper {
    width: 100%;
  }
  .main-chef1-quote p:last-child {
    padding-bottom: 0px;
  }
}

.main-form-header {
  margin-top: 80px;
  padding: 50px 0;
  background-image: url(../images/main-form-background.jpg);
  background-position: right 50px center;
  background-repeat: no-repeat;
}

.main-form-header h2 {
  font-size: 7.4rem;
  color: #C59100;
}

.main-form-header h3 {
  font-size: 9.8rem;
  font-family: "Panton-Bold", sans-serif;
}

#main-form-data {
  background-image: url(../images/main-form-icon1.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 30px;
}

#main-form-hour {
  background-image: url(../images/main-form-icon2.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 30px;
}

@media screen and (max-width: 1050px) {
  .main-form-area1 {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}

.main-form {
  z-index: 2;
  padding-bottom: 0px;
}

#map2 {
  height: 600px;
  width: 100%;
}

.map-header-wrapper {
  position: relative;
}

.map-header-figure {
  position: absolute;
  z-index: -1;
  top: -100px;
}

.map-header {
  padding-top: 80px;
  padding-bottom: 40px;
}

.map-header h2 {
  z-index: 2;
  font-family: "Panton-Bold", sans-serif;
  font-size: 17.5rem;
  color: #E6E6E6;
  text-align: right;
}

.map {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.map-decription {
  border: 10px solid rgba(255, 255, 255, 0.6);
  background-clip: padding-box;
  background-color: #fff;
  padding: 20px 20px;
  position: absolute;
  top: 50px;
  bottom: 50px;
  right: 50px;
  width: 375px;
  z-index: 999;
  text-align: center;
}

.map-decription h2 {
  font-family: "KaushanScript-Regular", sans-serif;
  font-size: 3.6rem;
  color: #C59100;
  padding-bottom: 20px;
  padding-top: 5px;
}

.map-decription address {
  font-family: "Panton-BoldItalic", sans-serif;
  font-size: 2.4rem;
}

.map-decription p, .map-decription a {
  font-size: 2.2rem;
}

.map-decription a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.map-decription a span {
  color: #C59100;
}

.map-decription a:nth-of-type(2) {
  padding-bottom: 15px;
}

.map-decription address, .map-decription p, .map-decription a {
  line-height: 3rem;
}

@media screen and (max-width: 1500px) {
  .main-form-header h2 {
    font-size: 5.2rem;
  }
  .main-form-header h3 {
    font-size: 7rem;
  }
  .map-decription h2 {
    font-size: 2.5;
  }
  .map-decription address {
    font-size: 1.7rem;
  }
  .map-decription p, .map-decription a {
    font-size: 1.5rem;
  }
  .main-form-header {
    background-position: right center;
    background-size: contain;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
  .map-header h2 {
    font-size: 13rem;
  }
  .map-header-figure img {
    width: 600px;
  }
  .map-decription {
    width: 300px;
    padding: 20px;
  }
  .map-decription address, .map-decription p, .map-decription a {
    line-height: 2rem;
  }
  #map2 {
    height: 500px;
  }
}

@media screen and (max-width: 1200px) {
  .main-form-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .map-header-figure img {
    width: 500px;
    top: -200px;
  }
}

@media screen and (max-width: 1050px) {
  .map-header-figure {
    display: none;
  }
  .map-header {
    padding-top: 40px;
  }
  .map {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  .map-decription {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

@media screen and (max-width: 900px) {
  .main-form-header {
    background: none;
    margin-top: 20px;
  }
}

@media screen and (max-width: 700px) {
  .main-form-header {
    text-align: center;
  }
  .map-header h2 {
    font-size: 10rem;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .main-form-header h2 {
    font-size: 3rem;
  }
  .main-form-header h3 {
    font-size: 4rem;
  }
  .map-header h2 {
    font-size: 5rem;
  }
  #map2 {
    height: 400px;
  }
}

.order1 {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.order1__heading {
  font-size: 3rem;
  font-family: "Roboto-Black", sans-serif;
  text-align: center;
  padding: 80px 0 50px 0;
  color: #3C3C3B;
}

.order1 h3 {
  font-size: 2rem;
  padding: 20px 0;
}

.longer-text {
  width: 32%;
}

.order1-element-wrapper {
  border-top: 1px solid #1D1D1B;
  border-bottom: 1px solid #1D1D1B;
}

.order1-element {
  display: -webkit-box;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px dashed #1D1D1B;
}

.order1-element__image {
  width: 15%;
  margin-right: 10%;
}

.order1-element__data {
  width: 70%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.order1-element__data h2 {
  font-size: 2rem;
}

.order1-element__data p, .order1-element__data s {
  font-size: 2.2rem;
}

.order1-element__data input {
  font-family: "Panton-Regular", sans-serif;
  font-size: 2rem;
  width: 40px;
  outline: none;
  text-align: center;
}

.order1-element__data div {
  display: -webkit-box;
  display: flex;
}

.order1-element__data-p {
  padding-left: 10px;
  color: #C59100;
}

.order1-element__x {
  width: 5%;
  font-family: "Roboto-Black", sans-serif;
  font-size: 2.5rem;
  text-align: right;
  cursor: pointer;
}

.order1-element__x img {
  width: 20px;
}

.order1-element:last-child {
  border-bottom: none;
}

.order1-element__data--input div {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.order1-element__data--input a {
  width: 25px;
  height: 50%;
  display: block;
  font-size: 20px;
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.order-summury-container {
  width: 100%;
  height: 400px;
  background-color: #F4F4F4;
  margin-top: 30px;
}

.order-summary {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.sending-info {
  width: 35%;
  margin-left: 50%;
}

.sending-info div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

.sending-info div p {
  font-family: "Panton-Bold", sans-serif;
  font-size: 2rem;
  line-height: 3rem;
}

.sending-info div:first-child {
  border-bottom: 1px solid #1D1D1D;
  padding-top: 30px;
}

.order1__buttons {
  padding-top: 70px;
}

.order-summury-container2 {
  height: 200px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.order-summary-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.order-summary-buttons a {
  width: 40%;
  border: none;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.9rem;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.order-summary-buttons a:first-child {
  border: 1px solid #C59100;
  background: #F4F4F4;
  margin-right: 1%;
  color: #000;
}

.order-summary-buttons a:last-child {
  margin-left: 1%;
  background-color: #C59100;
  color: #fff;
}

.order2-heading {
  width: 100%;
  font-size: 3rem;
  font-family: "Roboto-Black", sans-serif;
  text-align: center;
  color: #3C3C3B;
  padding-bottom: 50px;
  border-bottom: 1px solid #1D1D1B;
  margin-bottom: 40px;
}

.order3-heading {
  padding-top: 80px;
}

.orderinfo {
  padding-top: 10px;
  line-height: 18px;
  font-size: 1.5rem;
  padding-left: 50px;
}

.orderinfo h4 {
  font-size: 1.5rem;
  font-family: "Panton-Bold", sans-serif;
}

.orderinfo p:nth-child(5) {
  padding-bottom: 20px;
}

#onlinelabel {
  display: none;
}

.order4-heading {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.order-summary-buttons a:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1500px) {
  .order1-element__data--input a {
    font-size: 15px;
  }
  .heading-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .order-form-radio1 ul li:first-child label {
    padding-bottom: 30px;
  }
  .order-bar {
    padding-top: 130px !important;
  }
  .order1__heading {
    font-size: 2.2rem;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .order2-heading {
    font-size: 2.2rem;
  }
  .order1-element__data h2 {
    font-size: 1.5rem;
  }
  .order1-element__data p, .order1-element__data s, .order1-element__data input {
    font-size: 1.7rem;
  }
  .order1 h3 {
    font-size: 1.5rem;
  }
  .order1-element__data input {
    width: 30px;
  }
  .order1 {
    max-width: 1200px;
  }
  .sending-info div p {
    font-size: 1.5rem;
  }
  .order-summary-buttons button {
    font-size: 1.5rem;
  }
  .order-summury-container {
    height: 300px;
  }
  .order1__buttons {
    padding-top: 30px;
  }
  .order1-element {
    padding: 25px 0;
  }
  .order-summury-container2 {
    height: 150px;
  }
}

@media screen and (max-width: 1200px) {
  .heading-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .order1 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .order1-element {
    display: -webkit-box;
    display: flex;
    padding: 40px 0;
    border-bottom: 1px dashed #1D1D1B;
  }
  .order1-element__image {
    width: 266px;
  }
  .order-bar-circle-container p {
    text-align: center;
  }
  .order-form-radio1 ul li:first-child label {
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 900px) {
  #colletionlabel {
    margin-left: 40.5px;
  }
}

@media screen and (max-width: 850px) {
  .longer-text {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .order1-element__data--input {
    padding: 5px 0;
  }
  .order1-element {
    flex-wrap: wrap;
  }
  .order1-element {
    display: -webkit-box;
    display: flex;
    padding: 40px 0;
    border-bottom: 1px dashed #1D1D1B;
  }
  .order1-element__image {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .order1-element__data {
    width: 100%;
    width: 266px;
    margin: 0 auto;
  }
  .order1-element__x {
    width: 100%;
    text-align: right;
    width: 266px;
    margin: 0 auto;
  }
  .sending-info {
    width: 100%;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .order-bar-circle-container4 p {
    padding-right: 10px;
  }
  .order2-heading {
    padding-top: 50px;
  }
  .order-form-radio1 ul li:first-child label {
    padding-bottom: 30px;
  }
}

.order4-wrapper {
  display: -webkit-box;
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.order4 {
  width: 60%;
  margin-left: 0;
  margin-right: 5%;
  border-top: 0px;
}

.order4-element-wrapper {
  border-top: 0px;
}

.sidebar {
  width: 35%;
  padding-top: 40px;
}

.sidebar-element {
  padding-bottom: 50px;
}

.sidebar-element__header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sidebar-element__header h2 {
  font-family: "Roboto-Black", sans-serif;
  font-size: 3.5rem;
  color: #3C3C3B;
}

.sidebar-element__header a {
  width: 30px;
  margin-right: 10px;
}

.sidebar-element__header a img {
  max-width: 30px;
}

.sidebar-element__content p, .sidebar-element__content h5 {
  font-size: 2rem;
}

.sidebar-element__content p:nth-of-type(4) {
  padding-bottom: 20px;
}

.sidebar-element__content h5 {
  padding-left: 35px;
  background-image: url(../images/sidebar-radio.svg);
  background-repeat: no-repeat;
  background-position: left 5px center;
}

.padding-top {
  margin-top: 50px;
}

.sending-info4 {
  width: 100%;
  margin: 0;
  background-color: #F4F4F4;
}

.sending-info4 div {
  margin-left: 10%;
  margin-right: 10%;
}

.sending-info4 div:nth-child(3) > p {
  font-size: 1.8rem;
  font-family: "Roboto-Light", sans-serif;
}

.sending-info4 button {
  background: #C59100;
  width: 100%;
  padding: 30px 50px;
  border: none;
  text-align: center;
  color: #fff;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.order4-element__image {
  width: 266px;
  margin-right: 5%;
}

.summary-logo {
  margin: 0 auto;
  display: block;
  padding-top: 150px;
  width: 400px;
}

.summary-container {
  text-align: center;
  margin: 0 auto;
  background-color: #F4F4F4;
  height: 400px;
  margin: 50px auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  justify-content: space-around;
  padding-top: 50px;
  padding-bottom: 50px;
}

.summary-container h2 {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 5.5rem;
  border: 2px solid #C59100;
  width: 60%;
  margin: 0 auto;
  padding: 30px 50px;
}

.summary-container p {
  font-family: "Roboto-Light", sans-serif;
  font-size: 4.1rem;
}

.summary-ok {
  margin: 0 auto;
  display: block;
  max-width: 100px;
}

.sending-info4 button:hover {
  background-color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1500px) {
  .sidebar-element__header h2 {
    font-size: 2.4rem;
  }
  .sidebar-element__content p, .sidebar-element__content h5 {
    font-size: 1.4rem;
  }
  .sending-info4 div:nth-child(3) > p {
    font-size: 1.2rem;
    line-height: 15px;
  }
  .sending-info4 button {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1500px) {
  .order4-wrapper {
    padding-right: 20px;
  }
  .summary-logo {
    width: 300px;
  }
  .summary-container {
    height: 300px;
    margin: 50px auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .summary-container h2 {
    font-size: 3.9rem;
    width: 60%;
    padding: 30px 50px;
  }
  .summary-container p {
    font-family: "Roboto-Light", sans-serif;
    font-size: 3rem;
  }
  .summary-ok {
    max-width: 80px;
  }
}

@media screen and (max-width: 900px) {
  .order4 {
    width: 100%;
    margin: 0;
  }
  .order4-wrapper {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .order4-wrapper {
    padding-right: 0px;
  }
  .sidebar {
    display: -webkit-box;
    display: flex;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sidebar-flex {
    width: 55%;
    margin-right: 5%;
  }
  .sending-info4 {
    width: 40%;
  }
}

@media screen and (max-width: 800px) {
  .order4-wrapper {
    padding-right: 20px;
  }
  .summary-logo {
    width: 250px;
  }
  .summary-container {
    height: 300px;
    margin: 50px auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .summary-container h2 {
    font-size: 3.9rem;
    width: 80%;
    padding: 30px 50px;
  }
  .summary-container p {
    font-family: "Roboto-Light", sans-serif;
    font-size: 3rem;
  }
  .summary-ok {
    max-width: 60px;
  }
}

@media screen and (max-width: 600px) {
  .sidebar {
    flex-wrap: wrap;
  }
  .sidebar-flex {
    width: 100%;
    margin-right: 0%;
  }
  .sending-info4 {
    width: 100%;
  }
  .order4-element__image {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  .summary-container {
    height: auto;
    margin: 50px auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .summary-container h2 {
    border: none;
    font-size: 3.9rem;
    width: 80%;
    padding: 20px 20px;
  }
  .summary-container p {
    padding: 10px 20px;
  }
}

@-webkit-keyframes work-button {
  0% {
    background-position: right 10px bottom 35%;
  }
  50% {
    background-position: right 10px bottom 60%;
  }
  100% {
    background-position: right 10px bottom 35%;
  }
}

@keyframes work-button {
  0% {
    background-position: right 10px bottom 35%;
  }
  50% {
    background-position: right 10px bottom 60%;
  }
  100% {
    background-position: right 10px bottom 35%;
  }
}

.order-bar {
  padding-top: 150px;
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
}

.order-bar-circle-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  width: 25%;
}

.order-bar-circle-container p {
  font-size: 1.8rem;
  padding-top: 15px;
}

.order-bar-circle {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  z-index: 10;
  background-color: #fff;
}

.order-bar-circle img {
  width: 100%;
  height: 100%;
}

.order-bar-circle-container1 {
  position: relative;
}

.order-bar-circle-container1:after {
  content: "";
  width: 50%;
  right: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container2 {
  position: relative;
}

.order-bar-circle-container2:after {
  content: "";
  width: 50%;
  right: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container2:before {
  content: "";
  width: 50%;
  left: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container3 {
  position: relative;
}

.order-bar-circle-container3:after {
  content: "";
  width: 50%;
  right: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container3:before {
  content: "";
  width: 50%;
  left: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container4 {
  position: relative;
}

.order-bar-circle-container4:before {
  content: "";
  width: 50%;
  left: 0;
  position: absolute;
  height: 1px;
  background: #9B9B97;
  top: 27px;
  z-index: -1;
}

.order-bar-circle-container1-after:after {
  background: #C59100;
}

.order-bar-circle-container2-after:after {
  background: #C59100;
}

.order-bar-circle-container2-before:before {
  background: #C59100;
}

.order-bar-circle-container3-after:after {
  background: #C59100;
}

.order-bar-circle-container3-before:before {
  background: #C59100;
}

.order-bar-circle-container4-before:before {
  background: #C59100;
}

@media screen and (max-width: 1500px) {
  .order-bar-circle {
    width: 40px;
    height: 40px;
  }
  .order-bar-circle-container1:after {
    top: 20px;
  }
  .order-bar-circle-container2:after {
    top: 20px;
  }
  .order-bar-circle-container2:before {
    top: 20px;
  }
  .order-bar-circle-container3:after {
    top: 20px;
  }
  .order-bar-circle-container3:before {
    top: 20px;
  }
  .order-bar-circle-container4:before {
    top: 20px;
  }
  .order-bar-circle-container p {
    font-size: 1.3rem;
  }
}

.banner-search__bar {
  border: 1px solid #000;
  color: #000;
  font-size: 1.7rem;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Panton-Bold", sans-serif;
  margin-right: 40%;
  height: 75px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  cursor: pointer;
}

.banner-search__bar--dropdown {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.banner-search__bar--dropdown p.banner-pickBar {
  padding: 0;
  background: none;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  font-family: "Panton-Bold", sans-serif;
  font-size: 2.3rem;
}

.banner-search__bar--dropdown div.arrow {
  width: 80px;
  height: 75px;
  position: absolute;
  right: 0;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
}

.banner-search__bar--dropdown:hover {
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.75);
}

.banner-search__bar--dropdown:hover p {
  color: #000;
}

.banner-dropdown-content {
  display: none;
}

.banner-search__bar.dropdown-active .banner-dropdown-content {
  display: block;
  position: absolute;
  border: 1px solid #000;
  width: 100%;
  top: 80px;
  left: 0px;
  background-color: #fff;
  z-index: 2;
  overflow: hidden;
}

.banner-search__bar.dropdown-active .banner-dropdown-content ul {
  padding-top: 5px;
  padding-bottom: 5px;
}

.banner-search__bar.dropdown-active .banner-dropdown-content li a {
  padding-left: 20px;
  display: block;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #000;
  font-family: "Panton-Bold", sans-serif;
}

.banner-search__bar.dropdown-active .banner-dropdown-content li:hover {
  background-color: rgba(197, 145, 0, 0.7);
}

.payment {
  margin-right: 40%;
}

.payment form {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.payment form input {
  height: 55px;
  margin-bottom: 10px;
  border: 1px solid #000;
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem;
  color: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
}

.payment form input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
  text-align: center;
}

.payment form input:-ms-input-placeholder {
  opacity: 1;
  color: #000;
  text-align: center;
}

.payment form input::placeholder {
  opacity: 1;
  color: #000;
  text-align: center;
}

.payment form input:hover, .payment form input:focus {
  outline: 1px solid #000;
}

.payment form input[type="submit"] {
  height: 75px;
  background-color: #C59100;
  font-size: 2.3rem;
  display: block;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 1500px) {
  .banner-search__bar--dropdown p.banner-pickBar {
    font-size: 1.9rem;
  }
  .payment {
    margin-right: 20%;
  }
}

.banner-search__bar2 {
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
  height: 54px;
}

.banner-pickBar.banner-pickBar2 {
  font-family: "Panton-Bold", sans-serif;
  font-size: 1.8rem !important;
  text-align: left !important;
  padding-left: 15px !important;
}

.banner-dropdown-content2 a {
  text-decoration: none;
}

.banner-search__bar.dropdown-active .banner-dropdown-content.banner-dropdown-content2 {
  top: 60px;
}

@media screen and (max-width: 1500px) {
  .banner-search__bar.banner-search__bar2 {
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 1050px) {
  .payment {
    margin-right: 0%;
  }
  .payment form {
    width: 50%;
    margin: 0 auto;
  }
  .banner-search__bar.banner-search__bar2 {
    margin: 0px auto !important;
    margin-bottom: 20px !important;
    width: 100%;
  }
  .banner-search__bar {
    margin: 10px auto !important;
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .banner-search__bar {
    width: 70%;
  }
  .payment {
    margin-right: 0%;
  }
  .payment form {
    width: 70%;
  }
}

@media screen and (max-width: 520px) {
  .banner-search__bar {
    width: 100%;
  }
  .payment {
    margin-right: 0%;
  }
  .payment form {
    width: 100%;
  }
}

/*# sourceMappingURL=maps/main.min.css.map */
