:root {
  --white: #fff;
  --purple: #5e3383;
  --purple-dark: #3c2253;
  --gray: #96a5b8;
  --light-gray: #dfeeff;
  --green: #00e096;
  --red: #ff2d55;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background-image: url("http://agilitylabs.com.br/img/bg_01.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.wrapper {
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content {
  width: 40vw;
  min-width: 500px;
  max-width: 623px;
  height: 100%;

  padding: 5vh 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  border-radius: 0 8px 8px 0;

  background-color: var(--white);

  overflow: scroll;
}

.zero-padding {
  padding: 0;
}

.content::-webkit-scrollbar {
  display: none;
}

.content .container-logos {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content .logo {
  width: 90%;
  object-fit: cover;
  max-width: 200px;
}

.content .logo:first-child {
  margin-bottom: 30px;
}

.content .container-options {
  width: 100%;
  max-width: 400px;

  margin-top: 60px;
}

.input-select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--purple-dark);
  background: transparent;
  padding: 5px 10px;
  font-family: "Montserrat", sans-serif;
  margin: 0 5px;
  padding: 0 5px;
}

.content .option {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  width: 100%;
  height: 57px;
  border-radius: 10px;

  background: var(--purple);
  border: none;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--white);
  transition: all 250ms ease-in;

  margin-bottom: 15px;
}
.content .option:hover {
  filter: brightness(1.2);
}

.content footer {
  margin-top: 50px;
  max-width: 400px;

  text-align: center;
}

.featured-phrase {
  height: 100vh;
  max-width: 650px;
  padding: 80px 70px 80px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.featured-phrase p {
  font-size: 22px;
  color: #fff;
  margin-top: 15px;

  text-align: right;
}

table {
  position: relative;
}

table thead tr th {
  position: sticky;
  top: 0;
  background-color: var(--white);
}

@media (max-width: 1150px) {
  .featured-phrase {
    max-width: 500px;
    padding: 50px 40px 50px 10px;
  }
  .featured-phrase img {
    width: 80%;
  }

  .featured-phrase p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .featured-phrase {
    display: none;
  }

  .content {
    padding: 50px 20px;
    width: 100%;
    max-width: none;
    min-width: auto;
    border-radius: 0;
  }
}

@media (max-width: 450px) {
  .content .logo {
    width: 80%;
  }
}
