.container {
  max-width: 1280px;
  padding: 0 1.5rem;
  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;
}

.btn-main {
  color: #333;
  background-color: #d6be76;
}

.btn-light {
  color: #333;
  background-color: #d6be76;
}

.btn-light:hover {
  background-color: #333;
  color: white;
}

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

button[class^="btn-"]:hover,
a[class^="btn-"]:hover,
input[class^="btn-"]:hover {
  background-color: #d6be76;
}

.bg-main {
  background: #d6be76;
  color: #000;
}

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

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

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

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

.section-title {
  font-size: 2rem;
  display: block;
  padding-bottom: 1.5rem;
  text-align: center;
  font-weight: 100;
  text-transform: uppercase;
}

.bottom-line {
  height: 2px;
  width: 3rem;
  background: #d6be76;
  display: block;
  margin: 0 auto 1rem auto;
}

.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: #d6be76;
  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: -webkit-transform 3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1), -webkit-transform 3s cubic-bezier(0.2, 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.2);
          transform: scale(1.2);
}

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

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

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

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

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

.item-text-wrap {
  position: absolute;
  width: 100%;
  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;
}

.item-text-category a {
  color: #fff;
}

.item-text-title a {
  color: #fff;
}

.img-anim-container {
  position: relative;
  height: 250px;
}

