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


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


/* 2 - rgb(74, 117, 103); /* green-1 */


/* 3 - rgb(247, 246, 248); /* grey-1 */


/* 4 - rgb(220, 220, 220); /* grey-2 */


/* 5 - rgb(183, 182, 182); /* grey-3 */


/* 6 - rgb(150, 150, 150); /* grey-4 */


/* 7 - rgb(130, 130, 130); /* grey-5 */


/* 8 - rgb(117, 116, 118); /* grey-6 */


/* 9 - rgb(80, 80, 80); /* grey-7 */


/* 10 - rgb(38, 37, 41); /* black-1 */


/* 11 - rgb(0, 0, 0); /* black-2 */

/*====================================================================
 font faces
 ====================================================================*/
 @font-face {
   font-family: 'Roc Grotesk';
   src: url('../vendors/fonts/Roc-Grotesk/1698670595_67c0cb_roc_grotesk_wide_medium.otf') format('opentype');
}
@font-face {
    font-family: 'Roc Grotesk' !important;
    src: url('../vendors/fonts/Roc-Grotesk/1698670595_0ec48f_rocgroteskewidemedium.woff2') format('woff2') !important;
    /* src: url('../vendors/fonts/Roc-Grotesk/Roc Grotesk Medium.woff2') format('woff2'), url('../vendors/fonts/Roc-Grotesk/Roc Grotesk Medium.woff') format('woff') !important; */
    /* font-weight: 500 !important;
    font-style: normal !important;
    font-display: swap !important; */
 }


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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgb(117, 116, 118);
    /* grey-6 */
}
.new-font {
    font-family: 'Roc Grotesk', sans-serif !important;
}
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,
p {
    font-weight: 500 !important;
}

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

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

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

p,
ul {
    font-weight: 500 !important;
}

a,
span {
    display: inline-block;
}

a,
a:hover {
    color: rgb(74, 117, 103);
    /* green-1 */
    text-decoration: none;
}

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

textarea {
    min-height: 200px;
}

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

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

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


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

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

.c-bg-color-2 {
    background-color: rgb(74, 117, 103) !important;
    /* green-1 */
}

.c-bg-color-3 {
    background-color: rgb(247, 246, 248) !important;
    /* grey-1 */
}

.c-bg-color-4 {
    background-color: rgb(220, 220, 220) !important;
    /* grey-2 */
}

.c-bg-color-5 {
    background-color: rgb(183, 182, 182) !important;
    /* grey-3 */
}

.c-bg-color-6 {
    background-color: rgb(150, 150, 150) !important;
    /* grey-4 */
}

.c-bg-color-7 {
    background-color: rgb(130, 130, 130) !important;
    /* grey-5 */
}

.c-bg-color-8 {
    background-color: rgb(117, 116, 118) !important;
    /* grey-6 */
}

.c-bg-color-9 {
    background-color: rgb(80, 80, 80) !important;
    /* grey-7 */
}

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

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


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

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

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

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

.c-color-2,
.c-color-2-hover:hover {
    color: rgb(74, 117, 103) !important;
    /* green-1 */
}

.c-color-2-active.c-color-2-active {
    color: rgb(74, 117, 103) !important;
    /* green-1 */
}

.c-color-3,
.c-color-3-hover:hover {
    color: rgb(247, 246, 248) !important;
    /* grey-1 */
}

.c-color-3-active.c-color-3-active {
    color: rgb(247, 246, 248) !important;
    /* grey-1 */
}

.c-color-4,
.c-color-4-hover:hover {
    color: rgb(220, 220, 220) !important;
    /* grey-2 */
}

.c-color-4-active.c-color-4-active {
    color: rgb(220, 220, 220) !important;
    /* grey-2 */
}

.c-color-5,
.c-color-5-hover:hover {
    color: rgb(183, 182, 182) !important;
    /* grey-3 */
}

.c-color-5-active.c-color-5-active {
    color: rgb(183, 182, 182) !important;
    /* grey-3 */
}

.c-color-6,
.c-color-6-hover:hover {
    color: rgb(150, 150, 150) !important;
    /* grey-4 */
}

.c-color-6-active.c-color-6-active {
    color: rgb(150, 150, 150) !important;
    /* grey-4 */
}

.c-color-7,
.c-color-7-hover:hover {
    color: rgb(130, 130, 130) !important;
    /* grey-5 */
}

