@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
red {
  color: #fc3737;
}

body {
  font-family: Roboto;
  background-image: url("../img/fondo.jpg");
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
      grid-template-areas: 'nav' 'text' 'blue-arrow' 'red-arrow';
  margin: 0;
}

body nav {
  margin: 1em;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: nav;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
      grid-template-areas: "logo logo boton";
  -ms-flex-line-pack: end;
      align-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  body nav {
        grid-template-areas: "logo options boton";
  }
}

body nav #circle-logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: logo;
  width: 20vw;
  min-width: 67px;
  max-width: 150px;
}

@media (min-width: 992px) {
  body nav #circle-logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: logo;
    width: 8vw;
    max-width: 200px;
  }
}

body nav a {
  -ms-grid-column-align: right;
      justify-self: right;
  border: none;
}

body nav #contact-btn {
  width: 96px;
  height: 27px;
  border: none;
  background: #b90500;
  color: white;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

body nav #contact-btn:hover {
  background: #c83927;
}

body nav #menu {
  grid-area: options;
  display: none;
}

@media (min-width: 992px) {
  body nav #menu {
    display: inline;
  }
}

body nav #menu ul {
  list-style: none;
  margin: 10% auto 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  text-align: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

body nav #menu ul a {
  color: #000;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  letter-spacing: 5px;
}

body nav #menu ul li:hover a {
  color: #b90500;
}

body #initial-text {
  color: #000000;
  font-weight: bold;
  font-size: 12vw;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  body #initial-text {
    font-size: 9vw;
    margin: 0;
  }
}

body #red-arrow {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: red-arrow;
  display: -ms-grid;
  display: grid;
  padding: 1.5em;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1em;
      grid-template-areas: 'markets markets markets' 'm m m';
  background: #b90500;
  border: none;
  color: white;
  text-align: center;
  margin-top: -18%;
}

@media (min-width: 992px) {
  body #red-arrow {
    margin-top: -10%;
    padding-left: 40%;
    padding-right: 10%;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-areas: 'markets markets markets markets markets markets' 'm m m m m m';
    -webkit-clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 110%, 0% 110%);
            clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 110%, 0% 110%);
    -webkit-box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
            box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
  }
}

body #red-arrow h3 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: markets;
  margin-top: 22%;
}

@media (min-width: 992px) {
  body #red-arrow h3 {
    margin-top: 1%;
  }
}

body #red-arrow img {
  width: 20vw;
  border-radius: 100%;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  body #red-arrow img {
    width: 5vw;
  }
}

body #red-arrow span {
  font-size: 14px;
}

body #blue-arrow {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: blue-arrow;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 110%, 0% 110%);
  color: white;
  font-size: 4vw;
  background: #2A2C5C;
  -webkit-box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  body #blue-arrow {
    width: 40%;
    font-size: 20px;
  }
}

body #blue-arrow p {
  margin: 1.6em;
}

body #arrow {
  height: 50px;
  background: #b90500;
  margin: 0;
  border: none;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media (min-width: 992px) {
  body #arrow {
    display: none;
  }
}

body #cards {
  margin: 5px;
  grid-gap: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

@media (min-width: 992px) {
  body #cards {
    margin: 50px;
    grid-gap: 5%;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

body #cards .card {
  padding: 10px;
  height: auto;
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'card-image card-head' 'card-text card-text';
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  background: #F2F1F1;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #cards .card img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: card-image;
  -ms-grid-column-align: center;
      justify-self: center;
  height: 40px;
}

body #cards .card h4 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: card-head;
}

body #cards .card p {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: card-text;
  text-align: center;
  font-size: 10px;
}

@media (min-width: 992px) {
  body #cards .card p {
    padding: 1em;
    font-size: 15px;
  }
}

body #services {
  margin: 1em 1em;
  background: #F2F1F1;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 1em;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

@media (min-width: 992px) {
  body #services {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 'services-header services-header services-header' 'card-service card-service card-service';
  }
}

body #services h2 {
  grid-area: services-header;
  color: #b90500;
}

body #services .service-card #service-card1 {
  grid-area: card-service1;
}

body #services .service-card #service-card2 {
  grid-area: card-service2;
}

body #services .service-card #service-card3 {
  grid-area: card-service3;
}

body #services .service-card img, body #services .service-card svg {
  width: 80vw;
}

@media (min-width: 992px) {
  body #services .service-card img, body #services .service-card svg {
    width: 30vw;
  }
}

body #contact {
  margin: 1em 1em;
  background: #F2F1F1;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  padding: 1em;
}

@media (min-width: 992px) {
  body #contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
  }
}

body #contact input, body #contact select {
  border: none;
  width: 100%;
  height: 43px;
  background: rgba(209, 209, 209, 0.56);
  border-radius: 5px;
}

body #contact form {
  margin-bottom: 1em;
}

@media (min-width: 992px) {
  body #contact form {
    padding-right: 1em;
  }
}

body #contact .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body #contact .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

body #contact .container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: #eee;
}

body #contact .container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

body #contact .container:hover {
  background-color: #ccc;
}

body #contact .container input:checked ~ .checkmark {
  background-color: red;
}

body #contact input[type=submit] {
  background-color: #b90500;
  color: white;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);
}

@media (min-width: 992px) {
  #map {
    width: 50vw;
  }
}
/*# sourceMappingURL=main.css.map */