*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

*:focus, *:hover {
  outline: 0;
}

html, body {
  width: 100%;
  height: 100%;
  cursor: default;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

button, input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

body {
  position: relative;
  background-color: #eee;
  color: #333;
}
body.disable-scroll {
  overflow: hidden;
}

body {
  font-family: "new-science-extended", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: row;
}
.nav-item {
  font-size: 14px;
  margin-right: 25px;
}
.nav-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .nav {
    flex-direction: column;
    text-align: center;
  }
  .nav-item {
    margin: 10px 0;
  }
}

.toggler {
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.toggler span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #333;
  margin-bottom: 5px;
}
.toggler span:last-child {
  margin-bottom: 0;
}
.toggler.clicked span:first-child {
  transform: rotate(45deg);
  transform-origin: 7px;
}
.toggler.clicked span:nth-child(2) {
  transform: translateX(30px);
  opacity: 0;
}
.toggler.clicked span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 3px;
}
.toggler:hover span:nth-child(2) {
  transform: translateX(5px);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.2s ease-in-out;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn:hover {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease-in-out;
}
@media screen and (max-width: 576px) {
  .btn {
    font-size: 8px;
  }
}

.btn-primary {
  background-color: #E67070;
  color: #eee;
}

.btn-secondry {
  background-color: #344856;
  color: #eee;
}

.about-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  .about-card {
    margin-top: 40px;
  }
}
.about-card h2 {
  color: #eee;
}
.about-card h2 span {
  color: #E67070;
}
@media screen and (max-width: 768px) {
  .about-card h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .about-card h2 {
    font-size: 20px;
  }
}
.about-card p {
  color: #eee;
  font-size: 12px;
  line-height: 21px;
  padding: 20px 0;
}

