/* display this row with flex and use wrap (= respect columns' widths) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");



.row-flex {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}


/* vertical spacing between columns */

[class*="col-"] {
  margin-bottom: 5px;
}

.content {
  height: 100%;
  padding: 20px 10px 20px 0px;
  color: #fff;
}

.col-xs-6{
  width: 15%;
}

.textos{
  font-size: 17px;
  text-align: justify;
  color: #FFFFFF;
  margin-top: 5px;
  font-family:Verdana;
}

.textos1{
  font-size: 17px;
  text-align: justify;
  color: #0375ba;
  margin-top: 5px;
  font-family:Arial;
  font-weight:bold;
}

.container{
  margin-top: 15px;
}


/* Demo backgrounds and styling*/

.colour-1 {
  display: block;
  margin: 0 auto;
}

.colour-2 {
  background: #e5e5e5;
}

.colour-3 {
  display: block;
  margin: 0 auto;
}



body {
  padding: 20px 0;
  font-family: Roboto, sans-serif;
  background:  url("../img/fondob.jpg");
  width: 100%;
 
}

.content h3 {
  margin-top: 0px;
  font-weight: 300;
}

.titufor{
  font-size:20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #6e6e6d;
}


.input-box {
  position: relative;
  height: 55px;  
  width: 100%;
  background: #fff;
  margin: 0 20px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-left: 0px;
}
.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-box i {
  left: 20px;
  font-size: 30px;
  color: #707070;
}
.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  /*padding: 0 155px 0 65px;*/
  padding: 1em 155px 0 65px;
  background-color: transparent;
}
.input-box .button {
  right: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  background-color: #06adc7;
  cursor: pointer;
}
.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}

.m {
  margin: 3em 3em 3em 3em;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: #09f;

  animation: spin 1s ease infinite;
}

.adjust {
  border: 1px solid white;
  display: flex;
}
/* Responsive */
@media screen and (max-width: 500px) {
  .input-box {
    height: 66px;
    margin: 0 2px;
  }
  .input-box i {
    left: 12px;
    font-size: 25px;
  }
  .input-box input {
    padding: 0 112px 0 50px;
  }
  .input-box .button {
    right: 12px;
    font-size: 14px;
    padding: 8px 18px;
  }
}


/* Responsive */
@media screen and (max-width: 991px) {

.col-xs-6{
  width: 50%;
}

}





h1 {
  font-weight: 300;
  margin-bottom: 7px;
}


@media only screen and (max-width: 991px) {
  .row-flex {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column;


  }
}


@media (min-width: 600px) and (max-width: 991px) {
  .col-sm-6 {
    width: 100%;
  }
}