/* FLEX PROPERTIES */
.flex{
    display: flex;
}
.flex.center, .flex.centered{
    align-items: center;
    justify-content: center;
}
.flex.spread{
    justify-content: space-between;
}
.flex.columns{
    flex-direction: column;
}
.flex.left{
    justify-content: flex-start;
}
.flex.right{
    justify-content:flex-end;
}
.flex.wrap{
    flex-wrap: wrap;
}
.flex.top{
    align-items: flex-start;
}
.zindex-1{
    z-index: 1;
}
.zindex-5{
    z-index: 5;
}
.border-top-1px{
    border-top: 1px solid;
}

.zindex-10{
    z-index: 10;
}
/* BUTTONS */
.btn{
    border: 2px solid;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 4px 25px;
    color:#fff;
    font-weight:normal;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    transition: 300ms;
}
.btn-large{
    min-width: 235px;
    max-width: 100%;
}
.circle{
    border-radius: 50%;
    width: 36px;
    text-align: center;
    height: 36px;
}

.border-radius-circle{
    border-radius: 50%;
}

.border-radius-20{
    border-radius: 20px;
}

.border-radius-12{
    border-radius: 12px;
}

.btn-square{
    border-radius: 0;
}
.shadow-square-bottom-left{
    box-shadow: -15px 15px 0px rgba(255, 223, 189, 0.1);
}
.shadow-square-top-right{
    box-shadow: 15px -15px 0px rgba(255, 223, 189, 0.1);
}

.shadow-square-bottom-left-2x{
    box-shadow: -30px 30px 0px rgba(255, 223, 189, 0.1);
}
.shadow-square-top-right-2x {
    box-shadow: 30px -30px 0px rgba(255, 223, 189, 0.1);
}
/* MARGIN & PADDING */
.margin-bottom-1x{
    margin-bottom: 10px;
}
.margin-bottom-2x{
    margin-bottom: 20px;
}
.margin-bottom-3x{
    margin-bottom: 30px;
}
.margin-left-1x{
    margin-left: 10px;
}
.margin-left-2x{
    margin-left: 20px;
}
.margin-left-3x{
    margin-left: 30px;
}
.margin-right-1x{
    margin-right: 10px;
}
.margin-right-2x{
    margin-right: 20px;
}
.margin-right-3x{
    margin-right: 30px;
}
.margin-top-1x{
    margin-top: 10px;
}
.margin-top-2x{
    margin-top: 20px;
}
.margin-top-3x{
    margin-top: 30px;
}
.margin-all-1x{
    margin: 10px;
}
.margin-all-2x{
    margin: 20px;
}
.margin-all-3x{
    margin: 30px;
}
.margin-top-100{
    margin-top: 100px;
}
.margin-bottom-75{
    margin-bottom: 75px;
}

.padding-bottom-1x{
    padding-bottom: 10px;
}
.padding-bottom-2x{
    padding-bottom: 20px;
}
.padding-bottom-3x{
    padding-bottom: 30px;
}
.padding-left-1x{
    padding-left: 10px;
}
.padding-left-2x{
    padding-left: 20px;
}
.padding-left-3x{
    padding-left: 30px;
}
.padding-right-1x{
    padding-right: 10px;
}
.padding-right-2x{
    padding-right: 20px;
}
.padding-right-3x{
    padding-right: 30px;
}
.padding-top-1x{
    padding-top: 10px;
}
.padding-top-2x{
    padding-top: 20px;
}
.padding-top-3x{
    padding-top: 30px;
}
.padding-all-1x{
    padding: 10px;
}
.padding-all-2x{
    padding: 20px;
}
.padding-all-3x{
    padding: 30px;
}
.padding-top-100{
    padding-top: 100px;
}
.padding-bottom-100{
    padding-bottom: 100px;
}

