
/* geral */

.hide,
.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

textarea,
input,
select,
button,
body{
    font-family: 'Source Sans Pro';
    font-weight: 400;
}

img{
    max-width: 100%;
}

.in{
    max-width: 1400px;
    padding: 0px 20px;
}
.in_xs{
    max-width: 1200px;
}
.in_xl{
    max-width: 1600px;
}
.in_s{
    max-width: 1000px;
}


/* texto */
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    color: #333;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 700;
}
.txt p em{
    font-style: italic;
}

/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    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: 2px solid rgba(0,0,0,0.3);
}
.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;
}

/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    position: relative;
    cursor: pointer;
}
.checkbox label:before{
    font-family: 'signed';
    content: "\e937";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 20px;
    text-align: center;
    line-height: 0px;
    text-indent: 3px;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0);
    box-sizing: border-box;
    text-shadow: none;
    margin-right: 10px;
}
.checkbox input[type=checkbox]:checked ~ label:before{
    color: #0A82FD;
    background: #fff;
    border-color: #0A82FD;
    opacity: 1;
    text-shadow: 1px 0px 0px #fff, 2px 0px 0px #fff;
    font-size: 18px;
    line-height: 14px;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image_bloc: 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: 100vw;
    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: red;
    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;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    z-index: 2;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.3);
    transition: all 300ms ease-out;
    cursor: pointer;
}

.lb_x:before,
.lb_x:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #999;
    transform: rotate(45deg);
    margin-left: -9px;
    margin-top: -1px;
    border-radius: 2px;
}
.lb_x:after{
    transform: rotate(-45deg);
}
.lb_x:hover{
    transform: scale(1.3,1.3);
}
.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: 100%;
    max-width: 600px;
    display: block;
    margin: 0px auto;
    position: relative;
    box-sizing: border-box;
    flex: auto;
    padding: 30px;
}


/* accordion */

.accordion{
}

/* banner */

.banner{
    font-size: 0px;
    position: relative;
    overflow: hidden;
}

.swiper_bt_anterior,
.swiper_bt_proximo{
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -50px;
    display: block;
    z-index: 2;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
    cursor: pointer;
}

