/***************************************
*************** RESETS GERAIS***********
****************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

}

/***************************************
***************FONTS DO PROJETO***********
****************************************/
@font-face {
    font-family: 'AcuminVariableConcept'; /* Nome da fonte */
    src: url('../fonts/AcuminVariableConcept.otf') format('opentype');
}

@font-face {
    font-family: 'Kanit'; /* Nome da fonte */
    src: url('../fonts/Kanit-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'MyriadPro'; /* Nome da fonte */
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
}



.acumin {
    font-family: 'AcuminVariableConcept', sans-serif;
}

.kanit {
    font-family: 'Kanit', sans-serif;
    font-weight: bold;
}

.myriad {
    font-family: 'MyriadPro', sans-serif;
}

/***************************************
*************** OVERFLOW ***********
****************************************/
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/***************************************
*************** IMAGENS ***********
****************************************/
img {
    max-width: 100%;
    border: none !important;
    vertical-align: middle;
}

embed,
img,
picture,
video {
    max-width: 100%;
    height: auto
}

/***************************************
*************** ALINHAMENTO ***********
****************************************/
.all {
    width: 100%;
}

.container {
    width: 1200px;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/***************************************
*************** COLUNAS ***********
****************************************/
.col-1 {
    flex-basis: 100%;
}

.col-2 {
    flex-basis: 50%;
}

.col-3 {
    flex-basis: 33.33%;
}

.col-4 {
    flex-basis: 25%;
}

.col-5 {
    flex-basis: 20%
}



/***************************************
*************** DISPLAYS ***********
****************************************/
.ds-flex {
    display: flex;
}

.ds-none {
    display: none;
}

.ds-block {
    display: block;
}


/***************************************
*************** HELP ***********
****************************************/
.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}


