
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');

/*
font-family: 'Roboto', sans-serif;
*/

/***
====================================================================
	 Resources / Css Files
====================================================================

 ***/

@import url('fontawesome-all.css');
@import url('flaticon.css');
@import url('elegent-icon.css');
@import url('animate.css');
@import url('swiper.css');
@import url('owl.css');
@import url('hover.css');
@import url('jquery-ui.css');
@import url('jquery.fancybox.min.css');

/***

====================================================================
    Reset
====================================================================

 ***/
:root {
  --sverde:#c1d100 ;
  --sroxo:#40212f;
  --azul:#1e373b ;
  --vermelho:#a82b17;
}
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/***

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-size: 14px;
    color: #484848;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--azul);
}
a:hover {
    
    color: var(--vermelho);
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Roboto', sans-serif;
}

input,
button,
select,
textarea {}

textarea {
    overflow: hidden;
}

p {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.large-container {
    position: static;
    max-width: 1550px;
    padding: 0px 15px;
    margin: 0 auto;
}

.medium-container {
    max-width: 850px;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.centered {
    text-align: center;
}

.theme-btn .flaticon-arrow {
    display: inherit;
    margin-left: 3px;
    font-size: 14px;
    -webkit-transform: scaleX(-1) translateY(-1px);
    -moz-transform: scaleX(-1) translateY(-1px);
    -ms-transform: scaleX(-1) translateY(-1px);
    -o-transform: scaleX(-1) translateY(-1px);
    transform: scaleX(-1) translateY(-1px);
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

/***

====================================================================
	Buttons Style
====================================================================

 ***/

/*Btn Style One*/

.btn-style-one {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #fff !important;
    font-weight: 500;
    padding: 10px 32px;
    background-color: var(--vermelho);
    overflow: hidden;border-radius: 50px;
}

.btn-style-one .btn-title {
    position: relative;
}

.btn-style-one:hover {
    color: var(--vermelho) !important;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);

}

.btn-style-one:before {
    /*position: absolute;
    left: -40%;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    opacity: .12;
    -webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    -o-transform: skewX(15deg);
    transform: skewX(15deg);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;*/
}

.btn-style-one:hover:before {
    left: 0;
    opacity: 1;
    -webkit-transform: skewY(0);
    -moz-transform: skewY(0);
    -ms-transform: skewY(0);
    -o-transform: skewY(0);
    transform: skewY(0);
}

/*Btn Style Two*/

.btn-style-two {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    padding: 10px 32px;
    background-color: var(--azul);
    overflow: hidden;border-radius: 50px;
}

.btn-style-two .btn-title {
    position: relative;
}

.btn-style-two:hover {
    /*color: var(--vermelho);*/
    color: #fff;
     background-color: var(--vermelho);
}

.btn-style-two:before {
    position: absolute;
    left: -40%;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--vermelho);
    opacity: .12;
    -webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    -o-transform: skewX(15deg);
    transform: skewX(15deg);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn-style-two:hover:before {
    left: 0;
    opacity: 1;
    -webkit-transform: skewY(0);
    -moz-transform: skewY(0);
    -ms-transform: skewY(0);
    -o-transform: skewY(0);
    transform: skewY(0);
}

/*Btn Style Three*/

.btn-style-three {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 50px;
    background-color: var(--vermelho);
    overflow: hidden;
    cursor: pointer;
}

.btn-style-three:hover {
    color: var(--vermelho);
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/*Btn Style Four*/

.btn-style-four {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: var(--vermelho);
    font-weight: 500;
    padding: 10px 32px;
    border-radius: 50px;
    background-color: #ffffff;
    overflow: hidden;
}

.btn-style-four:hover {
    color: #ffffff;
    background-color: var(--vermelho);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/*Btn Style Five*/

.btn-style-five {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #f1ecff;
    font-weight: 500;
    padding: 10px 32px;
    background-color: var(--vermelho);
    overflow: hidden;
    transition: all 300ms linear;
    border-radius: 5px;
}

.btn-style-five .btn-title {
    position: relative;
}

.btn-style-five:hover {
    color: var(--vermelho);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-five:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-five:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*Btn Style Six*/

.btn-style-six {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #f1ecff;
    font-weight: 500;
    padding: 10px 32px;
    background-color: #484848;
    transition: all 300ms linear;
    border-radius: 5px;
    overflow: hidden;
}

.btn-style-six .btn-title {
    position: relative;
}

.btn-style-six:hover {
    color: #484848;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-six:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-six:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

/*Btn Style Seven*/

.btn-style-seven {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #484848;
    font-weight: 500;
    padding: 10px 32px;
    background-color: transparent;
    transition: all 300ms linear;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #484848;
}

.btn-style-seven .btn-title {
    position: relative;
}

.btn-style-seven:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.btn-style-seven:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #484848;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.btn-style-seven:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

/* Btn Style Eight*/
.btn-style-eight,
.btn-style-eight:hover {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    font-weight: 500;
    padding: 10px 32px;
    background-color: #ccc;
    overflow: hidden;
}

.detail-qty {
    width: 120px;
    height: 36px;
    line-height: 36px;
    padding: 0 14px;
    color: #999;
    position: relative;
}

.detail-qty a {
    position: absolute;
    top: 0px;
    font-size: 18px;
    color: #999;
}

.detail-qty a:hover {
    color: #484848
}

.detail-qty .qty-up {
    right: 13px;
}

.detail-qty .qty-down {
    right: 40px;
}

/* List Style One */

.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 14px;
}

.list-style-one li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    content: "\52";
    font-family: 'ElegantIcons';
    color: var(--vermelho);
}

/* List Style Two */

.list-style-two {
    position: relative;
}

.list-style-two li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 14px;
}

.list-style-two li:before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 6px;
    width: 6px;
    background-color: var(--vermelho);
    content: "";
}

/***

====================================================================
	Social Icons
====================================================================

 ***/

/*Social Icon One*/

.social-icon-one {
    position: relative;
}

.social-icon-one li {
    position: relative;
    display: inline-block;
   /* margin-right: 8px;
    margin-bottom: 10px;*/
}

.social-icon-one li a {
    position: relative;
    display: block;
   
    text-align: center;
    font-size: 30px;
    color: #fff;
   margin:0 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-one li a:hover {
    
    color: var(--vermelho);
}

/*Social Icon Two*/

.social-icon-two {
    position: relative;
}

.social-icon-two li {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 10px;
}

.social-icon-two li:last-child {
    margin-right: 0;
}

.social-icon-two li a {
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #778193;
    border: 1px solid #cacadd;
    border-radius: 50px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-two li a:hover {
    background-color: var(--vermelho);
    border-color: var(--vermelho);
    color: #ffffff;
    -webkit-box-shadow: 0 20px 30px rgba(184, 23, 04, .30);
    -ms-box-shadow: 0 20px 30px rgba(184, 23, 04, .30);
    box-shadow: 0 20px 30px rgba(184, 23, 04, .30);
}

/*Social Icon Three*/

.social-icon-three {
    position: relative;
}

.social-icon-three li {
    position: relative;
    display: inline-block;
    margin-left: 16px;
    margin-bottom: 10px;
}

.social-icon-three li:first-child {
    margin-left: 0;
}

.social-icon-three li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #484848;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icon-three li a:hover {
    color: var(--vermelho);
}

.theme_color {
    color: #d24c59;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
    background-size: 80px;
}

.preloader2 {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
    background-size: 40px;
}

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

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

/***

====================================================================
	7. Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 85px;
    right: 15px;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center;
    z-index: 9999;
    cursor: pointer;
    background:var(--azul);
    display: none;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    color: #ffffff;
    background: var(--vermelho);
}

.tabs-box {
    position: relative;
}

.tabs-box .tab {
    display: none;
}

.tabs-box .tab.active-tab {
    display: block;
}

/***

====================================================================
	Page Title
====================================================================

***/

.page-title,
.page-title1 {
    position: relative;
    padding: 5% 0 5%;
    background-size: cover;
    /*background-position: 0 40%;*/
    background-position: right;
    background-repeat: no-repeat;
    text-align: center;

    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.page-title .shape-layer-1,
.page-title .shape-layer-2,
.page-title .shape-layers {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: .60;
}

.page-title .shape-layer-1 {
    background-image: url(../images/icons/shape-12.png);
    height: 571px;
}

.page-title .shape-layer-2 {
    background-image: url(../images/icons/shape-13.png);
    height: 607px;
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(241, 182, 175);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
    opacity: .70;
    content: "";
}

.page-title1:before {
   /* position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(0, 60, 81);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
    opacity: .20;
    content: "";*/
}

.page-title h1,
.page-title1 h1 {
    position: relative;
    display: block;
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-title .bread-crumb,
.page-title1 .bread-crumb {
    position: relative;
}

.page-title .bread-crumb li,
.page-title1 .bread-crumb li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    cursor: default;
    padding-right: 15px;
    margin-right: 15px;
}

.page-title .bread-crumb li:before,
.page-title1 .bread-crumb li:before {
    position: absolute;
    right: -3px;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    content: "|";
}

.page-title .bread-crumb li:last-child,
.page-title1 .bread-crumb li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.page-title .bread-crumb li:last-child:before,
.page-title1 .bread-crumb li:last-child:before {
    display: none;
}

.page-title .bread-crumb li a,
.page-title1 .bread-crumb li a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.page-title .bread-crumb li a:hover,
.page-title1 .bread-crumb li a:hover {
    color: #484848;
}

/*=== Style Two ===*/
.page-title.style-two {
    position: relative;
    background-color: #0b0e37;
}

.page-title.style-two .shape-layer-1,
.page-title.style-two .shape-layer-2,
.page-title.style-two .shape-layers {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: .60;
}

.page-title.style-two .shape-layer-1 {
    background-image: url(../images/icons/shape-16.png);
    height: 571px;
}

.page-title.style-two .shape-layer-2 {
    background-image: url(../images/icons/shape-17.png);
    height: 607px;
}

.page-title.style-two:before {
    background: #0b0e37;
    opacity: .50;
}

/*=== Style Three ===*/

.page-title.style-three {
    position: relative;
    background: transparent;
    padding: 225px 0 100px;
}

.page-title.style-three:before {
    display: none;
}

.page-title.style-three h1 {
    font-size: 40px;
    line-height: 50px;
    color: #484848;
    max-width: 780px;
    margin: 0 auto 22px;
}

.page-title.style-three .bread-crumb li a,
.page-title.style-three .bread-crumb li:before,
.page-title.style-three .bread-crumb li {
    color: #484848;
}

/***

====================================================================
	Section Title
====================================================================

***/

.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 1em;
    color: var(--vermelho);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.sec-title h2, .sec-title h1 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    padding-bottom: 30px;
}

.sec-title h2:before, .sec-title h1:before {
    position: absolute;
    left: 0px;
    bottom: 0;
    height: 9px;
    width: 60px;

    background-position: center;
    content: "";
    animation: slide 10s linear infinite;
    -webkit-animation: slide 10s linear infinite;
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -111px 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -111px 0;
    }
}

.sec-title.text-center h2:before {
    right: 0;
    margin: 0 auto;
}

.sec-title.light h2,
.sec-title.light .title {
    color: #ffffff;
}



/*=== Style Two ===*/

.sec-title.style-two {
    margin-bottom: 20px;
}

.sec-title.style-two h2 {
    padding-bottom: 0;
}

.sec-title.style-two h2:before {
    display: none;
}

.sec-title.style-two.light .title {
    color: #484848;
}

/*=== Style Three ===*/

.sec-title.style-three {
    margin-bottom: 60px;
}

.sec-title.style-three .title {
    color: #484848;
    letter-spacing: 0;
    text-transform: capitalize;
}

.sec-title.style-three h2 {
    padding-bottom: 0;
}

.sec-title.style-three h2:before {
    display: none;
}

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.anim-icons .icon {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
}

/***

====================================================================
	Main Header
====================================================================

***/

.header-span {
    height: 120px;
    display: block;
}