.swiper_bt_proximo{
    left: auto;
    right: -50px;
    background: -webkit-linear-gradient(
        right, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%
    );
    background: linear-gradient(to left, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
}

.banner:hover > .swiper_bt_anterior{
    left: 0;
}
.banner:hover > .swiper_bt_proximo{
    right: 0;
}

.swiper_bt_anterior.swiper-button-disabled,
.swiper_bt_proximo.swiper-button-disabled{
    opacity: 0;
}
.swiper_bt_anterior:after,
.swiper_bt_proximo:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    margin-top: -12px;
    box-sizing: border-box;
    border: 2px solid rgba(248,248,248,0.8);
    border-bottom: none;
    border-right: none;
    transform: rotate(-45deg);
    left: 15px;
}
.swiper_bt_proximo:after{
    transform: rotate(135deg);
    left: auto;
    right: 15px;
}
.swiper_bt_anterior:hover::after,
.swiper_bt_proximo:hover::after{
    border-color: rgba(248,248,248,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;
}


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

/* STRUCTURE */
/* MODULOS */

/*.banners_banner .swiper-container{
    position: absolute;
    height: 100%;
}*/


.banners_slider_bloc{
    padding: 80px 0;
}

.b_ctt, .bsb_slider{
    position: relative;
}

.bsb_slider.xs{
    max-width: 1200px;
    margin: auto;
    padding: 0 84px 24px 84px;
}

.bsb_slider{
    padding: 0 0 25px 0;
}

.banner{
    width: 100%;
    display: flex;
    min-height: 680px;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;

}

.b_img{
    position: absolute;
    width: 100%;
    height: 100%;
}

.b_img img{
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

.b_img.light:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.b_img.dark:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.bsb_slider.xs .bsb_slider_ctr{
    border-radius: 8px;
}

.b_i_maintit, 
.b_i_subtit{
    text-align: center;
}

.b_i_maintit{
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.b_i_subtit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 16px;
}

.b_i_desc{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 24px;
}

.b_btns{
    margin-top: 32px;
}

.btn_primary, .contact_form_bloc button{
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid transparent;
}

.contact_form_bloc button{
    display: block;
    margin-left: auto;
    cursor: pointer;
}

.btn_secondary{
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.btn_secondary:after{
    content: "\f105";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 16px;
    padding: 0 4px;
}

.bhb_ctr{
    margin-top: 44px;
    margin-bottom: -20px;
}

.bsb_s_next,
.bsb_s_prev,
.bhb_slider_next,
.bhb_slider_prev,
.lb_s_next,
.lb_s_prev,
.csb_s_next,
.csb_s_prev,
.hsb_s_next,
.hsb_s_prev{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
}


.bsb_slider.xs .bsb_s_prev,
.bsb_slider.xs .bsb_s_next,
.bhb_slider_prev,
.bhb_slider_next,
.lb_s_next,
.lb_s_prev,
.csb_s_next,
.csb_s_prev,
.hsb_s_next,
.hsb_s_prev{
    border-width: 1px;
    border-style: solid;
}

.bsb_s_next,
.bhb_slider_next{
    right: 20px;
}

.lb_s_next,
.hsb_s_next{
    right: 0;
}

.bsb_s_prev,
.bhb_slider_prev{
    left: 20px;
}

.lb_s_prev,
.hsb_s_prev{
    left: 0;
}

.bsb_s_next:after,
.bhb_slider_next:after,
.lb_s_next:after,
.csb_s_next:after,
.hsb_s_next:after{
    content: "\f105";
}

.bsb_s_prev:after,
.bhb_slider_prev:after,
.lb_s_prev:after,
.csb_s_prev:after,
.hsb_s_prev:after{
    content: "\f104";
}

.bsb_s_next:after, 
.bsb_s_prev:after,
.bhb_slider_next:after, 
.bhb_slider_prev:after,
.lb_s_next:after,
.lb_s_prev:after,
.csb_s_next:after,
.csb_s_prev:after,
.hsb_s_next:after,
.hsb_s_prev:after{
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 16px;
    padding: 8px;
}

.bsb_s_pag,
.hsb_s_pag{
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

.bsb_s_pag .swiper-pagination-bullet,
.hsb_s_pag .swiper-pagination-bullet{
    width: 16px;
    height: 16px;
    margin: 0 4px;
    box-shadow: none;
    opacity: 1;
}

.bsb_s_pag .swiper-pagination-bullet-active-prev,
.bsb_s_pag .swiper-pagination-bullet-active-next,
.hsb_s_pag .swiper-pagination-bullet-active-prev,
.hsb_s_pag .swiper-pagination-bullet-active-next{
    transform: none;
}

.bhb_slider{
    padding: 0 80px;
}

/* TYPOGRAPHY */

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

.h2{
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
}

.h3{
    font-size: 40px;
    line-height: 48px;
}

.h4{
    font-size: 32px;
    line-height: 40px;
}

.h5{
    font-size: 24px;
    line-height: 32px;
}

.h6{
    font-size: 16px;
    line-height: 24px;
}

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

.txt_a_c{
    text-align: center;
}

.txt_a_r{
    text-align: right;
}

.txt_t_u{
    text-transform: uppercase;
}


.video_bloc{
    padding: 80px 0;
}

.video_bloc.vp_large{
    padding: 120px 0;
}

.video_bloc.vp_small{
    padding: 40px 0;
}

.video_bloc.background.vp_large{
    padding: 0;
}

.video_bloc.background.vp_small{
    padding: 0;
}

.video_bloc.background{
    padding: 0;
}

.vb_iframe{
    margin-top: 64px;
}

.video_bloc.background .vb_iframe{
    position: absolute;
    height: 100%;
    width: 100vw!important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    margin-top: 0px;
}

.video_bloc.background .iframe{
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video_bloc .vb_iframe iframe{
    width: 854px;
    height: 480px;
    border-radius: 8px;
}

.video_bloc.large .vb_iframe iframe{
    width: 1280px;
    height: 720px;
}

.vb_i_txt{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-top: 32px;
}

.vb_btns{
    margin-top: 40px;
}

.vb_i_tit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    text-align: center;
}

.background .vb_btns{
    margin-bottom: 0px;
}

.vb_label{
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
}

.video_bloc.background .iframe_ctr:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5)
}

.video_bloc.background .vb_label{
    position: absolute;
    bottom: 0px;
    margin-top: 0px;
    margin: 0 auto 8px auto;
}


.bhb_i_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    text-align: center;
}

.bhb_i_subtit {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 24px;
    text-align: center;
}

.bh_img{
    margin-bottom: 10px;
}

.bh_img img{
    width: 100%;
    border-radius: 8px;
}

.bh_i_tit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

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

.bhb_slider_ctr{
    margin-bottom: 60px;
}

.bhb_slider_ctr.before{
    margin-bottom: 0px;
}

.bhb_btns{
    margin-top: 40px;
}

.big_highlights_bloc{
    padding: 80px 0;
}

.before .bhb_slider_subtit{
    margin-bottom: 40px;
}


.ib_i_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    text-align: center;
}

