html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.viewport-header {
    position: relative;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-wrap: wrap;
    flex-direction: column;
}

.btn-orange {
    color: #fff;
    background-color: #EE8B00;
    transition: 0.3s;
}

.btn-orange:hover {
    color: #fff;
    background-color: #4E4E4E;
    transition: 0.3s;
}

.bg-gray {
    background-color: #4E4E4E;
}

.bg-orange {
    background-color: #EE8B00;
}

#about-us-section {
    background: url('../bg/bg_about_us.jpg')no-repeat center center fixed;
    min-height: 960px;
    background-position-x: -100px;

}

#premier-section {
    background: url('../bg/bg_collectors_item_2.jpg')no-repeat center center fixed; 
    /* background-position-x: -100px; */
}
#collectors-item{
    background: url('../bg/bg_lower.jpg');
    min-height: 1981px;
}

.text-orange {
    color: #EE8B00;
}

.comment-orange {
    position: relative;
}

.comment-orange::before {
    content: '';
    position: absolute;
    background: url('../object/comment-orange.svg');
    width: 28px;
    height: 16px;
    bottom: -16px;
    left: 25px;
}

.comment-white {
    position: relative;
}

.comment-white::before {
    content: '';
    position: absolute;
    background: url('../object/comment.svg');
    width: 28px;
    height: 16px;
    bottom: -16px;
    left: 25px;
}

footer a {
    text-decoration: none !important;
}

footer a img.social-media {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

footer a img.social-media:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.figure {
    max-width: 376px;
    max-height: 251px;
    margin: 7px;
    padding: 0;
    overflow: hidden;
}

.figure img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.figure:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.bg-shade {
    background-image: linear-gradient(black, black, rgba(0, 0, 0, 0));
}

.premier-hover img {
    filter: brightness(60%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.premier-hover:hover img {
    filter: brightness(100%);
}

.premier-hover .bg-gray {
    transition: .5s ease-in-out;
}

.premier-hover:hover .bg-gray {
    background-color: #EE8B00;
}

.premier-hover h5 {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: .2s ease-in-out;
}

.premier-hover:hover h5 {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px gray;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #EE8B00;
    border-radius: 4px;
}

.carousel-indicators {   
    bottom: -30px;
}

@media (min-width: 320px) {
    h1{
        font-size: 1.5rem;
        transition: ease 0.3s;
    }
    p{
        font-size: .8rem;
    }
}
@media (min-width: 480px) {
    h1{
        font-size: 1.5rem;
        transition: ease 0.3s;
    }
    p{
        font-size: .8rem;
    }
}
@media (min-width: 768px) {
    h1{
        font-size: 2.5rem;
        transition: ease 0.3s;
    }
    p{
        font-size: 1rem;
    }
}
@media (min-width: 992px) {
    h1{
        font-size: 2.5rem;
        transition: ease 0.3s;
    }
    p{
        font-size: 1rem;
    }
}
@media (min-width: 1200px) {
    h1{
        font-size: 2.5rem;
        transition: ease 0.3s;
    }
    p{
        font-size: 1rem;
    }
}