.img-anim-container .first-img-anim-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-anim-container .second-img-anim-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-anim-container .third-img-anim-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-anim-container .fourth-img-anim-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-anim-container .fifth-img-anim-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-anim-container .first-img-anim, .img-anim-container .second-img-anim, .img-anim-container .third-img-anim, .img-anim-container .fourth-img-anim, .img-anim-container .fifth-img-anim {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation-name: flip-two-sides;
          animation-name: flip-two-sides;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.img-anim-container .first-img-anim {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.img-anim-container .second-img-anim {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}

.img-anim-container .third-img-anim {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.img-anim-container .fourth-img-anim {
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}

.img-anim-container .fifth-img-anim {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.img-anim-container .the-front-1, .img-anim-container .the-front-2, .img-anim-container .the-front-3, .img-anim-container .the-front-4, .img-anim-container .the-front-5 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-align: center;
}

.img-anim-container .the-front-1 {
  background-image: url("../img/home/commercial_constructions1.jpeg");
}

.img-anim-container .the-front-2 {
  background-image: url("../img/home/residental_constructions1.jpg");
}

.img-anim-container .the-front-3 {
  background-image: url("../img/home/renovations.jpg");
}

.img-anim-container .the-front-4 {
  background-image: url("../img/home/granny_flats1.jpeg");
}

.img-anim-container .the-front-5 {
  background-image: url("../img/home/project_management1.jpeg");
}

.img-anim-container .the-back-1, .img-anim-container .the-back-2, .img-anim-container .the-back-3, .img-anim-container .the-back-4, .img-anim-container .the-back-5 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  text-align: center;
}

.img-anim-container .the-back-1 {
  background-image: url("../img/home/commercial_constructions1.jpeg");
}

.img-anim-container .the-back-2 {
  background-image: url("../img/home/residental_constructions1.jpg");
}

.img-anim-container .the-back-3 {
  background-image: url("../img/home/renovations.jpg");
}

.img-anim-container .the-back-4 {
  background-image: url("../img/home/granny_flats1.jpeg");
}

.img-anim-container .the-back-5 {
  background-image: url("../img/home/project_management1.jpeg");
}

.img-anim-container .inner-border {
  position: relative;
  outline: 2px solid #070401;
  outline-offset: -10px;
}

.img-anim-container h3 {
  padding-top: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #fff;
}

.img-anim-container .black-container {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  top: 170px;
}

@-webkit-keyframes flip-two-sides {
  0% {
    background-color: white;
  }
  50% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@keyframes flip-two-sides {
  0% {
    background-color: white;
  }
  50% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/*********** Granny Flats Anims **********************/
.fly-from-right, .fly-from-left {
  -webkit-animation-name: fly-from-right-to-left;
          animation-name: fly-from-right-to-left;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fly-from-right {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.fly-from-left {
  -webkit-animation-name: fly-from-left-to-right;
          animation-name: fly-from-left-to-right;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fly-from-right-to-left {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(-80px);
            transform: translate(-80px);
    opacity: 1;
  }
}

@keyframes fly-from-right-to-left {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(-80px);
            transform: translate(-80px);
    opacity: 1;
  }
}

@-webkit-keyframes fly-from-left-to-right {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(80px);
            transform: translate(80px);
    opacity: 1;
  }
}

@keyframes fly-from-left-to-right {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(80px);
            transform: translate(80px);
    opacity: 1;
  }
}

@media (min-width: 800px) {
  #all-front-page-content {
    opacity: 0;
    -webkit-animation: body-transition-anim 5.7s ease forwards;
            animation: body-transition-anim 5.7s ease forwards;
  }
  @-webkit-keyframes body-transition-anim {
    0% {
      opacity: 0;
      background-color: #554c33;
    }
    70% {
      opacity: 0;
      background-color: #554c33;
    }
    100% {
      opacity: 1;
      background-color: #554c33;
    }
  }
  @keyframes body-transition-anim {
    0% {
      opacity: 0;
      background-color: #554c33;
    }
    70% {
      opacity: 0;
      background-color: #554c33;
    }
    100% {
      opacity: 1;
      background-color: #554c33;
    }
  }
  #all-front-page-content {
    z-index: 98;
    width: 100%;
    height: 100vh;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  #my-intro-animation {
    position: absolute;
    z-index: 99;
    width: 100%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    -webkit-animation: disappear-anim 0.001s ease forwards 4.1s;
            animation: disappear-anim 0.001s ease forwards 4.1s;
  }
  @-webkit-keyframes disappear-anim {
    70% {
      opacity: 0;
      display: none;
    }
    100% {
      display: none;
      opacity: 0;
      height: 0;
      width: 0;
    }
  }
  @keyframes disappear-anim {
    70% {
      opacity: 0;
      display: none;
    }
    100% {
      display: none;
      opacity: 0;
      height: 0;
      width: 0;
    }
  }
  .my-animation-canvas {
    position: absolute;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 350px;
    margin: 500px auto;
    top: -60px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .my-animation-logo {
    position: relative;
  }
  #hor-osnova {
    position: relative;
    background-color: #000;
    height: 5px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #velika-zgrada-leva-ver-lin {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 5px;
    left: 55px;
    -webkit-animation: velika-zgrada-leva-ver-lin 1s ease forwards;
            animation: velika-zgrada-leva-ver-lin 1s ease forwards;
  }
  @-webkit-keyframes velika-zgrada-leva-ver-lin {
    100% {
      -webkit-transform: translateY(-261px);
              transform: translateY(-261px);
      height: 261px;
    }
  }
  @keyframes velika-zgrada-leva-ver-lin {
    100% {
      -webkit-transform: translateY(-261px);
              transform: translateY(-261px);
      height: 261px;
    }
  }
  #velika-zgrada-centralna-ver-lin {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 5px;
    left: 125px;
    -webkit-animation: velika-zgrada-centralna-ver-lin 1s ease forwards;
            animation: velika-zgrada-centralna-ver-lin 1s ease forwards;
  }
  @-webkit-keyframes velika-zgrada-centralna-ver-lin {
    100% {
      -webkit-transform: translateY(-302px);
              transform: translateY(-302px);
      height: 302px;
    }
  }
  @keyframes velika-zgrada-centralna-ver-lin {
    100% {
      -webkit-transform: translateY(-302px);
              transform: translateY(-302px);
      height: 302px;
    }
  }
  #velika-zgrada-desna-ver-lin {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 5px;
    left: 160px;
    -webkit-animation: velika-zgrada-desna-ver-lin 1s ease forwards;
            animation: velika-zgrada-desna-ver-lin 1s ease forwards;
  }
  @-webkit-keyframes velika-zgrada-desna-ver-lin {
    100% {
      -webkit-transform: translateY(-273px);
              transform: translateY(-273px);
      height: 273px;
    }
  }
  @keyframes velika-zgrada-desna-ver-lin {
    100% {
      -webkit-transform: translateY(-273px);
              transform: translateY(-273px);
      height: 273px;
    }
  }
  #prozor1 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 17px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 40px;
    left: 62px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.1s;
            animation: pojava 1s ease forwards 0.1s;
  }
  @-webkit-keyframes pojava {
    100% {
      opacity: 1;
    }
  }
  @keyframes pojava {
    100% {
      opacity: 1;
    }
  }
  #prozor2 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 16px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 52px;
    left: 74px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.1s;
            animation: pojava 1s ease forwards 0.1s;
  }
  #prozor3 {
    position: relative;
    background-color: #000;
    width: 18px;
    height: 18px;
    -webkit-clip-path: polygon(25% 41%, 100% 0%, 100% 100%, 25% 100%);
            clip-path: polygon(25% 41%, 100% 0%, 100% 100%, 25% 100%);
    bottom: 28px;
    left: 57px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.1s;
            animation: pojava 1s ease forwards 0.1s;
  }
  #prozor4 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 17px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 100px;
    left: 20px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.2s;
            animation: pojava 1s ease forwards 0.2s;
  }
  #prozor5 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 17px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 134px;
    left: 8px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.2s;
            animation: pojava 1s ease forwards 0.2s;
  }
  #prozor6 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 16px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 146px;
    left: 20px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.2s;
            animation: pojava 1s ease forwards 0.2s;
  }
  #velika-zgrada-hor-lin-leva-1-sprat {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 0px;
    left: 0px;
    bottom: 198px;
    -webkit-transform: rotate(57deg);
            transform: rotate(57deg);
    -webkit-animation: velika-zgrada-hor-lin-leva-1-sprat 0.6s ease forwards;
            animation: velika-zgrada-hor-lin-leva-1-sprat 0.6s ease forwards;
    opacity: 0;
  }
  @-webkit-keyframes velika-zgrada-hor-lin-leva-1-sprat {
    100% {
      -webkit-transform: translate(90px);
              transform: translate(90px);
      height: 76px;
      width: 5px;
      -webkit-transform: rotate(57deg);
              transform: rotate(57deg);
      opacity: 1;
    }
  }
  @keyframes velika-zgrada-hor-lin-leva-1-sprat {
    100% {
      -webkit-transform: translate(90px);
              transform: translate(90px);
      height: 76px;
      width: 5px;
      -webkit-transform: rotate(57deg);
              transform: rotate(57deg);
      opacity: 1;
    }
  }
  #velika-zgrada-hor-lin-leva-2-sprat {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 0px;
    left: -10px;
    bottom: 318px;
    -webkit-transform: rotate(57deg);
            transform: rotate(57deg);
    -webkit-animation: velika-zgrada-hor-lin-leva-1-sprat 0.2s 0.9s ease forwards;
            animation: velika-zgrada-hor-lin-leva-1-sprat 0.2s 0.9s ease forwards;
  }
  #velika-zgrada-hor-lin-desna-1-sprat {
    position: relative;
    background-color: #000;
    height: 5px;
    width: 5px;
    left: 47px;
    bottom: 194px;
    opacity: 0;
    -webkit-transform: rotate(-57deg);
            transform: rotate(-57deg);
    -webkit-animation: velika-zgrada-hor-lin-desna-1-sprat 0.2s 0.35s ease forwards;
            animation: velika-zgrada-hor-lin-desna-1-sprat 0.2s 0.35s ease forwards;
  }
  @-webkit-keyframes velika-zgrada-hor-lin-desna-1-sprat {
    100% {
      -webkit-transform: translate(57px);
              transform: translate(57px);
      height: 57px;
      width: 5px;
      -webkit-transform: rotate(-57deg);
              transform: rotate(-57deg);
      opacity: 1;
    }
  }
  @keyframes velika-zgrada-hor-lin-desna-1-sprat {
    100% {
      -webkit-transform: translate(57px);
              transform: translate(57px);
      height: 57px;
      width: 5px;
      -webkit-transform: rotate(-57deg);
              transform: rotate(-57deg);
      opacity: 1;
    }
  }
  #prozor7 {
    position: relative;
    background-color: #000;
    width: 11px;
    height: 16px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 198px;
    left: -8px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.4s;
            animation: pojava 1s ease forwards 0.4s;
  }
  #prozor8 {
    position: relative;
    background-color: #000;
    width: 11px;
    height: 16px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 245px;
    left: -20px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.4s;
            animation: pojava 1s ease forwards 0.4s;
  }
  #prozor9 {
    position: relative;
    background-color: #000;
    width: 11px;
    height: 16px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 230px;
    left: -52px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.4s;
            animation: pojava 1s ease forwards 0.4s;
  }
  #prozor10 {
    position: relative;
    background-color: #000;
    width: 11px;
    height: 16px;
    -webkit-transform: skewY(-35deg);
            transform: skewY(-35deg);
    bottom: 274px;
    left: -42px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.5s;
            animation: pojava 1s ease forwards 0.5s;
  }
  #velika-zgrada-hor-lin-desna-2-sprat {
    position: relative;
    background-color: #000;
    height: 5px;
    width: 5px;
    left: -6px;
    bottom: 315px;
    opacity: 0;
    -webkit-transform: rotate(-57deg);
            transform: rotate(-57deg);
    -webkit-animation: velika-zgrada-hor-lin-desna-1-sprat 0.2s 0.9s ease forwards;
            animation: velika-zgrada-hor-lin-desna-1-sprat 0.2s 0.9s ease forwards;
  }
  #prozor-z1-desno-1 {
    position: relative;
    background-color: #000;
    width: 13px;
    height: 18px;
    -webkit-clip-path: polygon(11% 0, 100% 45%, 100% 100%, 11% 100%);
            clip-path: polygon(11% 0, 100% 45%, 100% 100%, 11% 100%);
    bottom: 28px;
    left: -15px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.1s;
            animation: pojava 1s ease forwards 0.1s;
  }
  #prozor-z1-desno-2 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 16px;
    -webkit-transform: skewY(35deg);
            transform: skewY(35deg);
    bottom: 54px;
    left: -27px;
    opacity: 0;
    -webkit-animation: pojava 1s ease forwards 0.1s;
            animation: pojava 1s ease forwards 0.1s;
  }
  #prozor-z1-desno-3 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 16px;
    -webkit-transform: skewY(35deg);
            transform: skewY(35deg);
    bottom: 114px;
    left: -38px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 0.2s;
            animation: pojava 1s ease-out forwards 0.2s;
  }
  #prozor-z1-desno-4 {
    position: relative;
    background-color: #000;
    width: 12px;
    height: 16px;
    -webkit-transform: skewY(35deg);
            transform: skewY(35deg);
    bottom: 197px;
    left: -50px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 0.5s;
            animation: pojava 1s ease-out forwards 0.5s;
  }
  #leva-zuta-senka {
    position: relative;
    background-color: #c7af6e;
    width: 132px;
    height: 0px;
    bottom: 0px;
    left: -181px;
    -webkit-clip-path: polygon(0 16%, 23% 0, 23% 100%, 0 100%);
            clip-path: polygon(0 16%, 23% 0, 23% 100%, 0 100%);
    -webkit-animation: leva-zuta-senka 1s ease forwards 1.45s;
            animation: leva-zuta-senka 1s ease forwards 1.45s;
  }
  @-webkit-keyframes leva-zuta-senka {
    100% {
      -webkit-transform: translateY(-178px);
              transform: translateY(-178px);
      height: 178px;
    }
  }
  @keyframes leva-zuta-senka {
    100% {
      -webkit-transform: translateY(-178px);
              transform: translateY(-178px);
      height: 178px;
    }
  }
  #desna-zuta-senka {
    position: relative;
    background-color: #c7af6e;
    width: 360px;
    height: 360px;
    bottom: 365px;
    left: 126px;
    -webkit-clip-path: polygon(0 7%, 25% 23%, 25% 45%, 19% 49%, 19% 100%, 15% 100%, 15% 24%, 0 14%);
            clip-path: polygon(0 7%, 25% 23%, 25% 45%, 19% 49%, 19% 100%, 15% 100%, 15% 24%, 0 14%);
    -webkit-animation: desna-zuta-senka 0.7s ease forwards 1.75s;
            animation: desna-zuta-senka 0.7s ease forwards 1.75s;
    opacity: 0;
  }
  @-webkit-keyframes desna-zuta-senka {
    100% {
      opacity: 1;
    }
  }
  @keyframes desna-zuta-senka {
    100% {
      opacity: 1;
    }
  }
  #mala-zgrada-leva-ver-lin {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 5px;
    left: -122px;
    border-top-right-radius: 20%;
    -webkit-animation: mala-zgrada-leva-ver-lin 1.5s ease forwards 0.5s;
            animation: mala-zgrada-leva-ver-lin 1.5s ease forwards 0.5s;
  }
  @-webkit-keyframes mala-zgrada-leva-ver-lin {
    100% {
      -webkit-transform: translateY(-195px);
              transform: translateY(-195px);
      height: 195px;
    }
  }
  @keyframes mala-zgrada-leva-ver-lin {
    100% {
      -webkit-transform: translateY(-195px);
              transform: translateY(-195px);
      height: 195px;
    }
  }
  #mala-zgrada-desna-ver-lin {
    position: relative;
    background-color: #000;
    height: 0px;
    width: 5px;
    left: -76px;
    border-top-right-radius: 15%;
    -webkit-animation: mala-zgrada-desna-ver-lin 1.5s ease forwards 0.6s;
            animation: mala-zgrada-desna-ver-lin 1.5s ease forwards 0.6s;
  }
  @-webkit-keyframes mala-zgrada-desna-ver-lin {
    100% {
      -webkit-transform: translateY(-162px);
              transform: translateY(-162px);
      height: 162px;
    }
  }
  @keyframes mala-zgrada-desna-ver-lin {
    100% {
      -webkit-transform: translateY(-162px);
              transform: translateY(-162px);
      height: 162px;
    }
  }
  #prozor-z2-dole-1 {
    position: relative;
    background-color: #000;
    width: 17px;
    height: 19px;
    -webkit-clip-path: polygon(0 0, 48% 29%, 48% 100%, 0% 100%);
            clip-path: polygon(0 0, 48% 29%, 48% 100%, 0% 100%);
    bottom: 394px;
    left: 230px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.1s;
            animation: pojava 1s ease-out forwards 1.1s;
  }
  #prozor-z2-dole-2 {
    position: relative;
    background-color: #000;
    width: 17px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 430px;
    left: 250px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.2s;
            animation: pojava 1s ease-out forwards 1.2s;
  }
  #prozor-z2-dole-3 {
    position: relative;
    background-color: #000;
    width: 17px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 478px;
    left: 250px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.3s;
            animation: pojava 1s ease-out forwards 1.3s;
  }
  #prozor-z2-dole-4 {
    position: relative;
    background-color: #000;
    width: 17px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 510px;
    left: 230px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.4s;
            animation: pojava 1s ease-out forwards 1.4s;
  }
  #mala-zgrada-hor-lin-1-sprat {
    position: relative;
    background-color: #000;
    height: 5px;
    width: 5px;
    left: 242px;
    bottom: 566px;
    opacity: 0;
    -webkit-transform: rotate(-57deg);
            transform: rotate(-57deg);
    -webkit-animation: mala-zgrada-hor-lin-1-sprat 0.2s 1.3s ease forwards;
            animation: mala-zgrada-hor-lin-1-sprat 0.2s 1.3s ease forwards;
  }
  @-webkit-keyframes mala-zgrada-hor-lin-1-sprat {
    100% {
      -webkit-transform: translate(59px);
              transform: translate(59px);
      height: 59px;
      width: 5px;
      -webkit-transform: rotate(-57deg);
              transform: rotate(-57deg);
      opacity: 1;
    }
  }
  @keyframes mala-zgrada-hor-lin-1-sprat {
    100% {
      -webkit-transform: translate(59px);
              transform: translate(59px);
      height: 59px;
      width: 5px;
      -webkit-transform: rotate(-57deg);
              transform: rotate(-57deg);
      opacity: 1;
    }
  }
  #prozor-z2-gore-1 {
    position: relative;
    background-color: #000;
    width: 16px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 635px;
    left: 230px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.5s;
            animation: pojava 1s ease-out forwards 1.5s;
  }
  #prozor-z2-gore-2 {
    position: relative;
    background-color: #000;
    width: 16px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 644px;
    left: 251px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.6s;
            animation: pojava 1s ease-out forwards 1.6s;
  }
  #prozor-z2-gore-3 {
    position: relative;
    background-color: #000;
    width: 16px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 702px;
    left: 230px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.7s;
            animation: pojava 1s ease-out forwards 1.7s;
  }
  #prozor-z2-gore-4 {
    position: relative;
    background-color: #000;
    width: 16px;
    height: 21px;
    -webkit-clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
            clip-path: polygon(0 7%, 48% 32%, 48% 100%, 0 77%);
    bottom: 732px;
    left: 251px;
    opacity: 0;
    -webkit-animation: pojava 1s ease-out forwards 1.8s;
            animation: pojava 1s ease-out forwards 1.8s;
  }
  #mala-zgrada-hor-lin-2-sprat {
    position: relative;
    background-color: #000;
    height: 5px;
    width: 5px;
    left: 241px;
    bottom: 796px;
    opacity: 0;
    -webkit-transform: rotate(-57deg);
            transform: rotate(-57deg);
    -webkit-animation: mala-zgrada-hor-lin-1-sprat 0.2s 1.7s ease forwards;
            animation: mala-zgrada-hor-lin-1-sprat 0.2s 1.7s ease forwards;
  }
  @-webkit-keyframes mala-zgrada-hor-lin-2-sprat {
    100% {
      -webkit-transform: translate(63px);
              transform: translate(63px);
      height: 63px;
      width: 5px;
      -webkit-transform: rotate(-57deg);
              transform: rotate(-57deg);
      opacity: 1;
    }
  }
  @keyframes mala-zgrada-hor-lin-2-sprat {
    100% {
      -webkit-transform: translate(63px);
              transform: translate(63px);
      height: 63px;
      width: 5px;
      -webkit-transform: rotate(-57deg);
              transform: rotate(-57deg);
      opacity: 1;
    }
  }
  #TRIPLE888-animation {
    position: absolute;
    top: 463px;
    width: 480px;
    height: 72px;
    margin: auto;
    left: -46px;
    right: 0;
    -webkit-animation: triple888-pojava 1s ease-in-out forwards 2s;
            animation: triple888-pojava 1s ease-in-out forwards 2s;
    opacity: 0;
  }
  @-webkit-keyframes triple888-pojava {
    100% {
      opacity: 1;
    }
  }
  @keyframes triple888-pojava {
    100% {
      opacity: 1;
    }
  }
  #constructions-animation {
    position: absolute;
    top: 540px;
    width: 400px;
    height: 28px;
    margin: auto;
    left: -46px;
    right: 0;
    -webkit-animation: triple888-pojava 1.5s ease-in-out forwards 2.2s;
            animation: triple888-pojava 1.5s ease-in-out forwards 2.2s;
    opacity: 0;
  }
}

