*{
    margin: 0px;
    padding: 0px;
}
.btn{
    background-color: #f27b00 !important;
    color: white !important;
    border: #f27b00 !important;
}
.txtclr{
    color: white !important;
}
.navclr{
    background-color: #7d3727 !important;
}
#navbarSupportedContent ul{
    margin-left: auto;
}

/* #home img{
    width: 50%;
    height: 60vh;
    position: absolute;
}

#home .bimg3{
    width: 50% !important;
    margin-left: 700px;
} */

#home .caption{
    position: relative;
    width: 100%;
    padding: 25%;
}

#footer{
    border: 1px solid black;
    background-color: #f27b00;
    color: white;
    padding-top: 5px;
}

.banner-section{
    position: relative;
    margin: 0 220px;
    overflow: visible;
}

/* SIDE SCROLL AREA */
.side-scroll{
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    overflow: hidden;
    z-index: 20;

    display: flex;
    justify-content: center;

    /* Fade effect */
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}

/* FIXED POSITION */
.left-scroll{
    left: -180px;
}

.right-scroll{
    right: -180px;
}

/* TRACK */
.scroll-track{
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollDown 18s linear infinite;
}

.scroll-track.reverse{
    animation: scrollUp 18s linear infinite;
}

/* NOTEBOOK PNG */
.scroll-track img{
    width: 130px;
    height: auto;
    object-fit: contain;

    border-radius: 18px;

    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));

    transition: 0.4s;
}

.scroll-track img:hover{
    transform: scale(1.08);
}

/* DOWN */
@keyframes scrollDown{
    from{
        transform: translateY(-50%);
    }
    to{
        transform: translateY(0%);
    }
}

/* UP */
@keyframes scrollUp{
    from{
        transform: translateY(0%);
    }
    to{
        transform: translateY(-50%);
    }
}

@media(max-width:768px){

    .logo-img{
        /* height:70px; */
        width: 545px;
    }

    .navbar-toggler{
        margin-left:auto;
    }

}