/* @font-face {
    font-family: "TipperaryeTextW01-Bold"; 
    src: url('./Assets/Fonts/5474623336cd9df3cf26cdb25672f446.woff');
    font-weight: normal;
    font-style: normal;
} */

  
@font-face {
    font-family: 'HelveticaNowText-Regular';
    src:url('./Assets/Fonts/HelveticaNowText-Regular.ttf.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  
  

html {
    height: 100%;
    overflow-x: hidden;
}


h1, h2, p {
    font-weight: normal;
}

body {
    margin:0;
    font-family: 'HelveticaNowText-Regular';
    background-color: black;
    overflow-x: hidden;
    position: relative;
    /* height: 100%; */
}

.page_title {
    padding: 5rem 2rem;
    margin: 0rem 0 5rem;
    text-align: center;
    color: white;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 2rem;
    /* text-shadow: 0 0 0.125em white; */

    width: 100%;
    background-image: url(./Assets/Headers/Talent-header.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: multiply;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    position: relative;
}

/* .page_title::after {
    content: "";
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100%;
    background: rgba(256, 256, 256, 0.4)
} */

h1.page_title {
    margin-bottom: 0;
   
}

.container {
    /* max-width: 100rem; */
    width: 90%;
    margin: 10rem 0;
    padding-bottom: 150px;
    height: 100%;
    /* padding-inline: auto; */
}

.stacked {
    display: grid;
}

.stacked > * {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 0.125rem;
    width: 100%;
    margin: 0 5%;
}

.card {
    /* aspect-ratio: 1 / 1.25; */
    overflow: hidden;
}

.card_content {
    z-index: 10;
    background: rgba(256, 256, 256, 0.4);
    backdrop-filter: blur(1rem);
    align-self: end;
    margin: 0;
    padding: 0 .5rem;
    box-shadow: 0 .25rem 1rem rgb(0 0 0 / .8);

    transform: translateX(-110%);
    transition-duration: 500ms;
}

.card_title {
    letter-spacing: 1px;
    color: black;
    /* font-family: Arial, Helvetica, sans-serif; */
    text-align: center;
    text-transform: uppercase;
    font-size: 1.35rem;
    font-weight: bold;
    position: relative;
}

.card_img {
    width: 100%;
    filter: grayscale(100);
    aspect-ratio: 1 / 1.25;
    object-fit: cover;

    transition-duration: 500ms;
}

.card:hover .card_img {
    filter: grayscale(0);
    cursor: pointer;
}

.card:hover .card_content {
    transform: translateX(0%);
}


@media (min-width: 60em){
    .card.featured {
        grid-row: span 2;
        grid-column: span 2;
    }
}

.socials {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    z-index: 10;
    align-self: end;
    margin: 0 25% 2%;
}

.icons {
    height: 45px;
    width: 45px;
}


::-webkit-scrollbar {
    width: 5px;
  
  }
  
  ::-webkit-scrollbar-track {
    background: rgba(60, 60, 60, .7);
   
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(256, 256, 256, 0.2);
    
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(256, 256, 256, 0.6);
  }