@media (max-width: 800px) {
  #my-intro-animation {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

img {
  width: 100%;
}

#logo {
  width: 130px;
  height: 131px;
  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;
  padding-top: 1rem;
}

#main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2.1rem;
}

#main-nav ul #main-nav-first-3-lis,
#main-nav ul #main-nav-last-2-lis {
  display: none;
}

#main-nav li {
  padding: 1rem 1.5rem;
}

#main-nav ul a {
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px transparent solid;
  padding-bottom: 0.5rem;
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
}

#main-nav ul a:hover {
  border-color: #a7a3a3;
}

#main-nav ul a.current {
  border-color: #d6be76;
}

#main-nav .our-work {
  min-width: 89px;
}

#header-home {
  height: 100vh;
  color: #fff;
  position: relative;
  background-image: url("../img/showcase1opt2.jpg");
  -webkit-animation: changeBg 30s linear infinite 2s;
          animation: changeBg 30s linear infinite 2s;
  -webkit-animation-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
          animation-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
  background-size: cover;
}

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

#header-home .header-content h1 {
  display: inline-block;
  font-size: 4rem;
  line-height: 1.2;
  opacity: 1;
  color: #fff;
}

#header-home .header-content h1 span {
  color: #d6be76;
}

#header-home .header-content i {
  margin-left: -31px;
  display: block;
  visibility: hidden;
  margin-top: -25px;
  cursor: pointer;
  padding: 20px;
}