.main-header {
    position: fixed;
    z-index: 999;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box {
    position: relative;
    padding: 25px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header-rel {
    position: relative;
}

.main-header-rel .main-box {
    padding: 25px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 100%;
}

.main-box-150 {
    background-color: #ffff;
    max-height: 150px;
}

.mt150 {
    margin-top: 150px !important;
}
.mt150r {
    margin-top: 150px !important;
}

.main-header .logo-box {
    position: relative;
    float: left;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .logo-box .logo img {
    display: inline-block;
    max-width: 100%;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 200px;
}

.main-header .nav-outer {
    position: relative;
    /*float: right;*/
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.main-header .nav-outer .main-menu {
    position: static;
    float: left;
}

.main-menu .navigation {
    position: static;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    margin-left: 45px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.display-none {
    display: none
}

.fixed-header .main-menu .navigation>li>a {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    padding: 10px 0;
    color: #fff;

    opacity: 1;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    padding: 10px 0;
    color: #484848;

    opacity: 1;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.p-kids {
    position: absolute;
    display: inline-block;
    transform: rotate(-8deg);
    top: 60%;
    right: 8%;
    font-weight: bold;
    font-size: 16px
}

.verde {
    color: #35c10c;
}

.azul {
    color: #0c62c1;
}

.amarelo {
    color: #f3f007;
}

.vermelho {
    color: #F00;
}

.main-menu .navigation>li>a:hover {
    color: var(--vermelho);
}

.fixed-header .main-menu .navigation>li>a:hover {
    color: #fff;
    border-bottom: 2px #fff solid;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 100%;
    margin-top: 10px;
    width: 220px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0px;
    background: #ffffff;
    text-align: left;
    border-radius: 3px;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul:before {
    position: absolute;
    content: '';
    left: 0px;
    top: -30px;
    width: 100%;
    height: 30px;
    display: block;
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    padding: 0px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 0px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #222222;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li:hover>a {
    color: var(--vermelho);
    padding-left: 5px;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 0px;
    top: 9px;
    width: 10px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0px;
    width: 220px;
    z-index: 100;
    display: none;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0px;
    background: #ffffff;
    text-align: left;
    border-radius: 3px;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    padding: 0px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 8px 0px;
    line-height: 24px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #222222;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: var(--vermelho);
    padding-left: 5px;
}

.main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;

}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0;
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #ffffff;
    line-height: 28px;
    border: 1px solid #ffffff;
    background-size: 20px;
    cursor: pointer;
    z-index: 5;
    display: none;
}

/* Outer box */
.main-header .outer-box {
    position: relative;
    float: right;
    margin-left: 20px;
    display: inline-flex;
}

.btn-lang {
    margin-right: 20px;
    margin-top: 13px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #484848;
}

.btn-lang:hover {
    color: var(--vermelho)
}

.fixed-header .btn-lang {
    margin-right: 20px;
    margin-top: 13px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
}

.fixed-header .btn-lang:hover {
    color: #fff;
}

.main-header .outer-box .btn-box a {
    position: relative;
    float: right;
}

.portfolio-menu {
    text-align: center;
    margin: 30px auto;
}

.portfolio-menu ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 10px 15px;
    border: 1px solid var(--vermelho);
    cursor: pointer;
    transition: all .5 ease;
    margin-bottom: 5px;
}

.portfolio-menu ul {
    padding: 0;
}

.portfolio-menu ul li:hover {
    background: var(--vermelho);
    color: #fff;
}

.portfolio-menu ul li.active {
    background: var(--vermelho);
    color: #f1ecff;
}

.portfolio-item {
    max-width: 1000px;
    margin: 30px auto;
}

.portfolio-item .item {
    width: 25%;
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 10px;
}

.portfolio-item .item div {
    /*height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;*/
}
.portfolio-item .item div.logo-par {
    height: 200px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
    .portfolio-item .item {
        width: 50%;
        padding: 0 15px;
    }
}

@media screen and (max-width: 640px) {
    .portfolio-item .item {
        width: 100%;
    }
}


/*search box btn*/

.main-header .search-box {
    position: relative;
    float: left;
    padding: 55px 0;
    margin-left: 40px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box .search-box-btn {
    position: relative;
    width: 30px;
    cursor: pointer;
    background: none;
    font-size: 26px;
    line-height: 50px;
    color: #ffffff;
    outline: none;
    border-radius: 50px;
    text-align: center;
}

.main-header .search-box .show .search-box-btn span:before {
    content: "\f14d";
    font-size: 20px;
}

.dropdown-toggle::after {
    display: none;
}

.main-header .search-box .dropdown-menu {
    top: 100% !important;
    left: auto !important;
    right: 0px !important;
    transform: none !important;
    padding: 0px;
    width: 280px;
    border-radius: 0px;
    border-top: 3px solid #25262c;
    margin-top: 10px;
}

.main-header .search-panel .form-container {
    padding: 25px 20px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 7px 40px 7px 15px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
    border-color: #25262c;
}

.main-header .search-panel .search-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #555555;
    font-size: 12px;
    background: none;
    cursor: pointer;
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: var(--vermelho);
    margin: 7px 0px 2px;
    display: none;
}
.main-header.fixed-header .nav-outer .mobile-nav-toggler {  color: #fff;}
.main-header.fixed-header .logo-box { display:none}
/***

====================================================================
	Header Style Two
====================================================================

***/

.header-style-two .main-menu .navigation>li>a {
    color: #484848;
}

.header-style-two .main-menu .navigation>li {
    margin-left: 35px;
}

.header-style-two .nav-outer {
    float: left;
}

.header-style-two .nav-outer .main-menu {
    margin-left: 45px;
}

.header-style-two .outer-box {
    position: relative;
    float: right;
}

.header-style-two.alternate .main-box {
    -webkit-box-shadow: 0 20px 30px rgba(14, 16, 48, 0.06);
    -ms-box-shadow: 0 20px 30px rgba(14, 16, 48, 0.06);
    box-shadow: 0 20px 30px rgba(14, 16, 48, 0.06);
}

/***

====================================================================
	Header Style Three
====================================================================

***/

.header-style-three .main-menu .navigation>li {
    /*margin-left: 35px;*/
    /*margin-left: 30px;*/
    margin-left: 22px;
}

.header-style-three .nav-outer {
    float: left;
}

.header-style-three .nav-outer .main-menu {}

.header-style-three .outer-box {
    position: relative;
    float: right;
}

.header-style-three .outer-box .btn-box a {
    border-radius: 3px;
}

/***

====================================================================
		Fixed Header
====================================================================

***/

.main-header.fixed-header .main-box {
    padding: 10px 0;
    background-color: var(--vermelho);
    height: auto;
}

.main-header.fixed-header .main-box .logo {
    display: none !important
}

.header-style-two.fixed-header .main-box {
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
}

.header-style-two.fixed-header .outer-box .theme-btn {
    background-color: var(--vermelho);
    color: #ffffff;
}

.header-style-two.alternate.fixed-header .outer-box .theme-btn:hover {
    color: var(--vermelho);
}

/***

====================================================================
			Mobile Menu
====================================================================

***/

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    text-align: left;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 1);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease 500ms;
    -moz-transition: all 0.7s ease 500ms;
    -ms-transition: all 0.7s ease 500ms;
    -o-transition: all 0.7s ease 500ms;
    transition: all 0.7s ease 500ms;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 3px;
    top: 3px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 14px;
    color: #202020;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 15px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current-kids>a,
.mobile-menu .navigation li.current>a {
    color: var(--vermelho);
}

.navigation li.current>a {
    color: var(--vermelho);
    border-bottom: 2px solid var(--vermelho);
}

.fixed-header .navigation li.current>a {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.fixed-header .navigation li.current-kids>a {
    color: #fff;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: #404040;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
}

/***

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
    position: relative;
}

.banner-carousel {
    position: relative;
}

.banner-carousel .swiper-slide {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 250px 0 260px;
}

.banner-carousel .swiper-slide:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0e1030;
    opacity: .10;
    content: "";
}

.banner-carousel .content-box {
    position: relative;
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
}

.banner-carousel .content-box .title {
    display: block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .swiper-slide-active .content-box .title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-carousel .content-box h2 {
    display: block;
    font-size: 70px;
    line-height: 80px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .swiper-slide-active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.banner-carousel .content-box .info-list {
    position: relative;
    margin-bottom: 45px;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .swiper-slide-active .content-box .info-list {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.banner-carousel .content-box .info-list li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    margin-right: 15px;
    padding-right: 20px;
    text-transform: uppercase;
}

.banner-carousel .content-box .info-list li .icon {
    color: #484848;
    margin-right: 10px;
    float: left;
    font-size: 18px;
    line-height: 26px;
}

.banner-carousel .content-box .info-list li:before {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    content: "|";
}

.banner-carousel .content-box .info-list li:last-child:before {
    display: none;
}

.banner-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(150px);
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -o-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.banner-carousel .content-box .btn-box a {
    padding: 15px 32px;
}

.banner-carousel .swiper-slide-active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

/***

====================================================================
		Banner Conference
====================================================================

***/

.banner-conference {
    position: relative;
    padding: 235px 0 175px;
}

.banner-conference .content-column {
    position: relative;
}

.banner-conference .content-column .inner-column {
    position: relative;
    padding-top: 115px;
}

.banner-conference .title {
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--vermelho);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.banner-conference h2 {
    display: block;
    font-size: 70px;
    line-height: 80px;
    color: #484848;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-conference .conference-info {
    position: relative;
    margin-bottom: 40px;
}

.banner-conference .conference-info li {
    position: relative;
    float: left;
    font-size: 18px;
    color: #484848;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 30px;
    margin-right: 38px;
}

.banner-conference .conference-info li a {
    color: #484848;
}

.banner-conference .conference-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
}

.banner-conference .btn-box .theme-btn {
    padding: 15px 34px;
    line-height: 26px;
}

.banner-conference .image-column {
    position: relative;
}

.banner-conference .image-column .image-box {
    position: relative;
    margin-right: -140px;
}

.banner-conference .shape-layers {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45.6%;
    overflow: hidden;
}

.banner-conference .shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
}

.banner-conference .shape-2 {
    position: absolute;
    height: 752px;
    width: 1058px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    left: 75px;
    top: -134px;
    opacity: .40;
}

.banner-conference .icon-dots-2 {
    left: -440px !important;
    bottom: 230px !important;
    top: auto !important;
}

.banner-conference .icon-speaker-3 {
    left: -302px !important;
    top: 235px !important;
}

.banner-conference .twist-line-4 {
    left: 150px !important;
    top: 175px !important;
}

.banner-conference .icon-square {
    left: 490px !important;
    top: 210px !important;
}

.banner-conference .icon-circle-3 {
    left: 375px !important;
    bottom: 200px !important;
    top: auto !important;
}

.banner-conference .icon-cross {
    left: -80px !important;
    bottom: 140px !important;
    top: auto !important;
}

.icon-cross {
    height: 20px;
    width: 20px;
    background-image: url(../images/icons/icon-cross.png);
}

.icon-circle-3 {
    height: 50px;
    width: 50px;
    background-image: url(../images/icons/circle-3.png);
}

.icon-square {
    height: 60px;
    width: 60px;
    background-image: url(../images/icons/icon-square.png);
}

.twist-line-4 {
    height: 25px;
    width: 26px;
    background-image: url(../images/icons/twist-line-4.png);
}

.icon-speaker-3 {
    height: 107px;
    width: 110px;
    background-image: url(../images/icons/icon-speaker-3.png);
}

.icon-dots-2 {
    height: 155px;
    width: 180px;
    background-image: url(../images/icons/icon-dots-2.png);
}

/***

====================================================================
		Banner MeetUp
====================================================================

***/

.banner-meetup {
    position: relative;
    background-color: #121441;
    padding: 290px 0 170px;
}

.banner-meetup .shape-layers {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.banner-meetup .shape-layers .shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/icons/shape-18.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 476px;
    width: 673px;
    opacity: 0.04;
}

.banner-meetup .shape-layers .shape-2 {
    position: absolute;
    right: 0;
    bottom: -145px;
    background-image: url(../images/icons/shape-19.png);
    background-repeat: no-repeat;
    background-position: center;
    height: 611px;
    width: 941px;
    opacity: 0.04;
}

.banner-meetup .content-box {
    position: relative;
    text-align: center;
}

.banner-meetup h2 {
    display: block;
    font-size: 70px;
    line-height: 80px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-meetup .text {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 40px;
}

.banner-meetup .btn-box {
    position: relative;
}

.banner-meetup .btn-box .theme-btn {
    padding: 15px 34px;
    line-height: 24px;
    border-radius: 5px;
}

.banner-meetup .countdown {
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 60px auto 0px;
}

.banner-meetup .countdown .redCountdownWrapper .redCountdownValue>div {
    top: 5px;
    font-size: 30px !important;
    line-height: 1.2em;
}

.banner-meetup .countdown .redCountdownWrapper .redCountdownValue>span {
    top: -5px;
    font-size: 14px !important;
    line-height: 1.2em;
}

.banner-meetup .countdown .redCountdownWrapper>div:nth-child(1) {
    color: #f93cee;
}

.banner-meetup .countdown .redCountdownWrapper>div:nth-child(2) {
    color: #484848;
}

.banner-meetup .countdown .redCountdownWrapper>div:nth-child(3) {
    color: #0ae8eb;
}

.banner-meetup .countdown .redCountdownWrapper>div:nth-child(4) {
    color: #19e71e;
}

.banner-meetup .icon-dots-2 {
    position: absolute !important;
    left: -440px !important;
    bottom: 230px !important;
    top: auto !important;
    z-index: 9;
}

.banner-meetup .icon-speaker-3 {
    left: -240px !important;
    top: 340px !important;
}

.banner-meetup .twist-line-4 {
    right: 470px !important;
    left: auto !important;
    top: 185px !important;
}

.banner-meetup .icon-square {
    right: -155px !important;
    left: auto !important;
    top: 260px !important;
}

.banner-meetup .icon-square-2 {
    left: 100px !important;
    top: 550px !important;
}

.banner-meetup .icon-circle-3 {
    right: -310px !important;
    left: auto !important;
    bottom: 95px !important;
    top: auto !important;
}

.banner-meetup .icon-cross {
    left: -220px !important;
    bottom: 140px !important;
    top: auto !important;
}

.banner-meetup .icon-twist-2 {
    right: 115px !important;
    left: auto !important;
    bottom: 300px !important;
    top: auto !important;
}

.icon-square-2 {
    height: 30px;
    width: 30px;
    background-image: url(../images/icons/icon-square-2.png);
}

.icon-twist-2 {
    height: 30px;
    width: 30px;
    background-image: url(../images/icons/icon-twist-2.png);
}

/***

====================================================================
		Banner Development
====================================================================

***/

.banner-development {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.rectangle-box {
    position: relative;
    width: 100%;

}

.rectangle-content {
    /*position: absolute;*/
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}

.rectangle-content div {
    display: table;
    width: 100%;
    height: 100%;
    max-height: 100vh;
}

/*.banner-development:after{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #003c51;
	opacity: .20;
	content: "";
}*/
.banner-development .content-box {
    position: relative;
    text-align: center;
}

.banner-development .title {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 1.2em;
    color: #ffffff;
    margin-bottom: 10px;
}

.banner-development h2 {
    position: relative;
    display: block;
    font-size: 100px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    z-index: 9;
}

.banner-development h2:before {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    text-align: center;
    font-size: 100px;
    color: #372df9;
    z-index: -1;
    opacity: .60;
    content: attr(data-bg-text);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    -o-filter: blur(10px);
    filter: blur(10px);
}

.banner-development h4 {
    font-size: 50px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 50px;
    z-index: 9;
}

.banner-development .btn-box {
    position: relative;
}

.banner-development .btn-box .theme-btn {
    padding: 10px 28px;
    border-radius: 5px;
}

/***

====================================================================
		Countdown Section
====================================================================

***/

.countdown-section {
    position: relative;
}

.countdown-section .outer-box {
    position: relative;
    display: block;
    margin-top: -100px;
    background-color: #ffffff;
    border-top: 7px solid var(--vermelho);
    border-radius: 0px 0px 5px 5px;
    padding: 70px 70px 45px;
    -webkit-box-shadow: 0 40px 100px rgba(14, 16, 48, 0.10);
    -ms-box-shadow: 0 40px 100px rgba(14, 16, 48, 0.10);
    box-shadow: 0 40px 100px rgba(14, 16, 48, 0.10);
    z-index: 99;
}

.countdown-section .date-column {
    position: relative;
    float: left;
    padding-top: 25px;
}

.countdown-section .date-column .date {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1em;
    color: var(--vermelho);
    font-weight: 400;
    text-transform: uppercase;
}

.countdown-section .date-column strong {
    font-size: 80px;
    line-height: 1em;
    color: var(--vermelho);
    margin-right: 15px;
}

.countdown-section .date-column .location {
    display: block;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--vermelho);
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
}

.countdown-section .countdown-column {
    position: relative;
    float: right;
}

.countdown-section .time-countdown {
    position: relative;
    text-align: center;
}

.countdown-section .time-countdown .counter-column {
    position: relative;
    display: inline-block;
    line-height: 20px;
    font-size: 16px;
    color: #7e3cf9;
    font-weight: 400;
    height: 150px;
    width: 150px;
    text-transform: uppercase;
    background-color: #ffffff;
    padding-top: 45px;
    border-radius: 50%;
    border: 7px solid #7e3cf9;
    margin: 0 18px 40px;
}

.countdown-section .time-countdown .counter-column .count {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1em;
    color: #7e3cf9;
    font-weight: 700;
    letter-spacing: 0;
}

.countdown-section .time-countdown .counter-column:nth-child(2) .count,
.countdown-section .time-countdown .counter-column:nth-child(2) {
    border-color: #484848;
    color: #484848;
}

.countdown-section .time-countdown .counter-column:nth-child(3) .count,
.countdown-section .time-countdown .counter-column:nth-child(3) {
    border-color: #0a90f8;
    color: #0a90f8;
}

.countdown-section .time-countdown .counter-column:nth-child(4) .count,
.countdown-section .time-countdown .counter-column:nth-child(4) {
    border-color: #0abb0e;
    color: #0abb0e;
}


/***

====================================================================
		Red Time Counter
====================================================================

***/

.countdown-section .date-column {
    position: relative;
    width: 20%;
}

.countdown-section .countdown-column {
    position: relative;
    width: 80%;
}

.red-time-counter {
    position: relative;
    text-align: center;
}

.countdown-section .countdown-column .red-time-counter {
    position: relative;
    text-align: right;
}

.red-time-counter .redCountdownWrapper {
    width: 100%;
}

.red-time-counter .redCountdownWrapper>div {
    width: calc(25% - 40px);
    text-align: center;
    color: #484848;
    margin-bottom: 30px;
}

.red-time-counter .redCountdownWrapper .redCountdownValue>div {
    position: relative;
    top: 5px;
    font-size: 40px !important;
    line-height: 1em;
    margin: 0;
    font-weight: 700;
}

.red-time-counter .redCountdownWrapper .redCountdownValue>span {
    position: relative;
    top: -5px;
    font-size: 16px !important;
    line-height: 1em;
    text-transform: uppercase;
    margin: 0;
}

.red-time-counter .redCountdownWrapper>div:nth-child(2) {
    border-color: #484848;
    color: #484848;
}

.red-time-counter .redCountdownWrapper>div:nth-child(3) {
    color: #7c95a0;
}

.red-time-counter .redCountdownWrapper>div:nth-child(4) {
    color: #7c95a0;
}

/***

====================================================================
		Red Time Counter
====================================================================

***/

.countdown-section .date-column {
    position: relative;
    width: 20%;
}

.countdown-section .countdown-column {
    position: relative;
    width: 80%;
}

.red-time-counter {
    position: relative;
    text-align: center;
}


/***

====================================================================
		Countdown Section Two
====================================================================

***/

.countdown-section-two {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 130px 0 100px;
}

.countdown-section-two:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #0e1030;
    opacity: .80;
    content: "";
}

.countdown-section-two .sec-title {
    margin-bottom: 60px;
}

.countdown-section-two .sec-title .title {
    color: #484848;
}

.countdown-section-two .time-countdown {
    position: relative;
    text-align: center;
}

.countdown-section-two .time-countdown .counter-column {
    position: relative;
    display: inline-block;
    line-height: 20px;
    font-size: 16px;
    color: #484848;
    font-weight: 400;
    text-transform: uppercase;
    min-height: 180px;
    min-width: 150px;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 0 15px 50px;
    padding: 52px 20px;
    letter-spacing: 2px;
}

.countdown-section-two .time-countdown .counter-column .count {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 1em;
    color: var(--vermelho);
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 15px;
}

/***

====================================================================
		Countdown Section Four
====================================================================

***/

.countdown-section-four {
    position: relative;
    padding: 100px 0 50px;
    background-color: #0f1130;
    overflow: hidden;
}

.countdown-section-four .time-countdown {
    position: relative;
}

.countdown-section-four .time-countdown .counter-column {
    position: relative;
    float: left;
    width: 25%;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}

.countdown-section-four .time-countdown .count {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 25px;
    margin-bottom: 25px;
    color: #484848;
}

.countdown-section-four .time-countdown .count:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7px;
    width: 80px;
    background-image: url(../images/icons/twist-line-5.png);
    content: "";
    margin: 0 auto;
}

.countdown-section-four .time-countdown .counter-column:nth-child(2) .count {
    color: var(--vermelho);
}

.countdown-section-four .time-countdown .counter-column:nth-child(3) .count {
    color: var(--vermelho);
}

.countdown-section-four .time-countdown .counter-column:nth-child(4) .count {
    color: var(--vermelho);
}

.countdown-section-four .dotted-shape-1 {
    left: -170px !important;
    top: 55px !important;
    opacity: .30;
}

.countdown-section-four .dotted-shape-2 {
    right: -260px !important;
    bottom: 0 !important;
    left: auto !important;
    top: auto !important;
    opacity: .30;
}

.dotted-shape-1 {
    width: 312px;
    height: 390px;
    background-image: url(../images/icons/dotted-shape-1.png);
}

.dotted-shape-2 {
    width: 439px;
    height: 547px;
    background-image: url(../images/icons/dotted-shape-2.png);
}

/***

====================================================================
		Top Features
====================================================================

***/

.top-features {
    position: relative;
    padding: 130px 0 70px;
}

.top-features.alternate {
    padding: 100px 0 70px;
}

.feature-block {
    position: relative;
    margin-bottom: 30px;
}

.feature-block .inner-box {
    position: relative;
    padding: 50px 40px 60px;
    text-align: center;
    border-top: 2px solid transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .inner-box:hover,
.feature-block.active .inner-box {
    border-top-color: #ef88bc;
    -webkit-box-shadow: 0 30px 40px rgba(14, 16, 48, .06);
    -ms-box-shadow: 0 30px 40px rgba(14, 16, 48, .06);
    box-shadow: 0 30px 40px rgba(14, 16, 48, .06);
}

.feature-block .icon {
    display: inline-block;
    font-size: 68px;
    line-height: 1em;
    color: #222222;
    background: var(--vermelho);
   
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-block h4 {
    font-size: 22px;
    line-height: 1.2em;
    color: #394963;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-block h4 a {
    color: #394963;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block h4 a:hover {
    color: var(--vermelho);
}

.feature-block .text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

.feature-block .btn-box {
    position: relative;
    opacity: 0;
    top: -30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block .inner-box:hover .btn-box,
.feature-block.active .inner-box .btn-box {
    opacity: 1;
    top: 0px;
}

.feature-block .btn-box a {
    line-height: 20px;
}

.feature-block .btn-box a:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}

/***

====================================================================
		About Section
====================================================================

***/

.about-section {
    position: relative;
    padding: 120px 0 70px;
    background-color: #fbfbfd;
    margin-top: 0px;    width: 100%;
}

.about-section .icon-shape-1 {
    left: -215px !important;
    top: 40px !important;
    opacity: .50;
}

.about-section .icon-mic {
    left: -235px !important;
    top: 390px !important;
    opacity: .10 !important;
}

.about-section .icon-mic-2 {
    top: 170px !important;
    left: 50% !important;
    margin-left: -145px;
    opacity: .10 !important;
}

.about-section .icon-mic-2:nth-child(3) {
    left: auto !important;
    top: auto !important;
    right: -140px !important;
    bottom: 240px !important;
    margin-left: 0;
    opacity: .10 !important;
}

.about-section .icon-man {
    margin-left: -100px !important;
    opacity: .10 !important;
    bottom: 0 !important;
    top: auto !important;
}

.about-section .icon-speaker {
    left: 370px !important;
    top: auto !important;
    bottom: 120px !important;
    opacity: .10 !important;
}

.about-section .icon-speaker-2 {
    right: -275px !important;
    top: 225px !important;
    left: auto !important;
    opacity: .10 !important;
}

.icon-mic {
    height: 60px;
    width: 50px;
    background-image: url(../images/icons/icon-ob.png);
}

.icon-mic-2 {
    height: 60px;
    width: 50px;
    background-image: url(../images/icons/icon-bino.svg);
}

.icon-speaker {
    height: 60px;
    width: 50px;
    background-image: url(../images/icons/icon-photo.svg);
}

.icon-speaker-2 {
    height: 50px;
    width: 60px;
    background-image: url(../images/icons/icon-photo.svg);
}

.icon-shape-1 {
    height: 148px;
    width: 150px;
    background-image: url(../images/icons/shape-1.png);
}

.icon-man {
    width: 369px;
    height: 220px;
    background-image: url(../images/icons/passaro.svg);
}

.about-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;

    padding-right: 70px;
}

.about-section .content-column .sec-title {
    position: relative;
    margin-bottom: 43px;
}

.about-section .content-column .sec-title h2,
.about-section .content-column .sec-title h1 {
    font-size: 50px;
    line-height: 60px;
    padding-bottom: 0;
    margin-bottom: 15px;

    color: var(--vermelho);
    font-weight: 700;
}

.about-section .content-column .sec-title h2:before {
    display: none;
}

.about-section .content-column .sec-title .title {
    margin-bottom: 15px;
}

.about-section .content-column .sec-title .text {
    font-size: 18px;
    line-height: 32px;
    color: #484848;
    font-weight: 400;
}

.about-section .content-column .btn-box {
    position: relative;
}

.about-section .content-column .btn-box a {
    padding: 15px 32px;
}

.about-section .content-column .btn-box a:hover {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.20);
    -ms-box-shadow: 0 0 30px rgba(0, 0, 0, 0.20);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.20);
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-column .image-box {
    position: relative;
    padding-bottom: 312px;
    padding-left: 100px;
}

.about-section .image-column .image-box img {
    position: relative;
    z-index: 1;
    border: 12px solid #ffffff;
    -webkit-box-shadow: 0 20px 30px rgba(14, 16, 48, .10);
    -ms-box-shadow: 0 20px 30px rgba(14, 16, 48, .10);
    box-shadow: 0 20px 30px rgba(14, 16, 48, .10);
}

.about-section .image-column .image-1 {
    position: relative;
    margin-bottom: 0;
}

.about-section .image-column .image-1:before {
    position: absolute;
    height: 500px;
    width: 270px;
    right: -14px;
    top: 80px;
    background: var(--azul);
    content: "";
    z-index: 0;
}

.about-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
}

/***

====================================================================
		About Section Two
====================================================================

***/

.about-section-two {
    position: relative;
    padding: 140px 0 80px;
}

.about-section-two .icon-shape-3 {
    left: -490px;
    bottom: -30px;
    opacity: .06;
}

.icon-shape-3 {
    width: 986px;
    height: 911px;
    background-image: url(../images/icons/shape-3.png);
}

.about-section-two .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section-two .content-column .inner-column {
    position: relative;
    padding-top: 25px;
    padding-left: 40px;
}

.feature-block-two {
    position: relative;
    margin-bottom: 60px;
}

.feature-block-two .inner-box {
    position: relative;
}

.feature-block-two .icon {
    display: inline-block;
    font-size: 60px;
    line-height: 1em;
    color: #222222;
    background: var(--vermelho);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-block-two h4 {
    font-size: 20px;
    line-height: 1.2em;
    color: #394963;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-block-two h4 a {
    color: #394963;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.feature-block-two h4 a:hover {
    color: var(--vermelho);
}

.feature-block-two .text {
    font-size: 16px;
    line-height: 26px;
    padding-right: 30px;
}

.video-box-one {
    position: relative;
}

.video-box-one:before {
    position: absolute;
    left: -60px;
    top: -60px;
    width: 180px;
    height: 155px;
    content: "";
    background-image: url(../images/icons/icon-dots-2.png);
    background-repeat: no-repeat;
    background-position: center;
    opacity: .60;
}

.video-box-one .image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 10px;
    -webkit-box-shadow: 0 20px 30px rgba(14, 16, 48, .14);
    -ms-box-shadow: 0 20px 30px rgba(14, 16, 48, .14);
    box-shadow: 0 20px 30px rgba(14, 16, 48, .14);
}

.video-box-one .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.video-box-one .btn-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(14, 16, 48, .50);
    border-radius: 10px;
}