.ib_i_subtit{
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
}

.ib_i_txt{
    max-width: 800px;
    margin: auto;
    margin-top: 32px;
    text-align: center;
}

.ib_btns{
    margin-top: 40px;
}

.ib_img{
    margin-top: 64px;
}

.ib_img img{
    display: block;
    margin: auto;
    border-radius: 8px;
}

.image_bloc{
    padding: 120px 0;
}

.image_bloc.vp_medium{
    padding: 80px 0;
}

.image_bloc.vp_small{
    padding: 40px 0;
}


.topics_bloc{
    padding: 80px 0;
}

.tb_tit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    padding-bottom: 50px;
    position: relative;
}

.tb_tit:after{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 2px;
    width: 80px;
}


.t_i_tit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.t_ctt{
    margin-top: 24px;
}

.t_box.icon_large .t_ctt{
    margin-top: 32px;
}

.t_box.hide_icon .t_ctt{
    margin-top: 0px;
}

.t_i_ctr{
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 8px;
}

.t_i_ctr img{
    padding: 8px;
    box-sizing: border-box;
}

.t_ctt{
    width: 100%;
}

.t_i_txt{
    font-size: 16px;
    line-height: 24px;
    margin-top: 4px;
}

.tb_ctr{
    margin-top: 64px;
}

.t_ctr{
    padding: 32px;
    border: 2px solid;
    border-radius: 8px;
    display: block;
}

.t_box.icon_left{
    margin-left: -16px;
    margin-right: -16px;
    align-items: flex-start;
}

.t_box.icon_left .t_icon{
    width: 120px;
    padding: 0 16px;
}

.t_box.icon_left .t_ctt{
    margin-top: 0px;
}

.t_box.icon_left .t_ctt{
    width: calc(100% - 120px);
    padding: 0 16px;
}

.t_box.icon_left .t_i_ctr{
    width: 88px;
    height: 88px;
}

.t_box.icon_left .t_i_ctr img{
    padding: 16px;
}

.t_box.icon_large .t_i_ctr{
    width: 88px;
    height: 88px;
}

.t_box.icon_large .t_i_ctr img{
    padding: 16px;
}

.t_box.hide_icon .t_icon{
    display: none;
}

.t_btn{
    margin-top: 16px;
}

.sh_i_tit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.shb_i_tit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
}

.shb_i_txt{
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 32px;
}

.shb_ctr{
    margin-top: -20px;
    margin-bottom: -20px;
}

.shb_info{
    padding-right: 20px;
}

.sh_i_txt{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 4px;
}

.sh_btn{
    margin-top: 16px;
}

.short_highlights_bloc{
    padding: 120px 0;
}

.short_highlights_bloc.vp_medium{
    padding: 80px 0;
}

.short_highlights_bloc.vp_small{
    padding: 40px 0;
}

.sh_ctt{
    display: block;
    padding: 32px;
    background-color: #fff;
}

.cb_i_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    text-align: center;
}

.cb_i_subtit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 24px;
    text-align: center;
}

.cb_i_txt{
    max-width: 800px;
    margin: auto;
    margin-top: 32px;
    text-align: center;
}

.cb_btns{
    margin-top: 40px;
}

.cb_ctr{
    margin-top: 44px;
    margin-bottom: -20px;
}

.cb_info{

}

.c_ctt{
    padding: 32px;
    border: 2px solid;
    border-top-width: 0;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: block;
}

.c_img img{
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.c_i_maintit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

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

.c_btn{
    margin-top: 16px;
}

.c_ctr{
    border-radius: 8px;
    display: block;
}

.cards_bloc{
    padding: 80px 0;
}


.image_gallery_bloc{
    padding: 80px 0;
}


.igb_i_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    text-align: center;
}

.igb_i_subtit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 24px;
    text-align: center;
}

.igb_i_txt{
    max-width: 800px;
    margin: auto;
    margin-top: 32px;
    text-align: center;
}

.igb_ctr{
    margin-bottom: -20px;
    margin-top: 44px;
}

.i_img.pup{
    cursor: pointer;
}

.i_img, 
.i_img img{
    border-radius: 8px;
}

.i_info{
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 16px;
    background-color: rgba(248, 248, 248, .8);
    box-sizing: border-box;
    pointer-events: none;
    border-radius: 0 0px 8px 8px;
}