#header-home .header-content #scrolling-mouse-shape {
  position: relative;
  width: 40px;
  height: 70px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 35%;
  margin: 30px auto;
}

#header-home .header-content #scrolling-mouse-shape:hover {
  cursor: pointer;
}

#header-home .header-content #scrolling-mouse-wheel {
  position: absolute;
  left: 16px;
  top: 10px;
  width: 6px;
  height: 16px;
  background-color: #fff;
  border-radius: 40%;
  -webkit-animation-name: scrolling-wheel;
          animation-name: scrolling-wheel;
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#header-inner {
  background: url("../img/showcase112.jpg") no-repeat 20% 30%/cover;
  height: 7.2rem;
  border-bottom: 3px solid #d6be76;
  padding-bottom: 2.6rem;
}

#home-a .specials {
  margin-top: 2rem;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

#home-a .specials img {
  height: 250px;
}

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

#home-a .specials h4 {
  text-transform: uppercase;
  font-weight: normal;
}

#home-c .process {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}

#home-c .process-step {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 28px;
  background: #d6be76;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  line-height: 15px;
  padding: 0.1rem;
  -webkit-transition: all 1s;
  transition: all 1s;
}

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

#home-c .process-icon:hover {
  background: #d6be76;
  width: 90px;
  height: 90px;
  line-height: 90px;
}

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