.video-box-one .btn-box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    padding-left: 5px;
    color: var(--vermelho);
    margin-top: -40px;
    margin-left: -40px;
    text-shadow: 0 10px 14px rgba(188, 17, 103, .40);
    z-index: 8;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.video-box-one .btn-box:hover .icon {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.video-box-one .btn-box:after,
.video-box-one .btn-box:before {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, .10);
    content: "";
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.video-box-one .btn-box:after {
    height: 300px;
    width: 300px;
}

.video-box-one .btn-box:hover:after,
.video-box-one .btn-box:hover:before {
    border: 1px solid rgba(255, 255, 255, 1);
    height: 0;
    width: 0;
}

.about-section-two .video-column {
    position: relative;
    margin-bottom: 50px;
}

/***

====================================================================
		About Section Three
====================================================================

***/

.about-section-three {
    position: relative;
    padding: 50px 0 0px;
}

.bg-cinza {
    background-color: #f7f7fa
}

.about-section-three .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section-three .content-column .inner-column {
    position: relative;
    padding-top: 30px;
}

.about-section-three .content-column h2 {
    font-size: 40px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section-three .content-column h4 {
    font-size: 24px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 400;
    margin-bottom: 27px;
}

.about-section-three .content-column .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #616977;
    font-weight: 400;
    margin-bottom: 45px;

}

.about-section-three .content-column .info-block {
    position: relative;
    margin-bottom: 5px;
}

.about-section-three .info-block h6 {
    font-size: 16px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-section-three .image-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section-three .image-column .inner-column {
    position: relative;
    padding-left: 100px;
}

.about-section-three .image-column .image-box {
    position: relative;
}

.about-section-three .image-column .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0;
}


.about-section-three .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-section-three .image-column .float-text {
    position: absolute;
    right: -35px;
    bottom: -30px;
    font-size: 180px;
    color: #ffffff;
    font-weight: 900;
    line-height: .7em;
}

/***

====================================================================
		About Section Four
====================================================================

***/

.about-section-four {
    position: relative;
    background-color: #060822;
    padding: 140px 0 100px;
}

.about-section-four .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section-four .content-column .inner-column {
    position: relative;
    padding-top: 30px;
}

.about-section-four .content-column .title {
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-section-four .content-column h2 {
    font-size: 40px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 22px;
}

.about-section-four .content-column .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #989bb8;
    font-weight: 400;
    margin-bottom: 45px;
    max-width: 470px;
}

.about-section-four .content-column .info-block {
    position: relative;
    margin-bottom: 5px;
}

.about-section-four .content-column .info-block h6 {
    font-size: 16px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-section-four .image-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section-four .image-column .inner-column {
    position: relative;
}

.about-section-four .image-column .image-box {
    position: relative;
}

.about-section-four .image-column .image-1 {
    position: relative;
    border-radius: 10px;
    margin-bottom: 0;
    z-index: 2;
}

.about-section-four .image-column .image-1 img {
    position: relative;
    z-index: 1;
}

.about-section-four .image-column .image-1:before {
    position: absolute;
    left: -40px;
    bottom: -30px;
    height: 124px;
    width: 144px;
    background-image: url(../images/icons/icon-dots-1.png);
    content: "";
    opacity: .60;
}

.about-section-four .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-section-four .image-column .image-2 {
    position: absolute;
    right: 0;
    top: 50px;
    z-index: 1;
}

/***

====================================================================
		About Section Five
====================================================================

***/

.about-section-five {
    position: relative;
    background-color: #fbfbfd;
    padding: 120px 0 100px;
}

.about-section-five .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section-five .content-column .inner-column {
    position: relative;
    padding-top: 20px;
}

.about-section-five .sec-title {
    margin-bottom: 30px;
}

.about-section-five .sec-title h2 {
    line-height: 54px;
}

.about-section-five .content-column .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #616977;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 470px;
}

.about-section-five .btn-box {
    position: relative;
}

.about-section-five .btn-box a {
    padding: 10px 38px;
    line-height: 30px;
    border-radius: 3px;
}

.about-section-five .image-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section-five .image-column .inner-column {
    position: relative;
}

.about-section-five .image-column .image-box {
    position: relative;
}

.about-section-five .image-column .image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 0;
}

.about-section-five .image-column .image-box:before {
    position: absolute;
    left: -40px;
    top: 70px;
    height: 500px;
    width: 540px;
    background-image: url(../images/icons/shape-6.png);
    content: "";
    opacity: .06;
}

.about-section-five .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-section-five .image-column .float-text {
    position: absolute;
    left: -28px;
    bottom: -30px;
    font-size: 180px;
    color: #fbfbfd;
    font-weight: 900;
    line-height: .7em;
}

/***

====================================================================
			Fluid Section One
====================================================================

***/

.fluid-section-one {
    position: relative;
}

.fluid-section-one:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--vermelho);
    
    opacity: .90;
    content: "";
}

.fluid-section-one .outer-box {
    position: relative;
}

.fluid-section-one .content-column {
    position: relative;
    float: right;
    width: 50%;
    padding: 0 15px;
}

.fluid-section-one .content-column .inner-column {
    position: relative;
    max-width: 585px;
    padding: 120px 0;
    padding-left: 100px;
}

.fluid-section-one .content-column h3 {
    position: relative;
    font-size: 40px;
    line-height: 54px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 28px;
}

.fluid-section-one .content-column .text {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 50px;
}

.fluid-section-one .content-column .theme-btn {
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 30px rgba(80, 4, 42, .15);
    -ms-box-shadow: 0 10px 30px rgba(80, 4, 42, .15);
    box-shadow: 0 10px 30px rgba(80, 4, 42, .15);
}

.fluid-section-one .shape-layers .shape-1,
.fluid-section-one .shape-layers .shape-2,
.fluid-section-one .shape-layers {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: left bottom;
    background-size: cover;
}

.fluid-section-one .shape-layers .shape-1 {
    background-image: url(../images/icons/shape-7.png);
    opacity: .40;
}

.fluid-section-one .shape-layers .shape-2 {
    background-image: url(../images/icons/shape-8.png);
    opacity: .40;
}

.fluid-section-one .image-column {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.fluid-section-one .image-column .image-box {
    display: none;
}

.fluid-section-one .image-column .image {
    position: relative;
    margin-bottom: 0;
}

.fluid-section-one .image-column .image img {
    display: block;
    width: 100%;
    height: auto;
}

/***

====================================================================
			Fun Fact Section
====================================================================

***/

.fun-fact-section {
    position: relative;
    /*background: rgba(238,124,112,1);
    background: -moz-linear-gradient(left, rgba(238,124,112,1) 0%, rgb(162, 47, 38) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(238,124,112,1)), color-stop(100%, rgb(162, 47, 38)));
    background: -webkit-linear-gradient(left, rgba(238,124,112,1) 0%, rgb(162, 47, 38) 100%);
    background: -o-linear-gradient(left, rgba(238,124,112,1) 0%, rgb(162, 47, 38) 100%);
    background: -ms-linear-gradient(left, rgba(238,124,112,1) 0%, rgb(162, 47, 38) 100%);
    background: linear-gradient(to right, rgba(238,124,112,1) 0%, rgb(162, 47, 38) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--vermelho)', endColorstr='var(--vermelho)', GradientType=1 );*/


    padding: 140px 0 90px;
}

.fun-fact-section .shape-layer-1,
.fun-fact-section .shape-layer-2,
.fun-fact-section .shape-layers {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    opacity: .70;
}

/*.fun-fact-section .shape-layer-1{
	background-image: url(../images/icons/shape-4.png);
}

.fun-fact-section .shape-layer-2{
	background-image: url(../images/icons/shape-5.png);
}*/

.fun-fact-section .fact-counter {
    position: relative;
}

.fun-fact-section .counter-column {
    position: relative;
    margin-bottom: 50px;
    text-align: center
}

.fun-fact-section .count-box {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: var(--azul);
    font-weight: 700;
    
}

.fun-fact-section .count-box .count-text {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 1em;
    color: var(--vermelho);
    font-weight: 700;
}

.fun-fact-section .counter-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--vermelho);
}
.seta-filtros {background-color: var(--vermelho);color: #fff;border-radius: 30px;height: 30px;width: 30px;line-height: 30px;}
/***

====================================================================
			Fun Fact Section Two
====================================================================

***/

.fun-fact-section-two {
    position: relative;
    background: var(--vermelho);
    
    padding: 140px 0 90px;
}

.fun-fact-section-two .fact-counter {
    position: relative;
}

.fun-fact-section-two .counter-column {
    position: relative;
    margin-bottom: 50px;
}

.fun-fact-section-two .count-box {
    position: relative;
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.fun-fact-section-two .count-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 10px;
    width: 120px;
    background-image: url(../images/icons/twist-line-3.png);
    background-position: center;
    background-repeat: repeat;
    content: "";
}

.fun-fact-section-two .count-box .count-text {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
}

.fun-fact-section-two .counter-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: #ffffff;
}

/***

====================================================================
	Speaker Section
====================================================================

***/

.speakers-section {
    position: relative;
    padding: 120px 0 20px;
}

.speakers-section.natureza {
    position: relative;
    padding: 120px 0 120px;
}

.speakers-section .icon-shape-2 {
    right: -1045px;
    bottom: 50px;
    opacity: .08;
}

.icon-shape-2 {
    width: 1376px;
    height: 955px;
    background-image: url(../images/icons/shape-2.png);
}

.speakers-section .auto-container {
    max-width: 1440px;
    padding: 0 15px;
}

.speakers-section .row {}

.speaker-block {
    position: relative;
    /*padding: 0 10px;*/
    margin-bottom: 20px;
}

.speaker-block .image-box {
    position: relative;
}

/*.speaker-block .image-box:before{
	position: absolute;
	left: -30px;
	bottom: -30px;
	width: 144px;
	height: 124px;
	content: "";
	background-image: url(../images/icons/icon-dots-1.png);
	background-repeat: no-repeat;
	background-position: center;
	opacity: .40;
}*/

.speaker-block .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.speaker-block .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.speaker-block .caption-box {
    position: absolute;
    left: 0;
    bottom: 24px;
    padding: 17px 35px 15px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block .image-box:hover .caption-box {
    bottom: 80%;
    opacity: 0;
    visibility: hidden;
}

.speaker-block .caption-box .name {
    display: block;
    font-size: 20px;
    line-height: 1em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-block .caption-box .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #484848;
}

.speaker-block .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    padding: 35px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block .image-box:hover .overlay-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

.speaker-block .overlay-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--vermelho);
    
    content: "";
    opacity: .90;
}

.speaker-block .overlay-box .info-box {
    position: relative;
}

