@import url(https://fonts.googleapis.com/css?family=Quicksand|Titillium+Web&display=swap);* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body,
html {
  scroll-behavior: smooth;
  font-size: 18px;
  font-family: "Titillium Web", sans-serif;
  background-color: #fafafa;
}

h1,
h2,
h3,
h4 {
  font-family: Quicksand;
}

.container {
  margin: 0 auto;
  max-width: 1000px;
  padding: 1rem;
  min-height: 90vh;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
}

p {
  padding: 5px 0;
}

.button {
  padding: 10px 25px;
  background: #1f1f1f;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  background: rgba(31, 31, 31, 0.9);
}

.button.full-width {
  width: 100%;
  text-align: center;
}

.button.centered {
  margin: 0 auto;
}

.about-img {
  width: 100%;
  max-width: 500px;
  display: inline;
  margin: 0 1rem 1rem 0;
  float: left;
}

.about-text {
  margin-bottom: 1rem;
}

.about-text a {
  width: 100%;
  text-align: center;
  margin: 1rem 0;
}

img {
  border: 1px solid #1f1f1f;
}

button {
  border: none;
}

.success-message {
  min-width: 450px;
  border: 5px solid green;
  background-color: #fff;
  padding: 1rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

.success-message strong {
  color: green;
}

.section__show {
  width: 100%;
}

.section__show img {
  width: 100%;
}

header {
  width: 100%;
  background: #fff;
  color: #1f1f1f;
  font-family: Quicksand;
}

header .header-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

header .heading {
  width: 100%;
  text-align: center;
}

header .heading h1 {
  font-weight: bolder;
  font-size: 2.4rem;
  text-transform: uppercase;
}

header .heading p {
  font-size: 1.05rem;
  text-align: left;
  letter-spacing: 0.52px;
}

header nav.links {
  width: 100%;
}

header nav.links ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0 2rem;
  padding-top: 10px;
}

header nav.links ul li a {
  display: inline-block;
  color: #1f1f1f;
  text-decoration: none;
}

header nav.links ul li a:hover {
  color: #000000;
}

@media only screen and (min-width: 768px) {
  header .header-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }

  header ul {
    height: 100%;
    -webkit-box-align: center;
            align-items: center;
  }

  header .heading {
    text-align: left;
  }

  .hidden-desktop {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .heading-sub {
    text-align: center !important;
    width: 100%;
  }

  .hidden-mobile {
    display: none;
  }
}

footer {
  width: 100%;
  background: #1f1f1f;
  display: grid;
  place-items: center;
  margin-top: 1rem;
  margin-bottom: -1rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  padding: 20px 30px;
}

footer a:hover {
  color: #f1f1f1;
  text-decoration: underline;
}

.grid {
  display: grid;
  width: 100%;
  grid-gap: 1rem;
}

.grid.cols-2 {
  grid-template-columns: 1fr;
}

.grid.cols-3 {
  grid-template-columns: 1fr;
}

@media only screen and (min-width: 768px) {
  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

section.section__work .work {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
  margin: 1rem 0;
}

@media only screen and (min-width: 768px) {
  section.section__work .work {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1024px) {
  section.section__work .work {
    grid-template-columns: repeat(3, 1fr);
  }
}

section.section__work .work .work-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

section.section__work .work .work-item img:hover {
  box-shadow: 0 0 7px 0 rgba(31, 31, 31, 0.5);
}

section.section__work .work .work-item a {
  color: black;
  text-decoration: none;
}

section.section__work .work .work-item a:hover {
  text-decoration: underline;
}

section.section__work .work .work-item h3 {
  font-size: 1rem;
  font-weight: lighter;
  padding-bottom: 3px;
}

section.section__work .work .work-item p {
  font-weight: 200;
  padding: 0.5rem 0;
}

label {
  font-weight: bold;
  padding-bottom: 3px;
}

input {
  display: block;
  width: 100%;
  padding: 7px;
  border: 1px solid #bdbbbb;
  font-size: 16px;
  background: transparent;
  margin-bottom: 10px;
  box-shadow: none;
  border-radius: 0;
}

input.invalid {
  border-color: red;
}

textarea {
  display: block;
  width: 100%;
  padding: 7px;
  border: 1px solid #bdbbbb;
  font-size: 16px;
  background: transparent;
  margin-bottom: 10px;
  resize: vertical;
  min-height: 100px;
  box-shadow: none;
  border-radius: 0;
  font-family: "Titilium Web", sans-serif;
}

textarea.invalid {
  border-color: red;
}

.input-addon {
  position: relative;
  width: 100%;
  height: 34px;
}

.input-addon .input-left {
  width: 200px;
  position: absolute;
  height: 34px;
  left: 0;
  top: 0;
  background: #bdbbbb;
  border: 1px solid #bdbbbb;
  cursor: default;
  outline: none;
  font-size: 0.9rem;
}

.input-addon input {
  position: absolute;
  width: calc(100% - 200px);
  top: 0;
  right: 0;
}