.igb_ctr.ct_d6 .i_info{
    width: calc(100% - 20px);
}

.i_i_tit, .i_i_label{
    font-size: 16px;
    line-height: 24px;
}

.i_i_tit{
    font-weight: 700;
}

.image_gallery_lb .lb_cont{
    background: none;
}

.igb_lb .lb_cont{
    background: none;
    height: 100%;
    padding: 64px 64px 0 64px;
    max-width: 800px;
}

.lb_slider, .lb_s_ctr{
    height: 100%;
}

.igb_lb .lb_x {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 0;
    box-sizing: border-box;
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background: transparent;
    box-shadow: none;
}

.igb_lb .lb_x:after {
    content: "\f00d";
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 40px;
    width: 100%;
    height: auto;
    background: transparent;
    transform: translate(-50%, -50%);
    margin-left: 0;
    margin-top: 0;
    border-radius: 0;
    box-sizing: border-box;
    text-align: center;
}

.igb_lb .lb_x:before{
    content: none;
}

.igb_lb.lb_anim_arranque .lb_frame{
    opacity: 0;
    margin-left: 0;
}

.igb_lb.lb_anim_aberto .lb_frame{
    opacity: 1;
    margin-left: 0;
}

.igb_lb.lb_anim_fechado .lb_frame{
    opacity: 0;
    margin-left: 0;
}


.contents_slider_bloc{
    padding: 80px 0;
}

.contents_slider_bloc:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 40%;
}

.contents_slider_bloc.img_right:before {
    right: 0px;
    left: auto;
}

.contents_slider_bloc.vp_small{
    padding: 40px 0;
}

.contents_slider_bloc.vp_large{
    padding: 120px 0;
}

.ts_ctr{
    margin-left: 40px;
}

.img_slider{
    width: calc(60% - 20px)
}

.contents_slider_bloc .csb_slider{
    margin-top: 64px;
}

.contents_slider_bloc.fxd_cnt_after .csb_slider{
    margin-bottom: 64px;
    margin-top: 0px;
}

.contents_slider_bloc.img_right .img_slider{
    order: 2;
}

.contents_slider_bloc.img_right .ts_ctr{
    margin-left: 0;
    margin-right: 40px;
}

.txt_slider{
    width: calc(40% - 20px)
}

.img_slide{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}

.txt_slide{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.csb_i_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
}

.csb_i_subtit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 24px;
}

.ts_i_tit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.ts_i_tit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.r_txt{
    font-size: 16px;
    line-height: 24px;
}

.ts_i_label{
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
}

.csb_s_next,
.csb_s_prev{
    bottom: 0px;
    margin-top: 0px;
    top: auto;
}

.csb_s_next{
    left: 48px;
}

.csb_s_prev{
    left: 0;
}

.contents_slider_bloc.img_right .csb_s_next{
    right: 0;
    left: auto;
}

.contents_slider_bloc.img_right .csb_s_prev{
    right: 48px;
    left: auto;
}

/*.contents_slider_bloc.fxd_cnt_after .csb_s_next,
.contents_slider_bloc.fxd_cnt_after .csb_s_prev{
    top: 0px;
    margin-top: 0px;
}*/

.csb_ctr{
    position: relative;
}

.csb_info{
    width: calc((100vw) - 60vw);
    margin-left: auto;
}

.contents_slider_bloc.img_right .csb_info{
    width: calc((100vw) - 60vw);
    margin-left: 0;
}

.img_s_ctr{
    border-radius: 8px;
}

.csb_s_pag{
    position: absolute;
    top: 0px;
    left: 0px;
    left: auto;
    width: auto;
    bottom: auto;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
}

.contents_slider_bloc.img_right .csb_s_pag{
    right: 0px;
    left: auto;
}

.csb_s_pag .swiper-pagination-current{
    font-size: 32px;
    line-height: 40px;
    vertical-align: top;
}


.h_i_txt{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding: 16px;
    border-radius: 8px;
    min-height: 72px;
}

.hsb_slider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    top: 116px;
}

.highlights_slider_bloc.fxd_cnt_after .hsb_slider:before{
    top: 0;
    height: 132px;
    bottom: auto;
}

.highlights_slider_bloc.fxd_cnt_after.vp_large .hsb_slider:before{
    height: 172px;
}

.highlights_slider_bloc.fxd_cnt_after.vp_small .hsb_slider:before{
    height: 92px;
}

