/* CSS RESET */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
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,
details,
figcaption,
figure,
footer,
header,
hgroup,
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;
}

/*Empieza CSS general proyecto Lina Useche */
* {
  box-sizing: border-box;
}

body {
  background-color: whitesmoke;
  width: 100%;
  height: 100%;
}

.header {
  width: 100%;
  display: block;
  position: sticky;
  margin: 0 auto;
  text-align: center;
  top: 0%;
  background-color: whitesmoke;
  box-shadow: 0px 30px 30px whitesmoke;
  z-index: 20;
}

.header img {
  float: left;
  width: 5%;
  margin-top: 1%;
  margin-left: 2%;
}

.header .menu {
  text-align: center;
  float: right;
  width: 90%;
}

.header .menu .material-icons {
  font-size: 60pt;
  display: inline-block;
  position: relative; /*PARA CENTRAR EL ICONO*/
  right: 6.8%;
  cursor: pointer;
}

.header::after {
  content: "";
  display: block;
  clear: both;
}

.msg {
  width: 2%;
  position: fixed;
  top: 48%;
  right: 4%;
  text-align: center;
  font-size: 2.5vw;
}

.sec1 {
  width: 100%;
  min-height: 20%;
  display: block; /*limpiar floats*/
  margin-bottom: 15%;
}

.sec1 .titulo {
  width: 60%;
  float: left;
  margin-top: 5%;
}

.sec1 .titulo h2 {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 2vw;
  color: #ff3300;
  padding-left: 36%;
  margin-bottom: 2%;
}

.sec1 .titulo span {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 6vw;
  color: #333366;
  padding-left: 36%;
}

