/* CSS HEX 
--midnight-green: #104547;
--butterscotch: #ED9B40;
--tiffany-blue: #83C5BE;
--alice-blue: #EDF6F9;
--lion: #aa8f66ff;

*/


body {
  background-color: #fff;
  font: 1.1em "Poppins", Helvetica, sans-serif;
  font-weight: 300;
  padding: 44px;
}

img {
  max-width: 100%;
  display: block;
}

/* ·········· TYPOGRAPHY ··········*/
h1, h2, h3 {
  color: rgb(8, 33, 36);
  font-weight: 700;
}

h1 {
  font-size: 56px;
  line-height: .9;
  margin: 0 0 2px;
  color: #ED9B40;
}

h2 {
  font-size: 48px;
  line-height: 54px;
}

h3 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 0;
}

.intro-copy {
  margin-bottom: 4px;
}


p {
  font-size: 1.2em;
  line-height: 1.66667;
  color: #60697a;
}

.lead {
  margin: 0;
}


/* ·········· GRID ··········*/
.portfolio-item {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius:4px;
  overflow: hidden;
  position: relative;
}

.portfolio-item > img {
  grid-row: 1 / -1;
  grid-column: 1;
  filter: brightness(80%);
  transition: all 1s ease-out;

}

.portfolio-item:hover > img {
  filter: brightness(100%);
}

.caption {
  position: absolute;
  bottom: 0;
  padding: 24px 12px 12px 12px;
  margin: 0;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  width: calc(100% - 24px);
  opacity: 0;
  transition: all .2s ease-out;
  font-weight: 400;
}

.caption .button {
  height: 32px;
  width: 32px;
  background-color: rgba(0,0,0,0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.portfolio-item:hover .caption {
  opacity: 1;
}
.container {
  column-count: 3;
  column-gap: 20px;
}

.intro {
  padding-bottom: 40px;
}

.profiles {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
  margin-left: -4px;
}

.profiles img {
  height: 32px;
  width: 32px;
}



/* ·········· FOOTER ANIMATION ··········*/
.animated-gradient {
  text-transform: uppercase;
  background-image: -webkit-linear-gradient(125deg, #f2291b, #f7db25, #84f527);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: hue 15s infinite linear;
  }@-webkit-keyframes hue {
   from {
     -webkit-filter: hue-rotate(0deg);
   }
   to {
     -webkit-filter: hue-rotate(-360deg);
   }
  }


/* ·········· FOOTER ··········*/

.footer {
  padding-top: 56px;
  padding-bottom: 56px;
}

.footer-brand {
    fill: #2A2A2A;
}

.image-4 {
  display: block;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
}

.footer-link {
  padding-right: 10px;
  padding-left: 10px;
  color: #2a2a2a;
  text-decoration: none;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}





/* iPHONE */
@media (max-width: 767px) {
  body {
    padding: 8px;
  }
  .intro {
    padding-bottom: 6px;
  }
  .container {
    column-count: 1;
  }
}

/* MOBILE */
@media (max-width: 479px) {
  body {
    padding: 8px;
  }
  .intro {
    padding-bottom: 6px;
  }
  .container {
    column-count: 1;
  }
}
 
/* iPhone X */
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px)
and (-webkit-device-pixel-ratio : 3) {
  body {
    padding: 8px;
  }
  .intro {
    padding-bottom: 6px;
  }
  .container {
    column-count: 1;
  }
}
 
/* DESKTOP */
@media (min-width: 1380px) {
  .class {
        padding-bottom: 20px;
    }
}

@media (prefers-color-scheme: dark) {
  body, .portfolio-container {
    background-color: rgb(8, 33, 36) !important;
  }

  .lead, h1, h2, h3, h4, h5, p, a, p a, p.caption, .footer-link, .navbar-themed .w-nav-link {
    color: #fff;
  }

  hr {
    border-top: 1px solid rgb(56, 68, 77);
  }
  
  .brand svg, .footer-brand {
      fill: #ffffff;
  }

}