/* FONT & TEXT */
*{
    color: #000;
    text-decoration:none;
}
.font-metropolis{
    font-family: 'Metropolis', sans-serif;
}
a:hover{
    opacity:0.8;
}
.uppercased{
    text-transform: uppercase;
}
.faded-text{
    color:rgba(0, 0, 0, 0.3);
}
.semi-bold{
    font-weight: 500;
}
.bold{
    font-weight: 800;
}
.italic{
    font-style: italic;
}
.text-20{
    font-size: 15px;
}
.text-21{
    font-size: 18px;
}
.text-22{
    font-size: 20px;
}
.text-25{
    font-size: 25px;
}
.text-35{
    font-size: 44px;
}
.text-65{
    font-size: 55px;
}
.letter-spacing-02{
    letter-spacing: 0.2px;
}
.letter-spacing-05{
    letter-spacing: 0.5px;
}
.letter-spacing-1{
    letter-spacing: 1px;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.line-height-28{
    line-height: 28px;
}
.line-height-24{
    line-height: 24px;
}
.line-height-15{
    line-height: 15px;
}
.line-height-10{
    line-height: 10px;
}
.line-height-0{
    line-height: 0;
}
.font-light{
    font-weight: 300;
} 
p b{
    color:inherit;
}
i{
    color:inherit;
}

/* COLOURS & BGs */
.color-inner-inherit *{
    color:inherit;
}
.color-white{
    color: #fff;
}
.color-beig{
    color:#FFDFBD;
}
.bg-color-beig{
    background-color: #FFDFBD;
}
.color-brown{
    color: #460B0B;
}
.bg-color-brown{
    background-color:#460B0B;
}
.bg-color-transparent{
    background-color:transparent;
}
.bg-color-white{
    background-color: #fff;
}
.color-purple{
    color: #270871;
}

.bg-color-purple{
    background-color:#270871;
}
.color-red{
    color: #831F55;
}
.bg-color-red{
    background-color:#831F55;
}
.border-beig{
    border-color: #FFDFBD;
}
.border-white{
    border-color: #fff;
}
.border-brown{
    border-color: #460B0B;
}
.border-red{
    border-color: #831F55;
}

/* WIDTHS */
.width-650{
    max-width: 100%;
    width: 550px;
}
.width-350{
    max-width: 100%;
    width: 350px;
}
.width-300{
    max-width: 100%;
    width: 300px;
}
.width-180{
    max-width: 100%;
    width: 180px;
}
.width-full{
    width: 100%;
}
.width-50-per{
    width: 50%;
}
.width-33-per{
    width: 33%;
}

/* OTHERS */
.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute; 
}
.border-none{
    border:none;
}
.hidden{
    display: none;
}
.opacity-050{
    opacity: 0.5;
}
.opacity-010{
    opacity: 0.1;
}
.overflow-hidden{
    overflow: hidden;
}
.align-left{
    text-align: left;
}
align-right{
    text-align: right;
}
.underline{
    text-decoration: underline;
}
.grayscale{
    filter: grayscale(100%);
}
.text-shadow-02{
    text-shadow: 1px 1px 2px #000; 
}

@media (max-width: 1200px) {
    .m-text-center{
        text-align: center;
    }
    .flex.m-columns{
        flex-direction: column;
    }
    .flex.m-centered{
        justify-content: center;
        align-items: center;
    }
    .m-width-full{
        width: 100%;
    }
    .m-margin-bottom{
        margin-bottom: 15px;
    }
    .m-margin-bottom-x3{
        margin-bottom: 30px;
    }
    .m-margin-right-2x{
        margin-right: 20px;
    }
    .m-margin-bottom-x2{
        margin-bottom: 15px;
    }
    .m-margin-left-0{
        margin-left: 0;
    }
    .m-margin-top-0{
        margin-top: 0;
    }
    .m-padding-right-0{
        padding-right: 0;
    }
    .m-margin-right-0{
        margin-left: 0;
    }
    .m-margin-bottom-0{
        margin-bottom: 0;
    }
    .padding-all-3x{
        padding: 21px;
    }
    .section{
        padding: 50px 15px;
        height: auto !important;
    }
    .text-35{
        font-size: 32px;
    }
    .text-20{
        font-size: 14px;
    }
    .btn-large{
        min-width: 160px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .m-no-padding{
        padding: 0px;
    }
    .width-33-per{
        width: 100%;
    }
    .m-width-auto{
        width: auto;
    }
    .interrogation-circle{
        right: -27px;
        width: 70px;
    }
    .interrogation-circle-big{
        right: 0;
        width: 100px;
    }

    .m-padding-all-1x{
        padding: 10px;
    }
    .text-65{
        font-size: 40px
    }
}