@import url("https://fonts.googleapis.com/css2?family=Open+Sans&family=Source+Sans+Pro:wght@700&display=swap");

:root {
  --dark-theme: #333;
  --theme: #3e6f9e;
  --margin-bottom: 40px;
  --margin-bottom-medium: 60px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  color: #333;
  font: 18px/1.5 "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
}

h5 {
  all: unset;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--margin-bottom);
}

.nav__links {
  list-style-type: none;
  padding: 0;
}

.nav__link {
  display: inline-block;
}

.nav__link {
  margin-right: 0.5em;
}

.nav__link--hide-mobile {
  display: none;
}

.cta {
  display: inline-block;
  -moz-box-pack: center;
  background: var(--theme);
  color: white;
  border-radius: 5px;
  border: 1px solid var(--theme);
  padding: 15px 10px;
  text-decoration: none;
  font-size: inherit;
  transition: background-color 500ms, color 500ms;
}

.cta:hover {
  background-color: white;
  color: var(--theme);
}

.hero {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: var(--max-width);
  padding: 1em 2em;
  margin: auto;
  margin-bottom: var(--margin-bottom);
}

.hero__headline {
  order: 1;
  max-width: 600px;
}

.below-wrapper {
  max-width: var(--max-width);
  margin: auto;
  padding: 1em 2em;
  margin-bottom: var(--margin-bottom);
}

.icon {
  height: 100px;
  fill: var(--theme);
  margin-right: 20px;
  margin-bottom: 20px;
}

.icon--js {
  background-color: currentColor;
  fill: #f7df1e;
}

.icon--ts {
  fill: #007acc;
}

.icon--redux {
  fill: #764abc;
}

.icon--django {
  fill: #092e20;
}

.service__list {
  padding-left: 18px;
}

.services {
  margin-bottom: var(--margin-bottom);
}

.services__service {
  margin-bottom: 5em;
}

.services__full {
  width: auto;
}

.services__service ul {
  padding: 0;
}


.services__blocks {
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
  margin-bottom: 2em;
}

.services__block h5 {
  font-weight: 700;
  margin-bottom: 2em;
  display: flex;
}

.faq {
  margin-bottom: var(--margin-bottom);
}

.faq__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq__element {
  width: 450px;
}

label {
  display: block;
  margin-bottom: 10px;
}

input:not([type="checkbox"]),
textarea,
select {
  font-family: inherit;
  font-size: 22px;
  width: 80%;
}

input:not([type="checkbox"]) {
  height: 60px;
}

.star {
  color: rgba(247, 210, 0, 0.99);
}

.testimonial__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonial__element {
  margin-bottom: var(--margin-bottom);
  width: 450px;
}

.testimonial__header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.testimonial__image {
  border-radius: 50%;
  margin-right: 50px;
}

.bio {
  font-size: 0.9em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.talk {
  margin-bottom: var(--margin-bottom-medium);
}

.talk__cta-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5em;
}

.bio__pic {
  border-radius: 10px;
  max-width: 100%;
}

footer {
  text-align: center;
}

footer ol {
  padding: 0;
}

footer ol li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  font-size: small;
}

/**utilities**/
.margin-bottom--medium {
  margin-bottom: var(--margin-bottom-medium);
}

.margin-bottom {
  margin-bottom: var(--margin-bottom);
}

@media screen and (min-width: 960px) {
  .nav {
    justify-content: space-between;
  }

  .nav__logo {
    padding-left: 15px;
  }

  .nav__link--hide-mobile {
    display: inline-block;
  }

  .hero {
    justify-content: space-between;
    align-items: center;
  }

  .hero__headline {
    order: 0;
  }

   .bio__element {
    width: 50%;
  }

  .service__list {
    margin-bottom: var(--margin-bottom-medium);
  }

  .bio__element--me {
    width: 35%;
  }
}