.c-color-7-active.c-color-7-active {
    color: rgb(130, 130, 130) !important;
    /* grey-5 */
}

.c-color-8,
.c-color-8-hover:hover {
    color: rgb(117, 116, 118) !important;
    /* grey-6 */
}

.c-color-8-active.c-color-8-active {
    color: rgb(117, 116, 118) !important;
    /* grey-6 */
}

.c-color-9,
.c-color-9-hover:hover {
    color: rgb(80, 80, 80) !important;
    /* grey-7 */
}

.c-color-9-active.c-color-9-active {
    color: rgb(80, 80, 80) !important;
    /* grey-7 */
}

.c-color-10,
.c-color-10-hover:hover {
    color: rgb(38, 37, 41) !important;
    /* black-1 */
}

.c-color-10-active.c-color-10-active {
    color: rgb(38, 37, 41) !important;
    /* black-1 */
}

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

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

.c-color-12,
.c-color-12-hover:hover {
    color: #e7f1e9 !important;
    /* white-12 */
}

.c-color-12-active.c-color-12-active {
    color: #e7f1e9 !important;
    /* white-12 */
}
/*==================================================================================================
   *border colors
==================================================================================================*/

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

.c-border-color-2 {
    border-color: rgb(74, 117, 103) !important;
    /* green-1 */
}

.c-border-color-3 {
    border-color: rgb(247, 246, 248) !important;
    /* grey-1 */
}

.c-border-color-4 {
    border-color: rgb(220, 220, 220) !important;
    /* grey-2 */
}

.c-border-color-5 {
    border-color: rgb(183, 182, 182) !important;
    /* grey-3 */
}

.c-border-color-6 {
    border-color: rgb(150, 150, 150) !important;
    /* grey-4 */
}

.c-border-color-7 {
    border-color: rgb(130, 130, 130) !important;
    /* grey-5 */
}

.c-border-color-8 {
    border-color: rgb(117, 116, 118) !important;
    /* grey-6 */
}

.c-border-color-9 {
    border-color: rgb(80, 80, 80) !important;
    /* grey-7 */
}

.c-border-color-10 {
    border-color: rgb(38, 37, 41) !important;
    /* black-1 */
}

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


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

.c-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
    line-height: 1.2;
    transition: all .4s ease;
}

.c-btn:hover {
    text-decoration: none;
}

.c-btn-square {
    padding: 0 !important;
}


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

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

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

.c-btn-md {
    min-height: 40px;
    padding: 7px 30px;
    font-size: 18px;
}

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

.c-btn-lg {
    min-height: 60px;
    padding: 15px 30px;
    font-size: 22px;
}

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


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

.c-btn-style-1 {
    background-color: rgb(74, 117, 103);
    /* green-1 */
    color: rgb(231, 241, 233);
    /* white-1 */
}

.c-btn-style-1:hover,
.c-btn-style-1.c-active {
    background-color: rgb(42 65 58);
    /* green-1 */
    color: rgb(231, 241, 233);
    /* white-1 */
}

.c-btn-style-2 {
    background-color: transparent;
    color: rgb(74, 117, 103);
    /* green-1 */
    border: 1px solid rgb(74, 117, 103);
    /* green-1 */
}

