@-webkit-keyframes fade-in {
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fade-in {
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes slidein {
  from {
    margin-right: 100%;
    width: 300%;
  }
  to {
    margin-right: 0%;
    width: 100%;
  }
}
@keyframes slidein {
  from {
    margin-right: 100%;
    width: 300%;
  }
  to {
    margin-right: 0%;
    width: 100%;
  }
}
.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out forwards;
          animation: fade-in 200ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out forwards;
          animation: fade-out 200ms ease-in-out forwards;
}

.items__layer .items__item {
  box-shadow: 0 32px 40px -20px rgba(0, 0, 0, 0.25);
}
.items__layer .items__item:after {
  content: attr(data-title);
  position: fixed;
  line-height: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.items__layer .items__item:hover:after {
  visibility: visible;
  opacity: 1;
}
.items__layer:nth-child(1) .items__item {
  top: 100px;
  left: 400px;
  width: 350px;
  height: 480px;
  background: #E9EDEA;
}
.items__layer:nth-child(1) .items__item:after {
  top: -23px;
  right: 0;
  color: #d0d8d2;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: rgba(50, 73, 74, 0.988);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: 1.375rem;
}
@media (min-width: 64em) {
  body {
    font-size: 1.375rem;
  }
}
body.noscroll {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin-top: 0px;
  font-weight: 300;
  line-height: 1.15;
  color: #234e70;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: 2.31rem;
  font-weight: 500;
}
@media (min-width: 64em) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

p {
  line-height: 1.1;
  margin-bottom: 2.25rem;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

.container {
  max-width: auto;
  margin: 0 auto;
}
.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-right: 5.5rem;
    padding-left: 5.5rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 3.375rem;
  padding-bottom: 3.375rem;
}
.container--px {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}
.container--ph {
  border-radius: 18px;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}
.container--pp {
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}
.container--pg {
  padding: 2rem 0;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button,
.button {
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  border-radius: 50px;
  border: 0;
  box-shadow: transparent 0 0 0 3px, rgba(0, 0, 0, 0.224) 4px 6px 20px;
  background: linear-gradient(45deg, #ff3a3f 0%, #ff0008 100%);
  cursor: pointer;
  font-weight: 400;
  font-size: 0.875rem;
  color: white;
  transition: opacity 350ms ease-in-out;
}
button:hover,
.button:hover {
  opacity: 0.75;
  box-shadow: #ff0000 0 0 0 3px, transparent 0 0 0 0;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  transition: all 500ms ease-in-out;
  top: 0;
  left: 0;
}
.header__scroll-down {
  transform: translate3d(0, -100%, 0);
}
.header__scroll-up {
  filter: drop-shadow(0, -10px, 20px rgb(0, 0, 0));
}
.header.open .overlay {
  display: block;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(rgb(13, 13, 13), transparent);
}
.header nav {
  position: relative;
  background-color: #f2f2f2;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.header__logo svg path {
  transition: fill 150ms ease-in-out;
}
.header__logo:hover svg path {
  fill: rgb(255, 0, 0);
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: rgb(0, 0, 0);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  margin-top: 1.5rem;
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: #eaeaea;
  padding: 1.625rem;
  border-radius: 5px;
  z-index: 99999;
}
.header__menu a {
  display: block;
  color: rgba(50, 73, 74, 0.988);
  padding: 0.625rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
}
.header__menu a:hover {
  color: red;
}
.header__links a {
  position: relative;
  font-weight: 300;
  font-size: 1.06rem;
  color: rgb(0, 0, 0);
  transition: color 350ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(45deg, #ff3a3f 0%, #ff0008 100%);
  opacity: 0;
  height: 5px;
  border-radius: 20px;
  left: 0;
  right: 0;
  bottom: -40px;
  transition: opacity 350ms ease-in-out;
}
.header__links a:hover {
  color: rgb(255, 57, 57);
}
.header__links a:hover::before {
  opacity: 1;
}

.hero {
  background-image: linear-gradient(#eaeaea, white);
  padding-top: 8.8rem;
}
@media (min-width: 64em) {
  .hero {
    display: flex;
    align-items: center;
  }
}
.hero__image {
  background-image: url("/images/housecopy.png");
  background-size: 105%;
  background-repeat: no-repeat;
  background-position: center bottom;
  min-height: 20.5rem;
  z-index: auto;
  /*
          @include keyframes(fade-in) {
              10% {
                  opacity: 0;
              }

              90% {
                  opacity: 1;
              }
          }

          @include animation('fade-in 4s 1');
          */
}
@media (min-width: 40em) {
  .hero__image {
    flex: 3;
    order: 2;
    min-height: 38rem;
    background-image: url("/images/housecopy.png");
    background-size: 100%;
    background-position: center;
  }
}
@media (min-width: 64em) {
  .hero__image {
    flex: 3;
    order: 2;
    min-height: 45rem;
    background-image: url("/images/house2.png");
    background-size: 88%;
    background-position: center;
    /* @include keyframes(fade-in) {
         10% {
             opacity: 0;
         }

         90% {
             opacity: 1;
         }
     }

     @include animation('fade-in 4s 1');
     */
  }
}
.hero__text {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 32px 40px -20px rgba(0, 0, 0, 0.25);
  width: 392px;
  transition: width 2s, height 4s;
}
.hero__text__inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 800px;
  background: #fff;
}
.hero__text:after {
  content: attr(data-title);
  position: fixed;
  line-height: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.hero__text:hover:after {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 39.9375em ) {
  .hero__text {
    width: 360px;
  }
}
@media (min-width: 40em) {
  .hero__text {
    width: 690px;
    text-align: center;
    flex: 2;
    order: 1;
    padding-right: 5.5rem;
    padding-left: 5.5rem;
    -webkit-animation: slidein 1.4s 1;
    animation: slidein 1.4s 1;
  }
  @-webkit-keyframes slidein {
    0% {
      margin-left: 100%;
      width: 100%;
    }
    90% {
      margin-left: 0%;
      width: 100%;
    }
  }
  @keyframes slidein {
    0% {
      margin-left: 100%;
      width: 100%;
    }
    90% {
      margin-left: 0%;
      width: 100%;
    }
  }
}
@media (min-width: 64em) {
  .hero__text {
    text-align: left;
    flex: 2;
    order: 1;
    padding-right: 5.5rem;
    padding-left: 5.5rem;
    transform: translateX(30px);
    -webkit-animation: slidein 1.4s 1;
    animation: slidein 1.4s 1;
  }
  @-webkit-keyframes slidein {
    0% {
      margin-left: 100%;
      width: 100%;
    }
    90% {
      margin-left: 0%;
      width: 100%;
    }
  }
  @keyframes slidein {
    0% {
      margin-left: 100%;
      width: 100%;
    }
    90% {
      margin-left: 0%;
      width: 100%;
    }
  }
}

.feature {
  background-color: #ebebeb;
  text-align: left;
}
.feature .title {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: black;
}
.feature .icon {
  display: inline-block;
  padding-top: 4rem;
  padding-right: 4rem;
  padding-left: 3rem;
}
.feature .icon svg path {
  transition: fill 150ms ease-in-out;
  fill: #5c4e43;
}
.feature .icon:hover svg path {
  fill: #393028;
}
@media (min-width: 40em) {
  .feature {
    text-align: left;
  }
}
.feature__intro {
  display: inline-block;
  padding-bottom: 4rem;
  color: #000000;
}
.feature__intro h2 {
  margin-bottom: 0;
  color: #000000;
}
@media (min-width: 64em) {
  .feature__intro {
    width: 60%;
  }
}
@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
.feature__item {
  border-radius: 10px;
  margin: 10px;
  padding: 0.9375rem;
  transition: all 0.4s ease;
}
.feature__item:hover {
  background-color: #a5a5a5;
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9);
}
@media (min-width: 40em) {
  .feature__item {
    flex: 1 0 50%;
  }
}
@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}
.feature__icon {
  margin-bottom: 1.75rem;
  text-align: center;
}
@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.15;
  color: rgb(40, 38, 35);
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 64em) {
  .feature__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.feature__description {
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: black;
}
.feature__description .center {
  text-align: center;
}
.feature__btn {
  margin: 3rem 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 63.9375em) {
  .feature__btn {
    margin: 1rem 0;
  }
}

.footer {
  background-color: #6d1212;
  color: white;
  padding: 2.5rem;
  text-align: center;
}
@media (min-width: 64em) {
  .footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 3fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo links1 links2 cta" "social links1 links2 copyright";
    gap: 1rem;
    justify-content: start;
  }
}
.footer a {
  color: white;
}
.footer__logo {
  display: inline-block;
}
.footer__logo svg path {
  fill: rgb(255, 255, 255);
  transition: fill 150ms ease-in-out;
}
.footer__logo:hover svg path {
  fill: rgb(255, 0, 0);
}
@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}
.footer__social a {
  display: inline-block;
  height: 1.25rem;
}
.footer__social a svg path {
  transition: fill 150ms ease-in-out;
}
.footer__social a:hover svg path {
  fill: rgb(255, 0, 0);
}
@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    align-self: end;
  }
}
.footer__social a:not(:last-child) {
  margin-right: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9375rem;
}
@media (min-width: 64em) {
  .footer__links {
    justify-content: space-between;
    align-items: start;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
@media (max-width: 63.9375em) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
.footer__links a {
  line-height: 2.25rem;
  transition: color 150ms ease-in-out;
}
.footer__links a:hover {
  color: rgb(255, 0, 0);
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
@media (max-width: 63.9375em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}
.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7098039216);
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    justify-self: end;
  }
}

