/* Masthead */
.masthead-dot {
    font-family: SSTPRO-Light;
    color: white;
    font-size: 8px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 15px;
    margin-bottom: -5px;
    background-color: transparent;
}

.masthead-loading-bar {
    visibility: hidden;
    position: absolute; 
    left: 0;
    bottom: 0; 
    width: 100%; 
    height: 5px; 
    border: 1px solid white;
}
.masthead-loading {
    visibility: hidden;
    position: absolute; 
    left: 0;
    bottom: 0; 
    width: 100%; 
    height: 5px; 
    background-color: white;
}

.owl-carousel-1-autoplay-text .owl-dot.active .masthead-loading-bar {
    visibility: visible;
}
.owl-carousel-1-autoplay-text .owl-dot.active .masthead-loading {
    /* border-bottom: 10px solid white; */
    visibility: visible;
    animation-name: progressWidth;
    animation-duration: 5s;
    animation-timing-function: linear;
}

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    
    border-bottom: 5px solid #38373C;
}
  
.arrow-down {
    width: 0; 
    height: 0; 
    margin-top: 5px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;

    border-top: 20px solid #38373C;
    content: "",
}
@media (max-width: 768px) {
    .arrow-down {
        border-width: 10px;
    }
}

.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;

    border-left: 60px solid #38373C;
}

.arrow-left {
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 

    border-right:10px solid #38373C; 
}

.a-the-one {
    width: 400px;
}

.showopacity {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
    display: none;
}

.showopacity.activeopacity {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
    display: block;
}

.animate-width {
    animation-name: progressWidth;
    animation-duration: 5s;
    animation-timing-function: linear;
}

@keyframes progressWidth {
    0% {
        width: 0%;
    } 
    100% {
        width: 100%;
    }
}

@media screen and (max-width:768px){
    .masthead-dot {
        padding-left: 7px;
        padding-right: 7px;
        padding-bottom: 7.5px;
        margin-bottom: -3px;
    }
    .masthead-loading-bar {
        height: 3px;
    }
    .masthead-loading {
        height: 3px;
    }
    .a-the-one {
        width: 200px;
    }
}