.sec1 .about {
  width: 50%;
  float: right;
  margin-top: 5%;
  padding-right: 15%;
  padding-left: 2%;
  color: #333366;
  font-size: 1.7vw;
  font-family: "Source San Pro", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

.sec1 .fas.fa-chevron-down {
  font-size: 3vw;
  color: #333366;
  position: absolute;
  bottom: 0%;
  right: 30%;
}

.sec1::after {
  content: "";
  display: block;
  clear: both;
}

/*SECCION GRID 1*/

.sec2 {
  width: 100%;
  display: block;
}

.sec2 .grid-1 {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(12, 8%);
  align-content: center;
  justify-content: center;
  grid-gap: 4px;
}

.sec2 .grid-1 img {
  grid-column: 2/7;
  grid-row: 1/3;
  width: 100%;
}

.sec2 .grid-1 .numero.n1 {
  grid-column: 7/9;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6vw;
  font-weight: 500;
  text-align: right;
  color: #333366;
  opacity: 0.6;
  margin-right: 5%;
}

.sec2 .grid-1 .servicio.srv1 {
  grid-column: 9/12;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 4vw;
  font-weight: 500;
  text-align: left;
  color: #333366;
  padding-top: 20%;
}

.sec2 .grid-1 .desc-serv.desc1 {
  grid-column: 2/6;
  grid-row: 4/5;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #333366;
  font-size: 2vw;
}

.sec2 .grid-1 .bullets {
  grid-column: 9/12;
  grid-row: 4/5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2vw;
  font-weight: 400;
  text-align: left;
  color: #333366;
  padding-top: 20%;
  line-height: 1.3;
}

.sec2 .grid-1 .bullets a {
  text-decoration: none;
  color: #ff3300;
}

.sec2 .grid-1 .bullets a:hover {
  text-decoration: underline;
}

/*SECCION GRID 2*/

.sec2 .grid-2 {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(12, 8%);
  align-content: center;
  justify-content: center;
  grid-gap: 4px;
  margin-top: 20%;
}

.sec2 .grid-2 img {
  grid-column: 7/12;
  grid-row: 1/3;
  width: 100%;
}

.sec2 .grid-2 .numero.n2 {
  grid-column: 5/7;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6vw;
  font-weight: 500;
  text-align: center;
  color: #333366;
  opacity: 0.6;
  margin-right: 5%;
}

.sec2 .grid-2 .servicio.srv2 {
  grid-column: 2/5;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 4vw;
  font-weight: 500;
  text-align: left;
  color: #333366;
  padding-top: 20%;
}

.sec2 .grid-2 .desc-serv.desc2 {
  grid-column: 7/11;
  grid-row: 4/5;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #333366;
  font-size: 2vw;
}

.sec2 .grid-2 .bullets {
  grid-column: 2/5;
  grid-row: 4/5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2vw;
  font-weight: 400;
  text-align: left;
  color: #333366;
  padding-top: 20%;
  line-height: 1.3;
}

/*SECCION GRID 3*/
.sec2 .grid-3 {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(12, 8%);
  align-content: center;
  justify-content: center;
  grid-gap: 4px;
  margin-top: 20%;
}

.sec2 .grid-3 img {
  grid-column: 2/7;
  grid-row: 1/3;
  width: 100%;
}

.sec2 .grid-3 .numero.n3 {
  grid-column: 7/9;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6vw;
  font-weight: 500;
  text-align: right;
  color: #333366;
  opacity: 0.6;
  margin-right: 5%;
}

.sec2 .grid-3 .servicio.srv3 {
  grid-column: 9/12;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 4vw;
  font-weight: 500;
  text-align: left;
  color: #333366;
  padding-top: 20%;
  display: block;
}

.sec2 .grid-3 .desc-serv.desc3 {
  grid-column: 2/6;
  grid-row: 4/5;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #333366;
  font-size: 2vw;
}

.sec2 .grid-3 h2 {
  grid-column: 9/12;
  grid-row: 3/4;
  margin: 2% 0%;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 2vw;
  color: #ff3300;
}

.sec2 .grid-3 .bullets {
  grid-column: 9/12;
  grid-row: 4/5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2vw;
  font-weight: 400;
  text-align: left;
  color: #333366;
  padding-top: 10%;
  line-height: 1.3;
}

/*SECCION GRID 4 */

.sec2 .grid-4 {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(12, 8%);
  align-content: center;
  justify-content: center;
  grid-gap: 4px;
  margin-top: 20%;
}

.sec2 .grid-4 img {
  grid-column: 7/12;
  grid-row: 1/3;
  width: 100%;
}

.sec2 .grid-4 .numero.n4 {
  grid-column: 5/7;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6vw;
  font-weight: 500;
  text-align: left;
  color: #333366;
  opacity: 0.6;
  margin-right: 5%;
}

.sec2 .grid-4 .servicio.srv4 {
  grid-column: 2/5;
  grid-row: 2/4;
  font-family: "IBM Plex Mono", monospace;
  font-size: 4vw;
  font-weight: 500;
  text-align: left;
  color: #333366;
  padding-top: 20%;
}

.sec2 .grid-4 .desc-serv.desc4 {
  grid-column: 7/11;
  grid-row: 4/5;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #333366;
  font-size: 2vw;
}

.sec2 .grid-4 .bullets {
  grid-column: 2/5;
  grid-row: 4/5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2vw;
  font-weight: 400;
  text-align: left;
  color: #333366;
  padding-top: 20%;
  line-height: 1.3;
}

/*BANNER FINAL*/

.banner {
  width: 100%;
  display: block;
  position: relative;
}

.banner h1 {
  width: 40%;
  font-size: 5vw;
  color: #ff3300;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: block;
  margin: 15% auto 5% auto;
  text-align: center;
}

.banner a {
  width: 20%;
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2vw;
  color: #333366;
  font-weight: 500;
  text-decoration: none;
  margin: 5% auto 15% auto;
  text-align: center;
  line-height: 1.3;
  animation: click 5s infinite;
}

@keyframes click {
  0%,
  13%,
  23% {
    opacity: 1;
  }

  10%,
  20% {
    opacity: 0;
  }
}

.banner a:hover {
  text-decoration: underline;
}


/*Media queries para HEADER*/
@media screen and (max-width: 900px) {
  .header img {
    display: none;
  }

  .header .menu .material-icons {
    font-size: 50pt;
    right: 6%;
  }

  .msg {
    font-size: 5vw;
    right: 8%;
  }
}

/*Media queries SECCIÓN UNO*/
@media screen and (max-width: 900px) {
  .sec1 {
    margin-bottom: 35%;
  }

  .sec1 .titulo {
    margin-top: 20%;
  }

  .sec1 .titulo h2 {
    font-size: 4vw;
  }

  .sec1 .titulo span {
    font-size: 10vw;
  }

  .sec1 .about {
    width: 60%;
    float: left;
    margin-top: 10%;
    padding-right: 2%;
    padding-left: 22%;
    font-size: 3vw;
  }

  .sec1 .fas.fa-chevron-down {
    display: none;
  }
}

/*Media queries SECCION 2 - GRID*/

@media screen and (max-width: 900px) {
  .sec2 .grid-1 img {
    grid-column: 2/8;
  }

  .sec2 .grid-1 .numero.n1 {
    grid-column: 8/11;
    grid-row: 1/2;
    font-size: 15vw;
    opacity: 0.4;
    text-align: right;
    margin-right: 5%;
    padding-top: 50%;
  }

  .sec2 .grid-1 .servicio.srv1 {
    grid-column: 7/12;
    font-size: 6vw;
    padding-top: 30%;
  }

  .sec2 .grid-1 .bullets {
    grid-column: 7/11;
    font-size: 3.5vw;
  }

  .sec2 .grid-1 .desc-serv.desc1 {
    grid-column: 4/10;
    grid-row: 5/6;
    font-weight: 500;
    font-size: 3.5vw;
    margin-top: 15%;
    margin-bottom: 20%;
  }

  /*GRID 2*/
  .sec2 .grid-2 img {
    grid-column: 6/12;
  }

  .sec2 .grid-2 .numero.n2 {
    grid-column: 3/5;
    grid-row: 1/2;
    font-size: 15vw;
    opacity: 0.4;
    margin-top: 70%;
    margin-left: 10%;
  }

  .sec2 .grid-2 .servicio.srv2 {
    grid-column: 4/7;
    grid-row: 3/4;
    font-size: 6vw;
    padding-top: 25%;
  }

  .sec2 .grid-2 .bullets {
    grid-column: 4/8;
    font-size: 3.5vw;
  }

  .sec2 .grid-2 .desc-serv.desc2 {
    grid-column: 4/10;
    grid-row: 5/6;
    font-weight: 500;
    font-size: 3.5vw;
    margin-top: 20%;
    margin-bottom: 20%;
  }

  /*GRID 3*/
  .sec2 .grid-3 img {
    grid-column: 2/8;
  }

  .sec2 .grid-3 .numero.n3 {
    grid-column: 8/11;
    grid-row: 1/2;
    font-size: 15vw;
    opacity: 0.4;
    margin-right: 5%;
    padding-top: 50%;
  }

  .sec2 .grid-3 .servicio.srv3 {
    grid-column: 7/11;
    grid-row: 2/4;
    font-size: 6vw;
    padding-top: 40%;
    word-spacing: -7px;
  }

  .sec2 .grid-3 .desc-serv.desc3 {
    grid-column: 4/10;
    grid-row: 5/6;
    font-weight: 500;
    font-size: 3.5vw;
    margin-top: 10%;
    margin-bottom: 20%;
  }

  .sec2 .grid-3 h2 {
    grid-column: 7/12;
    grid-row: 4/5;
    font-size: 4vw;
  }

  .sec2 .grid-3 .bullets {
    grid-column: 7/11;
    grid-row: 4/5;
    font-size: 3.5vw;
    padding-top: 40%;
    margin-bottom: 30%;
  }

  /*GRID 4*/

  .sec2 .grid-4 img {
    grid-column: 6/12;
  }

  .sec2 .grid-4 .numero.n4 {
    grid-column: 3/5;
    grid-row: 1/2;
    font-size: 15vw;
    opacity: 0.4;
    margin-left: 10%;
    margin-top: 70%;
  }

  .sec2 .grid-4 .servicio.srv4 {
    grid-column: 4/7;
    grid-row: 3/4;
    font-size: 6vw;
    padding-top: 25%;
  }

  .sec2 .grid-4 .desc-serv.desc4 {
    grid-column: 4/10;
    grid-row: 5/6;
    font-weight: 500;
    font-size: 3.5vw;
    margin-top: 20%;
    margin-bottom: 20%;
  }

  .sec2 .grid-4 .bullets {
    grid-column: 4/9;
    font-size: 3.5vw;
  }
}

/*Media queries BANNER*/

@media screen and (max-width: 900px) {
  .banner {
    margin-top: 25%;
    margin-bottom: 25%;
  }

  .banner h1 {
    font-size: 7vw;
  }

  .banner a {
    width: 40%;
    font-size: 4vw;
  }
}

/*Media queries MOVIL FOOTER*/
@media screen and (max-width: 900px) {
 
}
