@import url("https://fonts.googleapis.com/css?family=Lato:100,300,300i,400");
@import url("https://unpkg.com/ionicons@4.1.2/dist/css/ionicons.min.css");
/* Main Primary color */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  font-family: 'Lato', sans-serif; }

body {
  font-size: 1.2rem;
  line-height: 1.7; }

.u-margin-top-large {
  margin-top: 6rem; }

.u-margin-top-medium {
  margin-top: 4rem; }

.u-margin-top-small {
  margin-top: 2rem; }

.u-maring-top-medium-negative {
  margin-top: -4rem; }

.u-margin-bottom-medium {
  margin-bottom: 3rem; }

.u-margin-bottom-small {
  margin-bottom: 2rem; }

.u-padding-top-xl {
  padding-top: 12rem; }

.u-padding-top-large {
  padding-top: 6rem; }

.u-padding-top-medium {
  padding-top: 4rem; }

.u-padding-top-small {
  padding-top: 2rem; }

.u-padding-bottom-large {
  padding-bottom: 6rem; }

.u-padding-bottom-medium {
  padding-bottom: 4rem; }

.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto; }
  .container::after {
    content: "";
    clear: both;
    display: table; }

header {
  background: black;
  color: #f5f6fa;
  padding: 1rem 0;
  position: relative;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25); }

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; }

.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto; }
  .container::after {
    content: "";
    clear: both;
    display: table; }

