/*==================================================================================================
   *rgbs
==================================================================================================*/


/* rgb(0, 0, 0); /* black-1 */


/* rgb(172, 172, 172); /* grey-1 */


/* rgb(255, 221, 0); /* yellow-1 */


/* rgb(255, 255, 255); /* white-1 */


/*==================================================================================================
   *font faces
==================================================================================================*/

@font-face {
    font-family: 'Celias';
    font-weight: 600;
    src: url('../vendors/fonts/celias-bold.woff2') format('woff2'), url('../vendors/fonts/celias-bold.woff') format('woff');
}

@font-face {
    font-family: 'Gotham';
    font-weight: 700;
    src: url('../vendors/fonts/gotham-black.woff2') format('woff2'), url('../vendors/fonts/gotham-black.woff') format('woff');
}

@font-face {
    font-family: 'DIN Pro';
    font-weight: 400;
    src: url('../vendors/fonts/din-pro-regular.woff2') format('woff2'), url('../vendors/fonts/din-pro-regular.woff') format('woff');
}

@font-face {
    font-family: 'DIN Pro';
    font-weight: 600;
    src: url('../vendors/fonts/din-pro-bold.woff2') format('woff2'), url('../vendors/fonts/din-pro-bold.woff') format('woff');
}


/*==================================================================================================
	*resets
==================================================================================================*/

body {
    overflow-x: hidden;
    color: rgb(255, 255, 255);
    /* white-1 */
    background-color: rgb(0, 0, 0);
    /* black-1 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgb(0, 0, 0);
    /* black-1 */
    margin-bottom: 0;
}

button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none !important;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

p,
label {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    max-width: 100%;
    /* IE-11 bug fix quando o container é display flex */
}


/*==================================================================================================
	*font families
==================================================================================================*/

.c-font-family-1 {
    font-family: 'Celias', sans-serif !important;
}

.c-font-family-2 {
    font-family: 'Gotham', sans-serif !important;
}

.c-font-family-3 {
    font-family: 'DIN Pro', sans-serif !important;
}


/*==================================================================================================
	*backgrounds
==================================================================================================*/

.c-bg-color-1 {
    background-color: rgb(0, 0, 0) !important;
    /* black-1 */
}

.c-bg-color-2 {
    background-color: rgb(255, 221, 0) !important;
    /* yellow-1 */
}

.c-bg-color-3 {
    background-color: rgb(255, 255, 255) !important;
    /* white-1 */
}


/*==================================================================================================
	*colors
==================================================================================================*/

.c-color-1 {
    color: rgb(0, 0, 0) !important;
    /* black-1 */
}

.c-color-2 {
    color: rgb(255, 221, 0) !important;
    /* yellow-1 */
}

.c-color-3 {
    color: rgb(255, 255, 255) !important;
    /* white-1 */
}


/*==================================================================================================
   *buttons
==================================================================================================*/

.c-btn {
    font-family: 'Celias';
    cursor: pointer;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
    font-weight: 600;
    text-decoration: none !important;
}

.c-btn,
.c-btn svg {
    transition: all .4s ease;
}


/*==============================================*/

.c-btn-md {
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
}

.c-btn-md svg {
    width: 27px;
    height: 27px;
    margin-right: 10px;
}

.c-btn-lg-square {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 20px;
}

.c-btn-lg-square svg {
    width: 45px;
    height: 45px;
}


/* sm-up */

@media (min-width: 576px) {
    .c-btn-lg-square {
        flex-shrink: 0;
        width: 100px;
        height: 100px;
        padding: 0;
        border-radius: 20px;
    }
    .c-btn-lg-square svg {
        width: 60px;
        height: 60px;
    }
}


/*==============================================*/

.c-btn-style-1 {
    color: rgb(255, 221, 0);
    /* yellow-1 */
    border: 3px solid rgb(255, 221, 0);
    /* yellow-1 */
}

.c-btn-style-1 svg {
    fill: rgb(255, 221, 0);
    /* yellow-1 */
}

.c-btn-style-1:hover,
.c-btn-style-1.c-btn-active {
    background-color: rgb(255, 221, 0);
    /* yellow-1 */
    color: rgb(0, 0, 0);
    /* black-1 */
}

.c-btn-style-1:hover svg,
.c-btn-style-1.c-btn-active svg {
    fill: rgb(0, 0, 0);
    /* black-1 */
}


/*=====================*/

.c-btn-style-2 {
    color: rgb(0, 0, 0);
    /* black-1 */
    background-color: rgb(255, 221, 0);
    /* yellow-1 */
}

.c-btn-style-2 svg {
    fill: rgb(0, 0, 0);
    /* black-1 */
}

.c-btn-style-2:hover,
.c-btn-style-2.c-btn-active {
    background-color: rgb(0, 0, 0);
    /* black-1 */
    color: rgb(255, 221, 0);
    /* yellow-1 */
}

.c-btn-style-2:hover svg,
.c-btn-style-2.c-btn-active svg {
    fill: rgb(255, 221, 0);
    /* yellow-1 */
}


/*==================================================================================================
	*forms
==================================================================================================*/

.c-form-control {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 2px solid rgb(172, 172, 172);
    /* grey-1 */
    line-height: 1;
    outline: none !important;
    transition: border-color .4s ease;
    overflow: hidden;
}

.c-form-control:focus {
    border-color: rgb(0, 0, 0);
    /* black-1 */
}


/*==============================================*/

.custom-control {
    min-height: 3.5rem;
    color: rgb(0, 0, 0);
    /* black-1 */
}

.custom-control-label::before {
    border: 2px solid rgb(172, 172, 172) !important;
    /* grey-1 */
}

.custom-control-label::before,
.custom-control-label::after {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border: none;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: rgba(255, 221, 0, .5);
    /* yellow-1 */
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: rgb(255, 221, 0);
    /* yellow-1 */
    border-color: rgb(0, 0, 0) !important;
    /* black-1 */
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}


/*----------INICIO FORMULARIO----------*/

.response.bg-success {
    background-color: #8CCE70;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.response.bg-danger {
    background-color: #D65D5D;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.btn-submit {
    opacity: 1;
    visibility: visible;
}

.btn-submit.off {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 45px;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2000;
    color: #ffdd00;
    position: absolute;
    right: 6%;
    bottom: 1%;
}

.loader.on {
    opacity: 1;
    visibility: visible;
}

.response {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
}


/*----------FIM FORMULARIO----------*/