/* BTN MENU MOBILE */
.btn-menu {
	cursor: pointer;
	background: transparent;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: relative;
}

.ligne {
	width: 30px;
	height: 5px;
	background: #006181;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.1s ease-in-out;
}

.ligne::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 5px;
	background: #006181;
	bottom: 10px;
	border-radius: 5px;
	transition: all 0.2s ease-in-out;
}

.ligne::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 5px;
	background: #006181;
	top: 10px;
	border-radius: 5px;
	transition: all 0.2s ease-in-out;
}

.btn-menu.active .ligne::before {
	transform: translateY(10px) rotate(-45deg);
}

.btn-menu.active .ligne {
	background: transparent;
}

.btn-menu.active .ligne::after {
	transform: translateY(-10px) rotate(45deg);
}

.btn-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* BTN MENU MOBILE FIN */

.menu-so {
    height: 100%;
}

.menu {
    width: 100%;
    height: 100%;
}

.menu a {
    text-decoration: none !important;
}

.menu ul.nav {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #92C13F;
    border-top: 1px solid #006181;
    z-index: 999;
    flex-direction: column;
}

.menu ul.nav li {
    padding: 15px;
}

.menu ul.nav li a {
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.menu ul.nav li a:hover {
    transition: all 0.3s ease-in-out;
    color: #006181;
}

.menu ul.nav li.active a {
    color: #006181;
}

@media screen and (min-width: 992px) {
    .btn-menu {
        display: none;
    }

    .menu ul.nav {
        border: none;
        display: flex !important;
        position: relative;
        flex-direction: row;
        align-items: flex-end !important;
        justify-content: flex-end;
        height: 100%;
        margin-right: 3rem;
        top: initial;
        left: initial;
    }

    .menu ul.nav li a {
        font-size: 14px;
    }
}

@media screen and (min-width: 1200px) {
    .menu ul.nav li a {
        font-size: 16px;
    }
}