@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0; }

input,
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  border-radius: 0; }

body {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  text-align: center; }
  body .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10px;
    background-color: #1a1b1d;
    z-index: 10;
    -webkit-transition: background-color 0.8s ease, padding 0.5s ease,  opacity 1s ease;
    -o-transition: background-color 0.8s ease, padding 0.5s ease,  opacity 1s ease;
    transition: background-color 0.8s ease, padding 0.5s ease,  opacity 1s ease;
    margin-top: 0; }
    @media (min-width: 1260px) {
      body .menu {
        padding: 10px; } }
    body .menu .cent {
      width: 1200px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: auto;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    body .menu .firstline {
      align-items: center;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media (min-width: 1260px) {
        body .menu .firstline {
          width: unset; } }
      body .menu .firstline .logo {
        width: 60px;
        border-radius: 50%; 
        padding: 4px;}
      body .menu .firstline .orizontal {
        display: block; }
        body .menu .firstline .orizontal img {
          width: 30px;
          height: 30px;
          cursor: pointer; }
        @media (min-width: 1260px) {
          body .menu .firstline .orizontal {
            display: none; } }
    body .menu .date {
      display: none; }
      body .menu .date ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        body .menu .date ul li {
          list-style: none;
         }
        body .menu .date ul li a {
          color: #D2FF00;
          text-decoration: none; }
          body .menu .date ul li #white {
            color: #fff; }
          body .menu .date ul li #white:hover {
            color: #1a1b1d; }

          body .menu .date ul li a {
            list-style: none;
            padding: 15px 25px;
            margin: 5px;
            -webkit-transition: background-color 0.5s ease, color 0.5s ease;
            -o-transition: background-color 0.5s ease, color 0.5s ease;
            transition: background-color 0.5s ease, color 0.5s ease;
            cursor: pointer;
            font-size: 16px; }
            
          body .menu .date ul  li a:hover {
            background-color: #D2FF00;
            color: #1a1b1d; }
      @media (min-width: 1260px) {
        body .menu .date {
          display: block; } }
  body .menuall {
    height: 100%;
    position: fixed;
    width: 100%;
    background-color: #1a1b1d;
    z-index: 1000;
    padding: 20px;
    overflow: auto;
    text-align: left; }
    body .menuall .firstline {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 100%; }
      body .menuall .firstline .logo {
        width: 70px; }
      body .menuall .firstline .orizontal {
        display: block;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        body .menuall .firstline .orizontal img {
          width: 30px;
          height: 30px;
          cursor: pointer; }
    body .menuall .date {
      margin: 40px 0px 0px 0px; }
      body .menuall .date li {
        color: #fff;
        padding: 7px;
        font-size: 20px;
        list-style: none;
        text-decoration: none;
        cursor: pointer; }
        body .menuall .date a {
          color: #fff;
         padding-right: 40px;
          text-decoration: none;
          cursor: pointer; 
          }
      body .menuall .date #white {
        color: #D2FF00; }
  body h1 {
    color: #1a1b1d;
    padding-top: 160px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    body h1 img {
      width: 50px; }
      @media (min-width: 576px) {
        body h1 img {
          width: 80px; } }
    @media (min-width: 576px) {
      body h1 {
        padding-top: 250px; } }
  body .contact {
    -webkit-animation-name: slideUp;
            animation-name: slideUp;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: block;
    max-width: 1200px;
    margin: 60px auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 576px) {
      body .contact {
        padding: 0 40px;
        margin: 100px auto; } }
    @media (min-width: 1260px) {
      body .contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes slideUp {
  from {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }
    body .contact .left {
      width: 100%; }
      @media (min-width: 1260px) {
        body .contact .left {
          width: 50%; } }
      body .contact .left img {
        width: 100%; }
    body .contact .right {
      width: 100%;
      height: 100%;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      @media (min-width: 1260px) {
        body .contact .right {
          width: 50%; } }
      body .contact .right .inputright {
        background-color: #1a1b1d;
        padding: 15px;
        width: 100%; }
        @media (min-width: 1260px) {
          body .contact .right .inputright {
            padding: 50px; } }
        body .contact .right .inputright input {
          width: 100%;
          padding: 10px;
          color: #fff;
          border: 2px solid #fff;
          margin: 15px 0;
          background-color: #1a1b1d; }
        body .contact .right .inputright input::-webkit-input-placeholder {
          color: white; }
        body .contact .right .inputright input::-moz-placeholder {
          color: white; }
        body .contact .right .inputright input:-ms-input-placeholder {
          color: white; }
        body .contact .right .inputright input::-ms-input-placeholder {
          color: white; }
        body .contact .right .inputright input::placeholder {
          color: white; }
        body .contact .right .inputright textarea {
          width: 100%;
          padding: 10px;
          color: #fff;
          border: 2px solid #fff;
          margin: 15px 0;
          background-color: #1a1b1d;
          height: 110px; }
          @media (min-width: 1260px) {
            body .contact .right .inputright textarea {
              max-width: 485px;
              height: 90px; } }
        body .contact .right .inputright textarea::-webkit-input-placeholder {
          color: white; }
        body .contact .right .inputright textarea::-moz-placeholder {
          color: white; }
        body .contact .right .inputright textarea:-ms-input-placeholder {
          color: white; }
        body .contact .right .inputright textarea::-ms-input-placeholder {
          color: white; }
        body .contact .right .inputright textarea::placeholder {
          color: white; }
        body .contact .right .inputright button {
          margin-top: 10px;
          background-color: #d2ff00;
          width: 100%;
          font-size: 20px;
          color: #1a1b1d;
          border: 0;
          font-weight: 600;
          cursor: pointer;
          padding: 10px 0; }
          @media (min-width: 1260px) {
            body .contact .right .inputright button {
              padding: 15px 70px;
              width: unset; } }
        body .contact .right .inputright button:hover {
          background-color: #e0fa6d; }
          body .back {
            background-color: #1a1b1d;
            margin-top: 150px; }
            body .back .in {
      max-width: 1200px;
      margin: auto;
      display: block; }
      @media (min-width: 992px) {
        body .back .in {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
      body .back .in .contact {
        width: 90%;
        margin: auto; }
        @media (min-width: 992px) {
          body .back .in .contact {
            width: 40%; } }
        body .back .in .contact h1 {
          display: flex;
          align-items: center;
          font-size: 30px;
          color: #fff;
          padding: 50px 0 25px 20px; }
          body .back .in .contact h1 img{ 
          margin-right: 10px;
          width: 50px;
          }
        body .back .in .contact a {
          display: block;
          color: #fff;
          text-decoration: none;
          padding: 10px 0;
          text-align: left;
          font-size: 18px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          body .back .in .contact a img {
            width: 30px;
            margin-right: 20px; }
      body .back .in .mapa {
        width: 100%;
        height: 200px; }
        @media (min-width: 992px) {
          body .back .in .mapa {
            width: 60%;
            height: auto; } }
        body .back .in .mapa iframe {
          width: 100%;
          height: 99%; }
            body .back .date {
              text-align: center;
              color: #fff;
              padding: 40px 0; }

              .error { color: red;
                margin-top: 10px; }
              .success { color: green; 
              margin-top: 10px;}
              * body .tot {
                display: block; }
              * body .totnone {
                display: none; }
                * body .tot .date span {
                  font-family: 'Pacifico', cursive;
                  font-size: 14px; }