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

:root {
    --white-1-rgb: 255, 255, 255/* 1 */
    ;
    --yellow-1-rgb: 252, 204, 88/* 2 */
    ;
    --orange-1-rgb: 255, 152, 11/* 3 */
    ;
    --orange-2-rgb: 234, 140, 11/* 4 */
    ;
    --orange-3-rgb: 255, 91, 1/* 5 */
    ;
    --orange-4-rgb: 222, 81, 4/* 6 */
    ;
    --blue-1-rgb: 36, 205, 254/* 7 */
    ;
    --blue-2-rgb: 27, 51, 162/* 8 */
    ;
    --blue-3-rgb: 24, 44, 134/* 9 */
    ;
    --grey-1-rgb: 227, 224, 224/* 10 */
    ;
    --grey-2-rgb: 203, 203, 203/* 11 */
    ;
    --grey-3-rgb: 187, 190, 187/* 12 */
    ;
    --grey-4-rgb: 150, 150, 150/* 13 */
    ;
    --grey-5-rgb: 112, 112, 112/* 14 */
    ;
    --grey-6-rgb: 74, 73, 73/* 15 */
    ;
    --black-1-rgb: 0, 0, 0/* 16 */
    ;
}

:root {
    --white-1: rgb(var(--white-1-rgb));
    --yellow-1: rgb(var(--yellow-1-rgb));
    --orange-1: rgb(var(--orange-1-rgb));
    --orange-2: rgb(var(--orange-2-rgb));
    --orange-3: rgb(var(--orange-3-rgb));
    --orange-4: rgb(var(--orange-4-rgb));
    --blue-1: rgb(var(--blue-1-rgb));
    --blue-2: rgb(var(--blue-2-rgb));
    --blue-3: rgb(var(--blue-3-rgb));
    --grey-1: rgb(var(--grey-1-rgb));
    --grey-2: rgb(var(--grey-2-rgb));
    --grey-3: rgb(var(--grey-3-rgb));
    --grey-4: rgb(var(--grey-4-rgb));
    --grey-5: rgb(var(--grey-5-rgb));
    --grey-6: rgb(var(--grey-6-rgb));
    --black-1: rgb(var(--black-1-rgb));
}


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

@font-face {
    font-family: 'Lufga';
    font-weight: 300;
    src: url('../vendors/fonts/lufga-light.woff2') format('woff2'), url('../vendors/fonts/lufga-light.woff') format('woff');
}

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

@font-face {
    font-family: 'Lufga';
    font-weight: 500;
    src: url('../vendors/fonts/lufga-medium.woff2') format('woff2'), url('../vendors/fonts/lufga-medium.woff') format('woff');
}

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

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

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


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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Lufga', sans-serif;
    font-size: 15px;
    color: var(--grey-6);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--black-1);
}

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

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

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

p {
    line-height: 1.8;
}

