@media only screen and (max-width: 1023px) {
    /* Menu */
    header .menu.hidden {
        transition: all .5s;
        opacity: 0;
    }
    header.is-active {
        position: fixed;
    }
    header.is-active .menu {
        opacity: 1;
        position: absolute;
        top: 90px;
        width: 100%;
        height: 100vh;
        left: 0;
        background-color: #a1a39a;
        text-align: center;
    }   
    header.is-active li {
        margin-left: 0;
        display: inline-block;
        width: 100%;
        font-size: 2rem;
        transform: scale(1);
    }    
    header.is-active ul {
        position: relative;
        top: calc(50% - 100px);
        transform: translateY(calc(-50%));
    }

    .hamburger {
        padding: 0 !important;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
    }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: #fff !important;
        width: 30px !important;
        height: 3px !important;
    }
    .hamburger-box {
        width: 30px;
        height: 12px;
        display: inline-block;
        position: relative;
    }
    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -2px;
    }
    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 40px;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }
    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }
    .hamburger-inner::before {
        top: -10px;
    }
    .hamburger-inner::after {
        bottom: -10px;
    }
    .hamburger--squeeze .hamburger-inner {
        transition-duration: 0.075s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--squeeze .hamburger-inner::before {
        transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    }
    .hamburger--squeeze .hamburger-inner::after {
        transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--squeeze.is-active .hamburger-inner {
        transform: rotate(45deg);
        transition-delay: 0.12s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .hamburger--squeeze.is-active .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    }
    .hamburger--squeeze.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-90deg);
        transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    }    

    /* Formations & Experience */
    #formations-experience table, #blog table {
        vertical-align: top;
        display: inline-block;
    }

    #formations-experience table:first-child, #blog table:first-child {
        padding-right: 0;
        padding-bottom: 50px;
    }
    #formations-experience table:last-child, #blog table:last-child {
        padding-left: 0;
    }
    #formations-experience h1 {
        padding-bottom: 0;
    }
    #blog table {
        width: 100% !important;
    }

}

@media only screen and (max-width: 767px) {
    .animate-flower {
        display: none;
    }
    /* Home */
    #home .bg-image {
        background-image: url('../images/oddaya_home02_telephone.jpg') !important;      
    }    
}