@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --deg: -86deg;
  --trans: all 0.4s ease 0s;
}

body {
  font-family: "Lato", Arial, Helvetica, serif;
  font-size: 24px;
}

.header {
  display: flex;
  background-color: #000000;
  align-items: center;
  gap: 30px;
}
.header__h1 {
  font-size: 40px;
  color: #ffffff;
}
.header__logo {
  height: 80px;
  width: auto;
}

.concepts {
  background-color: #f7dc8a;
}
.concepts .concept__header {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 32px;
}
.concepts .concept__image--header {
  max-width: 50%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  border: 2px solid #000000;
}
.concepts .concept__content {
  max-width: 50%;
  font-size: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 32px;
}
.concepts .concept__ratings {
  display: flex;
  justify-content: space-evenly;
  max-width: 50%;
  font-size: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 32px;
}
.concepts .concept__ratings--positive {
  max-width: 40%;
  text-align: left;
}
.concepts .concept__ratings--negative {
  text-align: left;
  max-width: 40%;
}
.concepts .concept__rating--strong {
  font-weight: bold;
}
.concepts .concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  gap: 16px;
  padding-bottom: 16px;
}
.concepts .concept__grid--card {
  border: 2px solid #000000;
  margin: 16px;
}
.concepts .concept__grid--card--header {
  font-weight: bold;
  margin: 16px;
}
.concepts .concept__grid--card--content {
  margin: 16px;
}

@media only screen and (max-width: 1000px) {
  .concepts .concept__image--header {
    max-width: 90%;
  }
  .concepts .concept__content {
    max-width: 90%;
  }
  .concepts .concept__grid {
    display: block;
  }
  .concepts .concept__ratings {
    max-width: 90%;
  }
  .concepts .concept__ratings--positive {
    max-width: 50%;
    text-align: left;
  }
  .concepts .concept__ratings--negative {
    max-width: 50%;
  }
}
.team-members {
  background-color: #000000;
}

.team {
  padding: 2em 0 2em 2.5em;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member {
  margin: 1.5em 0 0.5em;
  padding: 0.73em;
  background: #f7dc8a;
  position: relative;
  list-style: none;
  display: inline-block;
  transform: scale(0.85);
  transition: var(--trans);
}
@media screen and (min-width: 1200px) {
  .member {
    width: 75%;
  }
}

.member:nth-of-type(even) {
  text-align: right;
  background: #f7dc8a;
}

.thumb {
  width: 13vmin;
  height: 13vmin;
  float: left;
  margin-right: 1.25em;
  background: linear-gradient(var(--deg), var(#000000) 0 70%, var(#f7dc8a) 0% 100%);
  transform: rotate(-4deg);
  transition: var(--trans);
  border-radius: 0.25em;
  overflow: hidden;
  margin-left: -3em;
  padding: 0.5em;
}

.member:nth-of-type(even) .thumb {
  --deg: 86deg;
  float: right;
  margin-left: 2em;
  margin-right: -3em;
  transform: rotate(4deg);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25em;
  filter: grayscale(1);
  background: var(#000000);
}

.member:hover {
  transform: scale(1);
  transition: var(--trans);
  filter: drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.5333333333));
}

.member:hover .thumb {
  padding: 0.1em;
  transition: var(--trans);
  transform: rotate(-1deg);
  --deg: -89deg;
}

.member:nth-of-type(even):hover .thumb {
  --deg: 91deg;
}

.member:hover .thumb img {
  filter: none;
  transition: var(--trans);
}

.description {
  padding-top: 1vmin;
}

.description p {
  padding: 0 2em;
  margin-bottom: 1em;
}

.team h3 {
  background: linear-gradient(182deg, rgba(255, 255, 255, 0) 60%, var(#f7dc8a) 0 100%) !important;
  display: inline;
  transform: rotate(-2deg);
  position: absolute;
  margin: 0;
  margin-top: -2.25em;
  left: 9vmin;
  padding: 0.5em 0.75em;
  color: white !important;
  border-radius: 0.25em;
  font-size: 32px;
  transform-origin: left bottom;
}

.member:nth-of-type(even) h3 {
  left: inherit;
  right: 9vmin;
  transform: rotate(2deg);
  transform-origin: right bottom;
  background: linear-gradient(-182deg, rgba(255, 255, 255, 0) 60%, var(#000000) 0 100%);
}

.member:hover h3 {
  transition: var(--trans);
  transform: rotate(0deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 59%, var(#000000) 0 100%);
}

.description p a {
  display: inline-block;
  margin: 0.5em 0 0 0;
  background: var(#000000);
  color: var(#f7dc8a);
  padding: 0.1em 0.5em 0.35em;
  border-radius: 0.5em;
  text-decoration: none;
  transition: var(--trans);
}

.description p a:hover {
  transition: var(--trans);
  color: var(#000000);
  background: var(#f7dc8a);
  font-weight: bold;
}

.description p a img {
  float: left;
  width: 22px;
  filter: invert(1);
  border-radius: 0.15em;
  padding: 2px;
  background: #fff;
  margin-right: 2px;
}

.footer {
  background-color: #000000;
  color: #f7dc8a;
  text-align: center;
  padding: 32px;
}

.concept__ul {
  list-style-type: circle;
  text-align: left;
}

.concept__ul p {
  margin-bottom: 16px;
  text-align: start;
}

.concept__li {
  margin-bottom: 12px;
}

.concept__video {
  width: 100%;
  margin-top: 32px;
}

.concept__li--text {
  margin-top: 16px;
}

/*# sourceMappingURL=styles.css.map */