#home-c .process p {
  font-size: 22px;
  margin-top: -8px;
}

#home-c .counter {
  font-size: 65px;
  margin-top: -25px;
}

#home-c .all-to-middle {
  max-width: 1000px;
  margin: 0 auto;
}

#about-a {
  margin-bottom: 0.5rem;
}

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

#about-a .about-info p {
  font-style: italic;
}

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

#about-a .bio {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: bio;
  border-left: 3px solid #d6be76;
  padding: 0.8rem;
}

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

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

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

#about-a .award-1 .fas,
#about-a .award-2 .fas,
#about-a .award-3 .fas {
  color: #d6be76;
  margin: 1rem;
}

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

#about-b .progress div {
  height: 100%;
  color: #fff;
  text-align: center;
  background: #d6be76;
}

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

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

#about-d {
  padding-bottom: 2rem;
}

#about-d .testimonials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  gap: 2rem;
}

#about-d .testimonials .two-persons-in-signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about-d .testimonials ul {
  list-style: none;
  margin-top: 1rem;
  margin-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

#about-d .testimonials img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

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

#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 .message-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.5rem 1rem;
}

#contact-a .g-recaptcha {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: recaptcha;
  margin: 0 auto;
  widows: 200px;
  text-align: center;
}

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

#contact-a .status {
  font-size: 15px;
  color: green;
}

