.container {
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: auto;
  overflow: hidden;
}

.btn-main, .btn-light, .btn-dark, .btn-proj {
  display: inline-block;
  padding: 0.8rem 2rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.btn-main {
  color: #333;
  background-color: #ffbc00;
}

.btn-light {
  color: #333;
  background-color: #f4f4f4;
}

.btn-dark {
  color: #fff;
  background-color: #333;
}

.btn-proj {
  padding: 1rem 2.5rem;
  color: #fff;
  background-color: #333;
  margin-top: 18px;
  display: hidden;
}

button[class^='btn-']:hover,
a[class^='btn-']:hover,
input[class^='btn-']:hover {
  background-color: #ffbc00;
}

.btn-proj:hover {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.bg-main {
  background: #ffbc00;
  color: #fff;
}

.bg-light {
  background: #f4f4f4;
  color: #000;
}

.bg-dark {
  background: #333;
  color: #fff;
}

.bg-medium {
  background: #ccc;
  color: #000;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.py-1 {
  padding: 1rem 0;
}

.py-2 {
  padding: 2rem 0;
}

.py-3 {
  padding: 3rem 0;
}

.py-4 {
  padding: 4rem 0;
}

.my-1 {
  margin: 1rem 0;
}

.my-2 {
  margin: 2rem 0;
}

.my-3 {
  margin: 3rem 0;
}

.my-4 {
  margin: 4rem 0;
}

.mx-1 {
  margin: 0 1rem;
}

.mx-2 {
  margin: 0 2rem;
}

.mx-3 {
  margin: 0 3rem;
}

.mx-4 {
  margin: 0 4rem;
}

.bottom-line {
  height: 2px;
  width: 3rem;
  background: #ffbc00;
  display: block;
  margin: 0 auto 1rem auto;
}

.section-title {
  font-size: 2rem;
  display: block;
  padding-bottom: 0.5rem;
  text-align: center;
  font-weight: 100;
  text-transform: uppercase;
}

#work-a .lead-2 {
  display: none;
}

.items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.item {
  position: relative;
  background: #ffbc00;
  overflow: hidden;
}

.item::after {
  content: '';
  position: absolute;
  display: block;
  background: inherit;
  opacity: 0.9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
          transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
  -webkit-transition: -webkit-transform 3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 3s cubic-bezier(0.2, 1, 0.3, 1);
}

.item:hover::after {
  -webkit-transform: scale(2) translateX(0) translateY(0) rotate(-28deg);
          transform: scale(2) translateX(0) translateY(0) rotate(-28deg);
}

.item:hover .item-image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.item:hover .item-text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  display: block;
}

.item-image {
  height: auto;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  display: block;
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 500ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

.item-image::before {
  content: '';
  display: block;
  padding-top: 75%;
  overflow: hidden;
}

.item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 0;
}

.item-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 3;
  color: #fff;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
  -webkit-transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), transform 500ms cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.item-text-wrap {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.item-text-title {
  font-size: 2rem;
  padding: 0 1rem;
  margin: 5px 0 0 0;
}

.item-text-category {
  text-transform: uppercase;
  font-size: 1.4rem;
  opacity: 0.9;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Dosis', sans-serif;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

h2, h3, h4 {
  text-transform: uppercase;
}

img {
  width: 100%;
  height: 100%;
}

#logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: #fff;
  text-transform: uppercase;
}

.flip-card {
  background-color: transparent;
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.flip-card:hover .flip-card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.flip-card-front {
  background-color: #f4f4f4;
  color: black;
}

.flip-card-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f4f4f4;
  color: #E73c7E;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
}

#main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
}

#main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

#main-nav li {
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
}

#main-nav a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 3px transparent solid;
  padding-bottom: 0.5rem;
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
}

#main-nav a:hover {
  border-color: #ccc;
}

#main-nav a.current {
  border-color: #ffbc00;
}

#header-home {
  background: linear-gradient(-45deg, #EE7752, #E73c7E, #23A6D5, #23D5AB);
  background-size: 200% 200%;
  -webkit-animation: bganim 10s ease-in-out infinite;
          animation: bganim 10s ease-in-out infinite;
  height: 100vh;
  color: #fff;
}

#header-home .header-content {
  text-align: center;
  padding-top: 10%;
}

#header-home .header-content h1 {
  font-size: 4rem;
  line-height: 1.2;
}

#header-inner {
  background: linear-gradient(-45deg, #EE7752, #E73c7E, #23A6D5, #23D5AB);
  background-size: 200% 200%;
  -webkit-animation: bganim 10s ease-in-out infinite;
          animation: bganim 10s ease-in-out infinite;
  height: 5.5rem;
}

@-webkit-keyframes bganim {
  0% {
    background-position: 60% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 60% 50%;
  }
}

@keyframes bganim {
  0% {
    background-position: 60% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 60% 50%;
  }
}

#home-a .specials {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#home-a .specials .fas, #home-a .specials .fab {
  color: #ffbc00;
  padding-bottom: 0.4rem;
}

#home-b .stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

#home-b .stats li {
  line-height: 2;
}

