html,
body{
    padding: 0px;
    margin: 0px;

    font-family: 'Montserrat', sans-serif;
}
.m-menu{
    display: none;
}
.container, 
.container-fluid{
    display: flex;
    flex-direction: column;
}
.container-fluid{
    padding-top: 35px;
}


.row, 
.row-fluid{
    width: 100%;
    display: flex;
    flex-direction: row;
}


.row .col{
    width: 100%;
}
.row .col-2{
    width: calc((( 2 / 12) * 100) * 100%);
    padding: 0px;
}
.row .col-3{
    width: calc((( 3 / 12) * 100) * 100%);
    padding: 0px;
}
.row .col-4{
    width: calc((( 4 / 12) * 100) * 100%);
    padding: 0px;
}
.row .col-5{
    width: calc((( 5 / 12) * 100) * 100%);
}
.row .col-6{
    width: calc((( 6 / 12) * 100) * 100%);
}
.row .col-7{
    width: calc((( 7 / 12) * 100) * 100%) ;
}
.row .col-8{
    width: calc((( 8 / 12) * 100) * 100%);
}
.row .col-9{
    width: calc((( 9 / 12) * 100) * 100%);
}
.row .col-10{
    width: calc((( 10 / 12) * 100) * 100%);
}
.row .col-11{
    width: calc((( 11 / 12) * 100) * 100%);
}
.row .col-12{
    width: calc((( 12 / 12) * 100) * 100%);
}
.row .col,
.row .col-2,
.row .col-3,
.row .col-4,
.row .col-5,
.row .col-6,
.row .col-7,
.row .col-8,
.row .col-9,
.row .col-10,
.row .col-11,
.row .col-12{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* navbar */
.nav-container-suspended{
    position: fixed;
    
    display: flex;
    align-items: center;
    justify-content: center;

    top: 0px; 
    width: 1280px; 
    
    background-color: rgba(29, 25, 24, 0.8);
    padding-bottom: 20px;
    padding-top: 20px;

    border-top: 0px;
    border-color: #fff;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 0px 0px 40px 40px;
    box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.8);

    color: #fff;
}
.nav-container-suspended img.logo{
    width: 76.5px;
    height: 56.5px;
}
.nav-container-suspended ul{
    display: flex;
    flex-direction: row;
}

.nav-container-suspended ul a{
    text-decoration: none;
}

.nav-container-suspended ul li{
    display: flex;
    flex-direction: row;

    padding: 8px 12px;
    text-align: center;
    color: #fff;
}

.nav-container-suspended ul li:hover{
    cursor: pointer;
}

@media (max-width: 1300px) and (min-width: 993px){
    .nav-container-suspended{
        width: 80%;
        margin: auto 10%; 
    }
}

/* Large devices (desktops, 992px and up)*/
@media (max-width: 992px) {
    .container,
    .container-fluid,
    .row-fluid,
    .row{
        width: 97%;
        margin: auto 1.5%;
        flex-direction: column;
    }
    
    .col-2,
    .col-3,
    .col-4,
    .col-5{
        width: 100%;
        padding: 0px 20px;
    }
    .nav-container-suspended{
        display: none;
    }
    *{ 
        max-width: 100%;
    }
    .m-menu-button{
        position: fixed;
        display: flex;
        justify-content: center;
        flex-direction: column;
        
        width: 60px;
        height: 40px;

        box-sizing: border-box;
        padding: 6px 0px;

        top: 20px; 
        right: 15px;

        border-radius: 10px; 
        border: 2px solid #fef;
        box-shadow: 1px 5px 15px rgba(29, 25, 24, 0.4);

        background-color: #241f26;
        
        z-index: 9999;
    }
    .m-menu-button .line{
        width: 50%;
        margin: auto;
        border: 2px solid #fff; 
        border-radius: 10px;
    }
    .m-menu{
        position: fixed;
        top: -40%;
        left: 0px; 

        display: block;
        
        width: 100%;
        padding: 12px 0px;
        
        background-color: #241f26;
        
        z-index: 999;

        transition: all 1s;
        -webkit-transition: all 0.65s ease-out;
        -moz-transition: all 0.65s ease-out;
    }
    .m-menu ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        width: 100%; 
        padding: 0px 0px;
    }
    .m-menu ul a {
        text-decoration: none;
    } 
    .m-menu ul li { 
        width: 90%;
        padding: 8px 5%;
        border-bottom: 2px solid #fef;
        color: #fff; 
        font-weight: bold;
    }
    .m-menu ul li:hover{
        background-color: #0f0d10;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1280px) { 
    .container{
        width: 1280px;
        margin: auto calc( ( 100% - 1280px ) / 2 );
    }
 }