@font-face {
  font-family: Kiro;
  font-weight: bold;
  src: url("../fonts/Kiro_Bold.otf") format("opentype");
}

@font-face {
  font-family: Kiro;
  font-weight: light;
  src: url("../fonts/Kiro_Light.otf") format("opentype");
}

.cover {
  width: 100%;
  height: 700px;
  background-image: url('slide-site-m3.jpg');
  background-position: center;
  /* background-size: cover; */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-in-cover {
  margin-right: 470px;
  border: 4px solid white;
  font-size: 40px;
  color: white;
  font-weight: bold;
  background-color: rgba(0,0,0,0.3);
  font-family: Kiro;
  width: 100%;
  padding: 10px;
  max-width: 550px;
  text-align: center;
}


@media (max-width: 991px) {
  .text-in-cover{
    margin-right: 0px;
  }
}

@media (max-width: 480px) {
  .cover {
    width: 100%;
    height: 300px;
    background-image: url('slide-site-m3.jpg');
    background-position: center 20px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .text-in-cover {
    position: absolute;
    left: 11px;
    top: 130px;
    /* margin-right: 270px; */
    border: 1px solid white;
    font-size: 15px;
    color: white;
    font-weight: bold;
    background-color: rgba(0,0,0,0.3);
    font-family: Kiro;
    /* width: 100%; */
    padding: 7px;
    /* max-width: 550px; */
    text-align: center;
    /* position: absolute; */
  }
}

.solutions {
  width: 80%;
  background: white; 

  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  margin-top: -90px;
  border-radius: 20px;
  padding: 0 20px 20px 0;
} 


.top-solutions{
  width: 100%;
  /* background: rgba(0, 0, 255, 0.3); */
  padding-top: 30px;

  display: flex;
  justify-content: center;
}

.image-solutions{
  width: 400px;
  height: 400px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.image-solutions img{
  max-width: 400px;
  max-height: 400px;
}

.text-solutions{
  width: 420px;
  height: 400px;
  padding: 20px;
  position: relative;
  text-align: justify;
  /* background-color: red; */
  margin-left: 35px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-solutions h2 {
  color: var(--primary);
  font-size: 38px;
  font-weight: bold;
}

.text-solutions p {
  font-size: 20px;
  margin-top: 7px;
}

.text-solutions button {
  background: transparent;
  border: 3px solid var(--primary);
  padding:7px 12px;
  border-radius: 7px;
  font-size: 23px;
  font-weight: 300;
  position: absolute;
  bottom: 0;
  right: -20px;
}

@media (max-width: 1107px) {
  .text-solutions button {
    right: 0px;
  }
}

.bottom-solutions {
  margin-top: 20px;
  width: 80%;
  background-color: white;

  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  align-items: center;
  padding: 20px 15px;
}

.logo-solutions{
  width: 140px;
  /* background: blue; */
  margin: 5px 10px;
}

@media (max-width: 1019px) {
  .logo-solutions{
    margin: 5px 5px;
  }
}

.bottom-solutions img {
  max-width: 140px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .top-solutions{  
   flex-direction: column;
   align-items: center;
  }

  .text-solutions{
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .text-solutions button {
    position: static;
    margin-top: 20px;
  }

  .bottom-solutions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-solutions{
    margin: 5px 10px;
  }
}

@media (max-width: 525px) {
  .solutions {
    width: 95%;
    padding: 0 0 20px 0;
  }

  .bottom-solutions{
    width: 95%;
  }

  .text-solutions h2 {
    font-size: 30px;
  }

  .image-solutions{
    width: 100%;
    height: auto;
  }

  .image-solutions img {
    width: 370px;
    height: 370px;
  }
}

@media (max-width: 480px) {
  .solutions {
    width: 80%;
    background: white;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    margin-top: -50px;
    border-radius: 20px;
    padding: 0 20px 20px 0;
  }
  
}

@media (max-width: 413px) {
  .image-solutions img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 333px) {
  .image-solutions img {
    width: 270px;
    height: 270px;
  }
}


.we-are-already{
  width: 80%;
  /* padding: 20px; */

  display: flex;
  flex-direction: column;

  background: white;

  margin-top: 180px;
  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.image-waa{
  width: 500px;
  height: 250px;
  background-image: url('../images/imagem_mesa_de_escritório.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-top: -120px;
}

.text-waa{
  width: 470px;
  margin: 10px auto 0;
  text-align: center;
}

.text-waa h2{ 
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 10px;
}

@media (max-width: 991px){
  .we-are-already{
    width: 95%;
  }
}

@media (max-width: 648px) {
  .image-waa{
    width: 400px;
    height: 170px;
  }
}

@media (max-width: 552px) {
  .text-waa{
    width: 350px;
  }
}

@media (max-width: 648px) {
  .we-are-already{
    margin-top: 120px;
  }

  .image-waa{
    width: 330px;
    height: 100px;
    margin-top: -70px;
  }
}

@media (max-width: 408px) {
  .image-waa{
    width: 270px;
  }

  .text-waa{
    width: 260px;
  }
}

.why-etarget{
  width: 100%;
  margin-top: 30px;

  min-height: 200px;

  /* background: blue; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-etarget span{
  background: transparent;
  border: 3px solid var(--primary);
  padding:7px 12px;
  border-radius: 7px;
  font-size: 23px;
  font-weight: 300;
  text-align: center;
}

.icons-wet{
  width: 100%;
  padding: 20px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* background: red; */
}

.item-wet{

  width: 200px;
  padding: 10px;
  /* background: blue; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 40px;
}

.item-wet img{
  width: 120px;
  margin-bottom: 20px;
}

.item-wet p{
  font-size: 20px;
}

@media (max-width: 758px) {
  .icons-wet{
    flex-wrap: wrap;
    justify-content: center;
  }

  .item-wet{margin: 7px 10px;}
}

.mission-vision-values{
  width: 100%;
  min-height: 200px;
  /* background: blue;  */

  display: flex;

}

.mvv-left{
  width: 50%;
  min-height: 200px;
  /* background: pink; */

  display: flex;
  justify-content: flex-start;
  align-items: center;

  position: relative;
}

.texts-mvv-left{
  width: calc(100% - 40px);
  height: 100%;
  /* background: blue; */
  padding: 20px;
}

.transparency{
  transform: rotate(-90deg);
  font-size: 35px;
  color: var(--primary);
  height: 30px;
  position: absolute;
  right: -60px;
  font-weight: bold;
}

.text-inside h2 {
  color: var(--primary);
}

.text-inside p { margin-bottom: 10px;}

.mvv-right {
  width: 50%;
  min-height: 200px;
  background: var(--primary);

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px 7px 20px 7px;
  padding: 15px 0;
  color: white;
}

.connect{
  transform: rotate(-90deg);
  font-size: 35px;
  color: white;
  height: 30px;
  position: absolute;
  left: -80px;
  font-weight: bold;
}

.text-mvv-right{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-culture{
  width: 70%;
  min-height: 20px;
  /* background-color: red; */
}

.our-culture h3 {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .mission-vision-values{
    flex-direction: column;
  }

  .mvv-left{
    width: 100%;
  }

  .mvv-right{
    width: 100%;
  }

  .mvv-right {
    border-radius: 7px 7px 20px 20px;
  }
}

.testimonials{
  margin-top: 50px;
  width: 100%;
  height: 500px;

  background-image: url('../images/background.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  align-items: center;
  color: white;
}

.testimonials h2 {
  font-size: 30px;
}

.testimonials-content{
  width: 100%;
  height: calc(100% - 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow{
  background-image: url('../images/next.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 2;
}

.prev{
  transform: rotate(-180deg);
}

.comment{
  /* background: blue; */

  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.active {
  display: flex;
}

.image-testy{
  background-color: var(--primary);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.image-testy img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

.text-testi{
  margin-top: 9px;
  width: 270px;
  font-size: 20px;
}

.title-name{
  margin-top: 10px;
}

.comment span{
  margin-top: 5px;
  font-size: 20px;
  font-weight: bold;
}

.txt-green{
  color: var(--primary);
}

@media (max-width: 466px) {
  .testimonials-content{
    position: relative;
    justify-content: center;
  }

  .arrow {
    position: absolute;
    width: 30px;
    height: 30px;
  }

  .next {
    right: 0;
    margin-top: -80px;
  }

  .prev{
    left: 0;
    margin-top: -80px;
  }
}

.come-to-out-team{
  width: 100%;
  height: 400px; 
  margin-top: 160px;
  background: var(--primary);
  margin-bottom: 200px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  position: relative;
  border-radius:  7px;
  color: white;
  text-align: center;
}

.come-to-out-team h1{
  margin-top: 270px;
}

.image-ctot{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  
  position: absolute;
  top: -90px;
}

.image-ctot img{
  width: 200px; 
  height: 200px;
}

.form{
  margin-top: 50px;
  width: 400px;
  height: 340px;
  background: white;
  padding: 13px;
  color: black;
  border-radius: 7px;
  text-align: left;
}

.group-form{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.group-form label{
  font-weight: bold;
  font-size: 17px;
  margin: 10px 0 3px;
}

.group-form input, .group-form select{
  padding: 10px;
  border-color: #bcbcbc !important;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  font-family: Kiro;
}

.group-form input::placeholder{
  font-family: Kiro;
}

.send {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-sent{
  background: var(--primary);
  border: 1px solid var(--primary);
  padding:7px 12px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 300;
  color: white;
}

.group-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

@media (max-width: 428px) {
  .form{
    width: 95%;
  }
}