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

.btn-main, .btn-light, .btn-dark {
  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: #87e5cf;
}

.btn-light {
  color: #333 !important;
  background-color: #f4f4f4;
  margin-top: 10px;
}

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

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

.bg-main {
  background: #87e5cf;
  color: #333;
}

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

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

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

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

.bottom-line {
  height: 2px;
  width: 3rem;
  background: #87e5cf;
  display: block;
  margin-top: 0 auto 1rem auto;
  position: absolute;
  left: 48.5%;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  display: block;
}

.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: #87e5cf;
  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: 1s cubic-bezier(0.4, 1, 0.3, 1);
  transition: 1s cubic-bezier(0.4, 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.1);
          transform: scale(1.1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

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

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

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

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

.item-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  z-index: 1;
  color: #333;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  -webkit-transition: opacity 1.1s cubic-bezier(0.4, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.4, 1, 0.3, 1);
  transition: opacity 1.1s cubic-bezier(0.4, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.4, 1, 0.3, 1);
  transition: opacity 1.1s cubic-bezier(0.4, 1, 0.3, 1), transform 500ms cubic-bezier(0.4, 1, 0.3, 1);
  transition: opacity 1.1s cubic-bezier(0.4, 1, 0.3, 1), transform 500ms cubic-bezier(0.4, 1, 0.3, 1), -webkit-transform 500ms cubic-bezier(0.4, 1, 0.3, 1);
}

.item-text-wrap {
  width: 100%;
  position: absolute;
  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.2rem;
  opacity: 0.7;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
}

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

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

ul {
  list-style-type: none;
}

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

img {
  width: 100%;
}

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

#main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header-home {
  background: url("../dist/img/showcase.jpg") no-repeat center right/cover;
  height: 100vh;
  color: #fff;
}

#header-home ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header-home li {
  padding: 1rem 1.5rem;
}

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

#header-home a:hover {
  border-color: #ccc;
}

#header-home a.current {
  border-color: #87e5cf;
}

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

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

#header-inner {
  background: url("../dist/img/showcase.jpg") no-repeat 30% 30%/cover;
  height: 5.5rem;
  border-bottom: 3px solid #87e5cf;
}

#header-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header-inner li {
  padding: 1rem 1.5rem;
}

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

#header-inner a:hover {
  border-color: #ccc;
}

#header-inner a.current {
  border-color: #87e5cf;
}

#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);
  font-weight: bold;
}

#home-a .specials .fas {
  color: #87e5cf;
  padding-bottom: 0.4rem;
}

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

#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: 1.5rem;
  font-weight: bold;
}

#home-b .stats div {
  padding: 35px;
}

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

#home-b .stats div:nth-child(even) {
  background-color: #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: #87e5cf;
  color: #333;
  border-radius: 50%;
  height: 13px;
  width: 13px;
  line-height: 15px;
  padding: 1rem;
  -webkit-transition: all 1s;
  transition: all 1s;
}

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

#home-c .process-icon:hover {
  background: #87e5cf;
  width: 80px;
  height: 80px;
  line-height: 80px;
}

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

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

#about-a .about-info .bio-image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: imagee;
}

#about-a .about-info .bio {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: bio;
  border-left: 3px solid #87e5cf;
  padding: 0.8rem;
  text-align: center;
}

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

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

#about-a .about-info .award-3 {
  -ms-grid-row: 2;
  -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: #87e5cf;
  margin: 1rem;
}

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

#about-b .progress div {
  height: 100%;
  text-align: center;
  background: #87e5cf;
}

#about-c .about-logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}

#about-c .about-logos img {
  width: 70%;
}

#about-d .testomonials-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.2rem;
}

#about-d .testomonials ul {
  list-style-type: none;
  margin-top: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about-d .testomonials ul li {
  font-weight: bold;
}

#about-d .testomonials p {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.8rem;
}

#about-d .testomonials img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

#contact-a .text-input {
  outline: #87e5cf;
  font-size: 1rem;
  border: 2px solid #ccc;
}

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

#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 .mssg-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.6rem;
}

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

#contact-a button:hover {
  opacity: 0.9;
}

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

#contact-b .fas:hover {
  color: #87e5cf;
  cursor: pointer;
}

@media (max-width: 800px) {
  #header-home {
    height: 32rem;
  }
  #header-home .header-content {
    padding-top: 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;
  }
  #header-home {
    height: 10rem;
    border-bottom: 3px solid #87e5cf;
    background-position: 20% 30%;
  }
  #header-home .header-content {
    display: none;
  }
  #header-inner {
    height: 10rem;
  }
  #home-a .specials,
  #home-b .stats,
  #home-c .process,
  #home-d .testomonials {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  #home-a .specials div {
    padding-bottom: 1rem;
    border-bottom: 2px solid #f4f4f4;
  }
  #home-a .specials div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  #home-b .stats div {
    padding: 2rem 0 1rem 0;
  }
  #about-a .about-info {
        grid-template-areas: "imagee" "bio" "aw1" "aw2" "aw3";
  }
  #about-c {
    display: none;
  }
  #about-d .testomonials-box {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .items {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  #contact-a .text-fields {
        grid-template-areas: "name" "subject" "email" "phone" "message";
  }
  #contact-b .contact-info {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.4rem;
  }
  #main-footer .social .fab {
    margin-bottom: 1rem;
  }
  #main-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

#main-footer {
  background: #333;
  color: #f4f4f4;
  height: 7rem;
  text-align: center;
}

#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: 7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

#main-footer .footer-content .social .fab:hover {
  cursor: pointer;
  background: #87e5cf;
  color: #333;
  border: none;
  width: 22px;
}
/*# sourceMappingURL=main.css.map */