nav#main-nav {
    background-color: #582583;

    .nav-item {
        .nav-link {
            color: white;
        }

        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 1px;
            background: #EC6608;
            transition: width .3s;
            margin-top: 2px;
        }

        /* .nav-link:hover {
            opacity: .5;
        } */

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: #EC6608;
        }

        .nav-link.active::after {
            width: 100%;
        }
    }
}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #EC6608;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}


/* State when the navbar is collapsed */

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .top-bar {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: inherit;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: white;
}

#agenda {
    background-color: #EC6608;
}

.googleCalendar {
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 100%;
}

.googleCalendar iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#activites {
    background-color: #009A90;
}

.full-image-fit {
    object-position: center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.color-orange {
    color: #EC6608;
}

footer {
    background-color: #582583;
}

.btn-orange {
    background-color: #EC6608;
    border: 2px solid #EC6608;
    color: white;
}

.btn-orange:hover,
.btn-orange:focus {
    background-color: white;
    color: #EC6608;
    border-color: #EC6608;
}

.bi {
    width: 1.5em;
    height: 1.5em;
    vertical-align: -.125em;
    fill: currentcolor;
}

.link-dark:hover,
.link-secondary:hover {
    color: #EC6608 !important;
    -webkit-text-decoration-color: #EC6608 !important;
    text-decoration-color: #EC6608 !important;
}