/* Cover */

.cover_about_us{
  background-image: url('/img/codigo.jpg');
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 400px;
  color: rgb(255, 255, 255);
  position: relative;
}

.cover_about_us .filter{
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.cover_about_us .filter{  
  display: flex;
  justify-content: center;
}

.cover_about_us .wrap{  
  display: flex;
  position: absolute;
  justify-content: space-between;
  bottom: 0;
  max-width: 960px;
}

.cover_about_us .title{
  display: inline-block;
  width: 40%;
}

h1{
  font-size: 4rem;
  margin-bottom: 15px;
}

.cover_about_us .title h3{
  font-size: 1.5rem;
  text-align: justify;
  margin-bottom: 15px;
}

.cover_about_us .title h4{
  float: right;
}

.cover_about_us .strengths{
  display: inline-block;
  width: fit-content;
}

.cover_about_us .strengths ul li{
  list-style: none;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cover_about_us .strengths .checked{
  color: rgb(30, 255, 0);
  margin-right: 15px;
}

/* Who we are */
.who_we_are, .our_vision{
  margin: 50px auto 0 auto;
}

.who_we_are h2{
  font-size: 3rem;
  text-align: center;
  margin-bottom: 40px;
}

.who_we_are p{
  font-size: 1.5rem;
  text-align: justify;
}

/*our_mission*/
.our_mission{
  background-image: url('/img/make_things_happen.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom;
  background-position-y: -100px;
  margin-top: 50px;
  width: 100%;
}

.our_mission .filter{
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  /* background-color: rgba(0, 0, 0, 0.45); */
  /* color: white; */
}

.our_mission .wrap{
  padding: 50px 0;
}

.our_mission h2{
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.our_mission .container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mission_image{
  width: 500px;
  height: 300px;
  background-color: blueviolet;
  overflow: hidden;
  position: relative;
}

.mission_image img{
  height: 100%;
  position: relative;
  left: -70px;
}

.our_mission p, .our_vision p{
  font-size: 1.5rem;
  text-align: justify;
  width: 70%;
}


.our_vision .container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.our_vision h2{
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.vision_image{
  width: 500px;
  height: 300px;
  background-color: blueviolet;
  overflow: hidden;
  position: relative;
}

.vision_image img{
  height: 100%;
  position: relative;
  left: -50px;
  /* right: 0; */
}

.values{
  margin: 50px auto;
}

.values h2{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.wrap_values{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.value{
  padding: 15px;
  border: 8px solid #0091beff
}

.value h3{
  text-align: center;
  font-size: 2em;
  margin: 15px;
}

.value img{
  height: 60px;
  display: block;
  margin: 0 auto;
}

.value p{
  text-align: justify;
  font-size: 1.5em;
}

@media screen and (max-width:1024px){
  .our_mission .wrap h2{
    text-align: center;
  }
  .our_mission .wrap .container{
    flex-direction: column;
  }
  .our_mission .wrap .container p{
    width: 100%;
  }
  .our_mission .wrap .container .mission_image{
    width: 80vw;
    height: 50vw;
  }

  .our_vision h2 {
    text-align: center;
  }
  .our_vision .container {
    flex-direction: column;
  }
  .our_vision .container .vision_image{
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
    height: 50vw;
  }
  .our_vision .container p{
    width: 100%;
  }

  .values .wrap_values{
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width:768px){
  .values .wrap_values{
    grid-template-columns: 1fr;
  }

  .cover_about_us .wrap{
    flex-direction: column;
  }
  .cover_about_us .title {
    width: 100%;
  }
}