.speaker-block .overlay-box .info-box .name {
    display: block;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-block .overlay-box .info-box .name a {
    color: #ffffff;
}

.speaker-block .overlay-box .info-box .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

.speaker-block .social-links {
    position: absolute;
    left: 30px;
    bottom: 35px;
}

.speaker-block .social-links li {
    position: relative;
    display: inline-block;
}

.speaker-block .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    margin-right: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block .social-links li a:hover {
    color: #222222;
}

/*.speakers-section.alternate:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/icons/shape-10.png);
	background-repeat: no-repeat;
	background-position: center top;
	content: "";
	opacity: .04;
}*/

/***

====================================================================
	Speaker Section Two
====================================================================

***/

.speakers-section-two {
    position: relative;
    padding: 50px 0 50px;
}

.speaker-block-two {
    position: relative;
    margin-bottom: 100px;
}

.speaker-block-two .image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.speaker-block-two .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.speaker-block-two .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.speaker-block-two .caption-box {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 40px 35px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block-two .image-box:hover .caption-box {
    opacity: 0;
}

.speaker-block-two .caption-box .name {
    display: block;
    font-size: 24px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.speaker-block-two .caption-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.speaker-block-two .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block-two .image-box:hover .overlay-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
}

.speaker-block-two .overlay-box:before {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background: var(--vermelho);
   
    content: "";
    border-radius: 10px;
    opacity: .90;
}

.speaker-block-two .overlay-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.speaker-block-two .overlay-box .info-box {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 20px;
}

.speaker-block-two .overlay-box .info-box:before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    max-width: 250px;
    border-bottom: 1px solid rgba(255, 255, 255, .20);
    content: "";
}

.speaker-block-two .overlay-box .info-box .name {
    display: block;
    font-size: 24px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-block-two .overlay-box .info-box .name a {
    color: #ffffff;
}

.speaker-block-two .overlay-box .info-box .designation {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.speaker-block-two .social-links {
    position: relative;
    display: block;
}

.speaker-block-two .social-links li {
    position: relative;
    display: inline-block;
}

.speaker-block-two .social-links li a {
    position: relative;
    display: inline-block;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    color: #ffffff;
    border-radius: 50%;
    width: 50px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-two .social-links li a:hover {
    color: var(--vermelho);
    background-color: #ffffff;
    -webkit-box-shadow: 0 20px 30px rgba(14, 16, 48, .20);
    -ms-box-shadow: 0 20px 30px rgba(14, 16, 48, .20);
    box-shadow: 0 20px 30px rgba(14, 16, 48, .20);
}

.speakers-section-two.alternate {
    background-color: #fbfbfd;
}

.speakers-section-two .icon-shape {
    position: absolute;
    left: -640px;
    bottom: 35px;
    height: 1076px;
    width: 873px;
    background-image: url(../images/icons/shape-15.png);
    background-repeat: repeat;
    background-position: center;
    opacity: .06;
}

/***

====================================================================
	Speaker Section Three
====================================================================

***/

.speakers-section-three {
    position: relative;
    background-color: #060822;
    padding: 120px 0 20px;
}

.speakers-section-three .shape-layers {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/shape-11.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .02;
}

.speakers-section-three .icon-shape-2 {
    right: -1045px;
    bottom: 50px;
    opacity: .08;
}

.speakers-section-three .auto-container {
    max-width: 1440px;
    padding: 0 15px;
}

.speakers-section-three .row {
    margin: 0 -50px;
}

.speaker-block-three {
    position: relative;
    padding: 0 50px;
    margin-bottom: 100px;
}

.speaker-block-three .image-box {
    position: relative;
}

.speaker-block-three .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.speaker-block-three .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
}

.speaker-block-three .caption-box {
    position: absolute;
    left: 0;
    bottom: 24px;
    padding: 17px 35px 15px 30px;
    background-color: #060822;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block-three .image-box:hover .caption-box {
    bottom: 20%;
    opacity: 0;
    visibility: hidden;
}

.speaker-block-three .caption-box .name {
    display: block;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-block-three .caption-box .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #484848;
}

.speaker-block-three .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    padding: 35px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block-three .image-box:hover .overlay-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

.speaker-block-three .overlay-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--vermelho);
    
    content: "";
    opacity: .90;
}

.speaker-block-three .overlay-box .info-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.speaker-block-three .overlay-box .info-box .name {
    display: block;
    font-size: 20px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.speaker-block-three .overlay-box .info-box .name a {
    color: #ffffff;
}

.speaker-block-three .overlay-box .info-box .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

.speaker-block-three .social-links {
    position: absolute;
    left: 30px;
    bottom: 35px;
}

.speaker-block-three .social-links li {
    position: relative;
    display: inline-block;
}

.speaker-block-three .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    margin-right: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .social-links li a:hover {
    color: #222222;
}

/***

====================================================================
		Speakers Single
====================================================================

***/
.no-padding-bottom {
    padding-bottom: 0 !important
}

.speaker-single {
    position: relative;
    padding: 50px 0 50px;
}

.speaker-single .image-column {
    position: relative;
    margin-bottom: 50px;
}

.speaker-single .image-box {
    position: relative;
    padding-right: 100px;
}

.natureza-detalhe.speaker-single .image-box {
    position: relative;
    padding-right: 0px !important;
}

.speaker-single .image-box .image {
    position: relative;
    margin-bottom: 30px;
}

.speaker-single .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.parceiro-ouro {
    width: 70%;
}

.parceiro-ouro img {
    display: block;
    width: 100px;
    height: auto;
}

.speaker-single .image-box:before {
    /*position: absolute;
    left: -50px;
    bottom: -50px;
    height: 172px;
    width: 200px;
    background-image: url(../images/icons/icon-dots-3.png);
    content: "";
    opacity: .40;*/
}

.speaker-single.partner .image-box:before {
    position: absolute;
    left: -50px;
    bottom: -50px;
    height: 172px;
    width: 200px;
    background-image: none;
    content: "";
    opacity: .40;
}

.speaker-single .content-column {
    position: relative;
    margin-bottom: 50px;
}

.speaker-single .content-column .inner-column {
    position: relative;
    padding-top: 20px;
}

.speaker-single .info-box {
    position: relative;
    margin-bottom: 35px;
}

.speaker-single .info-box .name {
    font-size: 30px;
    line-height: 1em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 10px;
}

.speaker-single .info-box .designation {
    display: block;
    font-size: 16px;
    line-height: 1.4em;
    color: #484848;
    font-weight: 500;
}

.speaker-single .text-box {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e7f3;
    margin-bottom: 20px;
}

.speaker-single .text-box p {
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 10px;
}

.speaker-single .info-list {
    position: relative;
}

.speaker-single .info-list li {
    position: relative;
    display: block;
}

.speaker-single .info-list li:after {
    display: table;
    content: "";
    clear: both;
}

.speaker-single .info-list li strong {
    position: relative;
    float: left;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
    font-weight: 500;
    width: 120px;
}

.speaker-single .info-list li a {
    font-size: 16px;
    line-height: 25px;
    color: #484848;
    font-weight: 400;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-single .info-list li a:hover {
    color: var(--vermelho);
}

.speaker-single .info-list li .social-links a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    margin-right: 12px;
}

/***

====================================================================
		Sessions Info
====================================================================

***/

.sessions-info {
    position: relative;
    padding-bottom: 50px;
}

.sessions-info .row {
    margin: 0 -25px;
}

.sessions-info .sec-title {}

.session-block {
    position: relative;
    padding: 0 25px;
    margin-bottom: 20px;
}

.session-block .inner-box {
    position: relative;
    background-color: #f8f8fb;
    padding: 20px;
}

.session-block .day {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: var(--vermelho);
    font-weight: 700;
    margin-bottom: 20px;
}

.session-block .time {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 10px;
}

.session-block h3 {
    position: relative;
    font-size: 16px;
    line-height: 1em;
    color: #484848;
    font-weight: 500;

}

.session-block h3 a {
    color: #484848;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.session-block h3 a:hover {
    color: var(--vermelho);
}

.session-block .location {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 25px;
}

.session-block .location .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--vermelho);
    font-weight: 400;
}

.session-block .link-box {
    position: relative;
}

.session-block .link-box a {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #484848;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.session-block .link-box a .icon {
    float: right;
    margin-left: 5px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.session-block .link-box a:hover {
    color: var(--vermelho);
}

/***

====================================================================
		schedule Section
====================================================================

***/

.schedule-section {
    position: relative;
    padding: 100px 0 70px;
    background-color: #fbfbfd;
    overflow: hidden;
}

.schedule-section.alternate2 {
    padding: 50px 0 100px;
}

.schedule-section .icon-circle-2 {
    left: -965px;
    bottom: 40px;
    opacity: .10;
}

.icon-circle-2 {
    height: 800px;
    width: 800px;
    background-image: url(../images/icons/circle-2.png);
}

.schedule-tabs {
    position: relative;
    /*padding-left: 230px;
	padding-right: 70px;*/
}

.schedule-tabs .btns-box {
    /*position: absolute;*/
    left: 0;
    top: 0;
}

.schedule-tabs .tab-buttons {
    position: relative;
}

.schedule-tabs .tab-btn {
    position: relative;
    height: 140px;
    width: 170px;
    padding: 25px 30px;
    /*margin-bottom: 40px;*/
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-right: 40px;
    display: inline-flex;
}

.schedule-tabs .tab-btn:last-child {
    margin-right: 0
}

.schedule-tabs .tab-btn .date {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.schedule-tabs .tab-btn .date span {
    display: block;
    font-size: 40px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
}

.schedule-tabs .tab-btn .day {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: #ffffff;
}

.schedule-tabs .tab-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;

    background: var(--vermelho);
    
    content: "";
    opacity: .50;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-tabs .tab-btn.active-btn:before {
    background: var(--vermelho);
   
}

.schedule-tabs .tab-btn.active-btn:after,
.schedule-tabs .tab-btn.active-btn:before {
    opacity: .90;
}

.schedule-tabs .tab-btn:after {
    
    position: absolute;
    left: 47%;
    bottom: -11px;
    margin-top: 0;
    content: "";

    opacity: 0;

    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 0;
    height: 0;
    border-top: 11px solid #ef8074;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.schedule-tabs .tab-btn:nth-child:before {
    background: var(--vermelho);
    
}

.schedule-tabs .tab-btn:nth-child:after {
    border-top: 10px solid rgba(111, 136, 150, 1);
}



.schedule-tabs .tabs-content {
    position: relative;

}

.schedule-block {
    position: relative;
    padding: 15px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    -ms-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: pointer;
}

.schedule-block.highlight {
    background-color: var(--vermelho);
    -webkit-box-shadow: 0 4px 10px rgba(161, 31, 38, 0.08);
    -ms-box-shadow: 0 4px 10px rgba(161, 31, 38, 0.08);
    box-shadow: 0 4px 10px rgba(161, 31, 38, 0.08);
}
.schedule-block.highlight h4,
.schedule-block.highlight .time,
.schedule-block.highlight h4 a,
.schedule-block.highlight h4 a:hover,
.schedule-block.highlight .text,
.schedule-block.highlight .info-list strong,
.schedule-block.highlight .info-list li,
.schedule-block.highlight .inner-box .toggle-btn,
.schedule-block.highlight.active .toggle-btn{
    color: #fff;
}
.schedule-block.highlight .info-list .icon,
.schedule-block.highlight .info-list .fa {
    color: var(--vermelho);
}
.schedule-block.highlight .btn-style-one {
    background-color: var(--vermelho);
}

.inner-box .arrow_carrot-down {
    z-index: 80
}

.schedule-block .inner-box {
    position: relative;

    padding-top: 0px;
}

.schedule-block.active {
    -webkit-box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    -ms-box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    z-index: 1;
}

.print-selected.disabled {
    background-color: #fff !important;
    color: var(--vermelho) !important;
    /*border: 1px solid var(--vermelho);*/
}
.schedule-block .inner-box .print-toggle-btn {
    position: absolute;
    right: 70px;
    top: 15px;
    padding:15px;
    background-color: transparent;
    font-size: 20px;
    line-height: 0;
    color: var(--vermelho);
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 998;
}

.schedule-block .inner-box .toggle-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding:15px;
    background-color: transparent;
    font-size: 40px;
    line-height: 20px;
    color: var(--vermelho);
    font-weight: 400;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 998;
}

.schedule-block.active .toggle-btn,
.schedule-block .inner-box .print-toggle-btn {
    color: var(--vermelho);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.schedule-block .thumbs-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.schedule-block .thumbs-box img {
    display: block;
    width: 100%;
}

.schedule-block .time {

    font-size: 14px;
    line-height: 24px;
    color: #484848;
    font-weight: 400;
    text-transform: uppercase;

}

.schedule-block h4 {
    font-size: 16px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 0px;
}

.schedule-block.carrinho h4 {
    margin-bottom: 0px;
    line-height: 2.2;
    font-size: 15px;
}

.schedule-block.carrinho h4 span.outro {

    color: #484848;
    font-weight: 400;
}

.schedule-block h4 {
    display: inline;
}

.schedule-block h4 a {
    color: #484848;
    display: inline-flex;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;margin-right: 10px;
}
.schedule-block a:not([class^="leaflet-"]) {
    color: #484848;
    display: inline-flex;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.barra {
    color: var(--vermelho);
}

.schedule-block h4 a:hover {
    color: var(--vermelho);
}

.eliminar {
    float: right;
    font-size: 1rem
}

.author-info .icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    min-width: 1.6rem;
    min-height: 2rem;
    text-align: left;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    color: rgba(0, 0, 0, 0.5);

}

.tabs-filtros .author-info .icon .feature-icon {
    margin-right: 5px
}

.feature-icon {
    max-width: 22px;
}

.schedule-block .author-info {
    /*position: relative;
	display: block;
	font-size: 16px;
	line-height: 24px;
	color: #484848;
	font-weight: 400;*/
}

.author-info a {
    display: inline-block;
    color: var(--vermelho);
}

.schedule-block .lower-content {
    position: relative;
    margin-top: 0px;
    display: none;
    padding:10px;
}
.schedule-block .higher-content {
    padding:10px;
}

.schedule-block .text {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 25px;
}

.schedule-block .info-list {
    position: relative;
}

.schedule-block .info-list li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e7f3;

}

.schedule-block .info-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;

}

.schedule-block .info-list strong {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #484848;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 10px;
}

.schedule-block .info-list .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--vermelho);
    font-weight: 400;
}

.schedule-block .info-list .fa {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--vermelho);
    font-weight: 400;
}

.schedule-block .info-list p {
    font-size: 16px;
    line-height: 22px;
    color: #484848;
    font-weight: 400;
    margin-top: 3px;
    margin-bottom: 0;
}