#contact-a .status span {
  font-size: 15px;
  color: red;
}

#contact-b .contact-info {
  /*
      display: flex;
      justify-content: space-evenly;
      */
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

#contact-b .contact-info i {
  margin-bottom: 0.6rem;
}

#contact-c h1 {
  text-align: center;
  font-size: 3rem;
}

#contact-map {
  height: 300px;
  width: 100%;
}

.parallax {
  min-height: 400px;
  background: transparent;
}

.info-parallax-title {
  z-index: 2;
  position: relative;
  padding: 40px 5px 5px 5px;
  font-size: 40px;
  color: white;
  text-transform: none;
  font-weight: 400;
  opacity: 0;
  left: 80px;
}

#yellow-line-duplexes, #yellow-line-granny-flats, #yellow-line-free-standing {
  z-index: 2;
  position: relative;
  height: 3px;
  background-color: #d6be76;
}

#yellow-line-duplexes {
  width: 175px;
  opacity: 0;
  left: -80px;
}

#yellow-line-granny-flats {
  width: 235px;
  opacity: 0;
  left: -80px;
}

#yellow-line-free-standing {
  width: 485px;
  opacity: 0;
  left: -80px;
}

.info-parallax-text {
  z-index: 2;
  position: relative;
  padding: 30px 5px 5px 5px;
  font-size: 24px;
  color: white;
  text-transform: none;
  font-weight: 100;
  max-width: 600px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  opacity: 0;
  left: 80px;
}

.info-parallax-btn-light-1 {
  z-index: 2;
  position: relative;
  display: inline-block;
  padding: 0.4rem 1.8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
  color: #333;
  background-color: #d6be76;
  margin-top: 1.5rem;
  opacity: 0;
  left: -80px;
}

.info-parallax-btn-light-2 {
  z-index: 2;
  position: relative;
  display: inline-block;
  padding: 0.4rem 1.8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
  color: #333;
  background-color: #d6be76;
  margin-top: 1.5rem;
  opacity: 0;
  left: -80px;
}