.service-card h3 {
  font-size: 16px;
  color: #7D8395;
}
@media screen and (max-width: 768px) {
  .service-card h3 {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .service-card h3 {
    font-size: 12px;
  }
}
.service-card p {
  color: #eee;
  font-size: 30px;
  font-weight: 700;
  line-height: 48px;
  padding-bottom: 20px;
}
.service-card p span {
  color: #E67070;
}
@media screen and (max-width: 1024px) {
  .service-card p {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .service-card p {
    font-size: 20px;
    line-height: 40px;
  }
}
@media screen and (max-width: 576px) {
  .service-card p {
    font-size: 12px;
    line-height: 24px;
  }
}

.testimonials-card {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  margin: 0px 20px;
}
@media screen and (max-width: 1024px) {
  .testimonials-card {
    max-width: 600px;
    margin-bottom: 40px;
  }
}
.testimonials-card-body {
  padding: 60px 40px 20px 40px;
  text-align: center;
}
.testimonials-card-body img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.testimonials-card-body h4 {
  margin-top: 20px;
  color: #E67070;
}
.testimonials-card-body p {
  padding: 20px 0;
  font-size: 12px;
  line-height: 21px;
}
.testimonials-card-footer {
  text-align: right;
  padding: 10px;
}
.testimonials-card-footer a {
  color: #666;
  font-size: 10px;
  font-weight: 700;
}
.testimonials-card-footer a span {
  color: #E67070;
}

@media screen and (max-width: 1024px) {
  .footer-card-header {
    margin-top: 40px;
  }
}
.footer-card-header img {
  height: 40px;
}
.footer-card-header h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7D8395;
}
.footer-card-body {
  padding: 10px 0;
}
.footer-card-body p, .footer-card-body a {
  color: #ddd;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 1px;
  max-width: 440px;
}
.footer-card-footer a {
  display: inline-block;
  margin-right: 10px;
  color: #7D8395;
}

.header {
  width: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.header-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.header-brand {
  height: 40px;
}
@media screen and (max-width: 768px) {
  .header-brand {
    height: 30px;
  }
}
.header-brand img {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header-navbar {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #eee;
    z-index: 11;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0.95;
  }
  .header-navbar.active {
    display: flex;
  }
}
.header-toggler {
  display: none;
  position: absolute;
  z-index: 12;
  top: 29px;
  right: 20px;
}
@media screen and (max-width: 1024px) {
  .header-toggler {
    display: block;
  }
}
.header-button {
  position: absolute;
  top: 80px;
  right: 20px;
}
@media screen and (max-width: 576px) {
  .header-button {
    display: none;
  }
}

.showcase {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
}
@media screen and (max-width: 768px) {
  .showcase {
    height: 600px;
  }
}
@media screen and (max-width: 576px) {
  .showcase {
    min-height: auto;
    height: 500px;
  }
}
.showcase-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  height: 100%;
  background-image: url("http://konigenn.com/assets/images/showcase.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.showcase-display {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-80%);
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .showcase-display {
    left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .showcase-display {
    transform: translateY(-85%);
  }
}
.showcase-display p {
  font-size: 52px;
  font-weight: 700;
  text-shadow: 0px 0px 10px #eee;
}
@media screen and (max-width: 1024px) {
  .showcase-display p {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .showcase-display p {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .showcase-display p {
    font-size: 24px;
  }
}
.showcase-display p span {
  color: #E67070;
}
.showcase-display p:nth-child(2) {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .showcase-display p:nth-child(2) {
    margin-left: 20px;
  }
}
.showcase-display a {
  margin-left: 80px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .showcase-display a {
    margin-left: 0px;
  }
}
@media screen and (max-width: 576px) {
  .showcase-display a {
    margin-top: 10px;
  }
}
.showcase-hero {
  position: absolute;
  height: 500px;
  top: 50%;
  right: -10px;
  transform: translateY(-20%);
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .showcase-hero {
    right: 0;
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  .showcase-hero {
    height: 320px;
  }
}
@media screen and (max-width: 576px) {
  .showcase-hero {
    height: 240px;
  }
}

.about {
  display: grid;
  width: 100vw;
  background-color: #000;
  padding-bottom: 40px;
}
.about-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  margin-top: -40px;
  background-image: url("http://konigenn.com/assets/images/about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 8;
}
@media screen and (max-width: 1024px) {
  .about-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
  }
}
.about-banner {
  color: #eee;
}
.about-banner p:nth-child(1) {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .about-banner p:nth-child(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .about-banner p:nth-child(1) {
    font-size: 16px;
  }
}
.about-banner p:nth-child(2) {
  font-weight: 700;
  font-size: 56px;
}
@media screen and (max-width: 1024px) {
  .about-banner p:nth-child(2) {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .about-banner p:nth-child(2) {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .about-banner p:nth-child(2) {
    font-size: 24px;
  }
}
.about-banner div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .about-banner div {
    display: none;
  }
}
.about-banner div a {
  display: inline-block;
  padding: 30px;
  background-color: #E67070;
  border-radius: 100%;
}
.about-banner div a i {
  font-size: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
}
.about-banner div p {
  display: inline-block;
  margin-left: 20px;
  font-size: 12px !important;
  font-weight: 400 !important;
}
.about-brands {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .about-brands {
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
.about-brands img {
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .about-brands img {
    height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .about-brands img {
    height: 24px;
  }
}
@media screen and (max-width: 576px) {
  .about-brands img {
    height: 16px;
  }
}

.services .service {
  width: 100%;
  padding: 80px 0px;
}
.services .service-inner {
  padding: 40px;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
}
.services .service:nth-child(1) {
  background-image: url("http://konigenn.com/assets/images/paint-protection-film.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services .service:nth-child(2) {
  background-image: url("http://konigenn.com/assets/images/vinyl-vehicle-wrap.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services .service:nth-child(2) .service-inner {
  justify-content: flex-end;
  text-align: right;
}
.services .service:nth-child(3) {
  background-image: url("http://konigenn.com/assets/images/creamic-coating.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials {
  width: 100%;
}
.testimonials-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 80px 0;
}
.testimonials-header {
  text-align: center;
}
.testimonials-header h3 {
  font-size: 36px;
}
.testimonials-header h3 span {
  color: #E67070;
}
@media screen and (max-width: 1024px) {
  .testimonials-header h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .testimonials-header h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .testimonials-header h3 {
    font-size: 16px;
  }
}
.testimonials-body {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media screen and (max-width: 1024px) {
  .testimonials-body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
  }
}

.gallery {
  width: 100%;
  background-color: #fff;
}
.gallery-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  padding: 80px 0;
}
.gallery-header {
  text-align: center;
}
.gallery-header h3 {
  font-size: 36px;
}
.gallery-header h3 span {
  color: #E67070;
}
.gallery-header h3 a {
  font-weight: 400;
  margin-left: 10px;
}
.gallery-header h3 a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .gallery-header h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .gallery-header h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .gallery-header h3 {
    font-size: 16px;
  }
}

.location .map-responsive {
  position: relative;
  padding-bottom: 24.25%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .location .map-responsive {
    padding-bottom: 50%;
  }
}
.location .map-responsive iframe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.footer {
  width: 100%;
  background-color: #000;
  padding: 40px 20px 0px 20px;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 0;
  max-width: 1600px;
  margin: 0px auto;
}
@media screen and (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
  }
}
.footer-copyright {
  text-align: center;
  padding: 20px 0 10px 0;
  color: #7D8395;
}

.vl {
  height: 150px;
  border-left: 1px solid #7D8395;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .vl {
    display: none;
  }
}

.copyright {
  font-size: 10px;
  line-height: 28px;
}
.copyright a {
  color: #E67070;
}
.copyright a:hover {
  text-decoration: underline;
}