* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    font-family: 'Quicksand', sans-serif;
}

.header {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.39)), to(rgba(0, 0, 0, 0.05))), url('img/IMA_main_3.jpg');
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.05)), url('img/IMA_main_3.jpg');
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.05)), url('img/IMA_main_3.jpg');
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}


#menu-btn {
    display: none;
}

.nav {
    display: none;
}

.footer {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #000;
}

.footer-inner {
    display: block;
    color: #FFF;
}

.section {
    padding-top: 20px;
}

.footer-title {
    color: #FFF;
}

.footer-img {
    max-width: 40%;
    max-height: 40%;
}

.email{
    padding: 10px;
}

.emial-link {
    font-size: 20px;
    color: #FFF;
}

@media (max-width: 1023px) {
    .header {
        z-index: 1001;
        position: relative;
        background-position: 60% 40%;
    }
    .button {
        display: inline;
        border-radius: 3px;
        background-color: rgba(255,255,255, 0.15);
        padding: 8px 16px;
        font-size: 16px;
        color: #FFF;
        text-decoration: none;
    }

    #menu-btn {
        display: inline;
        position: fixed;
        top: 14px;
        right: 14px;
        height: 70px;
        width: 70px;
        line-height: 70px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        background: #c27d4c;
        color: #FFF;
        text-align: center;
        z-index: 1000;
    }
    
    #menu-btn.fa-times {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
        color: #FFF;
        background: rgba(0, 0, 0, 0.0);
    
    }

    .nav {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 999;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        font-size: 13px;
        background:rgba(0, 0, 0, 0.60);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-clip-path: circle(0% at 95.3% 8.5%);
                clip-path: circle(0% at 95.3% 8.5%);
    }

    .nav.active {
        -webkit-clip-path: circle(140% at 95.3% 8.5%);
                clip-path: circle(140% at 95.3% 8.5%);        
    }

    .section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        color: #FFF;
    }

    .footer {
        display: none;
    }
}

@media (min-width: 1024px) {
    .container {
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header {
        width: 80%;
    }

    .footer {
        width: 20%;
    }
}