@charset "UTF-8";
* {
  text-decoration: none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Mulish", sans-serif;
  color: whitesmoke;
}

::-moz-selection {
  color: #0f0f0f;
  background: rgba(255, 255, 255, 0.7);
}

::selection {
  color: #0f0f0f;
  background: rgba(255, 255, 255, 0.7);
}

body {
  background-color: #0f0f0f;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #1d1d1d;
}

::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 9em;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0e0e0e;
}

::-webkit-scrollbar-button:vertical:start:decrement {
  display: none;
}

::-webkit-scrollbar-button:vertical:end:increment {
  display: none;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
  display: none;
}

::-webkit-scrollbar-button:horizontal:end:increment {
  display: none;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 4;
}

.header {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  bottom: 0;
  position: fixed;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main_nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main_nav_item a {
  text-decoration: none;
}

.main_nav_item::after {
  content: "";
  display: block;
  border-bottom: 2px solid whitesmoke;
  width: 0%;
  -webkit-transition: width 0.7s;
  transition: width 0.7s;
}

.main_nav_item:hover:after {
  width: 100%;
}

.logo {
  min-width: 10%;
}

.hello {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hello:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.title {
  position: absolute;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(250, 250, 250, 0.4);
  letter-spacing: 2px;
  z-index: 4;
}

.hello_title {
  top: 50%;
  left: -3%;
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
}

.main_title {
  font-size: 3rem;
  text-align: center;
  padding: 20px;
  padding: 10% 0 5% 0;
  font-weight: 100;
  width: 50%;
  display: block;
  margin: 0 auto;
  font-family: "Poiret One", cursive;
}

.btn_block {
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  margin-bottom: 10%;
}

.btn {
  border: 2px solid whitesmoke;
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  -webkit-transition: 0.7s !important;
  transition: 0.7s !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn_second {
  background-color: whitesmoke;
  color: #0f0f0f;
}

.btn:hover {
  -webkit-transform: scale(1.05) !important;
          transform: scale(1.05) !important;
  -webkit-transition: 0.7s !important;
  transition: 0.7s !important;
  background: whitesmoke;
  color: #0f0f0f;
  -webkit-box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 5px 3px rgba(255, 255, 255, 0.3);
}

.menu_btn {
  background-color: black;
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 700;
  -webkit-transition: 0.7s !important;
  transition: 0.7s !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.menu_btn:hover {
  -webkit-transform: scale(1.05) !important;
          transform: scale(1.05) !important;
  -webkit-transition: 0.7s !important;
  transition: 0.7s !important;
}

.mob_nav {
  display: none;
}

#menuToggle {
  display: block;
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #232323;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: tomato;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 9999;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: whitesmoke;
  border-radius: 3px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menuToggle span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-3px, -1px);
          transform: rotate(45deg) translate(-3px, -1px);
  background: #0f0f0f;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(1px, -1px);
          transform: rotate(-45deg) translate(1px, -1px);
}

#menu_nav {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background: whitesmoke;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu_nav li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked ~ ul {
  -webkit-transform: none;
          transform: none;
}

.delivery,
.catering,
.menu,
.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.menu {
  padding-bottom: 40px;
}

.menu_title {
  top: 50%;
  right: -1%;
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.tab_btn {
  margin-top: 5%;
  margin-bottom: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

.img_tab {
  height: 50px;
}

.red_btn {
  color: #c21414 !important;
}

.pita_btn {
  color: whitesmoke;
  border: 2px solid whitesmoke;
}

.pita .tab_mob-label {
  color: whitesmoke;
}

.sunny .tab_mob-label {
  color: #dfc103;
}

.red .tab_mob-label {
  color: #c21414;
}

.cook .tab_mob-label {
  color: #67a99c;
}

.sunny_btn {
  color: #dfc103;
  border: 2px solid #dfc103;
}

.red_btn {
  color: #c21414;
  border: 2px solid #c21414;
}

.cook_btn {
  color: #67a99c;
  border: 2px solid #67a99c;
}

.tab_btn a {
  font-size: 1.5rem;
}

.tab_btn a img {
  margin-right: 15px;
}

.tab_content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tab_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  border-right: 2px solid whitesmoke;
  width: 25%;
}

.tab_txt:last-child {
  border-right: none;
}

.menu_subtitle {
  border-bottom: 1px solid whitesmoke;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
  padding-bottom: 10px;
}

.menu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.mob_menu {
  display: none;
}

.mobile_menu {
  display: none;
}

.call_action {
  padding: 50px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.title_mob {
  display: none;
}

.call_action:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.call_subtitle {
  text-align: center;
  font-size: 2rem;
}

.call_btn {
  width: 300px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
}

.call_action .call_btn {
  margin-bottom: 50px;
}

.delivery_title {
  top: 50%;
  left: -5%;
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
}

.delivery_subtitle {
  margin-top: 20px;
  margin-bottom: 15px;
}

.delivery_content,
.contacts_content {
  width: 50%;
  padding: 50px;
  padding-left: 12%;
}

.gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr 0px 1fr 0px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 0px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.gallery > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.gallery > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.gallery > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.gallery > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.gallery > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.gallery > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.gallery > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.gallery > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}

.gallery_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
}

.gallery_item {
  overflow: hidden;
}

.gallery_item a {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  height: 100px;
  padding-top: 100%;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gallery_item a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.gallery_item a::after {
  overflow: hidden;
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.delivery_decor,
.catering_decor {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  width: 50%;
  position: relative;
}

.delivery_decor {
  background-image: url("../img/photo/photo_2021-10-16_16-17-39.jpg");
}

.delivery_decor:after,
.catering_decor:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.catering_title {
  top: 40%;
  right: -4%;
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.catering_content {
  width: 50%;
  padding: 150px 50px;
  padding-right: 12%;
}

.catering_content p,
.delivery_content p {
  margin-bottom: 20px;
}

.team {
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.team_decor {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.team_title {
  top: 50%;
  left: -7%;
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
}

.contacts_title {
  top: 50%;
  left: -5%;
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
}

.contacts_map {
  width: 50%;
}

.contacts_name {
  font-size: 2rem;
  margin-bottom: 30px;
  border-bottom: 1px solid whitesmoke;
}

.contacts_subtitle {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contacts_item {
  margin-bottom: 25px;
}

.contacts_item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contacts_item a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

ymaps {
  color: black;
}

.footer {
  padding: 20px 30px;
  text-align: center;
}

.footer_text {
  opacity: 0.5;
}

.footer_text:nth-child(n+2) {
  margin-top: 10px;
}

@media (max-width: 1440px) and (min-width: 1201px) {
  .delivery_title,
.contacts_title {
    left: -7%;
  }

  .catering_title {
    right: -7%;
  }

  .tab_txt {
    width: 50%;
  }

  .tab_txt:nth-child(3) {
    /* index 3 because we have hidden mobile tabs */
    border-right: 0;
  }
}
@media (max-width: 1200px) and (min-width: 901px) {
  .main_title {
    padding-bottom: 5%;
  }

  .main_nav {
    width: 75%;
  }

  .tab_txt {
    width: 50%;
  }

  .tab_txt:nth-child(3) {
    /* index 3 because we have hidden mobile tabs */
    border-right: 0;
  }

  .delivery_title,
.contacts_title {
    left: -10%;
  }

  .catering_title {
    right: -11%;
  }
}
@media (max-width: 1000px) and (min-width: 901px) {
  .main_title {
    padding: 7% 0;
  }
}
@media (max-width: 900px) {
  .title,
.header,
.btn_block {
    display: none;
  }

  .delivery_content,
.catering_content,
.contacts_content {
    padding: 50px;
  }

  .hello {
    height: 40vh;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .title_mob {
    display: block;
    text-align: center;
    margin: 0 auto;
    color: whitesmoke;
    font-size: 2rem;
    opacity: 0.8;
    margin-bottom: 50px;
  }

  .item_pad {
    display: none;
  }

  .gallery {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
  }

  .gallery > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .gallery > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .gallery > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .gallery > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  .gallery > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }

  .mob_nav {
    display: block;
  }

  .team {
    height: 350px;
    width: 100%;
  }
}
@media (max-width: 900px) and (min-width: 769px) {
  .tab_txt {
    width: 50%;
  }

  .tab_btn a {
    font-size: 1.1rem;
  }

  .img_tab {
    height: 35px;
  }

  .tab_txt:nth-child(3) {
    /* index 3 because we have hidden mobile tabs */
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .call_action {
    padding: 20px;
  }

  .call_action .call_btn {
    margin-top: 120px;
    margin-bottom: 0;
  }

  .delivery_decor {
    display: none;
  }

  .catering_decor {
    width: 100%;
    height: 300px;
  }

  .delivery_content,
.catering_content,
.contacts_content,
.contacts_map {
    width: 100%;
  }

  .delivery,
.catering,
.contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contacts_map {
    height: 500px;
  }

  .main_title {
    font-size: 1.8rem;
    letter-spacing: -1px;
    line-height: 30px;
    padding-bottom: 10%;
    padding-top: 20%;
    width: 85%;
  }

  .container {
    width: 100%;
  }

  .call_subtitle {
    font-size: 1.5rem;
  }

  .menu_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .accordionDrop {
    margin-top: 25px;
  }

  .desktop_menu {
    display: none;
  }

  .mobile_menu {
    display: block;
  }

  .mob_menu {
    display: block;
    width: 100%;
    margin-top: 25px;
  }

  .menu_item,
.menu_item p {
    color: #0f0f0f;
  }

  .tabs {
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
            box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  }

  .tabs input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }

  .tab_mob {
    width: 100%;
    color: white;
    overflow: hidden;
  }
  .tab_mob-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1em;
    background: #232323;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
  }
  .tab_mob-label:hover {
    background: #0a0a0a;
  }
  .tab_mob-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .tab_mob-content {
    max-height: 0;
    padding: 0 1em;
    color: #0f0f0f;
    background: white;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .tab_mob-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #232323;
    cursor: pointer;
  }
  .tab_mob-close:hover {
    background: #0a0a0a;
  }

  input:checked + .tab_mob-label {
    background: #0a0a0a;
  }
  input:checked + .tab_mob-label::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  input:checked ~ .tab_mob-content {
    max-height: 100vh;
    padding: 1em;
  }
}
@media (max-width: 600px) {
  .call_action .call_btn {
    margin-bottom: 0px;
  }

  .call_btn {
    width: 200px;
  }

  .tab_btn .btn {
    margin-bottom: 15px;
  }

  .tab_btn .btn:first-child {
    margin-top: 15px;
  }
}

 .fundo{
  animation: scales 3s alternate  infinite;
  transform-origin: center;
}
.pao-baixo{
   animation: rotatepao 14s cubic-bezier(.1,.49,.41,.97)  infinite;
  transform-origin: center;
}
.pao-cima{
   animation: rotatepao 7s 1s cubic-bezier(.1,.49,.41,.97)  infinite;
  transform-origin: center;
}
.olhos{animation: olhos   2s  alternate  infinite;
   transform-origin: center;
}

.left-sparks{animation: left-sparks   4s  alternate  infinite;
      transform-origin: 150px 156px;
}

.right-sparks{animation: left-sparks   4s  alternate  infinite;
      transform-origin: 310px 150px;
}

.olhos{animation: olhos   2s  alternate  infinite;
   transform-origin: center;
}
@keyframes scales{
  from { transform: scale(0.98)}
  to{ transform: scale(1)}
}
@keyframes rotatepao{
  0% { transform:  rotate(0deg)}
  50% , 60%{ transform:  rotate(-20deg)}
  100%{  transform:  rotate(0deg) }
 
}
@keyframes olhos{
  0%{
    transform: rotateX(0deg);
  }
   100%{
    transform: rotateX(30deg);
  }
}
@keyframes left-sparks{
  0%{
    opacity: 0; 
  }
}
.main_404{
  min-height: 600px;
  margin: 0px auto;
  width: auto;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: dash 4s   alternate infinite;
}

@keyframes dash{
   0%, 30%{
     fill: 4B4B62;
    stroke-dashoffset:   0;
  }
   80%,100%{
     fill: transparent;
    stroke-dashoffset:  -200;
  }
}