:root {
  --white: #ffffff;
  --background: #1A1A1A;
  --tidewater: #2F4F4E;
  --tidewater-darker: #021D1E;
  --highlight: #E8BD3B;

}

body {
  background-color: var(--background);



}

.list-parceiros {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 250px;
}

.list-parceiros li {
  margin: 20px;
}

main {
  background-color: #f1f1f1;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.whithe-color {
  color: #ffffff;
}

.section-title {
  font-size: 3em;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  margin: 0 auto;
  font-weight: 200;
  color: white;
}

.section-title-parceiros {
  font-size: 3em;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  margin: 0 auto;
  font-weight: 200;
  color: black;
}

.img-parceiro {
  border-radius: 15px;
  width: 250px;
  max-width: 250px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25em;
  font-weight: 500;
  color: white;
}


.section-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: .87em;
  color: white;
  font-weight: 300;
  line-height: 2em;
}

section {
  padding: 3em 0;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;

}


.whatsapp-mobile {

  background-color: #25D366;
  border-radius: 100%;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s ease-in-out;
  z-index: 10000;
  position: fixed;
  right: 1em;
  bottom: 1em;


}

.whatsapp-mobile i {
  font-size: 2em;
  color: white;
}







@media (min-width: 800px) {

  .section-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;

  }
}
@media (max-width: 960px) {

  .list-parceiros{
    flex-direction: column;
    padding: 60px 0;
  }
}


@media (min-width: 950px) {

  .whatsapp-mobile {

    display: none;


  }

  .whatsapp {
    z-index: 100000;
    background-color: transparent;
    position: static;
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease-in-out;
  }

  .whatsapp i {
    font-size: 2em;
    color: white;
  }


  .whatsapp:hover {
    transform: scale(1.1);
    cursor: pointer;
  }


}