.info-parallax-btn-light-3 {
  z-index: 2;
  position: relative;
  display: inline-block;
  padding: 0.4rem 1.8rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
  color: #333;
  background-color: #d6be76;
  margin-top: 1.5rem;
  opacity: 0;
  left: -80px;
}

.info-parallax-btn-light-1:hover {
  background-color: #333;
  color: #d6be76;
}

.info-parallax-btn-light-2:hover {
  background-color: #333;
  color: #d6be76;
}

.info-parallax-btn-light-3:hover {
  background-color: #333;
  color: #d6be76;
}

#northern-footer {
  border-top: 10px solid #d6be76;
  background-image: url("../img/home/concrete.jpg");
}

.northern-footer-content {
  color: #fff;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: 1fr 2fr 1fr 2fr 1fr;
      grid-template-columns: 1fr 2fr 1fr 2fr 1fr;
  text-align: center;
  margin-top: 1.2rem;
  -ms-flex-line-pack: center;
      align-content: center;
}

.northern-footer-content img {
  height: 110px;
  width: 110px;
}

.northern-footer-content #short-desc {
  margin-top: 0.7rem;
}

.northern-footer-content #northern-footer-quick-links #quick-links {
  color: white;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-align: center;
}

.northern-footer-content #northern-footer-quick-links #quick-links a {
  color: white;
  display: block;
  padding: 0.1rem;
}

.northern-footer-content #northern-footer-quick-links #quick-links a:hover {
  color: #d6be76;
}

.northern-footer-content #northern-footer-social {
  margin-left: 4rem;
  margin-top: 0.4rem;
}

.northern-footer-content #northern-footer-social .fab {
  border: 2px #fff solid;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  padding: 0.5rem;
  color: white;
  margin-bottom: 1.2rem;
  display: block;
}

.northern-footer-content #northern-footer-social .fab:hover {
  background: #d6be76;
}

#main-footer {
  background: #333;
  color: #fff;
  background-color: #0f0f0f;
  height: 2.8rem;
}

#main-footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gotopbtn {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 50px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 20px;
  z-index: 4;
}

@-webkit-keyframes changeBg {
  0% {
    background-image: url("../img/showcase1opt2.jpg");
  }
  33% {
    background-image: url("../img/showcase2opt3.jpg");
  }
  66% {
    background-image: url("../img/showcase5opt1.jpg");
  }
}

@keyframes changeBg {
  0% {
    background-image: url("../img/showcase1opt2.jpg");
  }
  33% {
    background-image: url("../img/showcase2opt3.jpg");
  }
  66% {
    background-image: url("../img/showcase5opt1.jpg");
  }
}

@-webkit-keyframes scrolling-wheel {
  0% {
    background-color: white;
  }
  50% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@keyframes scrolling-wheel {
  0% {
    background-color: white;
  }
  50% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  100% {
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

#northern-footer-for-mobile {
  display: none;
}

@media (max-width: 1366px) and (min-width: 1000px) {
  #header-home {
    -webkit-animation: changeBg1366 30s linear infinite 2s;
            animation: changeBg1366 30s linear infinite 2s;
    -webkit-animation-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
            animation-timing-function: cubic-bezier(0.2, -2, 0.8, 2);
    background-position: 20% 30%;
  }
  @-webkit-keyframes changeBg1366 {
    0% {
      background-image: url("../img/1366px-images/showcase1.jpg");
      background-repeat: no-repeat;
    }
    33% {
      background-image: url("../img/1366px-images/showcase2.jpg");
      background-repeat: no-repeat;
    }
    66% {
      background-image: url("../img/1366px-images/showcase3.jpg");
      background-repeat: no-repeat;
    }
  }
  @keyframes changeBg1366 {
    0% {
      background-image: url("../img/1366px-images/showcase1.jpg");
      background-repeat: no-repeat;
    }
    33% {
      background-image: url("../img/1366px-images/showcase2.jpg");
      background-repeat: no-repeat;
    }
    66% {
      background-image: url("../img/1366px-images/showcase3.jpg");
      background-repeat: no-repeat;
    }
  }
}

@media (max-width: 950px) {
  .northern-footer-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-right: 5rem;
  }
  .northern-footer-content #northern-footer-social {
    margin: auto;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
  .northern-footer-content #northern-footer-social .fab {
    display: inline-block;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 550px) {
  .northern-footer-content {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .northern-footer-content img {
    height: 100px;
    width: 100px;
  }
  .northern-footer-content #short-desc {
    font-size: 90%;
  }
  .northern-footer-content #northern-footer-info {
    font-size: 90%;
  }
  .northern-footer-content #northern-footer-quick-links #quick-links a {
    font-size: 90%;
  }
}

