
/* geral */
body,html
{
    overflow-x: hidden;
}
.hide,
.hidden{
    display: none!important;
}
.show{
    display: block!important;
}

.overflow{
    overflow-y: hidden;
}

textarea,
input,
select,
button,
body{
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

hr{
    margin: 0;
}

img{
    max-width: 100%;
}

.in{
    max-width: 1140px;
    padding: 0px 24px;
}

.in_s{
    padding: 0px 15px;
    max-width: 800px;
}

.in_l{
    max-width: 1400px;
}

.in_xl{
    max-width: 1800px;
    padding: 0px 24px;
    position: relative;
    margin: 0 auto;
}

/* texto */
.txt p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.txt h3{
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
}

.txt h4{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.txt p a{
    text-decoration: underline;
    color: #828282;
}

.txt p a:hover{
    color: #FF0000;
}

.txt p strong{
    font-weight: 600;
}

.txt p em{
    font-style: italic;
}

/* SUMO SELECT*/

.SumoSelect{
    width: 100%;
}

.SumoSelect > .optWrapper > .options li label {
    line-height: 24px;
}

.SumoSelect>.optWrapper>.options li.opt{
    padding: 16px;
    background-color: #000;
    color: #fff;
    border: none;
}

.SumoSelect>.CaptionCont{
    line-height: 24px;
    padding: 16px;
    background: none;
    border: 1px solid #000;
    border-width: 0 0 1px 0;
    border-radius: 0px;
}

.SumoSelect>.optWrapper>.options li.opt:hover{
    background-color: #fff;
    color: #000;
    border: none;
}

.SumoSelect.open>.CaptionCont, .SumoSelect:focus>.CaptionCont, .SumoSelect:hover>.CaptionCont{
    box-shadow: none;
    border-color: initial;
    border-color: rgba(0,0,0, 0.2);
}

.SumoSelect>.optWrapper{
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.SumoSelect>.optWrapper>.options{
    border-radius: 0;
    max-height: 224px;
}

.SumoSelect>.optWrapper>.options>li.opt:first-child, .SumoSelect>.optWrapper>.options>li.opt:last-child{
    border-radius: 0;  
}

.SumoSelect.open>.optWrapper{
    top: 68px;
}

.SumoSelect.open .search-txt{
    padding: 16px
}

.SumoSelect .no-match{
    padding: 16px;
    line-height: 24px;
}


/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 28px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 1px solid #000;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.radio label:hover:before{
    border: 1px solid #024562;
}

.radio label:after{
    content: " ";
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 100%;
    opacity: 0;

}

.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    position: relative;
    cursor: pointer;
    font-size: 14px;
    line-height: 22px;
}

.checkbox label:before{
    font-family: 'signed';
    content: "\e937";
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    border: 1px solid #000;
    color: rgba(0, 0, 0, 0);
    margin-right: 8px;
}

.checkbox input[type=checkbox]:checked ~ label:before{
    color: #000;
    opacity: 1;
    font-size: 14px;
    line-height: 22px;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    overflow: hidden;
}
.lb_frame{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
}

.lb_area{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.lb_cortina{
    background: #FF0000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    opacity: 0;
}

.lb_anim_arranque{
    display: block;
}

.lb_anim_arranque .lb_frame{
    margin-left: -100vw;
}
.lb_anim_aberto .lb_frame{
    margin-left: 0px;
}
.lb_anim_fechado .lb_frame{
    margin-left: 100vw;
}

.lb_anim_arranque .lb_cortina{
    opacity: 0;
}
.lb_anim_aberto .lb_cortina{
    opacity: 1;
}
.lb_anim_fechado .lb_cortina{
    opacity: 0;
}

.lb_x{
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 2;
    transition: all 300ms ease-out;
    cursor: pointer;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
}

.lb_x:after{
    content: '\e9c1';
    font-family: 'signed';
    font-size: 24px;
    color: #fff;
    width: 25px;
    line-height: 25px;
    position: absolute;
    height: 25px;
    text-align: center;
    vertical-align: middle;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.lb_x:hover:after{
    color: #FF0000;
}

.lb_in{
    width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

.lb_cont{
    background: #fff;
    width: auto;
    width: 100%;
    max-width: 1140px;
    display: block;
    margin: 0px auto;
    position: relative;
    box-sizing: border-box;
    flex: auto;
    padding: 30px;
}


/* accordion */

.accordion{
}

/* slider */

.slider{
    position: relative;
}

.slider.banner{
    background: #000;
}

.slider.banner .slider-button-prev,
.slider.banner .slider-button-next{
    position: absolute;
    padding: 32px 64px;
    bottom: 0;
    right: 128px;
    display: block;
    z-index: 2;
    cursor: pointer;
    background: #FFF;
}

.slider.banner .slider-button-next:before, .slider.banner .slider-button-prev:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 50%;
    background-color: rgba(0,0,0, 0.2);
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
}

.slider.banner .slider-button-next:hover:after, .slider.banner .slider-button-prev:hover:after{
    color: #FF0000;
}

.slider.banner .slider-button-prev:before{
    right: 0px;
    left: auto;
}

.slider.banner .slider-button-next{
    left: auto;
    right: 0px;
}

.slider:hover > .slider-button-prev{

}
.slider:hover > .slider-button-next{

}

.slider.banner .slider-button-prev:after,
.slider.banner .slider-button-next:after{
    content: '\e9a2';
    font-family: 'signed';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.slider.banner .slider-button-next:after{
    content: '\e9a1';
    font-family: 'signed';
}

.slider.banner .slider-button-prev:hover::after,
.slider.banner .slider-button-next:hover::after{
    border-color: rgba(255,255,255,1);
}

.swiper-pagination-bullet{
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,1);
}
.swiper-pagination-bullet-active{
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

.swiper-pagination-bullets-dynamic{
    overflow: visible;
}

.model .slider-button-prev:after,
.model .slider-button-next:after{
    content: '\e99e';
    font-family: 'signed';
    font-size: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    color: #FFF;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.model .slider-button-prev:hover:after,
.model .slider-button-next:hover:after{
    color: #FF0000;
}

.model .slider-button-next:after{
    content: '\e99d';
    font-family: 'signed';
}

.model .swiper-button-disabled{
    opacity: 0.5;
    color: #FFF;
    cursor: auto;
}

.model .swiper-button-disabled:hover:after{
    color: #FFF;
}


.model .slider-button-prev,
.model .slider-button-next{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    z-index: 2;
    cursor: pointer;
    width: 25px;
    height: 25px;
    padding: 10px;
}

.model .slider-button-next{
    right: 0;
    left: auto;
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/


/* GENERAL ELEMENTS */

.button{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #000;
    background-color: #FFF;
    padding: 24px 24px;
    letter-spacing: 2px;
    cursor: pointer;
}

.button.reverse{
    color: #fff;
    background-color: #000;
}

a.button:hover{
    color: #FF0000;
}

.button:hover{
    color: #FF0000;
}

.h1{
    font-weight: 300;
    font-size: 56px;
    line-height: 64px;
}

.h2{
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
}

.h3{
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
}

.h4{
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
}

.p{
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.p_xs{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.link{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 4px;
    color: #000;
}

.link:after{
    content: '';
    border-bottom: 2px solid #000;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

a.link:hover{
    color: #FF0000;
}

.link:hover:after{
    border-bottom: 2px solid #FF0000;
}

.ttu{
    text-transform: uppercase;
}

.ttc{
    text-transform: capitalize;
}

.bg_c_b{
    background-color: #000;
}

.bg_c_g{
    background-color: #F2F2F2;
}

.bg_c_w{
    background-color: #FFF;
}

.bc_opc_b{
    border-color: rgba(0,0,0, 0.2);
}

.c_w{
    color: #FFF;
}

.c_dg{
    color: #5C5C5C;
}

.c_g{
    color: #828282;
}

.c_b{
    color: #000;
}


.m_t_176{
    margin-top: 176px;
}

.m_t_56{
    margin-top: 56px;
}

.m_b_56{
    margin-bottom: 56px;
}

.m_t_32{
    margin-top: 32px;
}

.m_t_16{
    margin-top: 16px;
}

.m_b_8{
    margin-bottom: 8px;
}

.m_t_8{
    margin-top: 8px;
}

.m_t_24{
    margin-top: 24px;
}

.section{
    padding: 140px 0px;
}

.section.title_categories{
    padding: 0 0 140px 0;
}

.section.main_banner, .section.model_profile{
    padding: 0 0;
}

.section.model_gallery{
    padding: 140px 0;
}

.section.models_categories{
    padding: 80px 0;
}

.section.welcome, .section.pol_priv_text{
    padding: 80px 0 40px 0;
}
.section.models{
    padding: 20px 0 140px 0;
}

.section.contact_us{
    padding: 40px 0;
}

.section.contacts{
    padding: 80px 0 140px 0;
}

.section.pol_priv{
    padding: 40px 0;
}

.section.error_404{
    padding: 80px 0;
}

.section.apply{
    padding: 40px 0;
}

.section.contact_form{
    padding: 60px 0;  
}

.section.model_profile .in_xl > .container{
    padding: 80px 0 0 0;
}

.section.model_gallery .in_xl > .container{
    padding: 56px 80px 56px 80px;
}

.section.model{
    padding: 0 0 140px 0;
}

/* HEADER */

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

.header .top{
    padding: 5px 0px;
    z-index: 3;
    position: relative;
}

.menu_mobile{
    padding: 24px 0 24px 0;
    z-index: 1;
    margin-top: -555px;
    background-color: #FF0000;
    display: none;
}

.menu_mobile.active{
    margin-top: 0px;
}

.menu_mobile_button{
    width: 40px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
    cursor: pointer;
}

.menu_mobile_button span{
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.menu_mobile_button span:nth-child(1) {
    top: 0px;
}

.menu_mobile_button span:nth-child(2), .menu_mobile_button span:nth-child(3) {
    top: 10px;
}

.menu_mobile_button span:nth-child(4) {
    top: 20px;
}

.menu_mobile_button.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.menu_mobile_button.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu_mobile_button.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu_mobile_button.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.menu_mobile_button{
    display: none;
}


.nav_link{
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    text-transform: uppercase;
}

.nav_link a:hover{
    color: #FF0000;
}

.pag_category .nav_link.category a{
    color: #FF0000;
}

.pag_contacts .nav_link.contacts a{
    color: #FF0000;
}

.section.contacts .row.bottom .staff > .container > .content{
    margin-top: -20px;
    margin-bottom: -20px;
}

.pag_apply .nav_link.apply a,
.pag_agency .nav_link.agency a
{
    color: #FF0000;
}

.langs{
    margin-bottom: 10px;
}

.nav_mobile_link{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.nav_mobile .nav_mobile_link:first-child{
    margin-top: 0px;
}

.network_link{
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    cursor: pointer;
}

.network_link a:hover i{
    color: #FF0000;
}

.network_link i{
    vertical-align: middle;
}

.search .search_button{
    cursor: pointer;
    padding: 8px 8px 8px 8px;
    z-index: 2;
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: auto;
    top: auto;
}

.search .search_button .icon{
    vertical-align: middle;
    opacity: 0.3;
}

.search .icon:hover{
    color: #FF0000;
    opacity: 1;
}

.search_input{
    width: 200px;
    position: relative;
    height: auto;
    background: white;
    z-index: 1;
    border-bottom: 1px solid rgba(0,0,0, 0.2);
    padding-left: 8px;
    padding-right: 32px;
    height: 40px;
    line-height: 40px;
}

.search_input.active{
    width: calc(100% - 32px);
    padding-left: 32px;
}

.menu_mobile .search_input.active{
    width: calc(100% - 32px);   
}

.menu_mobile .search_input{
    background: #FF0000; 
    border-bottom: 1px solid rgba(255,255,255, .6);
    color: #FFF;   
}

.menu_mobile input.search_input:focus{
    border-bottom: 1px solid rgba(255,255,255, 1);
}

.menu_mobile .search .icon:hover{
    color: #FFF;
}

.menu_mobile .network_link a:hover i{
    color: #FFF;
}

.social.fade{
    opacity: 0;
}

/* FOOTER */


.footer .row.top{
    padding: 35px 0;
}

.footer .row.bottom{
    padding: 24px 0;
}

.footer .team_link, .footer .copyright{
    font-size: 12px;
    line-height: 20px;
}

.quick_access_link{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.lang_link{
    font-size: 12px;
    margin-left: 10px;
    height: 15px;
    line-height: 15px;
}

.lang_link.active{
    font-weight: 800;
}
.quick_access_link a:hover, .lang_link a:hover, .team_link:hover{
    opacity: 0.5;
}

.footer .contacts .title{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.footer .contacts .address, .phone_link{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

/* MOMENT TIMEZONE */

.jcgmt-container .jcgmt-lbl, .jcgmt-container .jcgmt-date{
    display: none;
}

.jcgmt-digital{
    font-family: 'ttbbb';
    margin-right: 0px;
    margin-left: 0px;
    font-size: 48px;
    line-height: 48px;
    font-weight: 400;
    padding: 8px 8px;
    color: #FFF;
    background-color: #000;
    max-width: 96px;
    margin: auto;
    text-align: center;
}

.jcgmt-container{
    float: none;
    padding: 0px;
}

/* HOMEPAGE */

.main_banner .img img{
    height: calc(100vh - 154px);
    object-fit: cover;
    width: 100%;
}

.main_banner .slide_info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1140px;
    padding: 0 24px;
    box-sizing: border-box;
}

.main_banner .slide_info_in{
    width: 60%;
}

.main_banner .slide_info_in .phrase{
    font-size: 40px;
    line-height: 48px;
    font-weight: 300;
    padding-right: 80px;
}

.main_banner .slide_info_in .interaction{
    padding-right: 80px;
}

.main_banner .slide_info_in .phrase span{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    display: block;
}

.country_clock .country{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #FF0000;
}

.category .title{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.category .container:hover .title{
    color: #FF0000;
}

.category .container:hover img{
    transform: scale(.9);
}


.model{
    margin-bottom: 32px;
}

.model:nth-last-child(-n+4){
    margin-bottom: 0px;
}

.model .title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
}

.model .overlay{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
}

.model .container:hover .overlay{
    background-color: rgba(0, 0, 0, 0.8);
}

.model .container:hover .title{
    color: #FF0000;
}


.model .container:hover .overlay_info{
    opacity: 1;
}

.model .container{
    cursor: pointer;
}

.overlay_info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
}

.overlay_info .attribute{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500; 
    text-align: center;
    cursor: pointer;
    margin-top: 8px;  
}

.overlay_info .attribute:first-child{
    margin-top: 0px;  
}

.overlay_info .attribute span{
    font-weight: 400;
}

.filter_link{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    cursor: pointer;
}

.filter_link.active,
.filter_link_sub.active{
    color: #FF0000
}

.filter_link:hover{
    color: #FF0000
}

.section.model_profile .name{
    width: 1140px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: content-box;
}

.section.model_profile .img{
    max-width: 570px;
    margin-bottom: -80px;
    padding-left: 40px;
    box-sizing: content-box;
}

.section.model_profile .img img{
    height: auto;
}


.section.model_profile .text{
    max-width: 50%;
    margin-bottom: -80px;
}

.pag_model_profile .section.model_profile{
    z-index: 2;
}

.pag_model_profile .section.models_categories{
    z-index: 1;
}

.model_profile .info_in .text{
    padding: 80px;
}

.attributes .attribute{
    font-size: 16px;
    line-height: 32px;
    font-weight: 500; 
    cursor: pointer;
    margin-top: 8px;  
}

.attributes .attribute span{
    font-size: 24px;
    line-height: 32px;
    min-width: 200px;
    display: inline-block;
}

.attributes .attribute:first-child{
    margin-top: 0px;
}

.tab_link{
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    cursor: pointer;
}

.tab_link:hover{
    color: #ff0000;   
}

.tab_link.active{
    color: #ff0000;
}

.emails .email, .locations .location, .phones .phone{
    margin-top: 16px;
}

.emails .email:first-child, .locations .location:first-child, .phones .phone:first-child{
    margin-top: 0px;
}

.email .title, .location .title, .phone .title{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.email .email_link a, .location .address, .phone .number a{ 
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.input input{
    padding: 16px;
    border-bottom: 1px solid #000;
    width: 100%;
    box-sizing: border-box;
    width: 100%;
}



.input:hover input, .input input:focus{
    border-color: rgba(0,0,0, 0.2);
}

.input input::placeholder, .text_area textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  opacity: 1; /* Firefox */
}

.input input:-ms-input-placeholder, .text_area textarea:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  color: #000000;
}

.input input::-ms-input-placeholder, .text_area textarea::-ms-input-placeholder { /* Microsoft Edge */
  color: #000000;
}

.text_area textarea{
    padding: 16px;
    border: 1px solid #000;
    min-width: 100%;
    min-height: 300px;
    box-sizing: border-box;
}

.text_area:hover textarea, .text_area textarea:focus{
    border-color: rgba(0,0,0, 0.2);
}

.input_label{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.input_label_s{
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: rgba(0,0,0, 0.6);
}

.rgpd{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.rgpd a{
    text-decoration: underline;
    text-underline-position: under;
}

.map iframe{
    width: 100%;
}

.macy_grid .img img{
    cursor: pointer;
}

.lb.model .lb_cont{
    background: none;
    height: 100%;
    padding: 45px 45px 0 45px;
}

.slider.model{
    height: 100%;
}



.section.agency{
    padding: 0 0 140px 0;
}

.section.agency .in_xl > .container{
    padding: 80px 0 0 0;
}

.section.agency .title{
    width: 1140px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: content-box;
}

.section.agency .img{
    max-width: 570px;
    margin-bottom: -80px;
    padding-left: 40px;
    box-sizing: content-box;
}

.section.agency .img img{
    height: auto;
}

.agency .info_in .text {
    padding: 80px;
}

.section.agency .text{
    max-width: 50%;
    margin-bottom: -80px;
}

.section.agency .text .title{
    padding: 0 0;
}

.pag_model_profile .section.model_profile{
    z-index: 2;
}

.pag_model_profile .section.models_categories{
    z-index: 1;
}

.model_profile .info_in .text{
    padding: 80px;
}

.block_top{
    position: absolute;
    width: calc(100% - 48px);
    max-width: 1800px;
    height: calc(100vh - 147px);
    top: 0;
    left: 24px;
}

.ct.content {
    line-height: 0;
}

.reg{
    font-weight: 400;
}

.upload_button{
    position: relative;
}

[type="file"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap;
  width: 1px; 
}

.upload_button label {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    height: 48px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 48px;
}

.upload_button label:hover{
    color: #FF0000;
}



.nav_link.contacts a,
.nav_link.agency a,
.nav_link.apply a
{
    color: #ccc;
    font-weight: 500;
}
.nav_link.contacts a:hover,
.nav_link.agency a:hover
{
    color: #FF0000;
}

.nav_link.apply a
{
    color: #fff;
}
.nav_link.apply
{
    margin-left: 5px;
    background: #ccc;
    padding: 10px 10px;
}
.nav_link.apply:hover
{
    background: #FF0000;
}
.pag_apply .nav_link.apply a
{
    color: #fff;
}
.pag_apply .nav_link.apply
{
    background: #FF0000;
}
.it.lang
{
    margin-right: 20px;
}

.hrt-go-top{
    position: fixed;
    padding: 32px 40px;
    bottom: 25vh;
    right: 24px;
    display: none;
    z-index: 2;
    cursor: pointer;
    background: #FFF;
    bottom: 0;
}

.hrt-go-top:hover:after{
    color: #FF0000;
}


.hrt-go-top:after
{
    content: '\e9a0';
    font-family: 'signed';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}


.hrt-go-top:hover::after{
    border-color: rgba(255,255,255,1);
}

.pag_category .hrt-go-top.active,
.pag_model .hrt-go-top.active,
.pag_news .hrt-go-top.active
{
    display: block;
}

.main_banner .button {
    padding: 10px 0px 0px 10px;
    margin: 0;
    background: transparent;
    /*border-bottom: 1px solid #fff;*/
    color: #5d5656;
    font-size: 10px;
}
.main_banner .slide_info_in .phrase b.secondWord{
    /*border-bottom: 1px solid #FF0000;*/
    /*display: inline;*/
}
.main_banner .img .mobile{
    display: none;
}
.main_banner .slide_info_in .phrase strong {
    background: url('/_sws/assets/img/brush.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-bottom: 10px;
}

.error_field,
label.error_field:before
{
    border-color: #FF0000!important;
}

.button.loading {
    color: rgba(255,255,255,0);
    pointer-events: none;
}
.button.loading:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 20px;
    position: absolute;
    background: transparent;
    transform: translate(-50%,-50%);
    border: 5px solid #fff;
    border-left-color: transparent;
    border-right-color: transparent;
    left: calc(50%);
    top: calc(50%);
    transform: translate(-50%,-50%);
    animation-name: button_loading_animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes button_loading_animation{
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.maintenance .in{
    max-width: 500px;
}

.maintenance .logo img{
    max-width: 150px;
    display: block;
    margin: auto;
}

.maintenance .title span{
    display: block;
}

.section.video_intro{
    padding: 0;
    background: #000;
}

.video_intro_framed{
    position: relative;
}

.video_intro_framed.ativo{
    margin: 0 auto;
    max-width: calc( (100vh - 155px)*1.78 );
}

.video_intro_el {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video_intro_el iframe,
.video_intro_el object,
.video_intro_el embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.column_logo{
    margin-right: auto;
}

.ct_menu_in_lang a{
    color: #fff;
    font-size: 16px;
}

.copyright a{
    color: inherit;
    text-decoration: underline;
}

.copyright a:hover{
    color: #000;
}

.it_noticia_li a{
    display: block;
    color: #000;
}

.noticia_li_txt{
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
}

.noticia_li_txt h5,
.noticia_li_txt p{
    display: inline;
    font-size: 18px;
    line-height: 22px;
}

.noticia_li_txt p{
    display: inline;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.noticia_li_img{
    position: relative;
    overflow: hidden;
    font-size: 0px;
    margin-bottom: 15px;
    line-height: 0;
}

.it_noticia_li{
    margin-bottom: 40px;
}


.noticias_lista > li.it_noticia_li:nth-child(even) .noticia_li_txt{
    -webkit-line-clamp: 7;
}

.noticias_lista > li.it_noticia_li:nth-child(even) .noticia_li_img img{
    margin-bottom: -24px;
}

.home_noticias{
    padding: 75px 25px;
}

.home_noticias_sep{
    height: 35px;
}

.noticia_preto{
    height: 150px;
    background: #000;
}

.noticia_img{
    line-height: 0px;
    font-size: 0px;
}

.noticia_corpo{
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.section.noticia_corpo{
    padding: 0px;
}

.noticia_topo_txt{
    margin-top: 150px;
}

.noticia_topo_txt a{
    color: #000;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
    padding-bottom: 0px;
    border-bottom: 1px solid #000;
    line-height: 20px;
}


.noticia_topo_txt a:hover{
    opacity: 0.5;
}

.noticia_tit{
    font-weight: 300;
    font-size: 40px;
    line-height: 50px;
    margin-top: 50px;
}

.noticia_data{
    margin-top: 50px;
}

.section.noticia_corpo_txt{
    background: #F2F2F2;
    position: relative;
    z-index: 1;
    padding-top: 150px;
    margin-top: -100px;
}

.noticia_bg{
    background: #fff;
    padding: 50px;
}

.noticia_txt{
    position: relative;
    max-width: 750px;
    margin: 0px auto;
    display: block;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.nn_corpo .noticia_txt{
    max-width: 100%;
}

.noticia_txt,
.noticia_txt p{
    display: block;
    min-height: 30px;
    text-align: justify;
}

.noticia_txt strong,
.noticia_txt b{
    font-weight: 600;
}

.noticia_txt em,
.noticia_txt i{
    font-style: italic;
}

.noticia_txt a{
    color: inherit;
    text-decoration: underline;
}

.noticia_txt a:hover{
    color: red;
}

.noticia_txt ul li{
    list-style: circle;
}

.noticia_txt h1,
.noticia_txt h2,
.noticia_txt h3,
.noticia_txt h4,
.noticia_txt h5,
.noticia_txt h6{
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
    margin: 10px 0px;
}

.noticia_video{
    position: relative;
}

.noticia_video_frame{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.noticia_video_frame iframe,
.noticia_video_frame object,
.noticia_video_frame embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rp_novo_footer{
    color: #999;
    font-size: 18px;
    line-height: 25px;
}

.rp_novo_footer a{
    color: #999;
    display: block;
}

.rp_novo_footer a:hover{
    color: #fff;
}

.rp_tit{
    color: #fff;
}

.rp_col_3 a{
    text-align: right;
}




.estitle,
.powered-by{
    display: none !important;
}

.wp_instafeed_tit{
    padding: 40px 0px;
}

.wp_instafeed_tit,
.instafeed{
    background: rgba(0,0,0,0.03);
}

.instafeed .ct > .it{
    width: 16.66%;
    font-size: 0px;
    line-height: 0;
}

.instafeed .ct > .it a{
    display: block;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.15);
}

.instafeed .ct > .it a:hover{
    box-shadow: 0px 0px 20px rgba(0,0,0,0);
}

.instafeed_botao_fim{
    padding: 40px 0px 80px 0px;
}










.wp_n2{
    padding: 0px;
}

.in_new_l.in,
.n2_cx.in{
    max-width: 1795px;
}

.n2_cx.in{
    padding-top: 50px;
    padding-bottom: 75px;
}

.n2{
    font-size: 0px;
    line-height: 0px;
}

.n2 h5{
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 20px;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.n2 ul p{
    padding: 15px 0px;
    font-size: 15px;
    color: rgba(0,0,0,0.5);
    position: relative;
    line-height: 20px;
}

.n2 ul p i{
    position: absolute;
    right: 0;
    top: 15px;
    color: rgba(0,0,0,0.3);
}

.n2 ul a{
    display: block;
    position: relative;
}

.n2 ul a div{
    background: #000;
}

.n2 ul a:hover > div img{
    opacity: 0.8;
}

.n2 ul a:hover > p i{
    color: rgba(0,0,0,1);
}

.wp_n2_homepage ul.last-child > li:last-child{
    display: none;
}

.n2 .home_noticias_bt{
    padding-top: 30px;
    text-align: center;
}

.n2 .title{
    padding-bottom: 20px;
}

.wp_instafeed_tit.instafeed_v2, .instafeed.instafeed_v2{
    background: #fff;
}

.wp_instafeed_tit.instafeed_v2{
    padding-bottom: 20px;
}

.instafeed.instafeed_v2{
    padding-bottom: 50px;
}

.instafeed_v2 p.title {
    font-size: 22px;
}

.instafeed_v2 p.title a{
    font-size: 22px;
    opacity: 0.3;
    color: #000;
    display: inline-block;
    padding-left: 10px;
}

.instafeed_v2 p.title a:hover{
    opacity: 1;
}
}
.instafeed.instafeed_v2 .ct > .it a {
    box-shadow: 0px 0px 2px rgba(0,0,0,0.15);
}

.bt_vermais{
    display: inline-block;
    background: rgba(0,0,0,0.07);
    padding: 15px 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    line-height: 17px;
    color: rgba(0,0,0,0.5);
    min-width: 150px;
    box-sizing: border-box;
}

.bt_vermais:hover{
    background: rgba(0,0,0,0.1);
    color: #000;
}


.nn_indice_col{
    width: 25%;
}

.nn_corpo_col{
    width: 75%;
}

.nn_corpo{
    position: relative;
    max-width: 850px;
    padding: 0px 50px;
    margin: 0px auto;
}

.nn_indice{
    max-width: 350px;
    position: relative;
    margin: 0px 0px 0px auto;
}

.nn_imagens{
    font-size: 0px;
    line-height: 0px;
    margin-top: 15px;
}

.nn_imagens img{
    margin-bottom: 15px;
}

.wp_nn{
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
    padding-bottom: 100px;
}

.nn_header{
    font-size: 17px;
}

.nn_tit{
    font-size: 30px;
     font-weight: 300;
     line-height: 40px;
}

.nn_data{
    padding: 15px 0px 50px 0px;
    color: rgba(0,0,0,0.5);
}

.footer.footer_cinza .bg_c_b{
    background: rgba(0,0,0,0.07);
}
.footer.footer_cinza .bottom{
    background: #fff;
}

.footer.footer_cinza .rp_tit{
    color: #000;
}

.footer.footer_cinza .rp_col_3 a:hover{
    color: #000;
}


.no-bg-center{
    background: none!important;
    display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
    display: -ms-flexbox;  /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */

    justify-content: center;
}