.c-btn-style-2:hover,
.c-btn-style-2.c-active {
    background-color: rgb(74, 117, 103);
    /* green-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-3 {
    background-color: transparent;
    color: rgb(255, 255, 255);
    /* white-1 */
    border: 1px solid rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-3:hover,
.c-btn-style-3.c-active {
    background-color: rgb(255, 255, 255);
    /* white-1 */
    color: rgb(74, 117, 103);
    /* green-1 */
}

.c-btn-style-4 {
    background-color: transparent;
    color: rgb(38, 37, 41);
    /* black-1 */
    border: 1px solid rgb(220, 220, 220);
    /* grey-2 */
}

.c-btn-style-4:hover,
.c-btn-style-4.c-active {
    background-color: rgb(74, 117, 103);
    /* green-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
    border-color: rgb(74, 117, 103);
    /* green-1 */
}

.c-btn-style-5 {
    background-color: transparent;
    color: rgb(130, 130, 130);
    /* grey-5 */
}

.c-btn-style-5:hover,
.c-btn-style-5.c-active {
    background-color: rgb(38, 37, 41);
    /* black-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-6 {
    background-color: transparent;
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-6:hover,
.c-btn-style-6.c-active {
    background-color: rgb(38, 37, 41);
    /* black-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-7 {
    background-color: transparent;
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-7:hover,
.c-btn-style-7.c-active {
    background-color: rgb(74, 117, 103);
    /* green-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-8 {
    background-color: transparent;
    color: rgb(130, 130, 130);
    /* grey-5 */
}

.c-btn-style-8:hover,
.c-btn-style-8.c-active {
    color: rgb(74, 117, 103);
    /* green-1 */
}

.c-btn-style-9 {
    background-color: rgb(38, 37, 41);
    /* black-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
}

.c-btn-style-9:hover,
.c-btn-style-9.c-active {
    background-color: transparent;
    color: rgb(130, 130, 130);
    /* grey-5 */
}

.c-btn-style-10 {
    background-color: rgb(224, 224, 224);
    /* black-1 */
    color: rgb(38, 37, 41);
    /* white-1 */
}

.c-btn-style-10:hover,
.c-btn-style-10.c-active {
    background-color: transparent;
    color: rgb(38, 37, 41);;
    /* grey-5 */
}

.c-btn-style-11 {
    background-color: transparent;
    color: #e7f1e9;
    /* white-1 */
    border: 1px solid #e7f1e9;
    /* white-1 */
}

.c-btn-style-11:hover,
.c-btn-style-11.c-active {
    background-color: #e7f1e9;
    /* white-1 */
    color: rgb(74, 117, 103);
    /* green-1 */
}

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

.c-btn-scroll-top {
    pointer-events: none;
    opacity: 0;
    transition: all .4s ease;
}

.c-btn-scroll-top.c-show {
    pointer-events: auto;
    opacity: 1;
}


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

.c-form-control {
    position: relative;
}

.c-form-control:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: width .4s ease;
}

.c-form-control.c-focus:after {
    width: 100%;
}

.c-form-control input,
.c-form-control select,
.c-form-control textarea {
    display: block;
    width: 100%;
    padding: 8px 0 8px 8px;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid;
    border-left: 4px solid;
}

.c-form-control label {
    pointer-events: none;
    position: absolute;
    top: 7px;
    left: 10px;
    transform-origin: left center;
    transition: transform .4s ease;
}

.c-form-control.c-filled label {
    transform: translate(-10px, -30px) scale(.7);
}


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

.c-form-control-style-1:after {
    background-color: rgb(74, 117, 103);
    /* green-1 */
}

.c-form-control-style-1 input,
.c-form-control-style-1 select,
.c-form-control-style-1 textarea {
    border-bottom-color: rgb(220, 220, 220);
    /* grey-2 */
    border-left-color: rgb(74, 117, 103);
    /* green-1 */
    color: rgb(38, 37, 41);
    /* black-1 */
}

.c-form-control-style-1 label {
    color: rgb(38, 37, 41);
    /* black-1 */
}

.c-form-control-style-2:after {
    background-color: rgb(38, 37, 41);
    /* black-1 */
}

.c-form-control-style-2 input,
.c-form-control-style-2 select,
.c-form-control-style-2 textarea {
    border-bottom-color: rgb(150, 150, 150);
    /* grey-4 */
    border-left-color: rgb(38, 37, 41);
    /* black-1 */
    color: rgb(38, 37, 41);
    /* black-1 */
}

.c-form-control-style-2 label {
    color: rgb(130, 130, 130);
    /* grey-5 */
}


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

.c-custom-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 490 490' fill='%234a7567'%3E%3Cpath d='M0 15.541h490L244.991 474.459 0 15.541z'/%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}


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

.swiper-button-disabled {
    opacity: 0;
}

.swiper-pagination-progressbar-fill {
    background-color: rgb(74, 117, 103) !important;
    /* green-1 */
}


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

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

.c-card-ctn-img {
    position: relative;
    overflow: hidden;
}

.c-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    /* black-3 */
    color: rgb(255, 255, 255);
    /* white-1 */
    opacity: 0;
    transition: opacity .4s ease;
}

.c-card:hover .c-card-overlay {
    opacity: 1;
}

.c-card-overlay-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(74, 117, 103);
    /* green-1 */
    font-size: 23px;
}

.c-card-overlay-icon:before {
    content: '';
    position: absolute;
    width: 62px;
    height: 62px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgb(74, 117, 103);
    /* green-1 */
}


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

[data-toggle="collapse"] i {
    transition: transform .2s ease;
}

