@import url("https://fonts.googleapis.com/css?family=Dosis&display=swap");
.txt-type > .txt {
  border-right: .2rem solid #f4f4f4; }

.txt-type > .txt {
  border-right: .2rem solid #f4f4f4; }

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

.btn-main, .btn-light, .btn-dark {
  display: inline-block;
  padding: .8rem 2rem;
  transition: all .5s;
  border: none;
  cursor: pointer; }

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

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

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

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

.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 auto; }

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

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

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

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

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

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

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

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

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

.txt-type > .txt {
  border-right: .2rem solid #f4f4f4; }

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

.item {
  position: relative;
  background: #ffbc00;
  overflow: hidden; }
  .item::after {
    content: '';
    position: absolute;
    display: block;
    background: inherit;
    opacity: .9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
    transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1); }
  .item:hover::after {
    transform: scale(2) translateX(0) translateY(0) rotate(-28deg); }
  .item:hover .item-image {
    transform: scale(1.15); }
  .item:hover .item-text {
    opacity: 1;
    transform: translateY(0); }
  .item-image {
    height: auto;
    transform: translateZ(0);
    display: block;
    transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1); }
  .item-image:before {
    content: '';
    display: block;
    padding-top: 75%;
    overflow: hidden; }
  .item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    line-height: 0; }
  .item-text {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    text-align: center;
    z-index: 1;
    color: #fff;
    transform: translateY(-20%);
    transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: 300ms; }
  .item-text-wrap {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%); }
  .item-text-title {
    font-size: 2rem;
    padding-bottom: 5rem;
    margin: 5px 0 0 0;
    position: relative; }
    .item-text-title a {
      color: #fff;
      cursor: pointer;
      text-align: center;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      height: 220%; }
  .item-text-category {
    text-transform: uppercase;
    font-size: 1.3rem;
    opacity: .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%; }

#logo {
  width: 70px;
  height: 70px;
  color: #fff;
  text-transform: uppercase; }

#main-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem; }
  #main-nav ul {
    display: flex; }
  #main-nav li {
    padding: 1rem 1.5rem; }
  #main-nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 3px transparent solid;
    transition: border-color .5s;
    padding-bottom: .5rem; }
    #main-nav a:hover {
      border-color: #ccc; }
    #main-nav a.current {
      border-color: #ffbc00; }

#header-home {
  background: url("../img/showcase01-resize.jpg") no-repeat center right/cover;
  position: relative;
  height: 100vh;
  color: #fff; }
  #header-home::before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    bottom: 0;
    width: 100%; }
  #header-home * {
    z-index: 10; }
  #header-home .header-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 18%; }
    #header-home .header-content h1 {
      font-size: 3.5rem;
      line-height: 1.2; }
    #header-home .header-content a {
      width: 10%;
      margin: 0 auto; }

#header-inner {
  background: url("../img/showcase01-resize.jpg") no-repeat 20% 30%/cover;
  height: 5.5rem;
  border-bottom: 3px solid #ffbc00;
  position: relative; }
  #header-inner::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    bottom: 0;
    width: 100%; }
  #header-inner * {
    z-index: 10; }

#home-a .specials {
  margin-top: 3rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(4, 1fr); }
  #home-a .specials .fas {
    color: #ffbc00;
    padding-bottom: .4rem; }

#home-b .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr); }
  #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-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-c .process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5rem;
  text-align: center; }
  #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;
    transition: all 1s; }
    #home-c .process-icon:hover {
      background: #ffbc00;
      transform: scale(1.15); }
      #home-c .process-icon:hover .process-step {
        background: #333;
        color: #fff; }
  #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;
    transition: all 1s; }

#about-a .about-info {
  display: grid;
  grid-template-areas: 'bioimage bio bio' 'aw1 aw2 aw3';
  grid-gap: 1.2rem; }
  #about-a .about-info .bio-image {
    grid-area: bioimage; }
  #about-a .about-info .bio {
    grid-area: bio;
    border-left: 3px solid #ffbc00;
    padding: 0.8rem;
    text-align: left; }
    #about-a .about-info .bio h4 {
      text-align: center;
      padding: 1.5rem; }
    #about-a .about-info .bio p {
      padding: 0 1rem; }
  #about-a .about-info .award-1 {
    grid-area: aw1; }
  #about-a .about-info .award-2 {
    grid-area: aw2; }
  #about-a .about-info .award-3 {
    grid-area: aw3; }
  #about-a .about-info .fas, #about-a .about-info .fab {
    color: #ffbc00;
    margin: 1rem; }

#about-b .progress {
  overflow: hidden;
  height: 20px;
  background: #ccc;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin-bottom: .3rem;
  position: relative; }
  #about-b .progress .js {
    position: absolute;
    height: 100%;
    color: #fff;
    text-align: center;
    background: #ffbc00;
    animation: jsmove 3s linear forwards; }

@keyframes jsmove {
  0% {
    width: 0; }
  100% {
    width: 90%; } }
    #about-b .progress .js::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
      z-index: 1;
      background-size: 50px 50px;
      animation: moveCandystripes 300ms linear forwards;
      overflow: hidden; }

@keyframes moveCandystripes {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
  #about-b .progress .hs {
    position: absolute;
    height: 100%;
    color: #fff;
    text-align: center;
    background: #ffbc00;
    animation: hsmove 3s linear forwards; }

@keyframes hsmove {
  0% {
    width: 0; }
  100% {
    width: 90%; } }
    #about-b .progress .hs::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
      z-index: 1;
      background-size: 50px 50px;
      animation: moveCandystripes 300ms linear forwards;
      overflow: hidden; }

