body {
    background-color: white;
}

.logo-view {
    width: 85px;
    height: 85px;
}

.navbar-brand>img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}

.navigation {
    background-color: white;
}

.section-block {
    position: relative;
    padding: 90px 0 90px 0;
    background-color: white;
}
.none-padding {
    padding-bottom: 0px!important;
}

.section-heading {
    margin-bottom: 10px;
    position: relative;
}

.center-holder {
    text-align: center!important;
}

.section-heading small {
    font-size: 13px;
    font-weight: 700;
    color: #2387ea;
    line-height: 250%;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.section-heading h3 {
    position: relative;
    font-size: 33px;
    font-weight: 400;
    color: #222;
    line-height: 130%;
    letter-spacing: -2px;
    word-spacing: 2px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.bold {
    font-weight: 700!important;
}

.section-heading p {
    font-size: 17px;
    font-weight: 500;
    color: #979797;
    line-height: 160%;
    padding-top: 15px;
    margin-bottom: 0;
}

.page-title {
    height: 450px;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 130px 0 130px 0;
    background-color: #eee;
    background-size: cover;
    background-position: top;
    text-align: center;
}
.jarallax {
    position: relative;
  }
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: "object-fit: cover;";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .black-overlay-20::before {
      background: rgba(0,0,0,.7);
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 0;
  }

.page-title h1 {
    margin-top: 10%;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
}

.feature-float {
    position: relative;
    display: block;
    padding: 15px 0;
    margin: 15px 0;
}

.feature-float-icon {
    text-align: center;
    margin-bottom: 30px;
}

.icons {
    display: inline-block;
    color: #2387ea;
    font-size: 35px;
    margin-right: 20px;
}

.feature-float-content {
    text-align: center;
}

.feature-float-content h4 {
    display: block;
    color: #222;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 7px;
    vertical-align: top;
}

.services {
    margin-top: 45px;
}

div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    width: 180px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }

  * {
    box-sizing: border-box;
  }

  *::before, ::after {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Barlow', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #787878;
    background: #fff;
    text-rendering: optimizeLegibility;
  }
  
  ul li {
    margin: 0 1.5rem 0 0;
  }
  
  a {
    color: #787878;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  a.active {
    color: #2e2e2e;
  }
  
a:hover {
    color: #2e2e2e;
}

  nav {
    padding: 2.5rem 0 2.5rem 0;
  }

  nav ul {
    display: flex;
    justify-content: flex-start;
  }

  nav li {
    font-size: 1.25rem;
  }

  nav li:nth-child(2) {
    margin: 0;
  }
  
  #highlight {
    color: #ea8478;
    font-size: 1.25rem;
  }
  
  .gallery {
    padding: 0 0 4rem 0;
  }
  
  .img-container {
    width: 100%;
    height: 500px;
    cursor: pointer;
    overflow: hidden;
  }

  .img-container:hover .img-content-hover {
    display: block;
  }
  
  img {
      width: 100%;
    height: 500px;
      object-fit: cover;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
  }

  img:hover {
    transform: scale(1.05);
  }
  
  .img-content-hover {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    display: none;
    padding: 1rem;
    background: #fff;
    font-weight: 400;
    margin-top: 1.25rem;
    margin-left: -2rem;
  }
  
  .title {
    color: #2e2e2e;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .category {
    font-size: 1rem;
    color: #787878;
  }
  
  .img-content {
    display: none;
  }
  
  .social, .copyright {
    margin: 1rem;
  }
  
  .social li {
    display: inline-block;
  }
  
  footer {
    padding: 1rem 0;
    background: #f7f7f7;
    text-align: center;
  }
  
  @supports (display: grid) {
    .gallery .grid {
      grid-gap: 1rem;
    }
  }
  
  @media(min-width: $md) {
    nav ul {
      justify-content: flex-end;
    }
  }
  
  @media screen and (max-width: 1024px) {
    img:hover {
      transform: none;
    }
    
    .img-container {
      height: 100%;
    }

    .img-container:hover .img-content-hover {
        display: none;
      }
  
    .img-content {
      display: block;
      padding: 1rem 0;
    }
  }

  .page-title-gallery {
    height: 170px;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 130px 0 130px 0;
    background-color: #eee;
    background-size: cover;
    background-position: top;
    text-align: center;
}

.page-title-gallery h1 {
    margin-top: 0%;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
}

.page-title-services {
    height: 170px;
    display: block;
    position: relative;
    overflow: hidden;
    padding: 130px 0 130px 0;
    background-color: #eee;
    background-size: cover;
    background-position: top;
    text-align: center;
}

.page-title-services h1 {
    margin-top: 0%;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 0px;
}

.contact-text {
    position: relative;
    text-align: center;
}