@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

:root {
  --line-pattern: #18bc9c;
  --line-border-empty: #e0e0e0;
}

* {
  box-sizing: border-box;
}

.container.projeto {
  display: flex;
  width: 95vw;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  border-radius: 50px;
  color: Black;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  border: solid 3px black;
  position: relative;
  transition: all 0.7s ease-in;
}

.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
  background-color: white;
  background-size: 20px;
  transition: opacity 0.3s ease-in;
}

@media (max-width: 960px) {
  .container {
    width: 100 vw;
  }
}

.foto-perfil {
  height: 10%;
  width: 10%;
  border-radius: 50%;
}

.icones {
  padding-left: 5px;
}

.titulosBrancos {
  text-decoration: underline;
  text-underline-position: under;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}

.titulosVerdes {
  text-decoration: underline;
  text-underline-position: under;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--line-pattern);
}

.paragrafoBrancos {
  color: white !important;
}

.jumbotron {
  margin-bottom: 0px;
}

html {
  scroll-behavior: smooth;
}

p {
  color: black;
}

.corPrimaria {
  background-color: var(--line-pattern);
}

.itemMenu {
  color: white;
}

.credits {
  background-color: #2c3e50;
  padding: 0px;
  margin: 0px;
}

p.footer {
  margin: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: white;
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.container.selecionador {
  display: flex;
  align-items: center;
  justify-content: center;
}

.selector {
  background-color: white;
  color: black;
  border-radius: 10%;
  height: 60px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  border-color: var(--line-border-empty);
  transition: 0.4s ease-in;
  cursor: pointer;
}

.selector.active {
  border-color: var(--line-pattern);
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.conquest {
  display: inline-block;
  padding-left: 10%;
}

.certify {
  background-color: white;
  color: black;
  display: none;
}

.certify.active {
  display: block;
  overflow-x: hidden;
}

.certificadoUdemy {
  margin: 10px;
  margin-top: 10px;
  width: 80vw;
  align-items: center;
  justify-content: center;
}

.certificadoDIO {
  margin: 10px;
  width: 80vw;
  align-items: center;
  justify-content: center;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.box {
  background-color: lightgray;
  display: flex;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
  transform: translateX(400%);
  transition: transform 0.7s ease;
}

.box:nth-of-type(even) {
  transform: translateX(-400%);
}

.box.show {
  transform: translateX(0);
}