@keyframes moveCandystripes {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
  #about-b .progress .nd {
    position: absolute;
    height: 100%;
    color: #fff;
    text-align: center;
    background: #ffbc00;
    animation: ndmove 3s linear forwards; }

@keyframes ndmove {
  0% {
    width: 0; }
  100% {
    width: 75%; } }
    #about-b .progress .nd::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
      z-index: 1;
      background-size: 50px 50px;
      animation: moveCandystripes 300ms linear forwards;
      overflow: hidden; }

@keyframes moveCandystripes {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
  #about-b .progress .ng {
    position: absolute;
    height: 100%;
    color: #fff;
    text-align: center;
    background: #ffbc00;
    animation: ngmove 3s linear forwards; }

@keyframes ngmove {
  0% {
    width: 0; }
  100% {
    width: 75%; } }
    #about-b .progress .ng::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
      z-index: 1;
      background-size: 50px 50px;
      animation: moveCandystripes 300ms linear forwards;
      overflow: hidden; }

@keyframes moveCandystripes {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
  #about-b .progress .rt {
    position: absolute;
    height: 100%;
    color: #fff;
    text-align: center;
    background: #ffbc00;
    animation: rtmove 3s linear forwards; }

@keyframes rtmove {
  0% {
    width: 0; }
  100% {
    width: 75%; } }
    #about-b .progress .rt::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
      z-index: 1;
      background-size: 50px 50px;
      animation: moveCandystripes 300ms linear forwards;
      overflow: hidden; }

@keyframes moveCandystripes {
  0% {
    width: 0; }
  100% {
    width: 100%; } }
  #about-b .progress .ex {
    position: absolute;
    height: 100%;
    color: #fff;
    text-align: center;
    background: #ffbc00;
    animation: exmove 3s linear forwards; }

@keyframes exmove {
  0% {
    width: 0; }
  100% {
    width: 60%; } }
    #about-b .progress .ex::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
      z-index: 1;
      background-size: 50px 50px;
      animation: moveCandystripes 300ms linear forwards;
      overflow: hidden; }

@keyframes moveCandystripes {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

#about-c .about-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
  align-items: center; }
  #about-c .about-logos img {
    margin: 0 auto;
    width: 75%; }

#contact-a .text-fields {
  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 {
    grid-area: name; }
  #contact-a .text-fields .email-input {
    grid-area: email; }
  #contact-a .text-fields .subject-input {
    grid-area: subject; }
  #contact-a .text-fields .phone-input {
    grid-area: phone; }
  #contact-a .text-fields .message-input {
    grid-area: message; }
  #contact-a .text-fields .text-input {
    padding: .5rem 1rem; }

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

#contact-a .notRobot {
  display: flex; }

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

#contact-c h1 {
  text-align: center;
  font-size: 3rem; }

#main-footer {
  background: #333;
  color: #fff;
  height: 5rem; }
  #main-footer a {
    color: #fff; }
  #main-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem; }
    #main-footer .footer-content .fab {
      margin-right: 1rem;
      border-radius: 50%;
      border: 2px #fff solid;
      height: 20px;
      width: 20px;
      line-height: 20px;
      text-align: center;
      padding: .5rem; }
      #main-footer .footer-content .fab:hover {
        background: #ffbc00;
        transition: all .5s; }

.txt-type > .txt {
  border-right: .2rem solid #f4f4f4; }

@media (max-width: 800px) {
  #header-home {
    height: 30rem; }
    #header-home .header-content {
      padding-top: 5rem; }
  #about-a .about-info .bio h4 {
    padding: 1rem 0 0; }
  #about-a .about-info .bio p {
    padding-bottom: 1rem; }
  .items {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 500px) {
  #main-nav {
    flex-direction: column;
    align-items: center; }
    #main-nav li {
      padding: 1rem; }
  #header-home {
    height: 10rem;
    border-bottom: 3px solid #ffbc00;
    background-position: 20% 30%; }
    #header-home .header-content {
      display: none; }
  #header-inner {
    height: 10rem; }
  #home-a .specials,
  #home-b .stats,
  #home-c .process,
  #about-c .about-logos,
  #contact-b .contact-info,
  .items {
    grid-template-columns: 1fr; }
  #home-a .specials div {
    border-bottom: 1px #f4f4f4 solid;
    padding-bottom: 1rem; }
    #home-a .specials div:last-child {
      border-bottom: none; }
  #home-b .stats div {
    padding: 2rem 0 1rem 0; }
  #about-a .about-info {
    grid-template-areas: 'bioimage' 'bio' 'bio' 'aw1' 'aw2' 'aw3'; }
    #about-a .about-info .bio p {
      padding-bottom: 1rem; }
  #about-c {
    padding: 1rem 0; }
    #about-c .about-logos {
      grid-gap: 1rem; }
      #about-c .about-logos img {
        width: 50%; }
  #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-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0; }
  #contact-c h1 {
    font-size: 2rem; }
  .item-image img {
    height: 97%; }
  #main-footer {
    height: 7rem; }
    #main-footer .footer-content {
      flex-direction: column;
      padding-top: 1rem;
      height: 5rem; } }

@media (max-height: 580px) {
  #header-home .header-content {
    padding-top: 3rem; }
    #header-home .header-content h1 {
      font-size: 3rem; }
    #header-home .header-content a {
      width: 15%; } }

@media (max-height: 330px) {
  #header-home .header-content h1 {
    font-size: 2rem; } }