#home-b .stats li .stats-title {
  font-size: 1.5rem;
}

#home-b .stats li .stats-number {
  font-size: 2rem;
  font-weight: bold;
}

#home-b .stats div {
  padding: 3rem 0;
}

#home-b .stats div:nth-child(odd) {
  background: #f4f4f4;
}

#home-b .stats div:nth-child(even) {
  background: #ccc;
}

#home-c .process {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  text-align: center;
}

#home-c .process-step {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 28px;
  background: #ffbc00;
  color: #fff;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  line-height: 15px;
  padding: 1rem;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#home-c .process-icon {
  border-radius: 50%;
  background: #333;
  color: #fff;
  padding: 2rem;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#home-c .process-icon:hover {
  background: #ffbc00;
  width: 90px;
  height: 90px;
  line-height: 90px;
  color: #fff;
}

#home-c .process-icon:hover .process-step {
  background: #333;
  color: #fff;
}

#about-a .about-info {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'bio bio bio'  'header header header' 'aw1 aw2 aw3';
  grid-gap: 1.2rem;
}

#about-a .about-info .bio-image {
  position: relative;
  grid-area: bioimage;
  height: 200px;
  width: 150px;
  left: 80px;
}

#about-a .about-info .bio {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: bio;
  border-left: 3px solid #ffbc00;
  padding: 0.8rem;
}

#about-a .about-info .interest-header {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: header;
}

#about-a .about-info .award-1 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: aw1;
}

#about-a .about-info .award-2 {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: aw2;
}

#about-a .about-info .award-3 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: aw3;
}

#about-a .about-info .award-1 .fas,
#about-a .about-info .award-2 .fas,
#about-a .about-info .award-3 .fas {
  color: #ffbc00;
  margin: 1rem;
}

#about-b .progress {
  overflow: hidden;
  height: 20px;
  background: #ccc;
  border-radius: 5px;
  margin-bottom: 0.3rem;
}

#about-b .progress-fill-java {
  -webkit-animation: progressjava 1s ease-in-out;
          animation: progressjava 1s ease-in-out;
}

#about-b .progress-fill-j2ee {
  -webkit-animation: progressj2ee 1.5s .1s ease-in-out;
          animation: progressj2ee 1.5s .1s ease-in-out;
}

#about-b .progress-fill-spring {
  -webkit-animation: progressspring 1.5s .1s ease-in-out;
          animation: progressspring 1.5s .1s ease-in-out;
}

#about-b .progress-fill-html {
  -webkit-animation: progresshtml 1.5s .1s ease-in-out;
          animation: progresshtml 1.5s .1s ease-in-out;
}

#about-b .progress-fill-javascript {
  -webkit-animation: progressjavascript 1.5s .1s ease-in-out;
          animation: progressjavascript 1.5s .1s ease-in-out;
}

#about-b .progress-fill-sql {
  -webkit-animation: progresssql 1.5s .1s ease-in-out;
          animation: progresssql 1.5s .1s ease-in-out;
}

#about-b .progress-fill-java, #about-b .progress-fill-j2ee, #about-b .progress-fill-spring, #about-b .progress-fill-html, #about-b .progress-fill-javascript, #about-b .progress-fill-sql {
  height: 100%;
  color: #fff;
  text-align: center;
  background: #ffbc00;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@-webkit-keyframes progressjava {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

@keyframes progressjava {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

@-webkit-keyframes progressj2ee {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes progressj2ee {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@-webkit-keyframes progressspring {
  0% {
    width: 0%;
  }
  100% {
    width: 60%;
  }
}

@keyframes progressspring {
  0% {
    width: 0%;
  }
  100% {
    width: 60%;
  }
}

@-webkit-keyframes progresshtml {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes progresshtml {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@-webkit-keyframes progressjavascript {
  0% {
    width: 0%;
  }
  100% {
    width: 65%;
  }
}

@keyframes progressjavascript {
  0% {
    width: 0%;
  }
  100% {
    width: 65%;
  }
}

@-webkit-keyframes progresssql {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes progresssql {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

#contact-a .text-fields {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'name email' 'subject phone' 'message message';
  grid-gap: 1.2rem;
  margin-bottom: 1.2rem;
}

#contact-a .text-fields .name-input {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: name;
}

#contact-a .text-fields .subject-input {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: subject;
}

#contact-a .text-fields .email-input {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: email;
}

#contact-a .text-fields .phone-input {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: phone;
}

#contact-a .text-fields .message-input {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: message;
  height: 100px;
}

#contact-a .text-fields .text-input {
  padding: 0.5rem 1rem;
}

#contact-a button[type="submit"] {
  width: 50%;
}

#contact-a button[type="submit"]:hover {
  background: #333;
  opacity: 0.9;
}

#contact-b {
  border-bottom: 2px dotted #222;
}

#contact-b .contact-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

#project-a {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0;
  right: 0;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 3;
}

#project-a .project-body ul li {
  font-size: 1.3rem;
  margin-left: 10px;
  line-height: 2;
}

#project-a .project-body .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2rem 0;
}

