/* RESET */
*{
    margin: 0px;
    padding: 0px;
}

body{
    margin: 0px;
    padding:0px;
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: Midnight;
    src: url("/assets/fonts/Midnight_Drive.otf") format("opentype");
}

@font-face {
    font-family: MidnightTwo;
    src: url("/assets/fonts/Midnight_Drive_Two.otf") format("opentype");
}


.clean{
    clear: both;
}

.paginator{
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.paginator>li{
    display: inline;
}

.paginator>li>a, .paginator>li>span{
    position: relative;
    float: left;
    padding: 8px 0px;
    text-align: center;
    line-height: 1.42857143;
    text-decoration: none;
    margin-left: 2px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 50%;
    margin: 0px 6px;
    font-size: 18px;
    font-weight: 500;
    height: 40px;
    width: 40px;
    color: #000000;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.paginator>li>a:hover{
    background-color: #FFE200;
    border: 1px solid #FFE200;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.paginator>li>a.active{
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/* !RESET */

/* HEADER */

.header{
    margin-top: 50px;
    width: 100%;
    height: 160px;
    line-height: 130px;
    background:linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,0));
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.header .logo{}

.header .logo img{
    height: 90px;
}

.header .menu{}

.header .menu ul{}

.header .menu ul li{
    display: inline;
}

.header .menu ul li a{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    margin-left: 20px;
}

.header .menu ul li a:hover,
.header .menu ul li a:focus{
    text-decoration: none;
}

.header .menu ul li a img{
    height: 22px;
    margin-right: 15px;
    position: relative;
    top: -4px;
}

.header .menu ul li a svg{
    width: 25px!important;
    height: 35px!important;
    color: #FFFFFF!important;
    fill: #FFFFFF;
    position: relative;
    top: 10px;
    margin-right: 6px;
}

.menu-mobile{
    display: none;
    padding: 20px;
    position: fixed;
    width: 100%;
    height: calc(100% - 130px);
    left: 0px;
    top:130px;
    bottom: 0px;
    right:0px;
    z-index: 10;
    background-color: #FFFFFF;
    text-align: center;
}

.menu-mobile ul{}

.menu-mobile ul li{
    list-style: none;
}

.menu-mobile ul li a{
    display: block;
    color: #000000;
    font-weight: 400;
    margin: 14px 0px;
    font-size: 20px;
}

.menu-mobile ul li a:hover,
.menu-mobile ul li a:focus{
    text-decoration: none;
}

.menu-mobile .social{
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.menu-mobile .social::after{
    content:'';
    position: absolute;
    top: 10px;
    left: 20%;
    width: 60%;
    height: 2px;    
    background-color: #FFE200;
}

.menu-mobile .social a{
    border: 1px solid #000000;
    border-radius: 40px;
    display: inline-block;
    font-size: 20px;
    width: 38px;
    height: 38px;
    text-align: center;
    padding-top: 4px;
    color: #000000;
    margin-right: 5px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/* !HEADER */

/* BANNER HOME */

.banner-content{
    height: 720px;
}

.banner-home{
    height: 720px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.content-texts{
    float: left;
    width: 400px;
    position: relative;
    margin-top: 25%;
}

.content-texts-title{
    font-family: 'MidnightTwo';
    color: #FFFFFF;
    font-size: 80px;
    line-height: 90px;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 1);
}

.content-texts-button{
    margin-top: 30px;
}

.content-texts-button a{
    background-color: #FFE200;
    border-radius: 40px;
    padding: 10px 20px;
    color: #000000;
    font-weight: 500;
    font-size:16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.content-texts-button a:hover,
.content-texts-button a:focus{
    background-color: #CCB400;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.content-budget{
    height: 100%;
}

.content-budget {
    width: 300px;
    height: 560px;
    background-color: #FFE200;
    border-radius: 8px;
    padding: 20px;
}

.content-budget-div{
    width: 300px;
    height: 560px;
    position: absolute;
    top: 160px;
    right: 18%;
    z-index: 1000;
}

.content-budget-title{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.content-budget-form input{
    border:2px solid #FFFFFF;
    box-shadow: none;
    width: 100%;
    height: 40px;
    padding: 15px;
    border-radius: 4px;
}



.content-budget-form textarea{
    border:2px solid #FFFFFF;
    box-shadow: none;
    margin-bottom:0px;
    width: 100%;
    height: 90px;
    padding: 15px;
    border-radius: 4px;
    resize: none;
}

.content-budget-form-button{
    background-color: #8B7B00;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    color: #FFFFFF;
    border:none;
    width: 100%;
}

.content-budget-form input:focus,.content-budget-form textarea:focus{
    outline: 0;
}

.content-budget-form input.has-error,.content-budget-form textarea.has-error{
    border-color:#FF0000!important;
}

.content-budget-form-button:hover,
.content-budget-form-button:focus{
    background-color: #6d6000;
    text-decoration: none;
    outline:none;
}

.content-budget-form .error-msg{
    font-size: 12px;
    font-weight: 600;
    color: #FF0000;
    margin-top: 3px;
    height: 15px;
    margin-bottom: 5px;
}

.content-budget-form #Edetalhes{
    margin-top: -4px;
    margin-bottom: 10px;
}


.content-budget-form-loading{
    display: none;
    background-color:rgb(255, 215, 0, .8);
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    bottom:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    text-align: center;
}

.content-budget-form-loading-content{
    position: relative;
    top: calc(50% - 45px);
}

.content-budget-form-loading-text{
    color: #FFFFFF;    
    font-size: 18px;
    font-weight: 500;
    margin-top:10px
}

.content-budget-form-danger{
    display: none;
    background-color:rgba(255, 77, 77,.8);
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    bottom:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    text-align: center;
}

.content-budget-form-danger-content{
    position: relative;
    top: calc(50% - 45px);
}

.content-budget-form-danger-text{
    color: #FFFFFF;    
    font-size: 18px;
    font-weight: 500;
    margin-top:10px
}

.content-budget-form-success{
    display: none;
    background-color:rgb(76,166,76, .8);
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    bottom:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    text-align: center;
}

.content-budget-form-success-content{
    position: relative;
    top: calc(50% - 45px);
}

.content-budget-form-success-text{
    color: #FFFFFF;    
    font-size: 18px;
    font-weight: 500;
    margin-top:10px
}


/* !BANNER HOME */

/* BANNER INTERN */

.banner-intern{
    height: 400px;
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.banner-intern-content{
    top: 55%;
    position: absolute;
}

.banner-intern-content.subt{
    top: 50%;
}

.banner-intern-content-title{
    font-family: 'MidnightTwo';
    color: #FFFFFF;
    font-size: 60px;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 1);
    position: relative;
}


.banner-intern-content-subtitle{
    position: relative;
}

.banner-intern-content-subtitle::before{
    content:'';
    position: absolute;
    bottom: -5px;
    left:0px;
    height: 2px;
    width: 30px;
    z-index: 1;
    background-color: #FFE200;
}

.banner-intern-content-subtitle a{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    color: #FFFFFF
}

.banner-intern-content-subtitle a:hover,
.banner-intern-content-subtitle a:focus{
    text-decoration: none;
    color: #EEEEEE;
}



/* !BANNER INTERN */

/* CONTENT SEARCH */

.content-search{
    padding: 40px 0px;
}

.content-search-div{
    background-color: #FFE200;
    border-radius: 8px;
    padding: 20px 5px;
}

.form-items{}

.form-items-title{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.form-items-input{
    background-color: #FFFFFF;
    padding: 10px 0px;
    border-radius: 3px;
}

.form-items-input input{
    width:86%;
    height: 24px;
    padding: 15px;
    border: 2px  solid #eee;
    border-left: 0px;
    border-bottom: 0px;
    border-top: 0px;
}

.form-items-input input:focus{
    outline: 0;
}

.form-items-input button{
    width: 12%;
    background-color: transparent;
    border: 0px;
    position: relative;
    top: 5px;
}

.form-items-input button:focus{
    outline: 0;
}


.destiny-title{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.destiny-items a{
    height: 50px;
    line-height: 50px;
    display: inline-block;
    background-color: #FFFFFF;
    padding: 0px 14px;
    border-radius: 25px;
    margin-right: 5px;
    font-weight: 500;
    color: #000000;
    font-size: 14px;
}

.destiny-items a.active{
    text-decoration: none;
    background-color: #DEDEDE;
}

.destiny-items a:hover,
.destiny-items a:focus{
    text-decoration: none;
    background-color: #DEDEDE;
}

.destiny-items a svg{
    position: relative;
    top: 3.2px;
}

/* CONTENT SEARCH*/

/* CONTENT DESTINATIONS */

.content-destinations{
    padding-bottom:60px;
}


.content-destinations-error{
    padding: 0px 15px;
}
.content-destinations-error-content{
    padding: 20px;
    border-radius: 8px;
} 

.content-destinations-error-content-image{
    width: 120px;
    margin: 0 auto;
}

.content-destinations-error-content-text{
    text-align:center;
    font-size: 20px;
    font-weight: 600;
}

.content-destinations-error-content-button{
    text-align:center;
    margin-top: 20px;
}

.content-destinations-error-content-button a{
    font-size: 16px;
    text-decoration: underline;
    color: #242163;
}


.content-destinations .container{
    padding: 0px;
}

.content-destinations-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

.content-destinations-title::before{
    content: '';
    background-color: #FFE200;
    width: calc(100% - 30px);
    height: 6px;
    position: absolute;
    left: 15px;
    bottom: -10px;
    border-radius: 4px;
}

.content-destinations-item{
    margin-bottom: 20px;
    border:1px solid #eeeeee;
    padding: 15px;
    border-radius: 8px;
}

.content-destinations-item-image{
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.content-destinations-item-image.sold-off::before{
    content: 'Esgotado';
    position: absolute;
    top: 18px;
    left: -37px;
    color: #FFFFFF;
    background-color: #da0101;
    transform: rotate(320deg);
    padding: 3px 40px;
    font-weight: 600;
    font-size: 18px;
}

.content-destinations-item-title{
    margin: 10px 0px;
    font-weight: 600;
    font-size: 16px;
    height: 50px;
    line-height: 25px;
}

.content-destinations-item-description{}

.content-destinations-item-description ul{}

.content-destinations-item-description ul li{
    position: relative;
    margin-left: 30px;
    list-style: none;
    margin-bottom:4px;
    font-weight: 500;
}

.content-destinations-item-description ul li:before{
    content: '';
    background: url(/assets/images/check-ok.png);
    background-repeat: no-repeat;
    position: absolute;
    left: -30px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-size: 100%;
}

.content-destinations-item-value{
    display: inline-flex;
}

.content-destinations-item-value-text{
    text-align: right;
    color: #9F9F9F;
    font-size: 12px;
}

.content-destinations-item-value-text span{
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}


.content-destinations-item-value-nro{
    font-weight: 600;
    font-size: 26px;
    margin-left: 10px;
    padding-top: 6px;
}

.content-destinations-item-button a{
    display: block;
    width: 100%;
    border-radius: 40px;
    background-color: #FFE200;
    text-align: center;
    padding: 10px 0px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.content-destinations-item-button a:hover,
.content-destinations-item-button a:focus{
    background-color:#ccb400;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.destinations-button{
    margin-top: 40px;
    text-align: center;
}

.destinations-button a{
    background-color: #FFE200;
    border-radius: 40px;
    padding: 10px 20px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}

.destinations-button a:hover,
.destinations-button a:focus{
    text-decoration: none;
    background-color: #ccb400;
}

/* !CONTENT DESTINATIONS */

/* ABOUT SECTION */

.about-section{
    background-color: #FFE200;
    padding: 60px 0px;
}

.about-section-content img{
    float: left;
    margin-right: 30px;
    border-radius: 6px;
}

.about-section-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom:10px;
}

.about-section-description{
    font-size: 16px;
    line-height: 30px;
}

.about-section-button{
    margin-top:20px;
}

.about-section-button a{
    background-color: #8B7B00;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    color: #FFFFFF;
}

.about-section-button a:hover{
    background-color: #6d6000;
    text-decoration: none;
}

/* !ABOUT SECTION */

/* LINE SOCIAL */

.line-social{
    background-color: #FFE200;
    padding: 11px 0px;
    height: 50px;
}

.line-social-items{}

.line-social-items a{
    border:1px solid #000000;
    border-radius: 40px;
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    padding-top: 3px;
    color: #000000;
    float: left;
    margin-right: 4px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


.line-social-items a:hover,
.line-social-items a:focus{
    background-color: #000000;
    color: #FFFFFF;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.line-social-items-text{
    font-weight: 500;
    margin-left: 110px;
    line-height: 30px;
    font-size: 16px;
}

.contact-title{
    font-weight: 500;
    line-height: 30px;
    font-size: 16px;
    text-align: right;
}
.contact-title a{
    color: #000000;
}
.contact-title a:hover,
.contact-page:focus{
    color: #000000;
    text-decoration: none;
}
.line-social .col-md-6:first-child{
    padding-left:0px;
}
.line-social .col-md-6:last-child{
    padding-right: 0px;
}

/* !LINE SOCIAL */

/* CONTENT TRIP */

.trip{
    padding-bottom: 40px;
}

.trip-content{
    border:1px solid #EEEEEE;
    padding:15px;
    border-radius: 10px;
}

.trip-content .col-md-12{
    padding: 0px;
}

.trip-content .trip-content-buttons{
    padding-right: 0px;
}

.trip-content-image{
    overflow: hidden;
    position: relative;
    padding-left: 0px;
}

.trip-content-image.sold-off::before{
    content: 'Esgotado';
    position: absolute;
    top: 22px;
    left: -42px;
    color: #FFFFFF;
    background-color: #da0101;
    transform: rotate(320deg);
    padding: 3px 40px;
    font-weight: 600;
    font-size: 18px;
}

.trip-content-image img{
    border-radius: 8px;
}

.trip-content-dados{
    padding-right: 0px;
}

.trip-content-dados-title{
    margin: 0px 0px 10px 0px;
    font-weight: 600;
    font-size: 20px;
}

.trip-content-dados-description{}

.trip-content-dados-description ul{}

.trip-content-dados-description ul li{
    position: relative;
    margin-left: 30px;
    list-style: none;
    margin-bottom:4px;
    font-weight: 500;
}

.trip-content-dados-description ul li:before{
    content: '';
    background: url(/assets/images/check-ok.png);
    background-repeat: no-repeat;
    position: absolute;
    left: -30px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-size: 100%;
}

.trip-content-dados-value{
    display: inline-flex;
}

.trip-content-dados-value-text{
    text-align: right;
    color: #9F9F9F;
    font-size: 12px;
}

.trip-content-dados-value-text span{
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}


.trip-content-dados-value-nro{
    font-weight: 600;
    font-size: 26px;
    margin-left: 10px;
    padding-top: 6px;
}

.trip-content-resume-title{
    margin: 0px 0px 10px 0px;
    font-weight: 500;
    font-size: 16px;
}

.trip-content-resume{
    font-size: 16px;
    line-height: 25px;
    padding-left: 0px;
}

.trip-content-buttons{}

.trip-content-buttons-item{}

.trip-content-buttons-item.disabled a{
    background-color: #da0101;
    color: #FFFFFF;
}

.trip-content-buttons-item.disabled a:hover,
.trip-content-buttons-item.disabled a:focus{
    background-color: #da0101;
    color: #FFFFFF;
    cursor: no-drop;
}

.trip-content-buttons-item a{
    background-color: #FFE200;
    color: #000000;
    width: 100%;
    display: block;
    padding: 10px 0px;
    text-align: center;
    margin-top: 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.trip-content-buttons-item a:hover,
.trip-content-buttons-item a:focus{
    background-color: #ccb400;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.modal-footer .btn.btn-success {
    background-color: #FFE200;
    border-radius: 20px;
    outline: none;
    border: none;
    color: #000;
}

.modal-footer .btn.btn-success:hover,
.modal-footer .btn.btn-success:focus{
background-color: #ccb400;
text-decoration: none;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.modal-footer .btn.btn-default {
    background-color: #F5F5F5;
    border-radius: 20px;
    outline: none;
    border: none;
    color: #000;
}

.modal-footer .btn.btn-default:hover,
.modal-footer .btn.btn-default:focus{
background-color: #d4d3d3;
text-decoration: none;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}

.trip-content-buttons-item a img{
    width: 20px;
    margin-right: 8px;
}

.trip-content-title{
    font-weight: 500;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.trip-content-description{
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.trip-content-carousel{
    padding-top: 40px;
    padding-bottom: 40px;
}

.trip-content-carousel .owl-prev{
    background: #FFFFFF;
    border:2px solid #FFE200!important;
    color: #FFE200!important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    font-size: 32px;
    position: absolute;
    left: -60px;
    top: calc(50% - 30px);
    text-align: center;
    border-radius: 20px;
    padding-left: 3px!important;
}
.trip-content-carousel .owl-prev i{
    font-size: 26px;
    padding-right: 4px;
}
.trip-content-carousel .owl-next{
    background: #FFFFFF;
    border:2px solid #FFE200!important;
    color: #FFE200!important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    font-size: 32px;
    position: absolute;
    right: -60px;
    top: calc(50% - 30px);
    text-align: center;
    border-radius: 20px;
    padding-left: 3px!important;
}

.trip-content-carousel .owl-next i{
    font-size: 26px;
    padding-left: 4px;
}

.trip-content-carousel .owl-prev:focus,
.trip-content-carousel .owl-next:focus{
    outline: 0;
}

.trip-content-carousel .item img{
    border-radius: 4px;
}

/* !CONTENT TRIP */

/* FOOTER */

.footer{
    padding: 18px 0px;
}


.copyright .copy{
    text-align: left;
    padding-left: 0px;
}
.copyright .copy p{
    margin-bottom: 0px;
}
.copyright .dev{
    text-align: right;
    padding-right: 0px;
}

.copyright .dev p{
    float: right;
    padding-right: 10px;
    margin-bottom: 0px;
}

.copyright .dev figure{
    float: right;
    width: 35px;
    padding-top: 0px;
}

.copyright .dev figure img{
    width: 100%;    
}

.footer-content{
    background-color: #242163;
    color: #FFFFFF;
    padding: 50px 0px;
}

.footer-content-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.footer-content-title::before{
    content: '';
    background-color: #FFE200;
    width: 70%;
    height: 4px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    border-radius: 4px;
}

.footer-content ul{}

.footer-content ul li {
    list-style: none;
}

.footer-content ul li a{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
    display: block;
}


.footer-content ul li a:hover,
.footer-content ul li a:focus{
    text-decoration: none;
    color: #EEEEEE;
}

.footer-content-image{
    margin-bottom: 20px;
}


.footer-content-image img{
    width: 180px;
}
.footer-content-text{
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-content-text a{
    color: #FFFFFF;
}

.footer-content-text a:hover,
.footer-content-text a:focus{
    color:#FFFFFF;
    text-decoration: none;
}



/* !FOOTER */

/* ABOUT */

.about-content{
    padding: 60px 0px 10px 0px;
}

.about-content-description{
    font-size: 16px;
    line-height: 30px;
}

.about-content-description a{
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    max-width: 100%;
}

.about-content-description img {
    float: left;
    max-width: 50%;
    margin: 0px 30px 20px 0px;
    border-radius: 5px;
}

/* !ABOUT */

/* DESTINY CONTENT */

.destiny-page-content{
    padding: 60px 0px;
}

.destiny-page-content-description{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;    
}

.destiny-page-content-description p{
    margin-bottom: 0px;
}

.destiny-page-content-item:nth-child(2n+1){
    padding-left: 0px;
}

.destiny-page-content-item:nth-child(2n+2){
    padding-right: 0px;
}

.destiny-page-content-item{
    margin-bottom: 30px;
}

.destiny-page-content-item-image{
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.destiny-page-content-item-title{
    position: absolute;
    bottom: 10px;
    right: 25px;
    z-index: 10;
    font-family: 'MidnightTwo';
    color: #FFFFFF;
    font-size: 30px;
    text-align: right;
}

.destiny-page-content-item-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,.7));
}

/* !DESTINY CONTENT */

/* CONTACT PAGE */

.contact-page{
    padding: 60px 0px;  
}

.contact-page-description{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.contact-page-content-form{

}

.contact-page-content-form .col-md-6:nth-child(odd){
    padding-left: 0px;
}
.contact-page-content-form .col-md-6:nth-child(even){
    padding-right: 0px;
}
.contact-page-content-form .col-md-12{
    padding: 0px;
}

.contact-page-content-form .form-control{
    background-clip: padding-box;
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 20px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 2px solid #ccc;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: none;
}


.contact-page-content-form textarea.form-control{
    height: auto;
    resize: none;
    padding: 20px;
}

.contact-page-content-form .form-control:focus{
    border-color: #FFE200!important;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 226, 0,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 226, 0,.6);
}

.contact-page-content-form-button button{
    width: 100%;
    display: block;
    margin-top: 20px;
    border: 2px solid #FFE200; 
    background-color: #FFE200;
    font-size: 16px;
    border-radius: 40px;
    padding: 8px 20px;
    color: #000000;
    font-weight: 500;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


.contact-page-content-form-button button:hover,
.contact-page-content-form-button button:focus{
    outline: 0;
    border: 2px solid #CCB400; 
    background-color: #CCB400;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/* !CONTACT PAGE */

/* GALLERY PAGE */

.gallery-content{
    padding: 60px 0px;
}

.gallery-content-description{
    font-size: 16px;
    line-height: 30px;
    margin-bottom:40px;
}

.gallery-content-description p{
    margin-bottom: 0px;
}



.gallery-content-items-item:nth-child(3n+1){
    padding-left: 0px;
}
.gallery-content-items-item:nth-child(3n+2){
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.gallery-content-items-item:nth-child(3n+3){
    padding-right: 0px;
}

.gallery-content-items-item-image{
    position: relative;
}

.gallery-content-items-item-image-border{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -3px;
    right: -3px;
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    z-index: 999;
    border-radius: 4px;
}

.gallery-content-items-item-image-border::after{
    content: '';
    width: 100%;
    height: 100%;
    bottom: -4px; 
    right:-4px;
    position: absolute;
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    z-index: 1000;
    border-radius: 4px;
}

.gallery-content-items-item-image img{
    border-radius: 4px;
    position: relative;
    z-index: 1001;
}

.gallery-content-items-item-title-button{
    margin: 20px 0px 20px 0px;
    text-align: center;
    height: 50px;
    line-height: 25px;
}

.gallery-content-items-item-title-button a{
    width: 100%;
    color: #222222;
    font-size: 18px;
    font-weight: 500;
}

.gallery-content-items-item-title-button a:hover,
.gallery-content-items-item-title-button a:focus{
    text-decoration: none;
}

/* !GALLERY PAGE */

/* INFORMATION PAGE */

.information-page{
    padding: 60px 0px;
}

.information-page-description{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
}

.information-page-description p:last-child{
    margin-bottom: 0px;
}

.information-page-search-content{
        width: 700px;
        margin: 0 auto;
        background-color: #EEEEEE;
        border-radius: 4px;
        display: flex;
        height: 65px;
}

.information-page-search-content input{
    background-color: transparent;
    width: 90%;
    padding: 0px 30px;
    font-size: 16px;
    border: none;
}

.information-page-search-content input:focus{
    outline: 0;
}


.information-page-search-content-button{}

.information-page-search-content-button button{
    height: 100%;
    width: 70px;
    border: none;
    background-color: transparent;
    padding-top: 6px;
}

.information-page-search-content-button button:focus{
    outline: 0;
}

.information-page-topics{
    margin-top: 50px;
}

.information-page-topics.full{
    margin-top: 60px;

}
.information-page-topics-item{
    margin-bottom: 30px;
    background-color: #EEEEEE;
    height: 90px;
    border-radius: 4px;
    line-height: 90px;
    padding: 0px 20px;
}

.information-page-topics-item a{
    color: #333333;
}

.information-page-topics-item a:hover,
.information-page-topics-item a:focus{
    text-decoration: none;
}


.information-page-topics .col-md-6:nth-child(2n+1){
    padding-left: 0px;
}
.information-page-topics .col-md-6:nth-child(2n+2){
    padding-right: 0px;
}

.information-page-topics-item-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    display: inline;
}

.information-page-topics-item-title img{
    width: 55px;
}


.information-page-topics-item-title.full::before{
    background-color: #FFE200;
    width: 100%;
    height: 6px;
    position: absolute;
    left:0px;
    bottom: -10px;
    border-radius: 4px;
}

.information-page-topics-item-title a{
    color: #222222;
}

.information-page-topics-item-title a:hover,
.information-page-topics-item-title a:focus{
    color: #CCB400;
}

.information-page-topics-item-title span{
    font-size: 22px;
    font-weight: 500
}

.information-page-topics-item-title span i{
    position: relative;
    top: 2px;
}

.information-page-topics-item-title.full span{
    font-size: 16px;
    font-weight: 500
}

.information-page-topics-item-items{}

.information-page-topics-item-items ul{}

.information-page-topics-item-items ul li{
    position: relative;
    margin-left: 22px;
    list-style: none;
    margin-bottom: 15px;
}

.information-page-topics-item-items ul li::before{
    content: '';
    background: url(/assets/images/set-right.png);
    background-repeat: no-repeat;
    position: absolute;
    left: -24px;
    top: 4px;
    width: 16px;
    height: 16px;
    background-size: 100%;
}

.information-page-topics-item-items ul li a{
    color: #222222;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.information-page-topics-item-items ul li a:hover,
.information-page-topics-item-items ul li a:focus{
    color: #777777;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
/* INFORMATION PAGE */


/* DESTINY INTERN PAGE */

.destiny-intern-page{}

.destiny-intern-page-content{}

.destiny-intern-page-content-tabs{
    margin: 30px 0px;
    border-bottom:2px solid #eee;
}

.destiny-intern-page-content-tabs ul{
    margin-bottom: 0px;
}

.destiny-intern-page-content-tabs ul li{
    display: inline;
}

.destiny-intern-page-content-tabs ul li a, .destiny-intern-page-content-tabs ul li div {
    display: inline-block;
    padding: 0px 10px 20px 10px;
    margin-right: 20px;
    font-weight: 500;
    font-size: 16px;
    color: #797979;
    position:relative;
    transition: width .3s;
}
.destiny-intern-page-content-tabs ul li a:hover,
.destiny-intern-page-content-tabs ul li a:focus,
.destiny-intern-page-content-tabs ul li a.active,
.destiny-intern-page-content-tabs ul li div:hover,
.destiny-intern-page-content-tabs ul li div:focus,
.destiny-intern-page-content-tabs ul li div.active {
    text-decoration: none;
    color: #CCB400;
}

.destiny-intern-page-content-tabs ul li a::before, .destiny-intern-page-content-tabs ul li div:before{
    content:'';
    position: absolute;
    bottom: -2.5px;
    left: 0px;
    width:0%;
    height: 4px;
    border-radius: 4px;
    background-color: #FFE200;
    transition: width .3s;
}

.destiny-intern-page-content-tabs ul li a:hover::before, .destiny-intern-page-content-tabs ul li div:hover::before{
    width:100%;
    transition: width .3s;
}

.destiny-intern-page-content-tabs ul li a.active::before, .destiny-intern-page-content-tabs ul li div.active::before{
    content:'';
    position: absolute;
    bottom: -2.5px;
    left: 0px;
    width:100%;
    height: 4px;
    border-radius: 4px;
    background-color: #FFE200;
}

.destiny-intern-page-content-tab-dados{}

.tab-content{
    display: none;
}

.tab-content ul{
    margin-left: 15px;
}

.tab-content ul li{
    margin-bottom: 5px;
    font-size: 16px;
}

.tab-content.active{
    display: block;
}

.destiny-intern-page-content-bundles{
    margin: 30px 0px
}

.destiny-intern-page-content-bundles-item{
    margin-bottom: 20px;
    border:1px solid #eeeeee;
    padding: 15px;
    border-radius: 8px;
}

.destiny-intern-page-content-bundles-item-image{
    border-radius: 4px;
    overflow: hidden;
}

.destiny-intern-page-content-bundles-item-title{
    margin: 5px 0px 10px 0px;
    font-weight: 600;
    font-size: 16px;
}

.destiny-intern-page-content-bundles-item-description{}

.destiny-intern-page-content-bundles-item-description ul{}

.destiny-intern-page-content-bundles-item-description ul li{
    position: relative;
    margin-left: 30px;
    list-style: none;
    margin-bottom:4px;
    font-weight: 500;
}

.destiny-intern-page-content-bundles-item-description ul li:before{
    content: '';
    background: url(/assets/images/check-ok.png);
    background-repeat: no-repeat;
    position: absolute;
    left: -30px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-size: 100%;
}

.destiny-intern-page-content-bundles-item-value{
    display: inline-flex;
}

.destiny-intern-page-content-bundles-item-value-text{
    text-align: right;
    color: #9F9F9F;
    font-size: 12px;
}

.content-destinations-item-value-text span{
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}


.destiny-intern-page-content-bundles-item-value-nro{
    font-weight: 600;
    font-size: 26px;
    margin-left: 10px;
    padding-top: 6px;
}

.destiny-intern-page-content-bundles-item-button a{
    display: block;
    width: 100%;
    border-radius: 40px;
    background-color: #FFE200;
    text-align: center;
    padding: 10px 0px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.destiny-intern-page-content-bundles-item-button a:hover,
.destiny-intern-page-content-bundles-item-button a:focus{
    background-color:#ccb400;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.destiny-intern-page-content-bundles-form{
    border:1px solid #EEEEEE;
    padding: 15px;
    border-radius: 6px;
    position: relative;
}

.destiny-intern-page-content-bundles-form-image{
    text-align: center;
}

.destiny-intern-page-content-bundles-form-image img{
    width:40%;
}

.destiny-intern-page-content-bundles-form-title{
    font-size: 20px;
    font-weight: 600;
    margin: 0px 0px 15px 0px;
}


.destiny-intern-page-content-bundles-form input{
    background-color: #EEEEEE;
    border: 2px solid #EEEEEE;
    box-shadow: none;
    margin-bottom: 14px;
    width: 100%;
    height: 40px;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 0px;
}

.destiny-intern-page-content-bundles-form input.has-error,.destiny-intern-page-content-bundles-form textarea.has-error{
    border-color:#FF0000!important;
}

.destiny-intern-page-content-bundles-form textarea{
    background-color: #EEEEEE;
    border: 2px solid #EEEEEE;
    box-shadow: none;
    margin-bottom: 0px;
    width: 100%;
    height: 90px;
    padding: 15px;
    border-radius: 4px;
    resize: none;
}

.destiny-intern-page-content-bundles-form button{
    display: block;
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    background-color: #FFE200;
    border:none;
    font-weight: 600;
    font-size: 16px;
}

.destiny-intern-page-content-bundles-form .error-msg {
    font-size: 12px;
    font-weight: 600;
    color: #FF0000;
    margin-top: 3px;
    height: 15px;
    margin-bottom: 5px;
}

.destiny-intern-page-content-bundles-form #Emensagem{
    margin-top: -4px;
    margin-bottom: 10px;
}

.destiny-intern-page-content-bundles-form input:focus,
.destiny-intern-page-content-bundles-form textarea:focus,
.destiny-intern-page-content-bundles-form button:focus{
    outline: 0;
}

.destiny-intern-page-content-bundles-form-loading{
    display: none;
    background-color:rgb(255, 215, 0, .8);
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    bottom:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    text-align: center;
}

.destiny-intern-page-content-bundles-form-loading-content{
    position: relative;
    top: calc(50% - 45px);
}

.destiny-intern-page-content-bundles-form-loading-text{
    color: #FFFFFF;    
    font-size: 18px;
    font-weight: 500;
    margin-top:10px
}

.destiny-intern-page-content-bundles-form-danger{
    display: none;
    background-color:#ff4d4dcc;
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    bottom:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    text-align: center;
}

.destiny-intern-page-content-bundles-form-danger-content{
    position: relative;
    top: calc(50% - 45px);
}

.destiny-intern-page-content-bundles-form-danger-text{
    color: #FFFFFF;    
    font-size: 18px;
    font-weight: 500;
    margin-top:10px
}

.destiny-intern-page-content-bundles-form-success{
    display: none;
    background-color:rgb(76,166,76, .8);
    position: absolute;
    top: 0px;
    left:0px;
    right:0px;
    bottom:0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 4px;
    text-align: center;
}

.destiny-intern-page-content-bundles-form-success-content{
    position: relative;
    top: calc(50% - 45px);
}

.destiny-intern-page-content-bundles-form-success-text{
    color: #FFFFFF;    
    font-size: 18px;
    font-weight: 500;
    margin-top:10px
}

/* !DESTINY INTERN PAGE */


/* */


.tab-content p{
    font-size: 16px;
    line-height: 30px;
}

.tab-content h1{
    color: #FFE200;
}
.tab-content h2{
    color: #FFE200;
}
.tab-content h3{
    color: #FFE200;
}
.tab-content h4{
    color: #FFE200;
}
.tab-content h5{
    color: #FFE200;
}
.tab-content h6{
    color: #FFE200;
}

.tab-content p:last-child{
    margin-bottom: 0px;
}

.galeria-destino{
    padding-top: 40px;
}

.destiny-intern-page-content-tab-dados-text{
    padding-bottom: 60px;
}

/* */


/* QUESTION PAGE */

.question-page{
    padding: 60px 0px;
}

.question-page-content{}

.question-page-content-subtitle{
    position: relative;
    margin-bottom: 20px;
}

.question-page-content-subtitle::before{
    content: '';
    position: absolute;
    bottom: -12px;
    left: 1px;
    height: 2px;
    width: 30px;
    z-index: 1;
    background-color: #FFE200;
}

.question-page-content-subtitle a{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    color: #222222;
}


.question-page-content-subtitle a:hover,
.question-page-content-subtitle a:focus{
    text-decoration: none;
    color: #3d3d3d;
}

.question-page-content-title{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #CCB400;
}

.question-page-content-image{
    margin: 30px 0px;
    border-radius: 4px;
    overflow: hidden;
}


.question-page-content-description{}

.question-page-content-description p{
    font-size: 16px;
    line-height: 30px;
}

.question-page-content-description a{
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    max-width: 100%;
}


.question-page-content-description a:hover,
.question-page-content-description a:focus{
    text-decoration: none;
}

.question-page-content-description ul{
    margin: 20px 0px 20px 20px;
}

.question-page-content-description ul li{
    margin-bottom:10px;
}

.question-page-content-description p:last-child{
    margin-bottom: 0px;
}

.question-page-sidebar-title{
    font-size: 18px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}

.question-page-sidebar-title::before{
    content: '';
    background-color: #FFE200;
    width: 80%;
    height: 4px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    border-radius: 4px;
}

.question-page-sidebar-list ul{}

.question-page-sidebar-list ul li{
    position: relative;
    margin-left: 22px;
    list-style: none;
    margin-bottom: 15px;
}

.question-page-sidebar-list ul li::before{
    content: '';
    background: url(/assets/images/set-right.png);
    background-repeat: no-repeat;
    position: absolute;
    left: -24px;
    top: 4px;
    width: 16px;
    height: 16px;
    background-size: 100%;
}

.question-page-sidebar-list ul li a{
    color: #222222;
    text-decoration: none;
    font-size: 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.question-page-sidebar-list ul li a:hover,
.question-page-sidebar-list ul li a:focus{
    color: #777777;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/* !QUESTION PAGE */

/* GALLERY INTERN */

.gallery-intern{
    padding: 60px 0px;
}

.gallery-intern-description{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.gallery-intern-item{
    margin-bottom: 20px;
}

.gallery-intern-item img{
    border-radius: 4px;
    overflow: hidden;
}

.gallery-intern-item:nth-child(3n+1){
    padding-left:0px;
}

.gallery-intern-item:nth-child(3n+2){
    padding: 0px 7.5px;
}

.gallery-intern-item:nth-child(3n+3){
    padding-right: 0px;
}

/* !GALLERY INTERN */

/* ABOUT CONTENT VALORY */

.about-content-valory{
    padding: 0px 0px 60px 0px;
}

.about-content-valory-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}

.about-content-valory-title::before{
    content: '';
    background-color: #FFE200;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    border-radius: 4px;
}

.about-content-valory-description{
    font-size: 16px;
    line-height: 30px;
    margin: 20px 0px 20px 0px;
}

/* !ABOUT CONTENT VALORY */


/* ABOUT-CONTENT-TEAM */

.about-content-team{
    padding: 0px 0px 60px 0px;
}

.about-content-team-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 50px;
}

.about-content-team-title::after{
    content: '';
    background-color: #FFE200;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    border-radius: 4px;
}

.about-content-team-items{}

.about-content-team-items-item{
    text-align: center;
    margin-bottom: 20px;
}

.about-content-team-items-item-image{
    margin-bottom: 12px;
    text-align:center;
}

.about-content-team-items-item-image img{
    width: 75%;
    border-radius: 50%;
}

.about-content-team-items-item-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.about-content-team-items-item-subtitle{
    font-size: 16px;
    font-weight: 300;
    position: relative;
    margin-bottom: 2px;
}

/* !ABOUT-CONTENT-TEAM */

/* depositions-content */

.depositions-content{
    padding: 50px 0px;
    background-color: #EEEEEE;  
}

.depositions-content-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}

.depositions-content-title:before{
    content: '';
    background-color: #FFE200;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    border-radius: 4px;
}

.depositions-content-items{}


.depositions-content-items .col-md-3:nth-child(4n+1){
    padding-left:0px;
    padding-right: 12px;
}

.depositions-content-items .col-md-3:nth-child(4n+2){
    padding-left:5px;
    padding-right: 15px;
}

.depositions-content-items .col-md-3:nth-child(4n+3){
    padding-left:0px;
    padding-right: 15px;
}

.depositions-content-items .col-md-3:nth-child(4n+4){
    padding-right:0px;
    padding-left: 2px;
}

.depositions-content-item{
    background-color: #FFFFFF;
    border:1px solid #DEDEDE;
    padding: 15px;
    border-radius: 4px;
}

.depositions-content-item-info{
    display: inline-flex;
    line-height: 50px;
}

.depositions-content-item-info-image{
    width: 50px;
}

.depositions-content-item-info-image img{
    width: 100%;
    border-radius: 50%;
}

.depositions-content-item-info-title{
    font-weight: 500;
    margin-left: 10px;
    font-size: 18px;
}

.depositions-content-item-info-title a,
.depositions-content-item-info-title a:hover
.depositions-content-item-info-title a:focus{
    color: #000000;
    text-decoration: none;
}

.depositions-content-item-description{
    font-size: 16px;
    line-height: 25px;
    margin-top: 5px;
    color: #6F6F6F; 
}

.depositions-content-item-description a{
    color: #000000;
}

.depositions-content-item-description a:hover,
.depositions-content-item-description a:focus{
    color: #000000;
    text-decoration: none;
}

.content-info-modal{
    display: inline-flex;
    line-height: 59px;
}

.content-info-modal-image{
    width: 50px;
}

.content-info-modal-image img{
    width: 100%;
    border-radius: 50%;
}

.content-info-modal-title{
    font-weight: 600;
    margin-left: 15px;
    font-size: 16px;
}

.content-info-description{
    margin-top: 20px;
    font-weight: 16px;
    line-height: 25px;
}


/* depositions-content */

/* MEDIA CONTENT */

.media-content{
    padding: 50px 0px;  
}

.media-content-title{
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
}

.media-content-title::before{
    content: '';
    background-color: #FFE200;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0px;
    bottom: -10px;
    border-radius: 4px;
}

.media-content-description{
    font-size: 16px;
    line-height: 30px;
}

.media-content-description p:last-child{
    margin-bottom: 0px;
}

.media-content-button{
    margin-top: 30px;
}

.media-content-button a{
    background-color: #FFE200;
    border-radius: 40px;
    padding: 10px 20px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}

.media-content-button a:hover,
.media-content-button a:focus{
    text-decoration: none;
    background-color: #ccb400;
}

/* !MEDIA CONTENT */

/* Error Content */

.error-view-button{
    color: #000;
    background-color: #FFE200;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
}

.error-view-button:hover{
    text-decoration: none;
    background-color: #CCB400;
}

.whatsapp_btn {
    background: #34af23;
    color: #fff;
    border-radius: 20px;
    position: fixed;
    bottom: 40px;
    left: 40px;
    font-size: 30px;
    z-index: 1005;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
}

.whatsapp_btn span {
    font-size: 16px;
    margin-left: 10px;
    margin-top: 2px;
}

.whatsapp_btn:hover {
    color: #fff;
    text-decoration: none;
}

.blog-item {
    max-width: 900px;
}

.blog-item::after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background-color: #eeeeee;
    border-radius: 1px;
    margin-bottom: 30px;
    margin-top: 15px;
}

.blog-item a {
    display: block;
    cursor: pointer;
}

.blog-item a:hover {
    text-decoration: none;
}

.blog-cover {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    margin-bottom: 30px;
}

.blog-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0 5px;
}

.blog-title a {
    color: #333;
}

.blog-item p {
    color: #333;
    font-size: 16px;
    line-height: 30px;
}

.category-title {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
}

.category-list {
    padding: 0;
    list-style: none;
}

.category-list a {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 10px;
}

.post-content{
    padding-bottom: 30px;
}

.post-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
}

.post-content p + p {
    margin-top: 30px;
}

.post-back {
    width: max-content;
    background: #fff;
    color: #333;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.post-back:hover {
    color: #333;
    text-decoration: none;
}

.post-back span {
    font-size: 16px;
    line-height: 24px;
    margin-left: 6px;
}

.blog-item .blog-info {
    color: #9F9F9F;
    font-size: 14px;
    line-height: 30px;
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 14px;
    align-items: center;
    margin-top: 16px;
}

.blog-item .blog-info span {
    background: #ededed !important;
    display: block !important;
    padding: 1px 16px !important;
    color: #676767;
    border-radius: 30px;
    font-weight: 600;
}

.blog-item .blog-info a {
    color: #676767;
}

.blog-page {
    margin-bottom: 37px !important;
}

.blog-page::before {
    bottom: -16px !important;
}

.blog-page-list {
    margin-top: 10px !important;
}

.text-grey {
    color: #9F9F9F;
    cursor: pointer;
}

.image-midia-box{
    width: 50%;
    margin-left: 10px;
    margin-top: 25px;
}

.border-midia-box{
    border: 1px solid #ccc;
    height: 290px;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.container-midia{
    padding: 0 !important;
}

.title-midia-box{
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    margin-left: 8px;
    font-weight: 600;
}

.title-midia-box a{
    color: #000;
}

.title-midia-box a:hover{
    color: #666;
    text-decoration: none;
}

.resume-midia-box{
    width: 100%;
    font-size: 15px;
    line-height: 30px;
    color: #000;
    margin-top: 10px;
    margin-left: 8px;
}

.resume-midia-box a{
    color: #000;
}

.resume-midia-box a:hover{
    color: #666;
    text-decoration: none;
}

.text-page-midia{
    font-size: 16px;
    line-height: 30px;
}

.text-page-midia a{
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.text-page-midia img.fonte-midia{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}