[data-toggle="collapse"]:not(.collapsed) i {
    transform: rotate(180deg);
}


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

.c-accordion-btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 600;
    text-align: left;
    color: rgb(38, 37, 41);
    /* black-1 */
    padding: 5px 10px;
    border-left: 4px solid rgb(74, 117, 103);
    /* green-1 */
    border-bottom: 2px solid rgb(220, 220, 220);
    /* grey-2 */
    transition: color .4s ease, border-color .1s ease .3s;
}

.c-accordion-btn:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    bottom: -2px;
    left: -4px;
    background-color: rgb(74, 117, 103);
    /* green-1 */
}

.c-accordion-btn:not(.collapsed) {
    border-bottom-color: transparent;
    transition: color .4s ease, border-color 0s ease;
}

.c-accordion-btn:hover,
.c-accordion-btn:not(.collapsed) {
    color: rgb(74, 117, 103);
    /* green-1 */
}

.c-accordion-btn-icon-before {
    color: rgb(252, 198, 102);
    /* yellow-1 */
    transition: color .4s ease !important;
    transform: none !important;
}

.c-accordion-btn:hover .c-accordion-btn-icon-before {
    color: rgb(0, 55, 104);
    /* blue-2 */
}

.c-accordion-collapse {
    border-left: 4px solid rgb(74, 117, 103);
    /* green-1 */
    border-bottom: 2px solid rgb(220, 220, 220);
    /* grey-2 */
}


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

.c-nav-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.c-nav-1-link {
    min-height: 30px;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 600;
    /* color: rgb(150, 150, 150); */
    color: rgb(74, 117, 103);
    /* grey-4 */
    border-radius: 5px 5px 0 0;
    transition: all .4s ease;
}

.c-nav-1-link.active {
    background-color: rgb(38, 37, 41);
    /* black-1 */
    color: rgb(255, 255, 255);
    /* white-1 */
}
.c-nav-1-link:hover {
   color: rgb(42 65 58) !important;

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

.c-header-site {
    position: relative;
    z-index: 1030;
    background-color: rgb(255, 255, 255);
    /* background-color: rgb(74, 117, 103); */

    /* white-1 */
}

.c-header-site-ctn-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgb(74, 117, 103);
    /* green-1 */
}

.c-header-site-ctn-btn:before,
.c-header-site-menu:before {
    content: '';
    position: absolute;
    width: 10000px;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    background-color: rgb(74, 117, 103);
    /* green-1 */
}

.c-header-site-overlay-disable {
    pointer-events: none;
    position: absolute;
    width: 100000px;
    height: 100vh;
    top: 0;
    left: -10000px;
    background-color: rgba(0, 0, 0, .7);
    /* black-2 */
    opacity: 0;
    transition: opacity .4s ease;
}

.c-header-site-overlay-disable.c-active {
    pointer-events: auto;
    opacity: 1;
}

.c-header-site-menu {
    pointer-events: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 10px 0 0 10px;
    background-color: rgb(74, 117, 103);
    /* green-1 */
    opacity: 0;
    transform: translateX(-285px);
    transition: all .4s ease;
}

.c-header-site-menu.c-active {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

.c-header-site-menu-nav {
    overflow: auto;
    padding: 20px 10px 10px 0;
}

.c-header-site-menu-nav a {
    display: inline-block;
    padding: 5px 15px;
    font-size: 16px;
    color: rgb(231, 241, 233);
    /* white-1 */
    margin-right: auto;
    border-radius: 10000000px;
    /* font-weight: 800; */
    text-decoration: none !important;
    transition: all .4s ease;
}

.c-header-site-menu-nav a:hover {
    background-color: rgb(231, 241, 233);
    /* white-1 */
    color: rgb(74, 117, 103);
    /* green-1 */
}

.c-header-site-menu-nav>ul>li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
}

.c-header-site-menu-nav>ul>li:not(:first-child) {
    margin-top: 5px;
}

.c-header-site-menu-nav>ul>li>div {
    display: flex;
    align-items: center;
    width: 100%;
}


/*
.c-header-site-menu-nav > ul > li > div > button {
   margin-left: auto;
}
*/

.c-header-site-menu-nav>ul>li>div>button.c-active {
    transform: rotate(180deg);
}

.c-header-site-menu-nav ul ul {
    display: none;
    padding: 15px;
}

.c-header-site-menu-nav ul ul a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 10px;
}