#project-a .project-body .links .proj-url {
  letter-spacing: .1rem;
  font-size: 1.3rem;
  color: #E73c7E;
  font-weight: bold;
}

#project-a .hide {
  display: none;
}

#project-a #project-wrap {
  width: 70vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #f4f4f4;
  overflow: auto;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#project-a .project-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13fr;
      grid-template-columns: 1fr 13fr;
  padding: 1.5rem;
  background: #f4f4f5;
  border-bottom: 10px solid transparent;
  -o-border-image: linear-gradient(-45deg, #EE7752, #E73c7E, #23A6D5, #23D5AB) 30 round;
     border-image: linear-gradient(-45deg, #EE7752, #E73c7E, #23A6D5, #23D5AB) 30 round;
}

#project-a .project-header h1 {
  letter-spacing: .3rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#project-a #cancel {
  cursor: pointer;
}

.slideAnim {
  -webkit-animation-name: slideanim;
          animation-name: slideanim;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
}

@-webkit-keyframes slideanim {
  0% {
    -webkit-transform: translateX(90vh);
            transform: translateX(90vh);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideanim {
  0% {
    -webkit-transform: translateX(90vh);
            transform: translateX(90vh);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#main-footer {
  background: #333;
  color: #fff;
  height: 5rem;
}

#main-footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-footer .footer-content .social .fab {
  margin-right: 1rem;
  border: 2px #fff solid;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0.5rem;
  color: #fff;
}

#main-footer .footer-content .social .fab:hover {
  background: #ffbc00;
  color: #fff;
}

#main-footer .footer-content .social a {
  background: #333;
}

@media (max-width: 800px) {
  #header-home {
    height: 30rem;
  }
  #header-home .header-content {
    padding-top: 5rem;
  }
  #project-a #project-wrap {
    width: 86vw;
  }
  #work-a .lead-1 {
    display: none;
  }
  #work-a .lead-2 {
    display: block;
  }
  #work-a .items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  #work-a .items .item-text-title {
    font-size: 1.2rem;
    padding: 0 1rem;
    margin: 5px 0 0 0;
  }
  #work-a .items .item-text-category {
    text-transform: uppercase;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
  }
  #work-a .items .item-text {
    -webkit-transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), transform 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-transition-delay: 750ms;
            transition-delay: 750ms;
  }
  #main-footer {
    height: 7rem;
  }
  #main-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    height: 5rem;
  }
}

@media (max-width: 500px) {
  #main-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #main-nav li {
    padding: 1rem;
    font-size: 1rem;
  }
  #project-a #project-wrap {
    width: 95vw;
  }
  #project-a #project-wrap h1 {
    font-size: 1.3rem;
  }
  #project-a #project-wrap h2 {
    font-size: 1rem;
  }
  #project-a #project-wrap ul li {
    font-size: 1rem;
  }
  #project-a #project-wrap p {
    font-size: 1rem;
  }
  #project-a #project-wrap .links {
    display: block;
  }
  #project-a #project-wrap .links .proj-url {
    font-size: .7rem;
  }
  #project-a #project-wrap .project-body * {
    margin-left: 1px;
  }
  #header-home {
    height: 15rem;
    border-bottom: 3px solid #ffbc00;
  }
  #header-home .header-content h1, #header-home .header-content p, #header-home .header-content a {
    display: none;
  }
  #header-home .header-content .flip-card {
    display: block !important;
    position: relative;
    top: -65px;
  }
  #home-a .specials,
  #home-b .stats,
  #home-c .process,
  #about-d .testimonials,
  #contact-b .contact-info,
  #work-a .items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #about-a .about-info {
        grid-template-areas: 'bio bio bio'  'header header header' 'aw1 aw1 aw1' 'aw2 aw2 aw2' 'aw3 aw3 aw3';
  }
  #home-a .specials div {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 1rem;
    padding-top: .5rem;
  }
  #home-a .specials div:last-child {
    border: none;
  }
  #home-b .stats div {
    padding: 2rem 0 1rem 0;
  }
  #work-a .item-text {
    -webkit-transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), transform 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-transition-delay: 750ms;
            transition-delay: 750ms;
  }
  #work-a .lead-1 {
    display: none;
  }
  #work-a .lead-2 {
    display: block;
  }
  #contact-a .text-fields {
        grid-template-areas: 'name' 'subject' 'email' 'phone' 'message';
  }
  #contact-b div {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px #555 solid;
  }
  #contact-b div:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #main-footer {
    height: 7rem;
  }
  #main-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    height: 5rem;
  }
}

@media (max-height: 580px) {
  #header-home {
    height: 30rem;
  }
  #header-home .header-content {
    padding-top: 2rem;
  }
  #header-home .header-content h1 {
    font-size: 2rem;
  }
  #main-nav li {
    font-size: 1.2rem;
  }
  #work-a .item-text {
    -webkit-transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    transition: opacity 1.1s cubic-bezier(0.2, 1, 0.3, 1), transform 1.1s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 1.1s cubic-bezier(0.2, 1, 0.3, 1);
    -webkit-transition-delay: 750ms;
            transition-delay: 750ms;
  }
}
/*# sourceMappingURL=main.css.map */