.schedule-timeline {
    position: relative;
    padding: 50px 70px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    -ms-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    margin-bottom: 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-timeline .inner-box {
    position: relative;
    padding-left: 160px;
}

.schedule-timeline .icon-box {
    position: absolute;
    left: -5px;
    top: 5px;
}

.schedule-timeline .icon-box .icon {
    font-size: 50px;
    line-height: 1em;
    color: #484848;
    font-weight: 400;
    background: var(--vermelho);
   
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.schedule-timeline .time {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #484848;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.schedule-timeline h4 {
    font-size: 26px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 15px;
}

.schedule-timeline h4 a {
    color: #484848;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-timeline h4 a:hover {
    color: var(--vermelho);
}

/*=== Schedule Section Style Two ===*/

.schedule-section.style-two {
    padding-bottom: 50px;
}

.schedule-section.style-two .schedule-tabs {
    /*padding: 0 100px;*/
}

.schedule-section.style-two .schedule-tabs .btns-box {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.schedule-section.style-two .schedule-tabs .tab-btn {
    position: relative;
    display: inline-block;
    padding: 14px 35px;
    margin: 0 8px 20px;
    height: auto;
    width: auto;
    background: #ffffff;
    border-radius: 100px;
    -webkit-box-shadow: 0 20px 30px rgba(14, 16, 48, .06);
    -ms-box-shadow: 0 20px 30px rgba(14, 16, 48, .06);
    box-shadow: 0 20px 30px rgba(14, 16, 48, .06);
}

.schedule-section.style-two .schedule-tabs .tab-btn:after,
.schedule-section.style-two .schedule-tabs .tab-btn:before {
    display: none;
}

.schedule-section.style-two .schedule-tabs .tab-btn .date {
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
}

.schedule-section.style-two .schedule-tabs .tab-btn .day {
    font-size: 16px;
    line-height: 26px;
    color: #484848;
}

.schedule-section.style-two .schedule-tabs .tab-btn.active-btn {
    background: var(--vermelho);

}

.schedule-section.style-two .schedule-tabs .tab-btn.active-btn .date,
.schedule-section.style-two .schedule-tabs .tab-btn.active-btn .day {
    color: #ffffff;
}

.schedule-section .icon-shape-2 {
    left: auto;
    right: -1005px;
    bottom: -130px;
    opacity: .10;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.schedule-section.alternate {
    padding-bottom: 100px;
}

.schedule-section.alternate .auto-container {
    max-width: 1000px;
}

/***

====================================================================
		Schedule Section Two
====================================================================

***/

.schedule-section-two {
    position: relative;
    background-color: #fbfbfd;
    padding: 100px 0 100px;
    overflow: hidden;
}

.schedule-section-two:before {
    position: absolute;
    right: -330px;
    bottom: -55px;
    height: 1165px;
    width: 2084px;
    background-image: url(../images/icons/shape-9.png);
    content: "";
    opacity: .04;
}

.schedule-section-two .schedule-tabs {
    padding: 0;
}

.schedule-section-two .schedule-tabs .btns-box {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.schedule-section-two .schedule-tabs .tab-btn {
    position: relative;
    display: inline-block;
    padding: 14px 65px;
    margin: 0 8px;
    height: auto;
    width: auto;
    border-radius: 100px;
    background: var(--vermelho);
    
    opacity: .40;
}

.schedule-section-two .schedule-tabs .tab-btn:after,
.schedule-section-two .schedule-tabs .tab-btn:before {
    display: none;
}

.schedule-section-two .schedule-tabs .tab-btn .date {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: capitalize;
}

.schedule-section-two .schedule-tabs .tab-btn .day {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
}

.schedule-section-two .schedule-tabs .tab-btn:nth-child(2) {
    background: var(--vermelho);
    
}

.schedule-section-two .schedule-tabs .tab-btn:nth-child(3) {
    background: rgb(0, 114, 255);
    background: -moz-linear-gradient(45deg, rgba(0, 114, 255, 1) 0%, rgba(14, 216, 204, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(0, 114, 255, 1) 0%, rgba(14, 216, 204, 1) 100%);
    background: linear-gradient(45deg, rgba(0, 114, 255, 1) 0%, rgba(14, 216, 204, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0072ff', endColorstr='#0ed8cc', GradientType=1);
}

.schedule-section-two .schedule-tabs .tab-btn.active-btn {
    opacity: 1;
    -webkit-box-shadow: 0 30px 50px rgb(210, 0, 255, .30);
    -ms-box-shadow: 0 30px 50px rgb(210, 0, 255, .30);
    box-shadow: 0 30px 50px rgb(210, 0, 255, .30);
}

.schedule-section-two .schedule-tabs .tab-btn.active-btn:nth-child(2) {
    -webkit-box-shadow: 0 30px 50px rgba(236, 112, 33, .30);
    -ms-box-shadow: 0 30px 50px rgba(236, 112, 33, .30);
    box-shadow: 0 30px 50px rgba(236, 112, 33, .30);
}

.schedule-section-two .schedule-tabs .tab-btn.active-btn:nth-child(3) {
    -webkit-box-shadow: 0 30px 50px rgb(0, 114, 255, .30);
    -ms-box-shadow: 0 30px 50px rgb(0, 114, 255, .30);
    box-shadow: 0 30px 50px rgb(0, 114, 255, .30);
}

.schedule-section-two .schedule-timeline,
.schedule-section-two .schedule-block {
    padding: 40px 30px;
    overflow: hidden;
}

.schedule-section-two .schedule-timeline .inner-box,
.schedule-section-two .schedule-block .inner-box {
    padding-left: 110px;
    min-height: auto;
}

.schedule-section-two .schedule-block .thumbs-box {
    height: 80px;
    width: 80px;
}

.schedule-section-two .schedule-timeline h4,
.schedule-section-two .schedule-block h4 {
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
}

.schedule-section-two .schedule-timeline .icon-box {
    left: 15px;
}

.schedule-section-two .schedule-block .count {
    position: absolute;
    left: -60px;
    top: -60px;
    height: 100px;
    width: 100px;
    background-color: var(--vermelho);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.schedule-section-two .schedule-block .count:before {
    position: absolute;
    right: 8px;
    top: 38px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    content: attr(data-count);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.schedule-section-two .icon-shape-2 {
    left: auto;
    right: -1005px;
    bottom: -130px;
    opacity: .10;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.schedule-section-two .schedule-timeline .count {
    position: absolute;
    left: -60px;
    top: -60px;
    height: 100px;
    width: 100px;
    background-color: var(--vermelho);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.schedule-section-two .schedule-timeline .count:before {
    position: absolute;
    right: 8px;
    top: 38px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    content: attr(data-count);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/***

====================================================================
		Schedule Section Three
====================================================================

***/

.schedule-section-three {
    position: relative;
    padding: 120px 0 70px;
    background-color: #060822;
}

.schedule-section-three.no-pd-top {
    padding-top: 30px;
}

.schedule-block-two {
    position: relative;
    margin-bottom: 30px;
}

.schedule-block-two .inner-box {
    position: relative;
    min-height: 150px;
    background-color: #10122f;
    border: 2px solid transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-two .inner-box:hover {
    border-color: var(--vermelho);
}

.schedule-block-two .time {
    position: relative;
    float: left;
    width: 170px;
    height: 150px;
    padding: 50px 30px;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    background-color: #202242;
    margin-right: 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-two .inner-box:hover .time {
    background-color: var(--vermelho);
}

.schedule-block-two .speaker-info {
    position: relative;
    float: left;
    padding-top: 35px;
    padding-bottom: 35px;
}

.schedule-block-two .speaker-info .inner {
    position: relative;
    padding-left: 110px;
    padding-top: 15px;
}

.schedule-block-two .speaker-info .icon-box,
.schedule-block-two .speaker-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.schedule-block-two .speaker-info .thumb img {
    display: block;
    width: 100%;
}

.schedule-block-two .speaker-info .icon-box .icon {
    display: block;
    line-height: 80px;
    font-size: 60px;
    background: rgb(255, 138, 1);
    background: -moz-linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    background: linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#484848', endColorstr='var(--vermelho)', GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.schedule-block-two .speaker-info .name {
    position: relative;
    font-size: 20px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
}

.schedule-block-two .speaker-info .name a {
    color: #ffffff;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-two .speaker-info .name a:hover {
    color: var(--vermelho);
}

.schedule-block-two .speaker-info .designation {
    font-size: 16px;
    color: #484848;
    line-height: 24px;
}

.schedule-block-two .event-nfo {
    position: relative;
    max-width: 500px;
    width: 100%;
    float: right;
    padding: 45px 30px 41px;
}

.schedule-block-two .event-nfo:before {
    position: absolute;
    left: 0;
    top: 35px;
    height: 80px;
    width: 1px;
    background-color: #2b2d46;
    content: "";
}

.schedule-block-two .event-nfo h5 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
}

.schedule-block-two .event-nfo h5 a {
    color: #ffffff;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.schedule-block-two .event-nfo h5 a:hover {
    color: var(--vermelho);
}

.schedule-block-two .event-nfo .info {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    padding-left: 30px;
}

.schedule-block-two .event-nfo .info .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--vermelho);
}

.schedule-section-three .btn-box {
    position: relative;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
}

/***

====================================================================
		Event Detail
====================================================================

***/

.event-detail {
    position: relative;
    padding: 50px 0;
    background-color: #f7f7fa;
}

.event-detail .auto-container {
    max-width: 1000px;
}

.event-detail .image-box {
    position: relative;
    margin-bottom: 35px;
}

.event-detail .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.event-detail .image-box .image img {
    display: block;
    /* width: 100%; */
    height: auto;
    margin: 0 auto;
}

.event-detail .content-box {
    position: relative;
}

.event-detail .category {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: #484848;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 32px;
    margin-bottom: 20px;
}

.event-detail .category .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--vermelho);
    font-weight: 400;
}

.event-detail .content-box h2 {
    display: block;
    font-size: 26px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 25px;
}

.event-detail .content-box p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 30px;
}

.event-detail .list-style-one {
    position: relative;
    margin-top: 40px;
    margin-bottom: 35px;
}

.event-detail .event-location {
    position: relative;
    margin-top: 35px;
    padding-top: 40px;
    padding-left: 30px;
    border-top: 1px solid #e6e7f3;
}

.event-detail .event-location .icon {
    position: absolute;
    left: 0;
    top: 40px;
    font-size: 16px;
    line-height: 24px;
    color: var(--vermelho);
    font-weight: 400;
}

.event-detail .event-location strong {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #484848;
    font-weight: 500;
    margin-bottom: 5px;
}

.event-detail .event-location p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 0;
}

/***

====================================================================
		Hotels Section
====================================================================

***/

.hotels-section {
    position: relative;
    padding: 100px 0 80px;
}

.hotel-block {
    position: relative;
    margin-bottom: 53px;
}

.hotel-block .inner-box {
    position: relative;
}

.hotel-block .image-box {
    position: relative;
}

.hotel-block .image {
    position: relative;
    margin-bottom: 0;
    background: rgb(225, 19, 123);
    background: -moz-linear-gradient(45deg, rgba(225, 19, 123, 1) 0%, rgba(255, 138, 1, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(225, 19, 123, 1) 0%, rgba(255, 138, 1, 1) 100%);
    background: linear-gradient(45deg, rgba(225, 19, 123, 1) 0%, rgba(255, 138, 1, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--vermelho)', endColorstr='#484848', GradientType=1);
}

.hotel-block .image img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.hotel-block .inner-box:hover .image img {
    opacity: .50;
}

.hotel-block .lower-content {
    padding: 25px 0 0;
}

.hotel-block .room-rent {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 7px;
}

.hotel-block .room-rent span {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
}

.hotel-block h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 5px;
}

.hotel-block h4 a {
    color: #484848;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.hotel-block h4 a:hover {
    color: var(--vermelho);
}

.hotel-block .address {
    position: relative;
    font-size: 16px;
    color: #484848;
    line-height: 24px;
}

/***

====================================================================
		Download Section
====================================================================

***/

.download-section {
    position: relative;
    padding: 120px 0 70px;
    background-color: #0f1130;
}

.download-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.download-section .content-column .inner-column {
    position: relative;
    padding-right: 100px;
}

.download-section .content-column .sec-title {
    margin-bottom: 35px;
}

.download-section .content-column .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #989bb8;
    font-weight: 400;
    margin-bottom: 50px;
}

.download-section .btn-box {
    position: relative;
}

.download-section .download-btn {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    width: 180px;
    text-align: center;
    padding: 10px 10px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.download-section .download-btn span {
    vertical-align: middle;
    padding-right: 7px;
    font-size: 26px;
}

.download-section .download-btn:hover {
    background-color: var(--vermelho);
    border-color: var(--vermelho);
}

.download-section .image-column {
    position: relative;
    z-index: 9;
}

.download-section .image-column .icon {
    position: absolute !important;
    right: -60px !important;
    top: -40px !important;
    left: auto !important;
}

.icon-triangle {
    height: 400px;
    width: 560px;
    background-image: url(../images/icons/icon-triangle.png);
}

.download-section .image-column .image {
    position: absolute !important;
    top: -70px !important;
    right: 0 !important;
    left: auto !important;
}

/***

====================================================================
		Register Section
====================================================================

***/

.register-section {
    position: relative;
    padding: 100px 0;
    background: rgba(238, 124, 112, 1);
    background: -moz-linear-gradient(left, rgba(238, 124, 112, 1) 0%, rgb(162, 47, 38) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(238, 124, 112, 1)), color-stop(100%, rgb(162, 47, 38)));
    background: -webkit-linear-gradient(left, rgba(238, 124, 112, 1) 0%, rgb(162, 47, 38) 100%);
    background: -o-linear-gradient(left, rgba(238, 124, 112, 1) 0%, rgb(162, 47, 38) 100%);
    background: -ms-linear-gradient(left, rgba(238, 124, 112, 1) 0%, rgb(162, 47, 38) 100%);
    background: linear-gradient(to right, rgba(238, 124, 112, 1) 0%, rgb(162, 47, 38) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--vermelho)', endColorstr='var(--vermelho)', GradientType=1);
}

.register-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/form-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}

.register-form {
    position: relative;
}

.register-form .form-group {
    position: relative;

}

.register-form .form-group:last-child {
    margin-bottom: 0;
}

.register-form .form-group input[type="text"],
.register-form .form-group input[type="email"],
.register-form .form-group input[type="url"],
.register-form .form-group textarea,
.register-form .form-group select {
    position: relative;
    display: block;
    height: 60px;
    width: 100%;
    font-size: 14px;
    color: #484848;
    line-height: 28px;
    padding: 15px 30px;
    border: 1px solid transparent;
    background-color: #ffffff;
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.register-form .form-group input:focus,
.register-form .form-group select:focus,
.register-form .form-group textarea:focus {
    border-color: #000000;
}

.register-form .form-group button {
    line-height: 40px;
    margin-top: 30px;
}

/***

====================================================================
		Pricing Section
====================================================================

***/

.pricing-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0 100px;
}

.pricing-section .icon-circle-1 {
    right: -560px;
    bottom: -415px;
    opacity: .10;
}

.icon-circle-1 {
    height: 800px;
    width: 800px;
    background-image: url(../images/icons/circle-1.png);
}

.pricing-section .sec-title {
    margin-bottom: 80px;
}

.pricing-section .row {
    margin: 0 -25px;
}

.pricing-block {
    position: relative;
    padding: 0 25px;
    margin-bottom: 50px;
}

.pricing-block .inner-box {
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 20px 50px rgba(14, 16, 48, .06);
    -ms-box-shadow: 0 20px 50px rgba(14, 16, 48, .06);
    box-shadow: 0 20px 50px rgba(14, 16, 48, .06);
    border-top: 6px solid #484848;
}

.pricing-section.alternate .pricing-block .inner-box {
    border-top: 0;
}

.pricing-block .inner-box:before {
    position: absolute;
    height: 16px;
    width: 100%;
    left: 0;
    bottom: -16px;
    background-repeat: repeat;
    background-position: center;
    background-image: url(../images/icons/pricing-bottom.png);
    content: "";
}

.pricing-block .upper-box {
    position: relative;
    padding: 25px 50px;
    border-bottom: 1px solid #ededf4;
}

.pricing-block .title {
    position: relative;
    float: left;
    font-size: 26px;
    line-height: 40px;
    color: #484848;
    font-weight: 500;
}

.pricing-block .price {
    position: relative;
    float: right;
    font-size: 30px;
    line-height: 40px;
    color: #484848;
    font-weight: 900;
}

.pricing-block .lower-content {
    position: relative;
    padding: 25px 50px 50px;
}

.pricing-block .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 30px;
}

.pricing-block .feature-list {
    position: relative;
    margin-bottom: 40px;
}

.pricing-block .feature-list li {
    position: relative;
    float: left;
    width: 50%;
    font-size: 16px;
    line-height: 36px;
    color: #484848;
    font-weight: 500;
    padding-left: 30px;
}

.pricing-block .feature-list li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    content: "\52";
    font-family: 'ElegantIcons';
    color: #2bd40f;
}

.pricing-block .feature-list li.false:before {
    color: var(--vermelho);
    content: "\51";
}

.pricing-block .btn-box {
    position: relative;
    transition: all 300ms ease;
}

.pricing-block .btn-box a {
    padding: 10px 35px;
}

.pricing-block .btn-box a:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.pricing-block.style-two .inner-box {
    border-top: 6px solid var(--vermelho);
}

.pricing-block.style-two .btn-box a:hover,
.pricing-block.style-two .price {
    color: var(--vermelho);
}

.pricing-block.style-two .btn-box a {
    background-color: var(--vermelho);
}

/***

====================================================================
		Pricing Section Two
====================================================================

***/

.pricing-section-two {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 75px;
}

.pricing-section-two .sec-title .title {
    color: #484848;
}

.pricing-block-two {
    position: relative;
    margin-bottom: 50px;
}

.pricing-block-two .inner-box {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 40px 50px 55px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:hover,
.pricing-block-two.tagged .inner-box {
    background-color: #ffffff;
}

.pricing-block-two .image {
    position: relative;
    margin-bottom: 25px;
}

.pricing-block-two .image img {
    max-width: 100%;
}

.pricing-block-two .price {
    position: relative;
    font-size: 40px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:hover .price,
.pricing-block-two.tagged .price {
    color: var(--vermelho);
}

.pricing-block-two .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:hover .title,
.pricing-block-two.tagged .title {
    color: #484848;
}

.pricing-block-two .features {
    position: relative;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    margin-bottom: 45px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:hover .features,
.pricing-block-two.tagged .features {
    border-top: 1px solid #e1e1ea;
}

.pricing-block-two .features li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pricing-block-two .inner-box:hover .features li,
.pricing-block-two.tagged .features li {
    color: #616977;
}

.pricing-block-two .btn-box {
    position: relative;
}

.pricing-block-two .btn-box .theme-btn {
    font-size: 16px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    border: 1px solid #ffffff;
    padding: 10px 32px;
    border-radius: 50px;
}

.pricing-block-two .inner-box:hover .theme-btn,
.pricing-block-two.tagged .theme-btn {
    background-color: var(--vermelho);
    color: #ffffff;
    border-color: var(--vermelho);
}

/***

====================================================================
		Gallery Section
====================================================================

***/

.gallery-section {
    position: relative;
    padding: 50px 0 100px 0;
}

.gallery-section .outer-box {
    position: relative;
    margin: 0 -5px;
}

.gallery-item {
    position: relative;
    float: left;
    padding: 0 5px;
    margin-bottom: 10px;
}

.gallery-item .inner {
    position: relative;
    height: 400px;
}

.gallery-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gallery-item .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    transform: scale(.7);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-item .inner:hover .overlay-box {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: .90;
}

.gallery-item .overlay-box a {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--azul);
}

.gallery-item .overlay-box a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 50px;
    width: 50px;
    margin-top: -25px;
    margin-left: -25px;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.gallery-item .image-box {
    display: none;
}

.gallery-item .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.gallery-item .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-item.width-30 {
    width: 30%;
}

.gallery-item.width-35 {
    width: 35%;
}

.gallery-item.width-50 {
    width: 50%;
}

/***

====================================================================
		Gallery Section Two
====================================================================

***/

.gallery-section-two {
    position: relative;
    padding: 100px 0 130px;
}

.gallery-section-two .row {
    margin: 0 -5px;
}

.gallery-section-two .sec-title {
    margin-bottom: 50px;
}

.gallery-item-two {
    position: relative;
    padding: 0 5px;
    margin-bottom: 10px;
}

.gallery-item-two .inner {
    position: relative;
}

.gallery-item-two .overlay-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    transform: scale(.7);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.gallery-item-two .inner:hover .overlay-box {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: .90;
}

.gallery-item-two .overlay-box a {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgb(255, 138, 1);
    background: -moz-linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    background: linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#484848', endColorstr='var(--vermelho)', GradientType=1);
}

.gallery-item-two .overlay-box a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 50px;
    width: 50px;
    margin-top: -25px;
    margin-left: -25px;
    font-size: 20px;
    line-height: 48px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.gallery-item-two .image-box {
    position: relative;
}

.gallery-item-two .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.gallery-item-two .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-section-two.style-two {
    padding: 100px 0 110px;
}

.gallery-section-two.style-two .row {
    margin: 0 -15px;
}

.gallery-section-two.style-two .gallery-item,
.gallery-section-two.style-two .gallery-item-two {
    padding: 0 15px;
    margin-bottom: 30px;
}

/***

====================================================================
		News Section
====================================================================

***/

.news-section {
    position: relative;
    padding: 120px 0 0px;
}

.news-block {
    position: relative;
    margin-bottom: 30px;
}

.news-block .inner-box {
    position: relative;
}

.news-block .image-box {
    position: relative;
}

.news-block .image-box .image {
    position: relative;
    margin-bottom: 0;
   
    background: var(--vermelho);
    

}

.news-block .image-box .image img {
    display: block;
    width: 100%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.figure-label {
    position: absolute;
    z-index: 9999;
    bottom: 10px;
    right: 14px;
    color: #fff;
    font-size: 12px;
}

.news-block .inner-box:hover .image img {
    opacity: .40;

}

.news-block .lower-content {
    position: relative;
    padding: 20px 30px 30px;
    background-color: #f9f9fc;
}

.news-block .post-info {
    position: relative;
    margin-bottom: 10px;
}

.news-block .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #616977;
    font-weight: 400;
    padding-right: 18px;
    margin-right: 8px;
}

.news-block .post-info li:before {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    content: "/";
}

.news-block .post-info li:last-child:before {
    display: none;
}

.news-block .post-info li a {
    color: #616977;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .post-info li a:hover {
    color: var(--vermelho);
}

.news-block h3 {
    position: relative;
    font-size: 20px;
    line-height: 28px;
    color: #484848;
    font-weight: 500;
    margin-bottom: 30px;
}

.natureza-aves .news-block h3 {
    position: relative;
    font-size: 20px;
    line-height: 28px;
    color: #484848;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-block h3 a {
    color: #484848;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block h3 a:hover {
    color: var(--vermelho);
}

.news-block .author-info {
    position: relative;
}

.news-block .author-info .icon {
    position: relative;
    font-size: 16px;
    line-height: 1em;
    color: #616977;
    font-weight: 400;
    margin-right: 5px;
}

.news-block .author-info a {
    display: inline-block;
    font-size: 16px;
    line-height: 1em;
    color: #616977;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .author-info a:hover {
    color: var(--vermelho);
}

.news-section.dark {
    position: relative;
    padding: 120px 0 0;
    background-color: #060822;
}

.news-section.dark .news-block .lower-content {
    background-color: #10122f;
}

.news-section.dark .news-block h3 a {
    color: #ffffff;
}

.news-section.dark .news-block h3 a:hover {
    color: var(--vermelho);
}

/***

====================================================================
		Blog Sidebar
====================================================================

***/

.blog-sidebar {
    position: relative;
}

.news-block-two {
    position: relative;
    margin-bottom: 60px;
}

.news-block-two .inner-box {
    position: relative;
}

.news-block-two .image-box {
    position: relative;
}

.news-block-two .image-box .image {
    position: relative;
    margin-bottom: 0;
}

.news-block-two .image-box .image img {
    display: block;
    width: 100%;
    height: auto;
}

.news-block-two .image-box .tag {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    background-color: #484848;
    padding: 0 15px;
    border-radius: 2px;
    text-transform: uppercase;
    z-index: 9;
}

.news-block-two .video-btn {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.news-block-two .video-btn .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    padding-left: 5px;
    color: var(--vermelho);
    margin-top: -40px;
    margin-left: -40px;
    z-index: 8;
}

.news-block-two .video-btn:hover {
    background-color: rgba(14, 16, 48, .50);
}

.news-block-two .lower-content {
    position: relative;
    padding: 35px 0 30px;
    border-bottom: 1px solid #e6e7f3;
}

.news-block-two .post-info {
    position: relative;
    margin-bottom: 13px;
}

.news-block-two .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 20px;
    margin-right: 18px;
}

.news-block-two .post-info li:before {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    content: "|";
}

.news-block-two .post-info li:last-child:before {
    display: none;
}

.news-block-two .post-info .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--vermelho);
}

.news-block-two h3 {
    position: relative;
    font-size: 30px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 25px;
}

.news-block-two h3 a {
    color: #484848;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-two h3 a:hover {
    color: var(--vermelho);
}

.news-block-two .text {
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    margin-bottom: 20px;
}

.news-block-two .author-info {
    position: relative;
    padding-left: 60px;
    min-height: 40px;
}

.news-block-two .author-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.news-block-two .author-info .thumb img {
    display: block;
    width: 100%;
}

.news-block-two .author-info .name {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 500;
    padding-top: 5px;
}

.news-block-two .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -30px;
}

.news-block-two .owl-next,
.news-block-two .owl-prev {
    position: absolute;
    left: 10px;
    top: 0;
    height: 60px;
    width: 50px;
    background-color: #ffffff;
    font-size: 24px;
    color: #484848;
    font-weight: 400;
    text-align: center;
    line-height: 60px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-two .owl-next {
    left: auto;
    right: 10px;
}

.news-block-two .owl-next:hover,
.news-block-two .owl-prev:hover {
    background-color: #484848;
    color: #ffffff;
}

/*=== News Block Three ===*/

.news-block-three {
    position: relative;
    margin-bottom: 60px;
}

.news-block-three .inner-box {
    position: relative;
    background-color: #f7f7fa;
    padding: 40px 50px 50px;
}

.news-block-three .tag {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    background-color: #484848;
    padding: 0 15px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.news-block-three .post-info {
    position: relative;
    margin-bottom: 13px;
}

.news-block-three .post-info li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 20px;
    margin-right: 18px;
}

.news-block-three .post-info li:before {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    content: "|";
}

.news-block-three .post-info li:last-child:before {
    display: none;
}

.news-block-three .post-info .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--vermelho);
}

.news-block-three h3 {
    position: relative;
    font-size: 30px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 25px;
}

.news-block-three h3 a {
    color: #484848;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-three h3 a:hover {
    color: var(--vermelho);
}

.news-block-three .text {
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    margin-bottom: 20px;
}

.news-block-three .author-info {
    position: relative;
    padding-left: 60px;
    min-height: 40px;
}

.news-block-three .author-info .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.news-block-three .author-info .thumb img {
    display: block;
    width: 100%;
}

.news-block-three .author-info .name {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 500;
    padding-top: 5px;
}

/*=== Blockquote ===*/
.blockquote {
    position: relative;
    padding: 50px;
    background-color: #f7f7fa;
    margin-bottom: 60px;
}

.blockquote:before {
    position: absolute;
    content: "\7b";
    font-size: 80px;
    color: #ebeef2;
    font-weight: 400;
    font-family: "ElegantIcons";
}

.blockquote:after {
    position: absolute;
    right: 30px;
    bottom: 0px;
    content: "\f170";
    font-size: 80px;
    line-height: 1em;
    color: #dce1e9;
    font-weight: 400;
    font-family: "Flaticon";
}

.blockquote p {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 35px;
}

.blockquote cite {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #484848;
    font-weight: 500;
    font-style: italic;
}

/***

====================================================================
		Blog Detail
====================================================================

***/

.blog-single {
    position: relative;
}

.blog-single .news-block-two {
    margin-bottom: 0;
}

.blog-single .lower-content {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-single .lower-content .tag {
    position: relative;
    float: left;
    font-size: 14px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    background-color: #484848;
    padding: 0 15px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-right: 20px;
}

.blog-single .news-block-two .post-info {
    margin-bottom: 20px;
}

.blog-single .news-block-two .lower-content p {
    font-size: 16px;
    line-height: 30px;
    color: #666f7e;
    font-weight: 400;
    margin-bottom: 30px;
}

.blog-single .news-block-two .lower-content .blockquote {
    margin: 40px 0;
}

.blog-single .news-block-two h3 {
    font-weight: 500;
}

.blog-single .list-style-two {
    margin-bottom: 40px;
}

.blog-single .news-block-two .lower-content .image {
    margin-bottom: 35px;
}

/*post share options*/

.blog-single .post-share-options {
    position: relative;
    margin-bottom: 65px;
}

.blog-single .post-share-options p {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 500;
    margin: 0 15px 0 0;
    display: inline-block;
}

.blog-single .post-share-options .tags {
    position: relative;
    display: inline-block;
}

.blog-single .post-share-options .tags li {
    position: relative;
    display: inline-block;
}

.blog-single .post-share-options .tags a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #484848;
    font-weight: 500;
    padding: 0 20px;
    background: #f6f6f6;
    border-radius: 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-single .post-share-options .tags a:hover {
    color: #ffffff;
    background-color: var(--vermelho);
}

.blog-single .post-share-options .social-icon-three {
    position: relative;
    display: inline-block;
}

/*=== Author Box ===*/

.blog-single .author-box {
    position: relative;
    padding: 40px 50px;
    background-color: #f7f7fa;
    margin-bottom: 90px;
}

.blog-single .author-box .inner-box {
    position: relative;
}

.blog-single .author-box .info-box {
    position: relative;
    padding-left: 110px;
    min-height: 80px;
    margin-bottom: 20px;
    padding-top: 15px;
}

.blog-single .author-box .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.blog-single .author-box .thumb img {
    display: block;
    width: 100%;
}

.blog-single .author-box .name {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
}

.blog-single .author-box .designation {
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: #484848;
    font-weight: 400;
    margin-top: 5px;
}

.blog-single .author-box .text {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 25px;
}

.blog-single .author-box .read-more {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #484848;
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-single .author-box .read-more .icon {
    margin-left: 7px;
    float: right;
    font-size: 20px;
    line-height: 24px;
}

.blog-single .author-box .read-more:hover {
    color: var(--vermelho);
}

/***

====================================================================
		Styled Pagination
====================================================================

***/

.styled-pagination {
    position: relative;
}

.styled-pagination li {
    position: relative;
    float: left;
    margin: 0 8px 0 0;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    line-height: 50px;
    font-size: 18px;
    height: 50px;
    width: 50px;
    color: #484848;
    font-weight: 500;
    text-align: center;
    background: #f7f7fa;
    border-radius: 3px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.styled-pagination li .icon {
    font-size: 24px;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    color: #ffffff;
    background-color: var(--vermelho);
}

/***

====================================================================
		Clients Section
====================================================================

***/

.clients-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fff;
    padding: 100px 0 80px;
}

.clients-section .sec-title {
    position: relative;
    margin-bottom: 70px;
}

.clients-section .sponsors-outer {
    position: relative;
      margin-bottom: 40px;
    /*padding-left: 250px;*/
  /*  padding-left: 200px;
  
    border: 1px solid var(--vermelho);*/
}

.clients-section .sponsors-outer .title-box {
  /*  position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 200px;
    padding: 10px 20px;
    background:var(--vermelho);*/
    text-align:center;
    
}

.clients-section .sponsors-outer .title-box h3 {
    position: relative;
    display: block;
    font-size: 19px;
   /* line-height: 130px;*/
    color: var(--azul);
    font-weight: 700;
}

.clients-section .slide-item {
    position: relative;
    padding: 54px 25px;
}

@media (max-width: 575px) {
    .clients-section .slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.clients-section .sponsors-outer .image {
    position: relative;
    margin: 0;
}

.clients-section .sponsors-outer .image img {
    display: inline-block;
    max-width: 100%;
    width: auto;
   /* height: 38px;*/
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*.clients-section .gold-sponsor{
	border: 1px solid #21bae1;
}

.clients-section .silver-sponsor{
	border: 1px solid #70d732;
}

.clients-section .gold-sponsor .title-box{
	background: rgb(0,114,255);
	background: -moz-linear-gradient(45deg, rgba(0,114,255,1) 0%, rgba(14,216,204,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(0,114,255,1) 0%,rgba(14,216,204,1) 100%);
	background: linear-gradient(45deg, rgba(0,114,255,1) 0%,rgba(14,216,204,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0072ff', endColorstr='#0ed8cc',GradientType=1 );
	-webkit-box-shadow: 0 20px 30px rgba(25,130,254,.30);
	-ms-box-shadow: 0 20px 30px rgba(25,130,254,.30);
	box-shadow: 0 20px 30px rgba(25,130,254,.30);
}

.clients-section .silver-sponsor .title-box{
	background: rgb(15,204,46);
	background: -moz-linear-gradient(45deg, rgba(15,204,46,1) 0%, rgba(166,216,14,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(15,204,46,1) 0%,rgba(166,216,14,1) 100%);
	background: linear-gradient(45deg, rgba(15,204,46,1) 0%,rgba(166,216,14,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0fcc2e', endColorstr='#a6d80e',GradientType=1 );
	-webkit-box-shadow: 0 20px 30px rgba(39,209,66,.30);
	-ms-box-shadow: 0 20px 30px rgba(39,209,66,.30);
	box-shadow: 0 20px 30px rgba(39,209,66,.30);
}*/

.clients-section .owl-nav,
.clients-section .owl-dots {
    display: none;
}

/***

====================================================================
		Clients Section Two
====================================================================

***/

.clients-section-two {
    position: relative;
    background-color: #fbfbfd;
    padding: 100px 0 100px;
}

.clients-section-two .sec-title {
    position: relative;
    margin-bottom: 50px;
}

.clients-section-two .sponsors-outer {
    position: relative;
    margin-bottom: 80px;
}

.clients-section-two .sponsors-outer .title-box {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.clients-section-two .sponsors-outer .title-box h3 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 40px;
    color: #484848;
    font-weight: 500;
}

.clients-section-two .slide-item {
    position: relative;
    text-align: center;
}

.clients-section-two .sponsors-outer .image {
    position: relative;
    margin: 0;
}

.clients-section-two .sponsors-outer .image img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section-two .sponsors {
    position: relative;
    text-align: center;
}

.clients-section-two .sponsors li {
    position: relative;
    display: inline-block;
    margin: 0 45px;
}

.clients-section-two .bottom-box {
    position: relative;
    text-align: center;
}

.clients-section-two .bottom-box .theme-btn {
    margin-bottom: 10px;
}

.clients-section-two .bottom-box .text {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
}

.clients-section-two .owl-nav,
.clients-section-two .owl-dots {
    display: none;
}

.clients-section-two.style-two .image img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section-two.style-two .image:hover img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}

.clients-section-two.style-two .bottom-box .date-btn {
    color: #484848;
    cursor: pointer;
}

/***

====================================================================
		Clients Section Three
====================================================================

***/

.clients-section-three {
    position: relative;
    padding: 120px 0 40px;
    background-color: #060822;
}

.clients-section-three .sponsors-list {
    position: relative;
}

.clients-section-three .sponsors-list li {
    position: relative;
    float: left;
    width: 20%;
    margin-bottom: 20px;
}

.clients-section-three .sponsors-list li img {
    max-width: 100%;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.clients-section-three .sponsors-list li:hover img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}

.clients-section-three .dotted-shape-1 {
    left: -170px !important;
    top: 140px !important;
    opacity: .30;
}

.clients-section-three .dotted-shape-2 {
    top: 150px !important;
    right: -140px !important;
    left: auto !important;
    opacity: .30;
}

/***

====================================================================
		Sponsor Section
====================================================================

***/

.sponsors-section {
    position: relative;
    padding: 100px 0 120px;
}

.client-block {
    position: relative;
    margin-bottom: 30px;
}

.client-block .inner-box {
    position: relative;
    padding: 55px;
    border: 1px solid #edf0f6;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.client-block .inner-box:hover {
    border-top-color: var(--vermelho);
    -webkit-box-shadow: 0 30px 40px rgba(14, 16, 48, 0.08);
    -moz-box-shadow: 0 30px 40px rgba(14, 16, 48, 0.08);
    -ms-box-shadow: 0 30px 40px rgba(14, 16, 48, 0.08);
    -o-box-shadow: 0 30px 40px rgba(14, 16, 48, 0.08);
    box-shadow: 0 30px 40px rgba(14, 16, 48, 0.08);
}

.client-block .content {
    position: relative;
    padding-left: 115px;
}

.client-block .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 75px;
    line-height: 1em;
    font-weight: 300;
    color: #755be6;
}

.client-block h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #394963;
    font-weight: 700;
    margin-bottom: 12px;
}

.client-block h4 a {
    color: #394963;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.client-block h4 a:hover {
    color: var(--vermelho);
}

.client-block .text {
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
    cursor: default;
    margin-bottom: 28px;
}

.client-block .learn-more {
    position: relative;
}

.client-block .learn-more a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #484848;
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.client-block .learn-more a .icon {
    margin-left: 7px;
    vertical-align: middle;
    font-size: 20px;
    line-height: 24px;
}

.client-block .learn-more a:hover {
    color: var(--vermelho);
}

.sponsors-section .btn-box {
    position: relative;
    text-align: center;
    margin-top: 40px;
}

.sponsors-section .btn-box a {
    border-radius: 3px;
}

.client-block:nth-child(2) .icon-box {
    color: #1ebe1a;
}

.client-block:nth-child(3) .icon-box {
    color: #f4a72e;
}

.client-block:nth-child(4) .icon-box {
    color: #9d8aae;
}

.client-block:nth-child(5) .icon-box {
    color: #c63bdf;
}

.client-block:nth-child(6) .icon-box {
    color: #17b6d8;
}

.client-block:nth-child(7) .icon-box {
    color: #ea7d48;
}

.client-block:nth-child(8) .icon-box {
    color: #f8478a;
}

.client-block:nth-child(9) .icon-box {
    color: #22c1b8;
}

/***

====================================================================
		Sponsors Detail
====================================================================

***/

.sponsors-detail {
    position: relative;
    padding: 100px 0 65px;
}

.sponsors-detail .info-column {
    position: relative;
}

.sponsors-detail .info-box {
    position: relative;
    padding: 45px 50px 45px;
    background-color: #fbfbfd;
    border: 1px solid #edf0f6;
    padding-right: 30px;
    margin-bottom: 50px;
}

.sponsors-detail .info-list {
    position: relative;
}

.sponsors-detail .info-list li {
    position: relative;
    margin-bottom: 35px;
}

.sponsors-detail .info-list li:last-child {
    margin-bottom: 0;
}

.sponsors-detail .info-list li strong {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.2em;
    color: #394963;
    font-weight: 500;
    margin-bottom: 8px;
}

.sponsors-detail .info-list li p {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 0;
}

.sponsors-detail .content-column {
    position: relative;
    margin-bottom: 50px;
}

.sponsors-detail .content-column .inner-column {
    position: relative;
    padding-right: 30px;
}

.sponsors-detail .content-column h4 {
    display: block;
    font-size: 26px;
    line-height: 1.2em;
    color: #394963;
    font-weight: 700;
    margin-bottom: 25px;
}

.sponsors-detail .content-column p {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 30px;
}

.sponsors-detail .content-column ul {
    margin-bottom: 35px;
}

.sponsors-detail .content-column .btn-box {
    position: relative;
    padding-top: 50px;
    margin-top: 70px;
    border-top: 1px solid #e6e7f3;
}

/***

====================================================================
		Event Info Section
====================================================================

***/

.event-info-section {
    position: relative;
    padding: 120px 0 70px;
}

.event-info-section .info-column {
    position: relative;
    margin-bottom: 50px;
}

.event-info-section .info-column .inner-column {
    position: relative;
}

.event-info-section .info-column .sec-title {
    margin-bottom: 50px;
}

.event-info-section .info-column .sec-title h2 {
    font-size: 30px;
    line-height: 40px;
}

.event-info-tabs {
    position: relative;
}

.event-info-tabs .tab-buttons {
    position: relative;
    max-width: 400px;
    border-bottom: 2px solid #e7e7ee;
    margin-bottom: 35px;
}

.event-info-tabs .tab-btn {
    position: relative;
    float: left;
    margin-right: 20px;
    padding: 0 20px 15px;
    font-size: 16px;
    line-height: 25px;
    color: #484848;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-info-tabs .tab-btn:hover,
.event-info-tabs .tab-btn.active-btn {
    color: var(--vermelho);
    border-bottom: 2px solid var(--vermelho);
}

.event-info-tabs .tabs-content {
    position: relative;
}

.event-info-tabs .tabs-content h4 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 20px;
}

.event-info-tabs .tabs-content h5 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 20px;
}

.event-info-tabs .tabs-content .text {
    font-size: 16px;
    line-height: 28px;
    color: #616977;
    max-width: 470px;
    margin-bottom: 45px;
}

.event-info-tabs .tabs-content .info-list {
    position: relative;
}

.event-info-tabs .tabs-content .info-list li {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    line-height: 26px;
    color: #616977;
    font-weight: 400;
    margin-bottom: 10px;
}

.event-info-tabs .tabs-content .info-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 26px;
    color: #616977;
}

.event-info-tabs .tabs-content .info-list li a {
    color: #616977;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.event-info-tabs .tabs-content .info-list li a:hover {
    color: #f0228c;
    text-decoration: underline;
}

.event-info-section .map-column {
    position: relative;
    margin-bottom: 50px;
}

.event-info-section .map-column .map-canvas {
    position: relative;
    height: 550px;
    border: 12px solid #ffffff;
    -webkit-box-shadow: 0 4px 10px rgba(14, 16, 48, .08);
    -ms-box-shadow: 0 4px 10px rgba(14, 16, 48, .08);
    box-shadow: 0 4px 10px rgba(14, 16, 48, .08);
}

.event-info-section .map-column .map-outer:before {
    position: absolute;
    right: -100px;
    top: -43px;
    height: 675px;
    width: 425px;
    content: "";
    opacity: .06;
    background-image: url(../images/icons/shape-14.png);
    background-repeat: no-repeat;
    background-position: center;
}

/***

====================================================================
		FAQ's Section
====================================================================

***/

.faq-section {
    position: relative;
    padding: 100px 0 40px;
}

.faq-section .accordion-column {
    position: relative;
    margin-bottom: 100px;
}

.faq-section .accordion-column .inner-column {
    position: relative;
    padding-right: 50px;
}

.faq-section .sec-title {
    margin-bottom: 47px;
}

.accordion-box {
    position: relative;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 20px;
}

.accordion-box .block:last-child {
    margin-bottom: 0;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #484848;
    font-weight: 500;
    cursor: pointer;
    padding: 25px 40px;
    background-color: #f7f7fa;
    border-top: 2px solid transparent;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion-box .block .icon {
    position: absolute;
    right: 40px;
    top: 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--vermelho);
    height: 60px;
    line-height: 30px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon {
    color: var(--vermelho);
}

.accordion-box .block .acc-btn.active .icon:before {
    content: "\4f";
    font-size: 20px;
    color: var(--vermelho);
    font-weight: 700;
    font-family: "ElegantIcons";
}

.accordion-box .block .acc-btn.active {
    position: relative;
    background-color: #ffffff;
    color: #484848;
    border-top: 2px solid var(--vermelho);
}

.accordion-box .block.active-block {
    -webkit-box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    -moz-box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    -ms-box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    -o-box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
    box-shadow: 0 30px 50px rgba(14, 16, 48, .08);
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

.accordion-box .block .content {
    position: relative;
    padding: 24px 40px 50px;
    background-color: #ffffff;
}

.accordion-box .block .content:before {
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    margin: 0 auto;
    height: 1px;
    background-color: #e6e7f3;
    content: "";
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content .text {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
}

.faq-section .sidebar-column {
    position: relative;
    margin-bottom: 50px;
}

.faq-section .sidebar-column .inner-column {
    position: relative;
}

.faq-section .support-form {
    margin-bottom: 65px;
}

.faq-section .social-widget {
    position: relative;
    margin-bottom: 55px;
}

.support-widget {
    position: relative;
}

.support-widget .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 25px;
}

.support-widget .info {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #484848;
    font-weight: 700;
    padding-left: 40px;
}

.support-widget .info .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 30px;
    color: var(--vermelho);
    font-weight: 400;
}

.support-widget .info a {
    color: #484848;
}

/***

====================================================================
	Error Section
====================================================================

***/

.error-section {
    position: relative;
    text-align: center;
    padding: 250px 0px 150px;
}

.error-section .dotted-shape-1 {
    left: -110px !important;
    top: 320px !important;
    opacity: .50;
}

.error-section .dotted-shape-2 {
    top: 255px !important;
    right: -110px !important;
    left: auto !important;
    opacity: .50;
}

.error-section .error-title {
    position: relative;
    color: #222222;
    font-size: 400px;
    font-weight: 700;
    line-height: .75em;
    background-image: url(../images/icons/error-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 120%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.error-section h4 {
    color: #394963;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 30px;
    margin-bottom: 20px;
}

.error-section .text {
    color: #666666;
    font-size: 24px;
    margin-bottom: 50px;
    line-height: 1.4em;
}

.error-section .theme-btn {
    border-radius: 5px;
    font-weight: 500;
}

/***

====================================================================
	Map Section
====================================================================

***/

.map-section {
    position: relative;
}

.map-section .map-canvas {
    position: relative;
    height: 600px;
}

.map-section.alternate .map-canvas {
    height: 500px;
}

.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
}

.map-data a {
    display: block;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #121212;
}

/***

==================================================================
		Contact Section
==================================================================

***/

.contact-section {
    position: relative;
    background-color: #060822;
    padding: 120px 0 70px;
}

.contact-section .content-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-section .content-column .sec-title .title {
    letter-spacing: 0;
    text-transform: capitalize;
    color: #484848;
}

.contact-section .content-column .inner-column {
    position: relative;
    padding-right: 100px;
    padding-top: 10px;
}

.contact-section .content-column .sec-title {
    position: relative;
    margin-bottom: 22px;
}

.contact-section .content-column .text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #989bb8;
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-section .content-column .info-box {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
}

.contact-section .content-column .info-box a {
    color: #484848;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-section .content-column .info-box a:hover {
    color: #484848;
}

.contact-section .form-column {
    position: relative;
    margin-bottom: 50px;
}

.contact-section .form-column .inner-column {
    position: relative;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
    width: 100%;
}



.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="number"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="url"],
.contact-form .form-group textarea,
.contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    color: #616977;
    font-weight: 400;
    height: 56px;
    padding: 15px 30px;
    background-color: #080a26;
    border: 1px solid #3f415d;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--vermelho);
    color: #ffffff;
}

.contact-form .form-group textarea {
    height: 160px;
    margin-bottom: 10px;
    resize: none;
}

.contact-form .form-group input[type=submit],
.contact-form .form-group button {
    border-radius: 3px;
    padding: 10px 28px;
    cursor: pointer;
}

.contact-form label.error {
    color: #ff0000;
}

/***

====================================================================
	Contact Info Section
====================================================================

***/

.contact-info-section {
    position: relative;
    padding: 100px 0 70px;
}

.contact-info-block {
    position: relative;
    margin-bottom: 30px;
}

.contact-info-block .inner-box {
    position: relative;
    padding: 40px 50px 42px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 30px 40px rgba(14, 16, 48, 0.06);
    -ms-box-shadow: 0 30px 40px rgba(14, 16, 48, 0.06);
    box-shadow: 0 30px 40px rgba(14, 16, 48, 0.06);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-top: 2px solid #f089bd;
}

.contact-info-block .inner-box:hover {}

.contact-info-block .icon-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-info-block .icon-box .icon {
    font-size: 72px;
    line-height: 1em;
    background: rgb(255, 138, 1);
    background: -moz-linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    background: linear-gradient(45deg, rgba(255, 138, 1, 1) 0%, rgba(225, 19, 123, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#484848', endColorstr='var(--vermelho)', GradientType=1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-block h5 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #394963;
}

.contact-info-block h5 a {
    color: #394963;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-info-block h5 a:hover {
    color: #f0228c;
}

.contact-info-block .info-list {
    position: relative;
}

.contact-info-block .info-list li {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    line-height: 26px;
    color: #616977;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-info-block .info-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 26px;
    color: #616977;
}

.contact-info-block .info-list li a {
    color: #616977;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-info-block .info-list li a:hover {
    color: #f0228c;
    text-decoration: underline;
}

/***

====================================================================
	Contact Form Section
====================================================================

***/
.btn-filtros {
    font-size: 1.5rem;
    padding: 10px;
    margin: 10px;
    display: block
}

.carro {
    background: #f8f9fa none repeat scroll 0 0;
    border-radius: 100%;
    color: var(--vermelho);
    font-size: 10px;
    height: 13px;
    line-height: 13px;
    position: absolute;
    right: 18px;
    top: 15px;
    width: 13px;
    text-align: center;
}

.inscricoes thead th {

    color: #484848;
    font-size: 1rem;
    border-top: 1px solid #484848;
    border-bottom: 1px solid #484848;
}

.contact-form-section {
    position: relative;
    padding: 50px 0 50px;
    background-color: #f7f7fa;
}

.contact-form-section .form-column {
    position: relative;
}

.contact-form-section .form-column .inner-column {
    position: relative;

}

.contact-form-section .contact-form {
    position: relative;

}

.contact-form-section .sidebar-column {
    position: relative;
}

.contact-form-section .sidebar-column .inner-column {
    position: relative;
}

.contact-form-section .sidebar-column .social-widget {
    margin-bottom: 50px;
}

.default-form {
    position: relative;
    z-index: 1;
}

.default-form .form-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}


.default-form .form-group input[type="text"],
.default-form .form-group input[type="number"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group textarea,
.default-form .form-group select,
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    color: #484848;
    font-weight: 500;
    height: 50px;
    padding: 10px;
    /*background-color: #f7f7fa;
    border: 1px solid #f7f7fa;*/
    background-color: #eaeaf2;
    border: 1px solid #eaeaf2;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group label {
    font-weight: 500;
    font-size: 16px;
}

.default-form .form-group input[type="text"]::placeholder,
.default-form .form-group input[type="number"]::placeholder,
.default-form .form-group input[type="email"]::placeholder,
.default-form .form-group input[type="tel"]::placeholder,
.default-form .form-group input[type="url"]::placeholder,
.default-form .form-group textarea::placeholder,
.default-form .form-group select::placeholder,
.form-group select::placeholder {
    color: #7a7a7a;
    font-weight: 100;
}

.default-form .form-group input:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus {
    background-color: #ffffff;
    border-color: #faeff5;
    color: #9da6b4;
    -webkit-box-shadow: 0 30px 30px rgba(14, 16, 48, .08);
    -ms-box-shadow: 0 30px 30px rgba(14, 16, 48, .08);
    box-shadow: 0 30px 30px rgba(14, 16, 48, .08);
}

.default-form .form-group textarea {
    height: 150px;
    resize: none;
}

.default-form .form-group input[type=submit],
.default-form .form-group button {
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}

.contact-form.default-form .form-group textarea {
    height: 200px;
}

/***

====================================================================
	Subscribe Section
====================================================================

***/
.icheck-primary>input:first-child:checked+input[type=hidden]+label::before,
.icheck-primary>input:first-child:checked+label::before {
    background-color: var(--vermelho);
    border-color: var(--vermelho);
}

.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+input[type=hidden]+label::before,
.icheck-primary>input:first-child:not(:checked):not(:disabled):hover+label::before {
    border-color: var(--vermelho);
}

.mt-20 {
    margin-top: 20px
}

.temp-wrapper {

    overflow-x: hidden;
    position: relative;
    background-color: #ccc;
}

.need-help-component {
    display: inline-block;
    position: fixed;
    right: -300px;
    top: 212px;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

#need-help-button-text {
    transform: rotate(-90deg);
    white-space: nowrap;
    color: #fff;
    margin-top: 85px;
    font-size: 20px;
}

.need-help-button {
    top: 0px;
    position: absolute;
    left: -40px;
    width: 40px;
    cursor: pointer;
    background-color: var(--azul);

}

.need-help-button,
#need-help-group {
    display: inline-block;
    vertical-align: middle;
}

#need-help-group {
    padding: 0 1em;
    width: 300px;
    border-radius: 3px;
    background-color: var(--vermelho);
    /*box-shadow: 0 1px 12.5px 0 rgba(0, 0, 0, 0.5);*/
}

.help-item {
    display: block;
    padding: 30px 20px;
    max-width: 320px;
    margin-left: -17px;
}

.help-item+.help-item {
    border-top: 1px solid #cfcfcf;
}

@media screen and (max-width: 600px) {
    .need-help-component {
        display: none;
    }

    .need-help-button {
        opacity: 1;
        transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

.is-open {
    right: -15px;
}

.subscribe-section {

    position: relative;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    z-index: 9;
    padding: 55px 20px;
    background: var(--azul);
   
    overflow: hidden;
}

.subscribe-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/icons/form-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
}

.subscribe-section .btn-style-three {
    background-color: var(--vermelho);
    color: #fff;
}

.subscribe-section .content-box {
    position: relative;


}

.subscribe-section .content-box .sec-title {
    margin-bottom: 40px;
}

.subscribe-section .content-box .sec-title .title {
    color: #ffffff;
}

.subscribe-section .newsletter-form {
    position: relative;
    max-width: 670px;
    margin: 0 auto;
}

.subscribe-section .newsletter-form .form-group {
    position: relative;
    /*padding-right:140px;*/
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 35px;
}

.subscribe-section .newsletter-form .form-group input[type="text"],
.subscribe-section .newsletter-form .form-group input[type="email"] {
    display: block;
    height: 70px;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    color: #616977;
    font-weight: 400;
    padding: 20px 40px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.subscribe-section .newsletter-form .form-group .theme-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    min-width: 140px;
    line-height: 30px;
    padding: 20px 30px;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
}

/***

==================================================================
		Main Footer
==================================================================

***/

.main-footer {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0px 0;
    background-color: var(--azul);
}

/*=== Widgets Section ===*/

.main-footer .widgets-section {
    position: relative;
    padding: 50px 0px 40px;
}

.main-footer .footer-column {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .widget-title {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    line-height: 1.2em;
    margin-bottom: 25px;
}

/*=== About Widget ===*/
.main-footer .about-widget {
    position: relative;
    /*margin-bottom: 60px;*/
}

.main-footer .about-widget .date {
    font-size: 16px;
    line-height: 30px;
    color: #484848;
}

.main-footer .about-widget .logo img {
    width: 250px;
}

.main-footer .about-widget .address {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

.main-footer .about-widget .map-link {
    position: relative;
    margin-top: 35px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}

.main-footer .about-widget .map-link a {
    color: #fff;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .about-widget .map-link span {
    float: left;
    margin-right: 10px;
    font-size: 16px;
}

.main-footer .about-widget .map-link a:hover {
    color: #484848;
}

/*=== Cities Widget ===*/

.main-footer .links-widget {
    position: relative;
}

.main-footer .list {
    position: relative;
}

.main-footer .list li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
}

.main-footer .list li a {
    display: inline-block;
    color: #fff;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.main-footer .list li a:hover { color:var(--vermelho)}
.mt20 {
    margin-top: 20px
}

.mt30 {
    margin-top: 30px
}

.mb20 {
    margin-bottom: 20px
}

.mb30 {
    margin-bottom: 30px
}

.mb40 {
    margin-bottom: 40px !important
}

.ml30 {
    margin-left: 30px;
}

.main-footer a {
    display: inline-block;
    color: #fff;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.main-footer a:hover {
    color: var(--vermelho);
}

.main-footer .list li a:hover {
    color: var(--vermelho);
}

.main-footer .links-widget {
    position: relative;
}

/*=== Social Widget ===*/

.main-footer .social-widget {
    position: relative;
}

.main-footer .social-widget .text {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
}

.main-footer .footer-bottom {
    position: relative;
    width: 100%;
    text-align: center;
}

.main-footer .copyright-text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    border-top: 1px solid rgba(255, 255, 255, .20);
    padding: 30px 0px;
}

.main-footer .copyright-text a {
    display: inline-block;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .copyright-text a:hover {
    text-decoration: underline;
    color: #ffffff;
}

/***

==================================================================
		Main Footer Style Two
==================================================================

***/

.main-footer.style-two {
    position: relative;
    background-color: #f3f3f8;
}

.main-footer .footer-content {
    position: relative;
    padding: 60px 0 90px;
    text-align: center;
}

.main-footer .footer-content .footer-logo {
    position: relative;
    margin-bottom: 30px;
}

.main-footer .footer-nav {
    position: relative;
    margin-bottom: 50px;
}

.main-footer .footer-nav li {
    position: relative;
    display: inline-block;
    margin: 0 25px;
}

.main-footer .footer-nav li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #616977;
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .footer-nav li a:hover {
    color: var(--vermelho);
}

.main-footer.style-two .copyright-text {
    font-size: 16px;
    line-height: 26px;
    color: #6b6c80;
    padding: 0;
    margin-top: 35px;
}

.main-footer.style-two .copyright-text {
    border-top: 0;
}

.main-footer.style-two .copyright-text a {
    color: #6b6c80;
}

.main-footer.style-two .copyright-text a:hover {
    color: var(--vermelho);
    text-decoration: underline;
}

/***

==================================================================
		Main Footer Style Three
==================================================================

***/

.main-footer.style-three {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main-footer.style-three .footer-nav li a {
    color: #ffffff;
}

.main-footer.style-three .footer-nav li a:hover {
    text-decoration: underline;
}

.main-footer.style-three .social-icon-two li a {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.main-footer.style-three .social-icon-two li a:hover {
    background-color: var(--vermelho);
    border-color: var(--vermelho);
}

.main-footer.style-three .copyright-text {
    color: #ffffff;
    padding-bottom: 0;
}

.main-footer.style-three .copyright-text a {
    color: #ffffff;
}

.main-footer.style-three .copyright-text a:hover {
    color: var(--vermelho);
}

.main-footer.style-three .copyright-text {
    border-top: 0;
}

/***

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container {
    position: relative;
    padding: 100px 0px 50px;
}

.sidebar-page-container.no-padd-top {
    padding-top: 0;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
    margin-bottom: 50px;
}

.sidebar-page-container .sidebar.padding-left {
    padding-left: 40px;
}

.sidebar-widget {
    position: relative;
    margin-bottom: 50px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Sidebar Title */

.sidebar-title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
    margin-bottom: 30px;
}

/*Search Box Widget*/

.sidebar .search-box {
    margin-bottom: 60px;
}

.sidebar .search-box .form-group {
    position: relative;
    margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
    position: relative;
    padding: 20px 50px 20px 30px;
    border: 1px solid #f7f7fa;
    background: #f7f7fa;
    display: block;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    height: 70px;
    color: #9da6b4;
    border-radius: 3px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus {
    color: #666666;
}

.sidebar .search-box .form-group button {
    position: absolute;
    right: 0;
    top: 0;
    height: 70px;
    width: 70px;
    display: block;
    font-size: 20px;
    color: #484848;
    line-height: 70px;
    font-weight: normal;
    background: #f7f7fa;
    z-index: 9;
    cursor: pointer;
}

.sidebar .search-box .form-group button:hover {
    color: var(--vermelho);
}

/*About Widget*/
.sidebar .about-widget {
    position: relative;
}

.sidebar .about-widget .image-box {
    position: relative;
}

.sidebar .about-widget .image {
    position: relative;
    margin-bottom: 0;
}

.sidebar .about-widget .image img {
    display: block;
    width: 100%;
    height: auto;
}

.sidebar .about-widget .lower-content {
    position: relative;
    padding: 25px 0 0;
}

.sidebar .about-widget h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 500;
    margin-bottom: 10px;
}

.sidebar .about-widget .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e7f3;
}

/*Post Widget*/

.sidebar .popular-posts .post {
    position: relative;
    margin-bottom: 20px;
}

.sidebar .popular-posts .post .post-inner {
    position: relative;
    padding-left: 120px;
    min-height: 80px;
    padding-top: 10px;
}

.sidebar .popular-posts .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 90px;
}

.sidebar .popular-posts .post .post-thumb img {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post .text {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #484848;
    margin: 0px;
}

.sidebar .popular-posts .post .text a {
    color: #484848;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post a:hover {
    color: var(--vermelho);
}

.sidebar .popular-posts .post-info {
    position: relative;
    font-size: 16px;
    color: #484848;
    font-weight: 400;
    line-height: 30px;
}

/* Blog Categories */

.blog-categories {
    position: relative;
    margin-bottom: 10px;
}

.blog-categories li {
    position: relative;

}

.blog-categories li a {
    position: relative;
    display: block;
    color: #484848;
    font-size: 14px;
    line-height: 34px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.tabs-filtros {
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    -ms-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    margin-bottom: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-filtos {
    border-bottom: 1px solid #efefef;
    display: inline-flex;
    /* vertical-align: bottom; */
    width: 100%;
    padding-bottom: 0px;
    margin-bottom: 15px;
}

.blog-categories li a:hover {
    color: var(--vermelho);
}

.tabs-filtros.btn-box {
    position: relative;
    transition: all 300ms ease;
    text-align: center;
}

.tabs-filtros .btn-box a:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/*comments widget*/

.sidebar .comments-widget .comments-list {
    position: relative;
}

.sidebar .comments-widget .comments-list li {
    position: relative;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ebe8f1;
    padding-left: 60px;
}

.sidebar .comments-widget .comments-list li .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    border: 1px solid #cacadd;
    font-size: 18px;
    line-height: 43px;
    color: #778193;
    text-align: center;
    border-radius: 50%;
}

.sidebar .comments-widget .comments-list li strong {
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    color: #484848;
}

.sidebar .comments-widget .comments-list li p {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 0;
}

.sidebar .comments-widget .comments-list li:last-child {
    border-bottom: 0;
}

/*Popular Tags*/

.sidebar .popular-tags .widget-content {
    position: relative;
}

.sidebar .popular-tags a {
    position: relative;
    float: left;
    padding: 5px 20px;
    margin: 0px 8px 8px 0px;
    color: #484848;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    background: none;
    font-weight: 400;
    text-transform: capitalize;
    background-color: #f6f6f6;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.sidebar .popular-tags a:hover {
    background-color: var(--vermelho);
    color: #ffffff;
}

/***

====================================================================
		Comment Area
====================================================================

 ***/

.group-title {
    position: relative;
    margin-bottom: 40px;
}

.group-title h4 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 1.2em;
    color: #484848;
    font-weight: 700;
}

.comments-area {
    position: relative;
    margin-bottom: 90px;
}

.comments-area .comment-box {
    position: relative;
    margin-bottom: 40px;
    padding-left: 90px;
}

.comments-area .comment-box.reply-comment {
    margin-left: 90px;
}

.comments-area .comment-box:last-child {
    margin-bottom: 0;
}

.comments-area .comment {
    position: relative;
    min-height: 60px;
    border-bottom: 1px solid #e6e9f1;
    padding-bottom: 25px;
}

.comments-area .comment-box .author-thumb {
    position: absolute;
    left: -90px;
    top: 2px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
    width: 100%;
    display: block;
}

.comments-area .comment-info {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.comments-area .comment-box .name {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 500;
    color: #484848;
    margin-bottom: 3px;
}

.comments-area .comment-box .date {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    color: #484848;
    font-weight: 400;
}

.comments-area .comment-box .text {
    font-size: 16px;
    line-height: 28px;
    color: #666f7e;
    font-weight: 400;
    margin-bottom: 15px;
}

.comments-area .comment-box .rating {
    position: relative;
    display: block;
    font-size: 14px;
    color: #d7a449;
    line-height: 20px;
}

.comments-area .comment-box .reply-btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 25px;
    color: #595b64;
    font-weight: 500;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.comments-area .comment-box .reply-btn span {
    float: left;
    font-size: 16px;
    margin-right: 9px;
}

.comments-area .comment-box .reply-btn:hover {
    color: var(--vermelho);
}

.comments-area .comment-box.reply-comment {
    padding-left: 70px;
}

.comments-area .comment-box.reply-comment .author-thumb {
    left: -70px;
    height: 44px;
    width: 44px;
}

/***

====================================================================
		Comment Form
====================================================================

 ***/

.comment-form {
    position: relative;
    margin-bottom: 20px;
}

.comment-form .form-group textarea {
    height: 200px;
    margin-top: 10px;
}

/***

====================================================================
			Coming Soon
====================================================================

***/

.coming-soon {
    position: fixed;
    height: 100%;
    width: 100%;
    display: block;
    background-color: #fbfbfd;
}

.coming-soon .dotted-shape-1 {
    left: -110px !important;
    top: 340px !important;
    opacity: .50;
}

.coming-soon .dotted-shape-2 {
    top: 255px !important;
    right: -110px !important;
    left: auto !important;
    opacity: .50;
}

.coming-soon .icon-circle-2 {
    position: absolute !important;
    top: auto !important;
    left: -710px !important;
    bottom: -470px !important;
    opacity: .10;
}

.coming-soon .content {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 275px 0 270px;
    overflow-y: auto;
    overflow-x: hidden;
}

.coming-soon .content h2 {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 1em;
    color: #394963;
    font-weight: 700;
    margin-bottom: 25px;
}

.coming-soon .content .text {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 29px;
    color: #484848;
    font-weight: 400;
    margin-bottom: 70px;
}

.timer {
    position: relative;
    display: inline-block;
}

.cs-countdown {
    position: relative;
    text-align: left;
    margin-bottom: 100px;
}

.cs-countdown div {
    position: relative;
    float: left;
    text-align: center;
    height: 170px;
    width: 200px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 30px 40px rgba(14, 16, 48, .06);
    -ms-box-shadow: 0 30px 40px rgba(14, 16, 48, .06);
    box-shadow: 0 30px 40px rgba(14, 16, 48, .06);
    margin-right: 40px;
    margin-bottom: 30px;
}

.cs-countdown div:last-child {
    margin-right: 0;
}

.cs-countdown span {
    position: relative;
    display: block;
    font-size: 70px;
    color: #f8c412;
    line-height: 70px;
    padding-top: 60px;
    font-weight: 700;
    text-align: center;
}

.cs-countdown h6 {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    margin: 0 auto;
    font-size: 16px;
    color: #7c8799;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
}

.cs-countdown div:nth-child(2) span {
    color: #f5408d;
}

.cs-countdown div:nth-child(3) span {
    color: #8756f5;
}

.cs-countdown div:nth-child(4) span {
    color: #22c116;
}

.cs-countdown div:nth-child(5) span {
    color: #ff6e01;
}

.coming-soon .emailed-form {
    position: relative;
    margin-bottom: 225px;
}

.coming-soon .emailed-form .form-group {
    position: relative;
    display: block;
    padding-right: 215px;
    width: 100%;
}

.coming-soon .emailed-form .form-group input[type="text"],
.coming-soon .emailed-form .form-group input[type="tel"],
.coming-soon .emailed-form .form-group input[type="email"],
.coming-soon .emailed-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    overflow: hidden;
    padding: 24px 30px;
    background: #8053f7;
    -webkit-box-shadow: 0 22px 32px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 22px 32px rgba(0, 0, 0, 0.10);
    box-shadow: 0 22px 32px rgba(0, 0, 0, 0.10);
    border: 1px solid #936bfe;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.coming-soon .emailed-form input::placeholder,
.coming-soon .emailed-form textarea::placeholder {
    color: #ffffff;
}

.coming-soon .emailed-form .form-group input[type="submit"],
.coming-soon .emailed-form button {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 175px;
    height: 80px;
    line-height: 30px;
    padding: 25px 10px;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-transform: capitalize;
    letter-spacing: 0;
    -webkit-box-shadow: 0 22px 32px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 22px 32px rgba(0, 0, 0, 0.10);
    box-shadow: 0 22px 32px rgba(0, 0, 0, 0.10);
}

.coming-soon .emailed-form .form-group input[type="submit"]:hover,
.coming-soon .emailed-form button:hover {
    background-color: #ffffff;
    color: #00e399;
}

.coming-soon .emailed-form .form-group input[type="text"]:focus,
.coming-soon .emailed-form .form-group input[type="tel"]:focus,
.coming-soon .emailed-form .form-group input[type="email"]:focus,
.coming-soon .emailed-form .form-group textarea:focus {
    border-color: #ffffff;
}

.pd15 {
    padding: 15px !important;
}

.no-margin {
    margin: 0 !important;
}

.bdr35 {
    border-radius: 35px !important;
}

.btn-news-big-button-color {
    background-color: #1E4679 !important;
}

.pdl50white {
    background-color: #fff;
    padding-left: 50px;
}

.gallery-item.width-33 {
    width: 33%;
}

a.detail_parceiros {
    margin-right: 10px;
}

a.detail_parceiros img {
    max-height: 150px;
}

.show_more {
    height: 150px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

#printme {
    float: right;
    font-size: 16px;
}

.mr1rem {
    margin-right: 1rem;
}

h2 span.rosinha {
    color: var(--vermelho) !important;
}

.encerradas {
    color: var(--azul) !important;
}

.button-to-marker:hover {
    color: #484848;
}

#f1,
#f2,
#f3,
#f4 {
    height: 200px;
    overflow: auto;
}

.row-inscricao {
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    -ms-box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    box-shadow: 0 4px 10px rgba(14, 16, 48, .05);
    margin-bottom: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.title-inscricao {
    color: #484848;
    font-weight: bold;
    font-size: 1rem;
}

.mbt25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

body#programa .page-wrapper {
    align-items: stretch
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: #7386D5;
    color: #777777;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 9999;
}

#dismiss:hover {
    background: #fff;
    color: #7386D5;
}

body#programa .overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 998;
    top: 0;
}

body#programa .overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active>a,
body#programa a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

body#programa a[data-toggle="collapse"] {
    position: relative;
}

#sidebar #f1,
#sidebar #f2,
#sidebar #f3 {
    height: auto;
    overflow: initial;
}

.redcheeks {
    border-color: red;
    border-width: 2px;
}

.carrinho {
    text-align: center !important;
}

.ptop0 {
    padding-top: 0 !important;
}

.theme-btn.big {
    font-size: 20px !important;
    padding: 14px 36px !important;
}

#partner-details-outro .speaker-single .info-list,
#partner-details .speaker-single .info-list {
    line-height: 40px;
}

.kids-title {
    text-align: center;
    margin: 0 auto 60px auto;
}

.img-slider {
    max-width: unset;
    width: 100%;
}

.grecaptcha-badge {
    visibility: hidden;
}

.pl10 {
    padding-left: 10px;
}

.divisor {
    margin: 40px 0 !important;
    border: 2px solid var(--vermelho);
}

.mt40 {
    margin-top: 40px !important;
}

.select2-selection {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;
    line-height: 28px !important;
    color: #484848 !important;
    font-weight: 500 !important;
    height: 50px !important;
    padding: 10px !important;
    /*background-color: #f7f7fa2 !important;
    border: 1px solid #f7f7fa !important;*/
    background-color: #eaeaf2 !important;
    border: 1px solid #eaeaf2 !important;
    border-radius: 3px !important;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease !important;
}

.select2-container--open .select2-selection {
    background-color: #ffffff !important;
    border-color: #faeff5 !important;
    color: #9da6b4 !important;
    -webkit-box-shadow: 0 30px 30px rgba(14, 16, 48, .08);
    -ms-box-shadow: 0 30px 30px rgba(14, 16, 48, .08);
    box-shadow: 0 30px 30px rgba(14, 16, 48, .08) !important;
}

.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #faeff5 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px !important;
}

.select2-container .select2-search--inline .select2-search__field,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0 !important;
}

.select2-selection__choice {
    background-color: #ffffff !important;
    border: 1px solid var(--vermelho) !important;
}

.select2-search__field::placeholder {
    color: #777777 !important;
    font-weight: 200 !important;
}

.gratis-pagas.hidden,
.pagas-gratis.hidden {
    visibility: hidden;
    display: none;
}

.btn-controller {
    background-color: #ec6a5c;
    color: white;
    height: 50px;
    margin: 0 !important;
    font-size: 20px;
}

.a-enviar {
    position: absolute;
    font-size: 30px;
    color: #f7f7fa;
    padding: 10px;
    background: rgba(236, 106, 92, 0.5);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.radio-label {
    font-weight: 400 !important;
    font-size: 15px !important;
}

.parceiro-oiro {
    /*position: absolute;
    width: 60px;
    height: auto;
    right: 27px;
    top: 55px;*/
    width: 230px;
    height: auto;
}
@media screen and (max-width: 425px) {
    .parceiro-oiro {
        width: 270px;
        margin-top: -4px;
    }
}
.parceiro-oiro.details,
.selo-encomende.details {
 position: relative;
 right: unset;
 top: unset;
 bottom: unset;
}
.selo-encomende {
    position: absolute;
    width: 60px;
    height: auto;
    bottom: 70px;
    right: 12px;
}

.d-block {
    display: block;
}

.jqTimespaceDisplay .schedule-block {
    box-shadow: none !important;
}
.p0{
    padding: 0;
}
.mapa-legenda{
    position: absolute;
    bottom: 15px;
    z-index: 1000;
    right: 5px;
}
.mapa-legenda ul li{
    font-weight: 500;
    color: var(--vermelho);
    padding: 1px;
}
.mapa-legenda ul li img{
    height: 30px;
}
.jqTimespaceEvent p {
    font-size: 0.9rem !important;
}
.orelha-newsletter{
    position: fixed;
    top: 251px;
    right: -43px;
    color: #fff;
    background-color: var(--azul);
    transform: rotate( -90deg);
    font-size: 20px;
    padding: 9px 15px;
        z-index: 9;
}
.orelha-newsletter:hover{
    color:#fff;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.copy-ideias{
    width: 17px;
    height: 16px;
    top: 2px;
    position: relative; background-repeat: no-repeat;background-size: contain; display: inline-block;
	
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='130px' height='130px' viewBox='0 0 130 130' enable-background='new 0 0 130 130' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M125.854 39.375c0 3.906-3.17 7.077-7.076 7.077H63.677c-3.906 0-7.076-3.171-7.076-7.077V11.61c0-3.908 3.169-7.073 7.076-7.073h55.099c3.908 0 7.076 3.165 7.076 7.073v27.765H125.854z M46.126 119.102c0 3.904-3.167 7.07-7.073 7.07H11.286c-3.905 0-7.073-3.166-7.073-7.07V64.001c0-3.906 3.168-7.073 7.073-7.073h27.767c3.906 0 7.073 3.167 7.073 7.073V119.102z M46.931 25.365c0-12.155-9.85-22.002-22.004-22.002c-12.152 0-22.002 9.848-22.002 22.002c0 12.152 9.85 22.004 22.002 22.004C37.081 47.369 46.931 37.517 46.931 25.365z M83.387 82.785c-1.679 0-3.047-1.363-3.047-3.042c0-1.685 1.368-3.052 3.047-3.052c1.684 0 3.047 1.367 3.047 3.052C86.434 81.422 85.068 82.785 83.387 82.785z M74.496 82.785c-1.686 0-3.042-1.363-3.042-3.042c0-1.685 1.356-3.052 3.042-3.052s3.042 1.367 3.042 3.052C77.538 81.422 76.182 82.785 74.496 82.785z M92.338 82.785c-1.679 0-3.042-1.363-3.042-3.042c0-1.685 1.363-3.052 3.042-3.052c1.684 0 3.051 1.367 3.051 3.052C95.389 81.422 94.021 82.785 92.338 82.785z M102.648 57.384H63.059c-3.244 0-6 2.461-6 5.708v34.872c0 3.243 0 8.554 0 11.8v5.67c0 3.238 2.035 4.133 4.467 1.984l10.914-9.652c2.435-2.146 7.099-3.914 10.343-3.914l19.866-0.004c3.244 0 5.893-2.641 5.893-5.884V63.09C108.541 59.845 105.895 57.384 102.648 57.384z'/%3E%3C/svg%3E");

}

/*novoparceiros*/

#pg-clientes .client__box img {
    width: 100%;
    height: 100%;
    max-height: 120px;
    margin: 0 auto
}

.parceiros-n .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    grid-template-columns: 50% 50% ;
    grid-gap: 1rem 1.5rem;
    align-items: center;
    justify-content: center
}

@media only screen and (min-width: 1199px) {
    .parceiros-n .grid {
        display:grid;
        grid-template-columns: 25% 25% 25% 25% ;
        grid-gap: 1rem 1.5rem;
        align-items: center;
        justify-content: center
    }
   
}
@media only screen and (max-width: 480px) {
    .parceiros-n .grid {
        display:grid;
        grid-template-columns: 100% ;
        grid-gap: 1rem 1.5rem;
        align-items: center;
        justify-content: center
    }
   
}
.parceiros-n .grid>div {
    padding: 0.8rem;
    display: grid;
    place-items: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    justify-content: center;     background: #fff;
}
.divimg {position: relative;
    height: 200px;
        width: 200px;
    padding: 0 ;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center; padding-bottom:30px}
.divimg img {
    /*grid-area: 1/1/2/2;*/
    object-fit: contain;
    width: 100%;
    min-height: 100px;max-width: 200px;    max-height: 160px;
}


.divimg .selos-d { position: absolute; top:0; left: 0; }
.divimg .selos-d img{ width: 100%; height: auto;}

.divimg .selos-d span { }

.classeParceiroOuroPT { border:3px solid var(--azul);position: relative;}
.classeParceiroOuroPT:after { position: absolute; content:"Parceiro de Ouro";  background:var(--azul); bottom:0; height: 30px; width: 100%; text-align:center; color:#fff; font-size:18px; font-weight:600; line-height:30px; text-transform:uppercase}

.classeParceiroOuroEN { border:3px solid var(--azul);position: relative;}
.classeParceiroOuroEN:after { position: absolute; content:"Golden Partner";  background:var(--azul); bottom:0; height: 30px; width: 100%; text-align:center; color:#fff; font-size:18px; font-weight:600; line-height:30px; text-transform:uppercase}


.link-local {padding: 5px;
    background-color: transparent; color:var(--vermelho);
 }
.link-local:hover {
    /* background-color: var(--azul); */
   }

.blueh {
    color: var(--azul);
}
.filterParceiro,.filterDescontos {
    cursor: pointer; font-size: 18px; margin-bottom: 5px;
}
.filterParceiro.active,.filterDescontos.active {
    color: var(--vermelho); font-weight: 700;
}
.filterParceiro:hover,.filterDescontos:hover {
    color: var(--vermelho);
}