a,
a:hover {
    color: inherit;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

svg {
    fill: currentColor;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

input::-ms-clear {
    display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select::-ms-expand {
    display: none;
}


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

.c-bg-color-1 {
    background-color: var(--white-1) !important;
}

.c-bg-color-2 {
    background-color: var(--yellow-1) !important;
}

.c-bg-color-3 {
    background-color: var(--orange-1) !important;
}

.c-bg-color-4 {
    background-color: var(--orange-2) !important;
}

.c-bg-color-5 {
    background-color: var(--orange-3) !important;
}

.c-bg-color-6 {
    background-color: var(--orange-4) !important;
}

.c-bg-color-7 {
    background-color: var(--blue-1) !important;
}

.c-bg-color-8 {
    background-color: var(--blue-2) !important;
}

.c-bg-color-9 {
    background-color: var(--blue-3) !important;
}

.c-bg-color-10 {
    background-color: var(--grey-1) !important;
}

.c-bg-color-11 {
    background-color: var(--grey-2) !important;
}

.c-bg-color-12 {
    background-color: var(--grey-3) !important;
}

.c-bg-color-13 {
    background-color: var(--grey-4) !important;
}

.c-bg-color-14 {
    background-color: var(--grey-5) !important;
}

.c-bg-color-15 {
    background-color: var(--grey-6) !important;
}

.c-bg-color-16 {
    background-color: var(--black-1) !important;
}


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

[class *=c-color-] {
    transition: color .3s ease;
}

.c-color-1,
.c-color-1-hover:hover,
.c-color-1-active {
    color: var(--white-1) !important;
}

.c-color-2,
.c-color-2-hover:hover,
.c-color-2-active {
    color: var(--yellow-1) !important;
}

.c-color-3,
.c-color-3-hover:hover,
.c-color-3-active {
    color: var(--orange-1) !important;
}

.c-color-4,
.c-color-4-hover:hover,
.c-color-4-active {
    color: var(--orange-2) !important;
}

.c-color-5,
.c-color-5-hover:hover,
.c-color-5-active {
    color: var(--orange-3) !important;
}

.c-color-6,
.c-color-6-hover:hover,
.c-color-6-active {
    color: var(--orange-4) !important;
}

.c-color-7,
.c-color-7-hover:hover,
.c-color-7-active {
    color: var(--blue-1) !important;
}

.c-color-8,
.c-color-8-hover:hover,
.c-color-8-active {
    color: var(--blue-2) !important;
}

.c-color-9,
.c-color-9-hover:hover,
.c-color-9-active {
    color: var(--blue-3) !important;
}

.c-color-10,
.c-color-10-hover:hover,
.c-color-10-active {
    color: var(--grey-1) !important;
}

.c-color-11,
.c-color-11-hover:hover,
.c-color-11-active {
    color: var(--grey-2) !important;
}

.c-color-12,
.c-color-12-hover:hover,
.c-color-12-active {
    color: var(--grey-3) !important;
}

.c-color-13,
.c-color-13-hover:hover,
.c-color-13-active {
    color: var(--grey-4) !important;
}

.c-color-14,
.c-color-14-hover:hover,
.c-color-14-active {
    color: var(--grey-5) !important;
}

.c-color-15,
.c-color-15-hover:hover,
.c-color-15-active {
    color: var(--grey-6) !important;
}

.c-color-16,
.c-color-16-hover:hover,
.c-color-16-active {
    color: var(--black-1) !important;
}


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

.c-border-color-1 {
    border-color: var(--white-1) !important;
}

.c-border-color-2 {
    border-color: var(--yellow-1) !important;
}

.c-border-color-3 {
    border-color: var(--orange-1) !important;
}

.c-border-color-4 {
    border-color: var(--orange-2) !important;
}

.c-border-color-5 {
    border-color: var(--orange-3) !important;
}

.c-border-color-6 {
    border-color: var(--orange-4) !important;
}

.c-border-color-7 {
    border-color: var(--blue-1) !important;
}

.c-border-color-8 {
    border-color: var(--blue-2) !important;
}

.c-border-color-9 {
    border-color: var(--blue-3) !important;
}

.c-border-color-10 {
    border-color: var(--grey-1) !important;
}

.c-border-color-11 {
    border-color: var(--grey-2) !important;
}

.c-border-color-12 {
    border-color: var(--grey-3) !important;
}

.c-border-color-13 {
    border-color: var(--grey-4) !important;
}

.c-border-color-14 {
    border-color: var(--grey-5) !important;
}

.c-border-color-15 {
    border-color: var(--grey-6) !important;
}

.c-border-color-16 {
    border-color: var(--black-1) !important;
}


/*==================================================================================================
	*shadows
==================================================================================================*/

.c-shadow-1 {
    box-shadow: 0 7px 6px rgba(var(--black-1-rgb), .16) !important;
}

.c-shadow-2 {
    box-shadow: 0 3px 6px rgba(var(--black-1-rgb), .16) !important;
}


/*==================================================================================================
	*scrollbars
==================================================================================================*/

.c-scrollbar-1::-webkit-scrollbar {
    width: 10px;
}

.c-scrollbar-1::-webkit-scrollbar-track {
    background-color: var(--grey-1);
    border-radius: 10000px;
}

.c-scrollbar-1::-webkit-scrollbar-thumb {
    background-color: var(--grey-3);
    border-radius: 10000px;
}


/*==================================================================================================
	*containers
==================================================================================================*/

.container {
    max-width: 1400px;
}


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

.c-btn,
.c-btn:hover {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    text-align: center;
    text-decoration: none;
    border-radius: 10000px;
    font-weight: 600;
    transition: all .3s ease;
}

.c-btn-square {
    flex-shrink: 0;
    min-width: 0 !important;
    padding: 0 !important;
}


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

.c-btn-radio {
    position: relative;
}

.c-btn-radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


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

.c-btn-sm {
    min-height: 30px;
    padding: 2px 25px;
    font-size: 14px;
}

.c-btn-sm.c-btn-square {
    width: 30px;
}

.c-btn-md {
    min-height: 35px;
    padding: 2px 30px;
}

.c-btn-md.c-btn-square {
    width: 35px;
}

.c-btn-lg {
    min-height: 45px;
    padding: 2px 50px;
    font-size: 23px;
}

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


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

.c-btn-style-1 {
    background-color: var(--orange-1);
    color: var(--white-1);
}

.c-btn-style-1:hover,
.c-btn-style-1.c-active,
.c-btn-radio-input:checked+.c-btn-style-1 {
    background-color: var(--orange-2);
    color: var(--white-1);
}

.c-btn-style-2 {
    background-color: var(--blue-2);
    color: var(--white-1);
}

.c-btn-style-2:hover,
.c-btn-style-2.c-active,
.c-btn-radio-input:checked+.c-btn-style-2 {
    background-color: var(--blue-3);
    color: var(--white-1);
}

.c-btn-style-3 {
    background-color: transparent;
    color: var(--grey-4);
    border: 1px solid var(--grey-4);
}

.c-btn-style-3:hover,
.c-btn-style-3.c-active,
.c-btn-radio-input:checked+.c-btn-style-3 {
    background-color: var(--grey-4);
    color: var(--white-1);
}


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

.c-btn-cancel-ctn-bars {
    position: relative;
    width: 26px;
    height: 20px;
}

.c-btn-cancel-bar {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    left: 0;
    background-color: var(--white-1);
    border-radius: 1000000px;
    transition: all .2s ease;
}

.c-btn-cancel-bar:nth-child(1) {
    top: 0;
}

.c-btn-cancel-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.c-btn-cancel-bar:nth-child(3) {
    bottom: 0;
}

.c-btn-cancel.c-active .c-btn-cancel-bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.c-btn-cancel.c-active .c-btn-cancel-bar:nth-child(2) {
    opacity: 0;
}

.c-btn-cancel.c-active .c-btn-cancel-bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


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

.c-form-control {
    display: block;
    width: 100%;
    border-radius: 10000px;
    border: none;
    transition: border-color .3s ease;
    border: 1px solid var(--grey-4);
    text-align: center;
}

.c-form-control:focus {
    border-color: var(--orange-1);
}

.c-form-control::-webkit-input-placeholder {
    color: var(--grey-4);
}

.c-form-control::-moz-placeholder {
    color: var(--grey-4);
}

textarea.c-form-control {
    text-align: left;
}


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

.c-form-control-sm {
    height: 30px;
    padding: 0 10px;
    font-size: 13px;
}

textarea.c-form-control-sm {
    min-height: 100px;
    padding: 10px;
    border-radius: 20px;
}

.c-form-control-md {
    height: 35px;
    padding: 0 15px;
}

textarea.c-form-control-md {
    min-height: 150px;
    padding: 15px;
    border-radius: 30px;
}

.c-form-control-lg {
    height: 45px;
    padding: 0 20px;
    font-size: 18px;
}

textarea.c-form-control-lg {
    min-height: 200px;
    padding: 20px;
    border-radius: 40px;
}


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

.form-check-input {
    flex-shrink: 0;
    border: 1px solid var(--grey-4);
    margin-top: 0;
    background-color: var(--white-1);
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: var(--grey-4);
}

.form-check-input:checked {
    border-color: var(--orange-1);
    background-color: var(--orange-1);
}


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

.c-form-check-input-sm {
    width: 17px;
    height: 17px;
}

.c-form-check-input-md {
    width: 20px;
    height: 20px;
}

.c-form-check-input-lg {
    width: 24px;
    height: 24px;
}


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

.c-custom-select {
    background-repeat: no-repeat;
    background-position-y: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 404.309 404.309' fill='rgb(112, 112, 112)'%3E%3Cpath d='M0 101.08h404.308L202.151 303.229 0 101.08z'/%3E%3C/svg%3E");
    color: var(--grey-4);
}

.c-custom-select:focus {
    color: var(--grey-6);
}


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

.c-custom-select-sm {
    background-position-x: calc(100% - 10px);
    background-size: 14px 14px;
}

.c-custom-select-md {
    background-position-x: calc(100% - 15px);
    background-size: 18px 18px;
}

.c-custom-select-lg {
    background-position-x: calc(100% - 20px);
    background-size: 25px 25px;
}


/*==================================================================================================
   *fancybox
==================================================================================================*/

.fancybox-progress {
    background-color: var(--orange-1);
}

.fancybox-thumbs__list a:before {
    border-color: var(--orange-1);
}


/*==================================================================================================
	*accordions
==================================================================================================*/

.c-accordion-btn i {
    display: inline-block;
    transition: all .3s ease;
}

.c-accordion-btn:not(.collapsed) i {
    transform: rotate(180deg);
}


/*==================================================================================================
   *swipers
==================================================================================================*/

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-pagination-bullet {
    position: relative;
    width: 10px;
    height: 10px;
    margin: 9px !important;
    cursor: pointer;
    outline: none !important;
    opacity: .5;
    transition: opacity .3s ease;
}

.swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    width: 23px;
    height: 23px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}


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

.c-swiper-pagination-style-1 .swiper-pagination-bullet {
    /* background-color: var(--white-1); */
    background-color: var(--orange-1);
}

.c-swiper-pagination-style-1 .swiper-pagination-bullet:before {
    border-color: var(--orange-1);
}

.c-swiper-pagination-style-2 .swiper-pagination-bullet {
    background-color: var(--blue-2);
}

.c-swiper-pagination-style-2 .swiper-pagination-bullet:before {
    border-color: var(--blue-2);
}

.c-swiper-pagination-style-3 .swiper-pagination-bullet {
    background-color: var(--orange-1);
}

.c-swiper-pagination-style-3 .swiper-pagination-bullet:before {
    border-color: var(--orange-1);
}


/*==================================================================================================
   *cards
==================================================================================================*/

.c-card-1 {
    position: relative;
    display: block;
}

.c-card-1-cover {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    opacity: 0;
    transition: opacity .3s ease;
}

.c-card-1:hover .c-card-1-cover {
    background-color: rgba(var(--orange-1-rgb), .7);
    opacity: 1;
}


/*========================================================================================
   *navs
========================================================================================*/

.sm {
    position: relative;
    z-index: 1000;
}

.sm,
.sm ul,
.sm li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: normal;
    direction: ltr;
    text-align: left;
}

.sm-rtl,
.sm-rtl ul,
.sm-rtl li {
    direction: rtl;
    text-align: right;
}

.sm>li>h1,
.sm>li>h2,
.sm>li>h3,
.sm>li>h4,
.sm>li>h5,
.sm>li>h6 {
    margin: 0;
    padding: 0;
}

.sm ul {
    display: none;
}

.sm li,
.sm a {
    position: relative;
}

.sm a {
    display: block;
}

.sm a.disabled {
    cursor: not-allowed;
}

.sm:after {
    content: '\00a0';
    display: block;
    height: 0;
    font: 0px / 0 serif;
    clear: both;
    visibility: hidden;
    overflow: hidden;
}

.sm,
.sm *,
.sm *:before,
.sm *:after {
    box-sizing: border-box;
}


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

.c-sm-acb {
    box-shadow: 0 3px 6px rgba(var(--black-1-rgb), .16);
}

.c-sm-acb a,
.c-sm-acb a:hover,
.c-sm-acb a:focus,
.c-sm-acb a:active {
    color: var(--white-1);
    font-weight: 600;
    text-decoration: none;
    transition: background-color .3s ease;
}

.c-sm-acb a span.sub-arrow {
    display: none;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: auto;
    right: 4px;
    width: 34px;
    height: 34px;
    overflow: hidden;
    text-align: center;
    text-shadow: none;
    border-radius: 3px;
}

.c-sm-acb a.has-submenu:after {
    content: '\f10d';
    font-family: Flaticon;
    font-style: normal;
    font-weight: normal;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.c-sm-acb>li:first-child {
    border-top: 0;
}

.c-sm-acb>li>a span {
    display: block;
    padding: 5px 10px;
    border-radius: 100000px;
    transition: background-color .3s ease;
}

.c-sm-acb ul {
    background-color: rgba(var(--white-1-rgb), .1);
}

.c-sm-acb ul a,
.c-sm-acb ul a:hover,
.c-sm-acb ul a:focus,
.c-sm-acb ul a:active {
    border-left: 8px solid transparent;
}

.c-sm-acb ul ul a,
.c-sm-acb ul ul a:hover,
.c-sm-acb ul ul a:focus,
.c-sm-acb ul ul a:active {
    border-left: 16px solid transparent;
}

.c-sm-acb ul ul ul a,
.c-sm-acb ul ul ul a:hover,
.c-sm-acb ul ul ul a:focus,
.c-sm-acb ul ul ul a:active {
    border-left: 24px solid transparent;
}

.c-sm-acb ul ul ul ul a,
.c-sm-acb ul ul ul ul a:hover,
.c-sm-acb ul ul ul ul a:focus,
.c-sm-acb ul ul ul ul a:active {
    border-left: 32px solid transparent;
}

.c-sm-acb ul ul ul ul ul a,
.c-sm-acb ul ul ul ul ul a:hover,
.c-sm-acb ul ul ul ul ul a:focus,
.c-sm-acb ul ul ul ul ul a:active {
    border-left: 40px solid transparent;
}


/* sm-down */

@media (max-width: 767px) {
    .c-sm-acb {
        width: 100%;
    }
    .c-sm-acb a {
        padding: 10px;
    }
    .c-sm-acb ul a {
        padding: 8px;
        font-size: 13px;
    }
    .c-sm-acb a.has-submenu:after {
        border-radius: 3px;
    }
    .c-sm-acb>li>a.has-submenu:after {
        padding: 8px;
    }
    .c-sm-acb ul a.has-submenu:after {
        padding: 5px 8px;
    }
}


/* md-up */

@media (min-width: 768px) {
    .c-sm-acb ul {
        position: absolute;
        width: 12em;
    }
    .c-sm-acb li {
        float: left;
    }
    .c-sm-acb.sm-rtl li {
        float: right;
    }
    .c-sm-acb ul li,
    .c-sm-acb.sm-rtl ul li,
    .c-sm-acb.sm-vertical li {
        float: none;
    }
    .c-sm-acb a {
        white-space: nowrap;
    }
    .c-sm-acb ul a,
    .c-sm-acb.sm-vertical a {
        white-space: normal;
    }
    .c-sm-acb ul a:hover {
        background-color: rgba(var(--white-1-rgb), .2);
    }
    .c-sm-acb ul a.has-submenu:after {
        right: 5px;
        transform: translateY(-50%) rotate(-90deg);
        font-size: 10px;
    }
    .c-sm-acb .sm-nowrap>li>a,
    .c-sm-acb .sm-nowrap>li> :not(ul) a {
        white-space: nowrap;
    }
    .c-sm-acb {
        padding: 0 20px 0 40px;
        border-radius: 40px 0 0 0;
    }
    .c-sm-acb a.has-submenu {
        padding-right: 32px;
    }
    .c-sm-acb a span.sub-arrow {
        top: 50%;
        margin-top: -8px;
        right: 20px;
        width: 8px;
        height: 16px;
        font: 14px / 16px monospace !important;
        background: transparent;
    }
    .c-sm-acb a.highlighted span.sub-arrow:before {
        display: none;
    }
    .c-sm-acb ul {
        box-shadow: 0 7px 6px rgba(var(--black-1-rgb), .16);
    }
    .c-sm-acb ul a {
        border: 0 !important;
    }
    .c-sm-acb ul a.has-submenu {
        padding-right: 25px;
    }
    .c-sm-acb ul a span.sub-arrow {
        right: 10px;
    }
    .c-sm-acb ul>li {
        border-left: 0;
        border-top: 1px solid rgba(var(--white-1-rgb), .3);
    }
    .c-sm-acb ul>li:first-child {
        border-top: 0;
    }
    .c-sm-acb>li>a {
        padding: 10px 5px;
        font-size: 11px;
    }
    .c-sm-acb>li>a:hover span {
        background-color: rgba(var(--white-1-rgb), .2);
    }
    .c-sm-acb ul a {
        padding: 8px;
        font-size: 12px;
    }
    .c-sm-acb span.scroll-up,
    .c-sm-acb span.scroll-down {
        position: absolute;
        display: none;
        visibility: hidden;
        overflow: hidden;
        background-color: rgba(var(--white-1-rgb), .7);
        height: 20px;
    }
    .c-sm-acb span.scroll-up-arrow,
    .c-sm-acb span.scroll-down-arrow {
        position: absolute;
        top: -2px;
        left: 50%;
        margin-left: -8px;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: 8px;
        border-style: dashed dashed solid dashed;
        border-color: transparent transparent var(--blue-2) transparent;
    }
    .c-sm-acb span.scroll-down-arrow {
        top: 6px;
        border-style: solid dashed dashed dashed;
        border-color: var(--blue-2) transparent transparent transparent;
    }
}


/* lg-up */

@media (min-width: 992px) {
    .c-sm-acb {
        padding: 0 30px 0 50px;
        border-radius: 50px 0 0 0;
    }
    .c-sm-acb>li>a {
        padding: 15px 10px;
        font-size: 13px;
    }
    .c-sm-acb>li>a.has-submenu:after {
        right: 13px;
    }
    .c-sm-acb ul a {
        padding: 10px;
        font-size: 13px;
    }
}


/* xl */

@media (min-width: 1200px) {
    .c-sm-acb>li>a {
        padding: 20px 15px;
        font-size: 14px;
    }
}


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

.c-sm-acb-style-1 {
    background-color: var(--blue-2);
}

.c-sm-acb-style-1 a.current span {
    background-color: var(--orange-1) !important;
}

.c-sm-acb-style-2 {
    background-color: var(--orange-1);
}

.c-sm-acb-style-2 a.current span {
    background-color: var(--blue-2) !important;
}


/* md-up */

@media (min-width: 768px) {
    .c-sm-acb-style-1 ul {
        background-color: var(--blue-2);
    }
    .c-sm-acb-style-2 ul {
        background-color: var(--orange-1);
    }
}


/*==================================================================================================
   *c-header-site
==================================================================================================*/


/* sm-down */

@media (max-width: 767px) {
    .c-header-site {
        position: relative;
        z-index: 1000;
    }
    .c-header-site-nav {
        position: absolute;
        width: calc(100% + 30px);
        max-width: none;
        bottom: 0;
        left: -15px;
        transform: translateY(100%);
        pointer-events: none;
        opacity: 0;
        transition: opacity .3s ease;
    }
    .c-header-site-nav.c-active {
        pointer-events: auto;
        opacity: 1;
    }
}


/*==================================================================================================
   *c-section-hero
==================================================================================================*/

.c-section-hero-swiper,
.c-section-hero-swiper-img {
    border-top-left-radius: 50px;
}

.c-section-hero-swiper-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(var(--black-1-rgb), .16);
}


/* sm-up */

@media (min-width: 576px) {
    .c-section-hero-swiper,
    .c-section-hero-swiper-img {
        border-top-left-radius: 70px;
    }
    .c-section-hero-swiper-img {
        height: 400px;
    }
}


/* md-up */

@media (min-width: 768px) {
    .c-section-hero-swiper,
    .c-section-hero-swiper-img {
        border-top-left-radius: 90px;
    }
    .c-section-hero-swiper-img {
        height: 450px;
    }
}


/* lg-up */

@media (min-width: 992px) {
    .c-section-hero-swiper,
    .c-section-hero-swiper-img {
        border-top-left-radius: 120px;
    }
    .c-section-hero-swiper-img {
        height: 500px;
    }
}


/* xl */

@media (min-width: 1200px) {
    .c-section-hero-swiper,
    .c-section-hero-swiper-img {
        border-top-left-radius: 150px;
    }
    .c-section-hero-swiper-img {
        height: 550px;
    }
}


/*==================================================================================================
   *c-section-courses
==================================================================================================*/

.c-section-courses-next-list {
    max-height: 300px;
}


/* sm-up */

@media (min-width: 576px) {
    .c-section-courses-next-list {
        max-height: 400px;
    }
}


/* lg-up */

@media (min-width: 992px) {
    .c-section-courses-next-list {
        max-height: none
    }
}


/*==================================================================================================
   *c-social
==================================================================================================*/

.c-social {
    position: fixed;
    z-index: 1001;
    width: 100%;
    top: 35%;
    pointer-events: none;
}

.c-social-content {
    pointer-events: auto;
    display: table;
    padding: 8px 5px;
    border-radius: 10px;
    background-color: var(--white-1);
    box-shadow: 0 7px 6px rgba(var(--black-1-rgb), .16);
}


/* sm-down */

@media (max-width: 767px) {
    .c-social {
        display: none;
    }
}


/*==================================================================================================
   *modals
==================================================================================================*/

.modal-backdrop {
    background-image: url(../images/img-7.jpg);
    background-position: center;
    background-size: cover;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-content {
    background-color: transparent;
    border: none;
}


/* --------------------------------------- */

.mt-categoria:nth-child(n+1) {
    margin-top: 10px;
}

.mt-area:nth-child(n+1) {
    margin-top: 10px;
}


/*----------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: 60px;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2000;
    color: #ec7e0c;
    right: -5%;
    display: none;
}

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

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


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

.introducaoQSP-mt p:nth-child(n+2) {
    margin-top: 30px !important;
}

.blogInterna-mt p:nth-child(1) {
    margin-top: 50px !important;
}

.blogInterna-mt p:nth-child(n+2) {
    margin-top: 30px !important;
}

.classeLB {
    margin-top: 0 !important;
}

.animacao-logo:hover {
    transform: rotateY(360deg);
    transition-duration: 3s;
    transform-style: preserve-3d;
}

.li-inicial-home:nth-child(n+2) {
    margin-top: 20px !important;
}


/* SAFARI */

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .c-swiper-pagination-style-1 .swiper-pagination-bullet {
        border-color: #ff980b !important;
    }
    .c-swiper-pagination-style-1 .swiper-pagination-bullet:before {
        border-color: #ff980b !important;
    }
}