.projects {
  background-color: rgb(221, 221, 221);
  font-weight: 600;
  padding-bottom: 3rem;
}
.projects__title {
  text-align: center;
  padding-top: 6rem;
  font-size: 3.5rem;
  color: #000000;
}
.projects h4 {
  line-height: 1.8rem;
  text-align: center;
  padding: 0 2rem;
}
.projects .btn {
  text-align: center;
}
.projects .news-container {
  --icon: rgb(255, 255, 255);
  --shadow: rgba(0, 0, 0, 0.492);
  --width: 100px;
  width: 100%;
}
.projects .box-container {
  --icon: #fff;
  --shadow: #000;
  --width: 100px;
  max-width: 600px;
  width: 100%;
}
.projects .scene {
  margin-top: 2rem;
  position: relative;
}
.projects .scene .next {
  margin-right: 3rem;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  opacity: 0;
  transition: 400ms all;
  pointer-events: none;
  cursor: pointer;
  color: var(--icon, #000);
  right: 0;
}
@media (max-width: 63.9375em) {
  .projects .scene .next {
    margin-right: 5px;
  }
}
.projects .scene .prev {
  margin-left: 3rem;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  opacity: 0;
  transition: 400ms all;
  pointer-events: none;
  cursor: pointer;
  color: var(--icon, #000);
  left: 0;
}
@media (max-width: 63.9375em) {
  .projects .scene .prev {
    margin-left: 5px;
  }
}
.projects .scene::before {
  content: "";
  width: var(--width, 60px);
  height: 70%;
  position: absolute;
  margin-top: 63px;
  top: 0;
  opacity: 0;
  transition: 400ms all;
  pointer-events: none;
  left: 0;
}
.projects .scene::after {
  content: "";
  width: var(--width, 60px);
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: 400ms all;
  pointer-events: none;
  right: 0;
}
.projects .scene .item {
  pointer-events: all;
  height: 16vw;
  position: relative;
  background: rgb(91, 91, 91);
  width: 23vw;
  margin-right: 1vw;
  display: inline-block;
  transition: 0.4s cubic-bezier(0.47, 0.16, 0.01, 1.48);
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 63.9375em) {
  .projects .scene .item {
    height: 80vw;
    width: 100%;
    margin-right: -6px;
    border-radius: 0;
  }
}
.projects .scene .item:last-of-type {
  margin-right: 10vw;
}
@media (max-width: 63.9375em) {
  .projects .scene .item:last-of-type {
    margin-right: 0;
  }
}
.projects .scene .item:before {
  content: "";
  position: absolute;
  top: -18rem;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  opacity: 0;
  transform: translate3d(0, 45%, 0);
  transition: 0.8s cubic-bezier(0.14, 0.53, 0.05, 0.99);
}
@media (max-width: 63.9375em) {
  .projects .scene .item:before {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.784), 0);
  }
}
.projects .scene .item img {
  width: 30vw;
}
@media (max-width: 63.9375em) {
  .projects .scene .item img {
    width: 145%;
    margin-left: -7rem;
  }
}
.projects .scene .item .title {
  color: white;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5vw;
  font-size: 1.5vw;
  font-weight: 500;
  font-family: "Objektiv Mk2", sans-serif;
  transition: 0.4s cubic-bezier(0.47, 0.16, 0.01, 1.48);
  transform: translate3d(0, 25%, 0);
  opacity: 0;
}
@media (max-width: 63.9375em) {
  .projects .scene .item .title {
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 4rem;
    text-align: center;
    opacity: 1;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 64em) {
  :focus-within .projects .scene .item, :hover .projects .scene .item {
    transform: translate3d(-2vw, 0, 0);
  }
}
@media (min-width: 64em) {
  .projects .scene .item:focus, .projects .scene .item:hover {
    transform: scale3d(1.2, 1.2, 1);
  }
}
@media (min-width: 64em) {
  .projects .scene .item:focus:before, .projects .scene .item:hover:before {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@media (min-width: 64em) {
  .projects .scene .item:focus .title, .projects .scene .item:hover .title {
    opacity: 1;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 64em) {
  .projects .scene .item:focus ~ .item, .projects .scene .item:hover ~ .item {
    transform: translate3d(2vw, 0, 0);
  }
}
.projects .left .prev {
  opacity: 1;
  pointer-events: auto;
}
.projects .left::before {
  opacity: 1;
}
.projects .right .next {
  opacity: 1;
  pointer-events: auto;
}
.projects .right::after {
  opacity: 1;
}
.projects .track {
  white-space: nowrap;
  overflow-x: auto;
  transition: 0.4s cubic-bezier(0.47, 0.16, 0.01, 1.48);
  scroll-behavior: smooth;
  width: 104.3vw;
  margin-left: -6vw;
  padding: 4vw 10vw;
}
@media (max-width: 63.9375em) {
  .projects .track {
    width: 100%;
    padding: 10vw 0;
    margin-left: 0;
  }
}
@media (min-width: 64em) {
  .projects .track:hover {
    transform: translate3d(2vw, 0, 0);
  }
}
.projects .track::-webkit-scrollbar {
  display: none;
}

.testimonials {
  background-color: rgba(0, 0, 0, 0.9764705882);
  padding-bottom: 15rem;
  overflow: hidden;
}
.testimonials .title {
  text-align: center;
  padding-top: 6rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
}
.testimonials .reviews {
  padding: 20px;
}

.contact {
  background-color: #e8e8e8;
  align-self: center;
  padding-top: 3rem;
}
.contact .title {
  text-align: center;
  padding-top: 6rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #0c0c0c;
}
.contact button {
  margin: 1rem 13rem;
}
@media (max-width: 63.9375em) {
  .contact button {
    margin: 1rem 6rem;
  }
}
.contact .text {
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem 0;
}
.contact__form {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
.contact form {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 5rem 10rem;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
}
@media (max-width: 63.9375em) {
  .contact form {
    padding: 2rem 1rem;
  }
}
.contact form input, .contact form textarea {
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  border-radius: 10px;
  background-color: rgb(248, 248, 248);
  font-size: 16px;
}
.contact form a {
  align-self: center;
  text-align: center;
  width: 150px;
  margin: 20px auto 0;
}
.contact__title {
  padding-bottom: 1rem;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  color: #0c0c0c;
}
@media (min-width: 64em) {
  .contact__title {
    padding-bottom: 0;
  }
}
.contact__info {
  display: block;
  text-align: center;
  color: black;
  justify-content: center;
  padding-bottom: 3rem;
}
.contact__info .icon {
  padding-top: 2rem;
}
@media (min-width: 64em) {
  .contact__info .icon {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.contact__info .icon__item {
  line-height: 2.25rem;
  align-self: center;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
}
.contact__info .item {
  line-height: 2.25rem;
  align-self: center;
  font-size: 0.9375rem;
  font-weight: 500;
}

.project2 .text {
  padding: 2rem 2rem;
  justify-content: center center;
  text-align: center;
  z-index: 10;
  color: rgb(87, 87, 87);
  font-size: 1.7rem;
  font-weight: 700;
}
.project2 .title {
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.4);
}
.project2 .title h1 {
  padding: 20.5rem 2rem 0 2rem;
  justify-content: center center;
  text-align: center;
  z-index: 10;
  color: rgb(255, 255, 255);
  font-size: 3rem;
}
@media (min-width: 40em) {
  .project2 .title h1 {
    padding: 26rem 2rem 0 2rem;
  }
}
.project2 .title h2 {
  padding: 0 1rem 0 1rem;
  justify-content: center center;
  text-align: center;
  z-index: 10;
  color: rgb(255, 255, 255);
  font-size: 2rem;
}
.project2 .intro {
  height: 86vh;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 40em) {
  .project2 .intro {
    height: 91vh;
  }
}
.project2 .intro .slideshow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.75s ease-in-out;
  -webkit-animation: none;
          animation: none;
}
@-webkit-keyframes zoom-out {
  0% {
    transform: scale(1.4, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.4, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}
.project2 .project-gallery {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 64em) {
  .project2 .project-gallery {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 230vh;
    justify-content: start;
    gap: 1rem;
    padding: 2rem 5rem;
  }
}
.project2 .project-gallery__image {
  justify-content: center;
  padding: 5px;
}
.project2 .project-gallery__image img {
  border: solid rgba(0, 0, 0, 0.402) 4px;
  border-radius: 5px;
  width: 394px;
  margin-bottom: 4px;
}
@media (min-width: 64em) {
  .project2 .project-gallery__image img {
    width: 420px;
  }
}

.card {
  background-color: #f9f9f9;
  text-align: center;
  justify-content: center;
  padding: 15px;
}
@media (min-width: 64em) {
  .card {
    padding: 30px 170px 30px 170px;
  }
}
.card__back {
  padding: 33px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7333333333); /* fallback for old browsers */
  background: linear-gradient(rgba(79, 79, 79, 0.736), rgba(0, 0, 0, 0.906)), url("/images/painting in.jpg"); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(rgba(79, 79, 79, 0.736), rgba(0, 0, 0, 0.906)), url("/images/painting in.jpg"); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: cover;
  background-position: 0px;
  background-repeat: no-repeat;
}
@media (min-width: 64em) {
  .card__back {
    padding-top: 120px;
    padding-bottom: 120px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.7333333333); /* fallback for old browsers */
    background: linear-gradient(rgba(191, 191, 191, 0.8), rgba(0, 0, 0, 0.632)), url("/images/painting in.jpg"); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(rgba(158, 158, 158, 0.552), rgba(0, 0, 0, 0.906)), url("/images/painting in.jpg"); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-position: 0px;
    background-repeat: no-repeat;
  }
}
.card__back h1 {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
.card__back h2 {
  color: rgb(255, 255, 255);
}
@media (max-width: 63.9375em) {
  .card__back h2 {
    font-size: 1.4rem;
  }
}
.card__back h3 {
  color: rgb(255, 255, 255);
}

.gallery {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.gallery::-moz-selection {
  color: #fff;
  background: #007bff;
}
.gallery::selection {
  color: #fff;
  background: #007bff;
}
.gallery__placeholder {
  background-color: #000000;
  text-align: center;
  padding: 14px;
}
.gallery__placeholder svg path {
  transition: fill 150ms ease-in-out;
}
.gallery__placeholder:hover svg path {
  fill: #ff2b2b;
}
.gallery__wrapper {
  margin: auto;
  padding: 11px 40px 5px 40px;
  background-color: #f9f9f9;
}
.gallery__wrapper .title {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #000000;
}
.gallery__wrapper nav {
  display: flex;
  justify-content: left;
  margin-top: 10px;
}
@media (min-width: 64em) {
  .gallery__wrapper nav {
    margin-left: 30px;
  }
}
@media (max-width: 39.9375em ) {
  .gallery__wrapper {
    margin: auto;
    padding: 0px;
    padding-top: 6px;
  }
}
.gallery__items {
  display: flex;
  width: 100%;
  justify-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 39.9375em ) {
  .gallery__items {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
  }
}
@media (min-width: 40em) {
  .gallery__items {
    justify-content: left;
  }
}
@media (max-width: 39.9375em ) {
  .gallery__items span {
    margin: 5px;
  }
}
@media (max-width: 63.9375em) {
  .gallery__items span {
    padding: 7px 15px;
  }
}
.gallery__items span {
  padding: 5px 22px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #000000;
  border-radius: 50px;
  border: 1.5px solid #000000;
  transition: all 0.3s ease;
  margin: 3px;
}
@media (min-width: 64em) {
  .gallery__items span {
    padding: 4px 25px;
    border: 2px solid #000000;
  }
}
.gallery__items span:hover {
  color: #fff;
  background: #000000;
}
.gallery__items span.active {
  color: #fff;
  background: #000000;
}
.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.gallery__grid .image {
  width: 50%;
  padding: 10px;
  align-self: center;
  transform: translateZ(0) span;
  transform-display: flex;
  transform-width: 100%;
  transform-overflow: hidden;
}
.gallery__grid .image img {
  border-radius: 12px;
  width: 100%;
  vertical-align: middle;
  transition: all 0.4s ease;
}
.gallery__grid .image:hover img {
  transform: scale(1.02);
  box-shadow: 0 22px 30px -20px rgba(0, 0, 0, 0.9);
}
@media (max-width: 39.9375em ) {
  .gallery__grid .image {
    padding: 5px;
  }
}
@media (min-width: 40em) {
  .gallery__grid .image {
    width: 33.3333333333%;
  }
}
@media (min-width: 64em) {
  .gallery__grid .image {
    width: 25%;
  }
}
.gallery__grid .image.hide {
  display: none;
}
.gallery__grid .image.show {
  -webkit-animation: animate 0.4s ease;
          animation: animate 0.4s ease;
}
.gallery__preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.961);
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 35px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 63.9375em) {
  .gallery__preview-box {
    max-width: 580px;
  }
}
@media (max-width: 39.9375em ) {
  .gallery__preview-box {
    padding: 14px;
  }
}
.gallery__preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(0.95);
  border-radius: 15px;
  transition: all 0.3s ease;
}
.gallery__details {
  padding: 13px 15px 25px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gallery__details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.gallery__details .title p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  margin-left: 8px;
}
.gallery__details .icon {
  color: #000000;
  font-size: 22px;
  cursor: pointer;
}
.gallery__image-box img {
  width: 100%;
  border-radius: 5px;
}
.gallery__shadow {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}
.gallery__shadow.show {
  display: block;
}/*# sourceMappingURL=style.css.map */