.h_i_maintit{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.h_i_label{
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.h_i_img{
    width: 80px;
}

.h_i_tit{
    max-width: calc(100% - 80px);
}

.h_i_img img{
    border-radius: 50%;
}

.hsb_i_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
}

.hsb_i_subtit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 24px;
}

.hsb_i_txt{
    max-width: 800px;
    margin-top: 32px;
}

.hsb_btns{
    margin-top: 40px;
}

.highlights_slider_bloc.fxd_cnt_after .hsb_slider{
    margin-bottom: 64px;
    margin-top: 0px;
}

.hsb_slider_ctr{
    overflow: visible;
    padding-bottom: 48px;
}

.h_i_ctr{
    margin-top: 24px;
}

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

.highlights_slider_bloc{
    padding-top: 80px;
}

.hsb_slider{
    padding-top: 64px;
    padding-bottom: 80px;
    position: relative;
}

.highlights_slider_bloc.vp_large{
    padding-top: 120px;
}

.highlights_slider_bloc.vp_large .hsb_slider{
    padding-bottom: 120px; 
}

.highlights_slider_bloc.vp_small{
    padding-top: 40px;
}

.highlights_slider_bloc.vp_small .hsb_slider{
    padding-bottom: 40px; 
}

.highlights_slider_bloc.fxd_cnt_after{
    padding-top: 0;
    padding-bottom: 80px;
}


.highlights_slider_bloc.fxd_cnt_after .hsb_slider{
    padding-top: 80px;
    padding-bottom: 0;
}

.highlights_slider_bloc.fxd_cnt_after.vp_small{
    padding-top: 0;
    padding-bottom: 40px;
}


.highlights_slider_bloc.fxd_cnt_after.vp_small .hsb_slider{
    padding-top: 40px;
    padding-bottom: 0;
}

.highlights_slider_bloc.fxd_cnt_after.vp_large{
    padding-top: 0;
    padding-bottom: 120px;
}


.highlights_slider_bloc.fxd_cnt_after.vp_large .hsb_slider{
    padding-top: 120px;
    padding-bottom: 0;
}

.cfb_i_tit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
}

.cfb_i_txt{
    max-width: 800px;
    margin: auto;
    margin-top: 32px;
    font-size: 16px;
    line-height: 24px;
}

.cfb_ctr .cfb_form{
    padding: 80px 40px;
}

/*.contact_form_bloc form{
    width: 800px;
}*/

.contact_form_bloc input,
.contact_form_bloc textarea{
    padding: 16px;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
}

.contact_form_bloc textarea{
    min-height: 200px;
}

.contact_form_bloc form .form-field{
    margin-bottom: 16px;
}

.contact_form_bloc{
    padding: 80px 0;
}

.contact_form_bloc.vp_large{
    padding: 120px 0;
}

.contact_form_bloc.vp_small{
    padding: 40px 0;
}

.long_text_bloc{
    padding: 80px 0;
}

.long_text_bloc.vp_large{
    padding: 120px 0;
}

.long_text_bloc.vp_small{
    padding: 40px 0;
}

.ltb_i_tit {
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
    padding-bottom: 50px;
    position: relative;
}

.ltb_i_tit:after{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 2px;
    width: 80px;
}

.ltb_i_txt{
    margin-top: 64px;
    max-width: 800px;
    margin: 64px auto 0 auto;
}

.ltb_i_txt ul, 
.ltb_i_txt ol{
    font-size: 16px;
    line-height: 24px;
}

.ltb_i_txt ul li, 
.ltb_i_txt ol li{
    margin-bottom: 8px;
    position: relative;
}
.ltb_i_txt ol{
  counter-increment: items;
}

.ltb_i_txt ol li {
  counter-increment: items;
}

.ltb_i_txt ol li::before {
  content: "0" counter(items)". ";
  margin-right: 8px;
  font-weight: 700;
}

.ltb_i_txt ul li:before{
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 8px;
}

.ltb_i_txt strong,
.stb_i_txt strong{
    font-weight: bolder;
}

.ltb_i_txt p,
.stb_i_txt p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.ltb_i_txt h5,
.stb_i_txt h5{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.ltb_i_txt h6,
.stb_i_txt h6{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}

.stb_maintit{
    font-size: 56px;
    line-height: 64px;
    font-weight: 900;
}

.stb_subtit{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 24px;
}

.stb_i_txt{
    font-size: 16px;
    line-height: 24px;
}

.stb_btn{
    margin-top: 16px;
}

.short_text_bloc{
    padding: 80px 0;
}

.short_text_bloc.tit_right .stb_col.left{
    order: 2;
}