@media (max-width: 380px) {
  .northern-footer-content {
    gap: 0.6rem;
    margin-left: -10px;
  }
  .northern-footer-content img {
    height: 100px;
    width: 100px;
  }
  .northern-footer-content #short-desc {
    font-size: 90%;
  }
  .northern-footer-content #northern-footer-info {
    font-size: 90%;
  }
  .northern-footer-content #northern-footer-quick-links #quick-links a {
    font-size: 90%;
  }
  #about-d .testimonials p {
    width: 86%;
  }
}

@media (max-width: 800px) {
  #header-home {
    height: 35rem;
    background-position: 20% 30%;
  }
  #header-home .header-content {
    padding-top: 5rem;
  }
  #home-a,
  #about-a,
  #work-a,
  #contact-a {
    margin-top: 2rem;
  }
  #home-a .specials {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  #home-d .process {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  #logo {
    border-radius: 3%;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.55);
  }
}

@media (max-width: 700px) {
  #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;
    padding-top: 2rem;
  }
  #main-nav li {
    padding: 1rem;
  }
  #header-home {
    height: 13rem;
    border-bottom: 3px solid #d6be76;
    background-position: 20% 30%;
  }
  #header-home .header-content {
    display: none;
  }
  #header-inner {
    height: 9.4rem;
  }
  #about-a .about-info {
    display: inline;
  }
  #about-d .testimonials {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #home-c .process {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 550px) {
  #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 ul li {
    display: none;
    height: 0;
    width: 0;
  }
  #main-nav ul #visible-uls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    text-align: center;
  }
  #main-nav ul #main-nav-first-3-lis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #main-nav ul #main-nav-first-3-lis li {
    display: inline-block;
    padding: 0.6rem 2.5rem;
  }
  #main-nav ul #main-nav-first-3-lis .our-work {
    display: inline;
  }
  #main-nav ul #main-nav-last-2-lis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 65px;
  }
  #main-nav ul #main-nav-last-2-lis li {
    display: inline-block;
    padding: 2.1rem 3.2rem;
  }
  #header-home {
    height: 13rem;
    border-bottom: 3px solid #d6be76;
    background-position: 20% 30%;
  }
  #header-home .header-content {
    display: none;
  }
  #header-inner {
    height: 10.4rem;
  }
  #header-inner #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;
  }
  #header-inner #main-nav ul li {
    display: none;
    height: 0;
    width: 0;
  }
  #header-inner #main-nav ul #visible-uls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
  #header-inner #main-nav ul #main-nav-first-3-lis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #header-inner #main-nav ul #main-nav-first-3-lis li {
    display: inline-block;
    padding: 0.6rem 2.5rem;
  }
  #header-inner #main-nav ul #main-nav-last-2-lis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #header-inner #main-nav ul #main-nav-last-2-lis li {
    display: inline-block;
    padding: 2.1rem 3.2rem;
  }
  #home-a .specials,
  #home-b .stats,
  #home-c .process,
  #about-d .testimonials,
  #contact-b .contact-info,
  .items {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #home-a {
    padding-top: 5rem;
  }
  #home-a .specials div {
    border-bottom: 1px #f4f4f4 solid;
    padding-bottom: 1rem;
  }
  #home-a .specials div:last-child {
    border: none;
    padding-bottom: 0;
  }
  #home-b .stats div {
    padding: 2rem 0 1rem 0;
  }
  .parallax #parallax-granny-flats {
    height: 450px;
  }
  .parallax #parallax-free-standing-town-homes {
    height: 510px;
  }
  .parallax #parallax-free-standing-town-homes #yellow-line-free-standing {
    width: 345px;
  }
  #about-a {
    margin-top: 3.85rem;
  }
  #about-a .about-info {
        grid-template-areas: "aw1" "aw2" "aw3";
  }
  #about-c {
    display: none;
  }
  #work-a {
    padding-top: 5rem;
  }
  #contact-a {
    padding-top: 5rem;
  }
  #contact-a .text-fields {
        grid-template-areas: "name" "subject" "email" "phone" "message" "recaptcha";
  }
  #contact-b div {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px #555 solid;
  }
  #contact-b div:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #contact-c h1 {
    font-size: 2rem;
  }
  #main-footer {
    height: 7rem;
  }
  #main-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem;
    height: 5rem;
  }
}

@media (max-height: 580px) {
  #header-home .header-content {
    padding-top: 3rem;
  }
}

@media (max-width: 430px) {
  .parallax #parallax-granny-flats {
    height: 500px;
  }
  .parallax #parallax-free-standing-town-homes {
    height: 600px;
  }
  .parallax #parallax-free-standing-town-homes #yellow-line-free-standing {
    width: 345px;
  }
  .parallax #parallax-duplexes {
    height: 535px;
  }
}

@media (max-width: 411px) {
  .parallax #parallax-granny-flats {
    height: 570px;
  }
  .parallax #parallax-free-standing-town-homes {
    height: 625px;
  }
  .parallax #parallax-free-standing-town-homes #yellow-line-free-standing {
    width: 305px;
  }
  .parallax #parallax-duplexes {
    height: 565px;
  }
}

@media (max-height: 330px) {
  #header-home .header-content h1 {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=main.css.map */