

#btns * {
  transition: all .3s ease-in-out;
  margin-top:2%;
}

#btns {
  max-width: 98%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-flow: row wrap;
  /*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);*/
}

.btn {
  position: relative;
  padding: 10px 20px 25px;
  width: 25%;
  background: #111;
  font-family: lato;
  cursor: pointer;
  box-sizing: border-box;
}

/* Button Backgrounds */
    .btn:nth-child(1) {
        background: #193c90;
    }

    .btn:nth-child(2) {
        background: #193c90;
    }

    .btn:nth-child(3) {
        background: #193c90;
    }

    .btn:nth-child(4) {
        background: #193c90;
    }

/* Arrows */
.btn:nth-child(1):after,
.btn:nth-child(2):after,
.btn:nth-child(3):after {
  position: absolute;
  top: 45%;
  right: -18px;
  z-index: 1;
  content: "";
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #117ec3;
  transition: all .3s ease-in-out;
}

.btn:nth-child(2):after {
  border-left: 20px solid #1491e1;
}

.btn:nth-child(3):after {
  border-left: 20px solid #2ba1eb;
}

/* Icon */
.btn .icon {
  display: block;
  margin: 10px auto;
  width: 80px;
  height: 80px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  color: #fff;
}

.btn .icon svg {
  fill: currentColor;
}

.btn .icon path {
  fill: currentColor;
}

.btn .icon {
  fill: currentColor;
}

/* Text Styles */
.btn h2 {
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
  font-family: raleway;
  font-size: 1em;
  line-height: 1em;
  font-weight: 400;
}

.btn p {
  color: #fff;
  text-align: center;
  font-size: 1em;
  line-height: 1.5em;
  font-weight: 300;
}

/* Hover Effects */
.btn:hover {
  background: #0b6ca9;
}

.btn:hover:after {
  border-left: 20px solid #0b6ca9;
}

.btn:hover .icon {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  color: #fff;
}

.btn:hover h2 {
  color: #fff;
}

/* Media Queries */
@media all and (max-width: 1400px) and (min-width: 701px) {
  .btn {
    width: 25%;
  }

  .btn:nth-child(2):after {
    border-left: 0px;
  }
}
@media all and (max-width: 700px) and (min-width: 0px) {
  .btn {
    display: block;
    width: 100%;
  }

  .btn:nth-child(1):after,
  .btn:nth-child(2):after,
  .btn:nth-child(3):after {
    border-left: 0px;
  }
}

body{
	background: url("../images/fondo.svg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:100%;
	height:auto;
}

.contenedor{
	height: auto;
}
.logos{
	height:25%;
}
