html {
    scroll-behavior: smooth;
}

.events_inner {
    display: flex;
    justify-content: space-between;
}

.eventTabs {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90vh;
    overflow: scroll;
    position: sticky;
    top: 60px;
}

.tabInfo {
    width: 78%;
}

.tabcontent {
    display: none;
}

.tabcontent img {
    width: 70%;
    margin: 5px auto;
}

.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 200px;
    margin: 10px 0;
    cursor: pointer;
    /* background-color: #F95020; */
    box-shadow: 0 0 5px 3px gold;
}

.tab:hover {
    box-shadow: 0 0 5px 3px blue;
}

.tab.active {
    box-shadow: 0 0 5px 3px blue;
}

.tabTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    height: 50px;
    background-color: #F95020;
    /* background-image: url(../assets/bg/headerBG.jpg); */
    font-size: 20px;
}

.tabImg {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

.tabImg img {
    width: 100%;
}

.camp_photos {
    display: flex;
    flex-wrap: wrap;
}

.camp_photos img {
    width: 24%;
}

.days_date {
    color: #F95020;
    font-size: 30px;
}

.days_title {
    text-decoration: underline;
    color: green;
    font-size: 30px;
}

.devis {
    display: flex;
    justify-content: center;
    align-items: center;
    color: blue;
    font-size: 25px;
    margin: 10px 0;
}

@media screen and (max-width: 460px) {
    .events_inner {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .eventTabs {
        width: 100%;
        border: 1px solid black;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        /* flex-direction: column; */
        align-items: center;
        justify-content: center;
        height: auto;
        overflow-x: scroll;
        overflow-y: auto;
        position: sticky;
        top: 0;
    }
    .tab {
        display: flex;
        flex-direction: column-reverse;
        /* align-items: center; */
        /* justify-content: space-between; */
        width: 150px;
        height: 120px;
        margin: 0 3px;
        cursor: pointer;
        /* background-color: #F95020; */
        box-shadow: 0 0 5px 3px gold;
        */
    }
    .tabTitle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        height: 60px;
        background-color: #F95020;
        /* background-image: url(../assets/bg/headerBG.jpg); */
        font-size: 10px;
    }
    .tabImg {
        display: flex;
        width: 100%;
        height: 60px;
        margin: 0;
    }
    .tabImg img {
        width: 170%;
    }
    .tabInfo {
        width: 100%;
    }
    .tabcontent {}
}