.c-header-site-menu-nav ul ul li:not(:first-child) {
    margin-top: 5px;
}


/* sm-up */

@media (min-width: 576px) {
    .c-header-site-ctn-btn {
        width: 100px;
        height: 100px;
    }
    .c-header-site-menu {
        width: 400px;
        height: 90vh;
        max-height: 800px;
        padding-top: 20px;
        border-radius: 0 0 5px 0;
    }
    .c-header-site-menu-nav {
        padding: 30px 15px 10px 0;
    }
}


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

.c-section-hero-swiper-pagination {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 10px 5px 5px 15px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .5);
    /* black-2 */
}

.c-section-hero-swiper-pagination-btn {
    position: relative;
    width: 50px;
    height: 5px;
    margin: 0 10px 5px 0;
    background-color: rgb(255, 255, 255);
    /* white-1 */
    transition: background-color .4s ease;
}

.c-section-hero-swiper-pagination-btn:hover {
    background-color: rgb(183, 182, 182);
    /* grey-3 */
}

.c-section-hero-swiper-pagination-btn.c-active {
    background-color: rgb(74, 117, 103);
    /* green-1 */
}


/* sm-up */

@media (min-width: 576px) {
    .c-section-hero-swiper-pagination-btn {
        width: 80px;
    }
}


/*==================================================================================================
   *c-section-know-all-products
==================================================================================================*/

.c-section-know-all-products-ctn-swiper {
    position: relative;
    margin-top: 20px;
}

@media (min-width: 1480px) {
    .c-section-know-all-products-ctn-swiper {
        max-width: 1300px;
        left: 80px;
    }
}

@media (min-width: 1680px) {
    .c-section-know-all-products-ctn-swiper {
        max-width: 1400px;
        left: 130px;
    }
}

@media (min-width: 1880px) {
    .c-section-know-all-products-ctn-swiper {
        max-width: 1500px;
        left: 180px;
    }
}


/*==================================================================================================
   *c-section-solutions
==================================================================================================*/

.c-section-solutions-swiper {}


/*==================================================================================================
   *c-section-video
==================================================================================================*/

.c-section-video-icon {
    transition: all .4s ease;
    color: rgba(0, 0, 0, .7);
    /* black-2 */
}

.c-section-video:hover .c-section-video-icon {
    transform: scale(1.1);
}

.hide {
    display: none;
}

strong {
    font-weight: 700 !important;
    color: rgb(38, 37, 41) !important;
}

.c-nav-1-link.c-active {
    background-color: rgb(38, 37, 41);
    color: rgb(255, 255, 255);
}

.icone-list {
    font-size: 8px !important;
    margin-top: 7px !important;
}

.filter-gray {
    filter: grayscale(100%);
}

.filter-gray:hover {
    filter: grayscale(0%);
}

.border-bottom-1 {
    border-bottom: 3px solid rgb(74, 117, 103);
}

.border-1 {
    border: 1px solid;
}

#epedidos ul {
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

#epedidos.active ul {
    opacity: 1;
    height: auto;
}

.ajusta-texto p {
    margin-bottom: 8px;
}

.ajusta-texto ul {
    list-style: disc !important;
    padding-left: 30px !important;
}

#epedidosHeader {
    position: absolute;
    top: 40px;
    left: -168px;
    width: 200px;
    background-color: #828282;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgb(74, 117, 103);
    display: none;
}

.disableEpedidosHeader {
    display: none;
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vw;
    top: 0;
}

.h-110 {
    height: 110px;
}

.logo-parceiros {
    max-height: 110px;
    max-width: 160px;
}


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

.response.bg-success {
    background-color: rgb(74, 117, 103);
    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: rgb(74, 117, 103);
    position: absolute;
    right: 6%;
    top: 130%;
}

.loaderRevendas {
    width: 45px;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2000;
    color: rgb(74, 117, 103);
    position: absolute;
    right: 64%;
    top: 5%;
}

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

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


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

.ajusta-ul ul{
    list-style: disc !important;
    padding-left: 40px !important;
}

.text-shadow-1{
    text-shadow: 2px 2px #000000;
}

.texto-blog img{
    margin-right: 15px;

}

.upload-trabalhe{
    border: 1px solid #00000063;
    border-radius: 8px;
    padding: 80px 0px;
    cursor: pointer;
}
.font-blog p{
    font-weight: 800 !important;
    color: #000000 !important;
}