/* @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%;
    position: relative;
    overflow-x: hidden;
}

body {
    margin:0;
    /* font-family: 'Oswald'; */
    background-color: black;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    /* padding-bottom: 150px; */
    /* position: relative; */
/* 
    background-image: url(./Assets/Headers/Black\ Coffee\ hero.jpg);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;   */

    background-color: black;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: 'HelveticaNowText-Regular';
}

h1, h2, p {
    font-weight: normal;
    margin: 2%;
}

.heros {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

#slider img {
    transition: opacity 1.5s;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top:0;
    left:0;
    opacity:0;
    overflow: hidden;
}
#slider img.fadeIn {
    opacity:1;
}

main {
    margin: 0%;
    width: 80%;
    height: 100%;
    margin: 175px 10% 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0%;
}

.hero_content {
    width: 80%;
    max-width: 40em;
    height: 100%;
    padding: 1%;
    /* min-width: 500px; */

    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    letter-spacing: 1px;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 1rem;
    font-weight: 100;
    text-align: center;

    background-color: rgba(0, 0, 0, 0.5);
    border-radius: .5em;
    /* box-shadow: 0 0 0.2em white; */
}

.about {
    color: white;
    font-size: 1rem;
    text-align: left;
}

.hero_lead {
    width: 100%;
    /* height: auto; */
    overflow-wrap: normal;
    max-width: 50rem;
    margin: 0;  
    padding: 0;
    font-size: 2.5rem;
    /* -webkit-text-stroke: 1px black;
    text-shadow: 0 0 0.15em black;
    text-align: center; */
    position: relative;
}

/* .hero_lead::after {
    content: "";
    position: absolute;
    z-index: 99;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 95%;
    margin: 0 2.5%;
    background: rgba(256, 256, 256, 1);
    border-radius: 2px;
  } */


.hero_button {
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    margin: 15px;

    text-decoration: none;
    color: white;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-size: 1.5rem;
    font-weight: 700;
    
    padding: 5% 5%;
    border: white 0.125em solid;
    border-radius: 0.5em;

    /* text-shadow: 0 0 0.15em white; */
    box-shadow: 0 0 0.125em white;
    
}

.hero_button:hover {
    /* color: black;
    background-color: white; */

    border: whitesmoke 0.125em solid;

    /* text-shadow: 0 0 0.75em black; */
    box-shadow: 0 0 0.35em white;

    transform: scale(1.15);
    transition: 100ms ease;

}

@media (max-width: 800px) {
    /* body {
        background-image: url(./Assets/Headers/Black\ Coffee\ hero.jpg);
        background-position: right center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;  
    } */

    .hero_lead {
        font-size: 1.25rem;
        /* text-shadow: 0 0 0.15em white; */
    }
    
    .hero_button{
        font-size: 1.15rem;
    }
    #slider img {
        transition: opacity 1.5s;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
        top:0;
        left:0;
        opacity:0;
    }

    .hero_content {
        
    background-color: rgba(0, 0, 0, 0.65);
    }


    

}


::-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);
  }
