@font-face {
  font-family: "Times Italic";
  src: url("../fonts/Times-Italic.eot");
  src: url("../fonts/Times-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Times-Italic.woff2") format("woff2"), url("../fonts/Times-Italic.woff") format("woff"), url("../fonts/Times-Italic.ttf") format("truetype"), url("../fonts/Times-Italic.svg#Times-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Times Italic", Georgia, "Times New Roman", serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 20%;
  color: #7a7a7a;
}

.d-flex {
  display: flex;
  justify-content: space-evenly;
}

header {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 2;
  background: white;
}
header .logo {
  width: 2.5rem;
  height: 4rem;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-left: 2rem;
}
header nav h4 {
  flex: 1;
  cursor: pointer;
}

#header-hero {
  width: 100%;
}

#hire-text {
  text-align: center;
  margin-bottom: 2rem;
}

section {
  margin: 3rem 0;
}
section h4 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

#phone-number, #email-address {
  text-align: center;
}

hr {
  margin: 2rem 0;
}

form {
  box-shadow: 0 0 1rem black;
  padding: 2rem 25%;
}
form .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
form .form-row:last-child {
  margin-bottom: 0;
}
form .form-row label {
  line-height: 1.5rem;
}
form .form-row textarea {
  height: 10rem;
  min-height: 10rem;
}
form .form-row input {
  height: 3rem;
}

p, h3 {
  line-height: 1rem;
}

#lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80%;
  height: 90%;
  box-shadow: 0 0 1rem black;
  background: white;
  transition: 0.5s transform ease-in-out;
  z-index: 3;
}
#lightbox.opened {
  transform: translate(-50%, -50%) scale(1);
}
#lightbox #close-lightbox {
  font-size: 2rem;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}
#lightbox .artwork {
  padding: 2rem;
  border: 0.5rem solid black;
  box-shadow: inset 0 0 1rem 0px black;
  max-width: calc(65vw - 4rem);
  max-height: calc(65vh - 4rem);
  margin-bottom: 1.5rem;
  transition: 0.2s all ease-in-out;
  background: white;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: fixed;
}

#loading-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: white;
  z-index: 10;
  top: 0;
  left: 0;
}
#loading-container #loading-inner-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#loading-container #loading-inner-wrapper .logo {
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  height: 7.5rem;
  width: 5rem;
  transform: translateX(0.5rem);
  margin-bottom: 2rem;
}
#loading-container #loading-inner-wrapper #loading {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(45deg, black, #ded3d3);
  border-radius: 50%;
  position: relative;
  animation-name: spin;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  margin-bottom: 2rem;
}
#loading-container #loading-inner-wrapper #loading:after {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.artwork-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
.artwork-wrapper .artwork {
  padding: 2rem;
  min-height: 10rem;
  min-width: 5rem;
  border: 0.5rem solid black;
  box-shadow: inset 0 0 1rem 0px black;
  max-height: 15rem;
  margin-bottom: 1.5rem;
  background: white;
  cursor: pointer;
  position: relative;
}
.artwork-wrapper .artwork.thin-border {
  border: 0.25rem solid black;
}
.artwork-wrapper .artwork:after {
  content: "Loading...";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

a {
  text-decoration: none;
  color: #007cad;
}

input[type=submit] {
  color: #007cad;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  border: 0.1rem solid #007cad;
  padding: 1rem;
  height: unset !important;
}

#form-notification {
  display: none;
}

#invalid-email {
  display: none;
  color: red;
  font-size: 1rem;
}

.hyperlink {
  color: #007cad;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.25rem;
  cursor: pointer;
}
.hyperlink:hover > .hyperlink-arrow {
  transform: translateX(0.5rem);
}
.hyperlink .hyperlink-arrow {
  transition: 0.2s all ease-in-out;
  width: 1rem;
  height: 1rem;
  fill: #007cad;
  margin-left: 0.5rem;
}

#bullets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  width: 70%;
  text-transform: uppercase;
  margin: 0 auto;
}
#bullets p {
  letter-spacing: 0.3rem;
  line-height: 2rem;
}

.bullet {
  background-color: #7a7a7a;
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 50%;
  margin: 0 0.5rem;
}

#name {
  letter-spacing: 2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 3rem;
}

#logo {
  width: 10rem;
  height: 15rem;
  margin: 2rem auto;
}

footer {
  border-top: 0.1rem solid #7a7a7a;
  text-align: center;
}
footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
footer p {
  margin: 0.5rem 0;
  line-height: 1.5rem;
}

#hamburger {
  width: 60px;
  height: 45px;
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 4;
  display: none;
}
#hamburger span {
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #7a7a7a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#hamburger span:nth-child(1) {
  top: 0px;
}
#hamburger span:nth-child(2) {
  top: 18px;
}
#hamburger span:nth-child(3) {
  top: 18px;
}
#hamburger span:nth-child(4) {
  top: 36px;
}
#hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media screen and (max-width: 1050px) {
  #hamburger {
    display: block;
    z-index: 5;
  }

  header {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 40vw;
    height: 100vh;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.2s transform ease-in-out;
    z-index: 4;
  }
  header.opened {
    transform: translateX(0);
  }
  header .logo {
    margin-bottom: 2rem;
  }
  header nav {
    flex-direction: column;
    margin: 0;
  }
  header nav h4 {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 800px) {
  #bullets {
    width: 100%;
  }

  form {
    padding: 2rem;
  }
}
@media screen and (max-width: 450px) {
  body {
    margin: 0 5%;
  }
}

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