.logo {
  display: inline-block; }
  .logo::after {
    content: "";
    clear: both;
    display: table; }
  .logo__icon {
    height: 5rem;
    float: left;
    fill: #f5f6fa; }
  .logo__text {
    float: left;
    margin-left: 2rem;
    padding-top: 1.4rem;
    text-transform: uppercase; }

.site-nav {
  position: absolute;
  top: 100%;
  right: 0%;
  background: rgba(127, 126, 126, 0.95);
  height: 0;
  overflow: hidden; }
  .site-nav--open {
    height: auto; }
  .site-nav--icon {
    padding-right: 1.5rem;
    font-size: 1.5em;
    width: 1.2rem;
    color: rgba(255, 255, 255, 0.25); }
  .site-nav__list {
    margin: 0;
    padding: 0;
    list-style: none; }
  .site-nav__list-item:last-child {
    border-bottom: none; }
  .site-nav__list-item {
    border-bottom: 1px solid #fff; }
    .site-nav__list-item a {
      color: #f5f6fa;
      text-decoration: none;
      text-transform: uppercase;
      display: block;
      padding: 1.5rem 4rem;
      word-spacing: .6rem; }
    .site-nav__list-item a:hover,
    .site-nav__list-item a:focus {
      background: rgba(245, 246, 250, 0.7);
      color: #fff; }

.menu-toggle {
  padding: 2rem 1rem;
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  cursor: pointer; }
  .menu-toggle .hamburger {
    position: relative; }
  .menu-toggle .hamburger,
  .menu-toggle .hamburger::before,
  .menu-toggle .hamburger::after {
    content: "";
    display: block;
    background: #f5f6fa;
    height: 2px;
    width: 3rem;
    border-radius: 3px;
    transition: all .2s ease-in-out; }
  .menu-toggle .hamburger::before {
    position: absolute;
    top: -.9rem; }
  .menu-toggle .hamburger::after {
    position: absolute;
    top: .9rem; }
  .menu-toggle--open .hamburger {
    background-color: transparent; }
  .menu-toggle--open .hamburger::before {
    top: 0;
    transform: rotate(-135deg); }
  .menu-toggle--open .hamburger::after {
    top: 0;
    transform: rotate(135deg); }

@media (min-width: 925px) {
  body {
    font-size: 1.6rem; }
  .menu-toggle {
    display: none; }
  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right; }
    .site-nav--icon {
      display: none; }
    .site-nav__list-item {
      display: inline-block;
      border: none;
      margin-top: 1.4rem; }
      .site-nav__list-item a {
        padding: 0;
        margin-left: 2rem; }
      .site-nav__list-item a:hover,
      .site-nav__list-item a:focus {
        background: transparent;
        padding-bottom: 1rem;
        border-bottom: 3px solid; } }

.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right bottom, #f5f6fa, black);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 100; }
  .popup__content {
    width: 75%;
    background-color: #f5f6fa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: all .2s .1s ease; }
  .popup__left {
    width: 40%;
    display: flex;
    flex-direction: column; }
    @media (max-width: 750px) {
      .popup__left {
        display: none; } }
  .popup__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 3rem;
    padding: 3rem 2rem; }
    @media (max-width: 750px) {
      .popup__right {
        font-size: 1.5rem;
        padding: 3rem 0; } }
  .popup__image {
    display: block;
    width: 100%;
    flex: 0 0 50%; }
  .popup__text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    column-count: 2;
    column-gap: 3rem;
    column-rule: 1px solid #ddd;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .popup__close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    line-height: .5; }
    .popup__close:link, .popup__close:visited {
      color: #333;
      text-decoration: none;
      font-size: 3rem;
      display: inline-block; }
    .popup__close:hover {
      color: black; }
    @media (max-width: 750px) {
      .popup__close {
        top: 1.2rem;
        right: 1.2rem; } }

.contact-icon-container {
  display: flex; }
  .contact-icon-container > * {
    padding: 0 1rem; }
    @media (max-width: 750px) {
      .contact-icon-container > * {
        padding: 0 .25rem; } }

.btn {
  background-color: #f5f6fa;
  display: inline-block;
  padding: 2rem 4rem;
  border-radius: 3rem;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  margin: 0 auto; }
  .btn:link, .btn:visited {
    text-decoration: none;
    color: black;
    text-transform: uppercase; }
  .btn--dark {
    background-color: #7F7E7E;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5); }
    .btn--dark:link, .btn--dark:visited {
      color: #fff;
      text-transform: uppercase; }

.heading-secondary {
  display: flex;
  -webkit-background-clip: text;
  background-clip: text;
  color: black;
  font-size: 3rem; }
  @media (max-width: 900px) {
    .heading-secondary {
      font-size: 2rem; } }
  @media (max-width: 750px) {
    .heading-secondary {
      font-size: 1.2rem; } }
  .heading-secondary span {
    text-align: center; }
  .heading-secondary a {
    text-decoration: none;
    color: black; }

.section__header {
  color: black;
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  padding: 2rem 0; }
  @media (max-width: 750px) {
    .section__header {
      font-size: 2.5rem; } }

.section__icon {
  font-size: 4rem;
  text-align: center; }

.section__text {
  font-weight: 300;
  font-size: 2rem;
  padding: 1rem 2rem 2rem;
  text-align: justify; }
  @media (max-width: 1024px) {
    .section__text {
      font-size: 1.6rem; } }
  @media (max-width: 900px) {
    .section__text {
      font-size: 1.3rem; } }
  @media (max-width: 750px) {
    .section__text {
      font-size: 1.3rem; } }
  .section__text--testimony {
    font-size: 1.8rem;
    font-style: italic; }
    @media (max-width: 1024px) {
      .section__text--testimony {
        font-size: 1.6rem; } }
    @media (max-width: 900px) {
      .section__text--testimony {
        font-size: 1.3rem; } }
    @media (max-width: 750px) {
      .section__text--testimony {
        font-size: 1.3rem; } }

.section-container {
  display: flex; }
  @media (max-width: 750px) {
    .section-container {
      flex-direction: column; } }

.section-card {
  background-color: #f5f6fa;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.25);
  flex: 0 0 33.33%;
  margin: 0 1rem; }
  @media (max-width: 1024px) {
    .section-card {
      margin: 1rem 0; } }
  @media (max-width: 900px) {
    .section-card {
      margin: 1rem 0; } }
  @media (max-width: 750px) {
    .section-card {
      margin: 1rem 0; } }
  .section-card--testimonial {
    display: flex;
    flex-direction: column; }

cite {
  display: block;
  color: black;
  font-size: 1.4rem;
  padding: 1rem 2rem 2rem; }

/********************
LANDING SECTION BEGIN
*********************/
.section-landing {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to right bottom, #f5f6fa, #7F7E7E); }
  @media (max-width: 750px) {
    .section-landing {
      flex-direction: column; } }

.section-half {
  display: flex;
  flex: 0 0 50%;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(rgba(245, 246, 250, 0.9), rgba(255, 255, 255, 0.9));
  background-size: cover;
  border-radius: 2px; }
  @media (max-width: 750px) {
    .section-half {
      margin: 1rem 0; } }

.left-half {
  flex: 0 0 50%;
  background-image: linear-gradient(rgba(245, 246, 250, 0.5), rgba(255, 255, 255, 0.7)), url(img/img-bkg-music-sheet-heart.jpg);
  text-align: center;
  padding: 2rem 5rem;
  font-weight: 300;
  font-size: 2rem; }
  @media (max-width: 1024px) {
    .left-half {
      font-size: 1.6rem;
      padding: 1rem 3rem; } }
  @media (max-width: 900px) {
    .left-half {
      font-size: 1.3rem;
      padding: 1rem 3rem; } }
  @media (max-width: 750px) {
    .left-half {
      font-size: 1.3rem;
      padding: 1rem 2rem; } }

.right-half {
  background-image: linear-gradient(rgba(245, 246, 250, 0.5), rgba(255, 255, 255, 0.7)), url(img/img-bkg-piano.jpg);
  text-align: center;
  padding: 2rem 5rem;
  font-weight: 300;
  font-size: 2rem; }
  @media (max-width: 1024px) {
    .right-half {
      font-size: 1.6rem;
      padding: 1rem 3rem; } }
  @media (max-width: 900px) {
    .right-half {
      font-size: 1.3rem;
      padding: 1rem 3rem; } }
  @media (max-width: 750px) {
    .right-half {
      font-size: 1.3rem;
      padding: 1rem 2rem; } }

/*******************
LANDING SECTION END
********************/
.section-testimony {
  display: none;
  padding: 0 2rem;
  background-color: #f5f6fa;
  height: 100%;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25); }
  .section-testimony cite {
    display: block;
    color: black;
    font-weight: 700;
    font-size: 1.2rem; }
  .section-testimony blockquote {
    position: relative;
    font-style: italic;
    text-align: left; }
  .section-testimony blockquote:before {
    content: "\201C";
    font-size: 4rem;
    display: block;
    position: relative;
    top: 2rem; }

.section-repairs {
  background-image: linear-gradient(to right bottom, #f5f6fa, #7F7E7E); }

/*
.gallery-showcase {
  // display: none;
  // display: flex;
  // align-items: stretch;
  list-style: none;
  max-width: 100px;
  margin: 0 auto;
  @include clearfix;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.5);
}

.gallery-showcase li {
  display: block;
  // display: flex;
  // flex: 0 0 25%;
  float: left;
  width: 25%;
}

.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: scale(1.2);
  transition: transform 250ms ease, opacity 250ms;
  opacity: .7;

}

.gallery-item img:hover {
  transform: scale(1.1);
  opacity: 1;
}

*/
.gallery-showcase {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5); }

::after {
  content: "";
  clear: both;
  display: table; }

.gallery-showcase li {
  display: block;
  float: left;
  width: 25%; }

.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  cursor: pointer; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: scale(1.2);
  transition: transform 250ms ease, opacity 250ms;
  opacity: .7; }

.gallery-item img:hover {
  transform: scale(1.1);
  opacity: 1; }

.footer {
  background-color: #333;
  padding: 4rem 0; }

.social-links {
  margin-bottom: 2rem;
  text-align: center; }
  .social-links li {
    display: inline-block;
    margin-right: 2rem; }
    .social-links li a {
      color: #f5f6fa;
      font-size: 3rem; }
      .social-links li a i {
        color: #f5f6fa; }
  .social-links li:last-child {
    margin-right: 0; }
  .social-links .ion-logo-facebook:hover,
  .social-links .logo-thumbtack:hover {
    color: #3b5998; }
  .social-links .ion-social-twitter:hover {
    color: #00aced; }

.copyright-text {
  text-align: center;
  font-weight: 300;
  color: #f5f6fa;
  font-size: 1.2rem; }
