/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
#banner {
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  min-height: 280px;
  overflow: hidden; }
  @media (min-width: 769px) {
    #banner {
      padding-top: 250px; } }
  @media (min-width: 1025px) {
    #banner {
      min-height: 415px;
      padding-top: 250px; } }
  #banner .bg-cover {
    object-position: center bottom;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover; }
    @media (min-width: 769px) {
      #banner .bg-cover {
        object-position: center bottom; } }
  #banner .banner-content h1 {
    color: white;
    position: relative;
    margin-bottom: 0;
    opacity: 0.75;
    line-height: 1;
    position: absolute;
    bottom: 0;
    margin-bottom: -8px;
    font-weight: 600; }
    @media (min-width: 641px) {
      #banner .banner-content h1 {
        margin-bottom: -10px; } }
    @media (min-width: 769px) {
      #banner .banner-content h1 {
        margin-bottom: -12px; } }
    @media (min-width: 1025px) {
      #banner .banner-content h1 {
        margin-bottom: -14px; } }
    @media (min-width: 1401px) {
      #banner .banner-content h1 {
        margin-bottom: -16px; } }
    @media (min-width: 1641px) {
      #banner .banner-content h1 {
        margin-bottom: -18px; } }

#sec-contact .img {
  margin: 0 auto; }
  @media screen and (min-width: 1025px) {
    #sec-contact .img {
      margin: 0; } }

#sec-services .card {
  position: relative;
  overflow: hidden;
  cursor: pointer; }
  #sec-services .card .card-img {
    min-height: 470px !important;
    object-fit: cover; }
    @media (min-width: 641px) {
      #sec-services .card .card-img {
        min-height: auto !important; } }
    @media (min-width: 769px) {
      #sec-services .card .card-img {
        min-height: 450px !important; } }
    @media (min-width: 1025px) {
      #sec-services .card .card-img {
        min-height: 520px !important; } }
    @media (min-width: 1401px) {
      #sec-services .card .card-img {
        min-height: 450px !important; } }
  #sec-services .card .overlay {
    background-color: rgba(52, 52, 52, 0.77);
    position: absolute;
    right: 30px;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    max-height: 50%;
    transition: max-height 0.5s ease; }
    #sec-services .card .overlay .overlay-title {
      width: 100%;
      padding: 2rem; }
      #sec-services .card .overlay .overlay-title .h3 {
        color: white; }
    #sec-services .card .overlay .overlay-content {
      width: 100%;
      padding: 0 2rem 2rem;
      display: none; }
      #sec-services .card .overlay .overlay-content p {
        color: white; }
    #sec-services .card .overlay:before {
      content: "\e902";
      font-family: "standard-icons" !important;
      position: absolute;
      right: 15px;
      top: 15px;
      font-size: 10px;
      color: #22aee8;
      transition: all 0.3s ease; }
    #sec-services .card .overlay.active {
      height: 100%;
      max-height: calc(100% - 30px); }
      #sec-services .card .overlay.active:before {
        transform: rotate(160deg); }
