@import url(https://fonts.googleapis.com/css?family=Lato&display=swap);
.top_slider {
    position: relative;
}
.slider_nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    list-style-type: none;
    padding-right: 1rem;
    z-index: 101;
}
.slider_nav li {
        width: 55px;
        margin: 1rem;
        height: 55px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
        cursor: pointer;
        transition: transform 0.3s, border 0.3s;
}
.slider_nav li:hover {
            transform: scale(1.1);
}
.slider_nav span {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
}
.slider_nav li.current span {
        border: solid 2px #FFF;
}
.panels {
    min-height: 720px;
    position: relative;
}
.panels article {
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        background-size: cover;
        background-position: center center;
        transition: opacity 2s;
        opacity: 0;
        z-index: -1;
}
.panels article:before {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            background: rgba(50, 85, 157, .4);
}
.panels article img {
            display: none;
}
.panels article .center {
            position: relative;
            height: 100%;
            min-height: 100%;
}
.panels article .content {
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 20px;
            min-height: 285px;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: center;
                justify-content: center;
            -ms-flex-direction: column;
                flex-direction: column;
            padding-top: 80px;
}
.panels article .content:before {
                content: '';
                display: block;
                height: 100%;
                position: absolute;
                left: 0;
                bottom: 0;
                max-width: 300px;
                min-height: 285px;
                background: #32559D;
                width: 0px;
                opacity: 0;
                transition: width 1s 0.5s ease;
}
.panels article .content p {
                position: relative;
                z-index: 2;
                color: #FFF;
                max-width: 550px;
                opacity: 0;
                transition: opacity 1s 1s;
}
.panels article .content p.title strong {
                        font-size: 2.5rem;
                        letter-spacing: 0.03em;
                        text-transform: uppercase;
                        line-height: 1.8rem;
                        color: #FFF;
}
@media all and (max-width: 600px) {
.panels article .content p.title strong {
                            font-size: 1.38889rem;
    }
}
.panels article .content a.inline_btn {
                color: #FFF;
                text-transform: uppercase;
}
.panels article.current {
            display: block;
            opacity: 1;
            z-index: 100;
}
.panels article.current .content:before {
                width: 50%;
                opacity: 1;
}
.panels article.current .content p {
                opacity: 1;
}
.slider_nav_arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    z-index: 101;
    padding-right: 1rem;
    -ms-flex-align: center;
        align-items: center;
}
@media all and (max-width: 600px) {
.slider_nav_arrows {
        padding-right: 0.1rem;
    }
}
.slider_nav_arrows:before {
        content: '';
        display: block;
        width: 400px;
        height: 200px;
        position: absolute;
        left: -40px;
        bottom: -100px;
        background: #FFF;
        border-top: solid 1px #32559D;
        transform: rotate(-45deg);
}
@media all and (max-width: 600px) {
.slider_nav_arrows:before {
            display: none;
    }
}
.slider_nav_arrows span {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        width: 50px;
        height: 50px;
        margin: 1rem;
        margin-right: 0.2rem;
        background: #32559D;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
        transition: transform 0.3s, background-image 1s;
        cursor: pointer;
}
.slider_nav_arrows span:hover {
            transform: scale(1.1);
}
.slider_nav_arrows span:after {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border-top: solid 2px #FFF;
            border-right: solid 2px #FFF;
            transform: rotate(45deg);
            position: relative;
}
.slider_nav_arrows span.slider_nav_arrows_left:after {
            transform: rotate(-135deg);
}
.slider_nav_arrows span.slider_nav_arrows_right {
            width: 75px;
            height: 75px;
            background-size: cover;
            margin-right: 1rem;
}
.slider_nav_arrows span.slider_nav_arrows_right:before {
                content: '';
                background: rgba(50, 85, 157, .4);
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                right: 0;
}
@media all and (max-width: 600px) {
.slider_nav_arrows span.slider_nav_arrows_right {
                width: 50px;
                height: 50px;
    }
}
                

.slide_imgs {
    position: relative;
}
.sliders_full_screen {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
}
.img_slides li {
    opacity: 0;
    transition: opacity 1s;
}
.img_slides li.show {
        opacity: 1;
}
.sliders_full_screen_btn {
    width: 100px;
    height: 155px;
    background: #5288F6;
    transform: skew(0, 30deg);
    border-radius: 0.5rem;
    z-index: 100;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center ;
        align-items: center ;
    -ms-flex-pack: center;
        justify-content: center;
    transition: transform 0.3s;
    cursor: pointer;
}
.sliders_full_screen_btn:before {
        content: '';
        display: block;
        width: 25px;
        height: 25px;
        background: url(/theme/bovero/dist/images/97ba1237069441fae356b67edaeb7f50.svg) no-repeat center center;
        background-size: contain;
        transition: transform 0.3s;
        transform: skew(0, -30deg);
}
.sliders_full_screen_btn:hover {
        transform: skew(0, 30deg) scale(1.1);
}
.sliders_full_screen_btn:hover:before {
            transform: skew(0, -30deg) rotate(-90deg);
}
.sliders_full_screen_label {
    padding-top: 2rem;
    color: #FFF;
    text-transform: uppercase;
    max-width: 200px;
    text-align: center;
    font-weight: 900;
}
.sliders_show_real {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1500;
    left: -9999em;
    top: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    transition: opacity 1s;
    opacity: 0;
}
.sliders_show_real.show {
        opacity: 1;
        left: 0;
}
.sliders_show_real ul li {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
}
.sliders_show_real li {
        background-size: contain;
        background-position: center center;
        opacity: 0;
        transition: opacity 1s;
        background-repeat: no-repeat;
}
.sliders_show_real li.show {
            opacity: 1;
}
.sliders_show_real .sliders_full_screen_btn_wrapper {
        position: absolute;
        left: 0;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-align: center;
            align-items: center;
}
.sliders_show_real .sliders_full_screen_btn_wrapper span {
            position: relative;
            display: -ms-flexbox;
            display: flex;
            width: 50px;
            height: 50px;
            margin: 1rem;
            margin-right: 0.2rem;
            background: #32559D;
            -ms-flex-align: center;
                align-items: center;
            -ms-flex-pack: center;
                justify-content: center;
            
            box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
            transition: transform 0.3s, background-image 1s;
            cursor: pointer;
}
.sliders_show_real .sliders_full_screen_btn_wrapper span:hover {
                transform: scale(1.1);
}
.sliders_show_real .sliders_full_screen_btn_wrapper span:after {
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                border-top: solid 2px #FFF;
                border-right: solid 2px #FFF;
                transform: rotate(-135deg);
                position: relative;
}
.sliders_show_real .sliders_full_screen_btn_wrapper span.sliders_full_screen_btn_right {
                width: 70px;
                height: 70px;
                background-size: cover;
                background-position: center;
                position: absolute;
                right: 1rem;
                margin-top: 0;
}
.sliders_show_real .sliders_full_screen_btn_wrapper span.sliders_full_screen_btn_right:before {
                    content: '';
                    background: rgba(50, 85, 157, .4);
                    position: absolute;
                    left: 0;
                    top: 0;
                    bottom: 0;
                    right: 0;
}
.sliders_show_real .sliders_full_screen_btn_wrapper span.sliders_full_screen_btn_right:after {
                    transform: rotate(45deg);
}
.sliders_show_real .sliders_full_screen_close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 100;
    background: #5288F6;
    width: 35px;
    height: 35px;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1rem;
}
.sliders_show_real .sliders_full_screen_close span {
        background-color: #FFF;
        top: 0.9rem;
        left: 0.2rem;
        width: 80%;
}
.sliders_full_screen_legend {
    position: absolute;
    left: 2rem;
    top: 2rem;
    z-index: 100;
    color: #FFF;
    background: #5288F6;
    padding: 0.5rem;
}
.slider__widget .slider_nav_widget_list {
        list-style-type: none;
        padding: 0;
        margin: 0;
        position: absolute;
        display: -ms-flexbox;
        display: flex;
        z-index: 100;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
}

.slider__widget .slider_nav_widget_list li {
            text-indent: -999em;
            width: 12px;
            height: 12px;
            background: #FFF;
            margin: 0 9px;
            cursor: pointer;
            border: solid 1px #211F5E;
}

.slider__widget .slider_nav_widget_list li.active {
                cursor: default;
                background: #211F5E;
}

.slider__widget .slider_comp {
        list-style-type: none;
        padding: 0;
        margin: 0;
        min-height: 500px;
}

.slider__widget .slider_comp li {
            position: absolute;
            transition: opacity 2s;
            height: 100%;
            opacity: 0;
            z-index: 1;
}

.slider__widget .slider_comp li.active {
                opacity: 1;
                z-index: 2;
}
.btn_widget {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
}



.btn_widget .close_btn {
        width: 15px;
        height: 15px;
}



.btn_widget .close_btn span {
            background: #B1B1B1;
}



.btn_search {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
        align-items: flex-end;
    color: #B1B1B1;
    text-decoration: none;
    font-size: 1.11111em;
}



.search_input_widget span.search, .btn_search span {
    display: block;
    position: relative;
    border-radius: 100%;
    border: solid 5px #B1B1B1;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    transform: rotate(45deg);
}



.search_input_widget span.search:before, .btn_search span:before {
        content: '';
        width: 5px;
        height: 10px;
        display: block;
        background: #B1B1B1;
        position: absolute;
        left: 50%;
        top: 19px;
        transform: translateX(-50%);
}



.search_input_widget {
    box-shadow: -5px 10px 15px rgba(0, 0, 0, .1);
    padding: 1rem;
    background: #F6F6F6;
    width: 100%;
    max-width: 500px;
    display: none;
}



.search_input_widget_input {
    border: none;
    background: #F6F6F6;
}



.search_input_widget_input:focus {
        outline: none;
        border-bottom: solid 1px #CCC;
}



.search_input_widget_input:-ms-input-placeholder {
        color: #CCC;
}



.search_input_widget_input::placeholder {
        color: #CCC;
}



.btn_widget.active .search_input_widget {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
}



.btn_widget.active .btn_search {
        display: none;
}



.btn_widget.active .close_btn {
        top: 7px;
        display: none;
}



.btn_widget.active .close_btn.show {
            display: -ms-flexbox;
            display: flex;
}



.ld_ell {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
}



.ld_ell img {
        width: 80px;
}
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: local("Lato Regular"),local(Lato-Regular),url(//fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wWg.eot?#) format("eot"),url(//fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wXg.woff2) format("woff2"),url(//fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wWA.woff) format("woff");
}
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 700;
    src: local("Lato Bold"),local(Lato-Bold),url(//fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwiPHQ.eot?#) format("eot"),url(//fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format("woff2"),url(//fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh6UVSwiPHw.woff) format("woff");
}
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 900;
    src: local("Lato Black"),local(Lato-Black),url(//fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50XSwiPHQ.eot?#) format("eot"),url(//fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50XSwiPGQ.woff2) format("woff2"),url(//fonts.gstatic.com/s/lato/v14/S6u9w4BMUTPHh50XSwiPHw.woff) format("woff");
}
.hover {
  opacit: 1;
}
@keyframes upDown {
  0% {
    transform:  translate(0px,0px);
    }
  50% {
    transform:  translate(0px,-10px);
    }
  100% {
    transform:  translate(0px,0px);
    }
}
.center {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 1024px;
    min-height: 150px;
    margin: 0 auto;
}
.center.small {
        max-width: 800px;
}
@media all and (max-width: 600px) {
.center {
        position: relative;
        width: 100%;
        margin: 0;
        transform: none;
    }
}
.centered_content {
    max-width: 700px;
    margin: 0 auto;
}
.centered_content.page {
        padding-bottom: 0!important;
}
.centered_content.page_content {
        text-align: left!important;
}
@media all and (max-width: 600px) {
.centered_content {
        width: auto;
    }
}
.no_title {
    display: none;
}
.colls {
    display: -ms-flexbox;
    display: flex;
}
@media all and (max-width: 600px) {
.colls {
        display: block;
    }
}
.coll {
    width: 50%;
    text-align: left;
}
.coll .center {
        text-align: center;
}
@media all and (max-width: 600px) {
.coll {
        width: 100%;
    }
}
.back_btn {
    display: inline-block;
    padding: 10px 0 20px 0;
}
.back_btn:before {
        margin-right: 5px;
        font-size: 15px;
}
.inline_next:after {
        margin-left: 5px;
        font-size: 15px;
}
span.date {
    display: block;
    padding: 5px 0;
    letter-spacing: -0.05em!important;
    font-size: 0.5rem!important;
}
.zebra-odd {
    background: #151515;
}
.page_header_img {
    height: 275px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page_header_img img {
        display: none;
}
.img {
    height: 160px;
    display: block;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.img img {
        display: none ;
}
.btns {
    padding: 1rem 0;
}
.btn {
    height: 50px;
    display: inline-block;
    line-height: 50px;
    font-size: 1em;
    background: #5288F6;
    color: #FFF;
    text-decoration: none;
    padding: 0 20px;
    text-transform: uppercase;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
}
.btn.light {
        background: #FFF;
        color: #5288F6!important;
}
.btn:hover {
        opacity: 0.8;
        transform: scale(1.02);
}
.inline-btn {
    font-size: 1em;
    display: inline-block;
    padding: 0 1rem;
    text-transform: uppercase;
}
@media all and (max-width: 600px) {
.inline-btn {
        margin-bottom: 1rem;
    }
}
.headline {
    height: 277px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.headline.news {
        margin-bottom: 20px;
}
.img_page {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}
.no_header {
    padding-top: 50px;
}
.filter_box {
    position: relative;
    top: -5px;
}
.filter_box select {
        opacity: 0;
}
.filter_box .colls .edd-head {
            border: none;
}
.filter_box .colls .coll_3 {
            width: 80%;
            padding: 0;
            padding-left: 10px;
            min-width: 120px;
}
.filter_box .colls .coll_3 .edd-value {
                text-align: center;
}
.filter_box .colls .coll_4 {
            width: 20%;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: end;
                align-items: flex-end;
            min-width: 70px;
            padding-right: 0;
            padding: 0;
}
.filter_box .inline_btn {
        height: 100%;
        display: block;
        line-height: 100%;
        padding: 10px;
        text-transform: uppercase;
        text-decoration: none;
}
.filter_box .inline_btn:after {
            display: inline-block;
            font-awesome: search;
            font-size: 20px;
            margin-left: 5px;
}
@media all and (max-width: 600px) {
        .filter_box .colls {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
                align-items: center;
    }
            .filter_box .colls .inline_btn {
                display: block;
                padding: 20px;
                text-align: center;
    }
}
@media all and (min-width: 600px) {
.header_news {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
            justify-content: center;
        -ms-flex-align: center;
            align-items: center;
    }
}
.pager ul {
        list-style-type: none;
        padding: 20px 0;
        text-align: center;
        border-top: solid 1px #CCC;
}
.pager ul.bottom {
            border-top: none;
            border-bottom: solid 1px #CCC;
}
.pager li {
        display: inline-block;
        padding: 5px;
}
.pager li a {
            display: block;
}
.results_message {
    color: #999;
    text-align: center;
}
form.search_form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
}
form.search_form .row {
        width: 80%;
}
form.search_form .btns {
        padding: 0;
        margin: 0;
}
form.search_form .btns button {
            background: none;
            display: inline-block;
            position: relative;
            text-indent: -999em;
            border: none;
}
form.search_form .btns button i {
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                width: 30px;
                height: 35px;
                text-indent: 0;
                line-height: 30px;
}
.srch_list {
    display: none;
}
.close_btn {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    padding: 0.1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}
.close_btn:hover {
        opacity: 0.8;
}
.close_btn span {
        height: 3px;
        width: 100%;
        display: block;
        background: #211F5E;
        transform: rotate(45deg);
        position: absolute;
        left: 0;
        top: 0;
}
.close_btn span:nth-child(2) {
            transform: rotate(-45deg);
}
.anchor {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 200px;
    left: 0;
    z-index: -1;
}
.message.success {
    border: green solid 1px;
    padding: 1rem;
    margin: 1rem 0;
}
.message.success * {
        color: green;
}
.errors {
    border: solid 1px red;
    padding: 2rem;
    margin: 1rem 0;
}
.errors li {
        color: red;
}
.card {
    padding: 2rem;
    background: #FBFBFB;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .3);
}
.card.content {
        margin-top: 2rem;
        box-shadow: none;
        padding: 2rem 1rem;
}
.card .img {
        width: 150px;
        height: 150px;
        background-size: cover;
        border-radius: 100%;
        border: solid 1px #FFF;
        box-shadow: 0 1px 15px rgba(0, 0, 0, .3);
        margin-bottom: 1rem;
        margin: 0 auto 1rem auto;
}
.card .img img {
            display: none!important;
}
.card .content {
        max-width: 100%;
        margin: 0 auto;
}
@media all and (max-width: 600px) {
.card .content {
            max-width: 100%;
    }
}
.card .content p {
            padding-bottom: 0.5rem;
}
.card .content ul {
            margin: 0;
            list-style-type: none;
            padding: 0 0 0.1rem;
}
.card .content ul li {
                padding-bottom: 0.2rem;
}
body .main__panel .main_title {
    font-size: 2.22222rem;
    font-weight: 900;
    font-size: 2em;
    word-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    color: #211F5E;
    text-transform: none;
    width: 100%;
}
p.title strong {
    color: #5288F6;
    font-size: 1.11111rem;
    padding: 0 0 1rem 0;
    font-weight: 900;
}
.read_more_all {
    display: none;
}
.read_more_all.show {
        display: block;
}
.list_items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-bottom: 2rem;
}
.list_items li {
        padding: 0.5rem;
}
.list_items li strong {
        display: block;
        color: #5288F6;
        padding-bottom: 0.5rem;
}
.nav_arrows {
    display: -ms-flexbox;
    display: flex;
    padding-right: 1rem;
    -ms-flex-align: center;
        align-items: center;
    position: relative;
}
.nav_arrows span, .nav_arrows a {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        width: 50px;
        height: 50px;
        margin: 1rem 0;
        margin-right: 0.2rem;
        background: #32559D;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
        transition: transform 0.3s, background-image 1s;
        cursor: pointer;
}
.nav_arrows span span, .nav_arrows a span {
            display: none;
}
.nav_arrows span:hover, .nav_arrows a:hover {
            transform: scale(1.1);
}
.nav_arrows span:after, .nav_arrows a:after {
            content: '';
            display: block;
            width: 10px;
            height: 10px;
            border-top: solid 2px #FFF;
            border-right: solid 2px #FFF;
            transform: rotate(45deg);
            position: relative;
}
.nav_arrows span.arrows_left:after, .nav_arrows a.arrows_left:after {
            transform: rotate(-135deg);
}
.nav_arrows span.arrows_right, .nav_arrows a.arrows_right {
            width: 75px;
            height: 75px;
            background-size: cover;
            margin-left: 1rem;
            background-position: center center;
}
.nav_arrows span.arrows_right:before, .nav_arrows a.arrows_right:before {
                content: '';
                background: rgba(50, 85, 157, .4);
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                right: 0;
}
.grid {
    padding: 1rem 0;
}
.grid ul {
        list-style-type: none;
        display: -ms-flexbox;
        display: flex;
        margin: 0;
        padding: 0;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
@media all and (max-width: 600px) {
.grid ul {
            display: block;
    }
}
.grid ul li {
            width: 33%;
            height: 140px;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
                align-items: center;
            -ms-flex-pack: center;
                justify-content: center;
            border: solid 1px #E7ECF5;
}
@media all and (max-width: 600px) {
.grid ul li {
                width: 100%;
    }
}
.grid ul a {
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            background-color: #FFF;
            display: block;
            width: 80%;
            height: 60%;
}
.grid ul a img {
                display: none;
}
.border-left {
    border-left: solid 1px #5288F6;
}
body .p_1 {
        padding: 1rem;
}
body .p_1_2 {
        padding: 4rem 1rem;
}
body .p_2 {
        padding: 2rem;
}
body .p_2_2 {
        padding: 4rem 2rem;
}
body .p_r_2 {
        padding-right: 2rem;
}
body .w_bg {
        background: #FFF;
}
body .r_b {
        position: relative;
}
body .span_2 {
        width: 30%;
}
body .span_3 {
        width: 40%;
}
body .span_4 {
        width: 50%;
}
body .span_5 {
        width: 60%;
}
body .span_6 {
        width: 70%;
}
@media all and (max-width: 600px) {
body .span_2, body .span_3, body .span_4, body .span_5, body .span_6 {
            width: 100%;
    }
}
body .coll.span_2 {
        padding-bottom: 1rem;
}
.header_pages {
    min-height: 360px;
    background: #5288F6;
    background-size: cover;
    position: relative;
    background-position: center center;
}
.header_pages.small {
        min-height: 250px;
}
@media all and (max-width: 600px) {
.header_pages.small {
            min-height: 150px;
    }
}
.header_pages:before {
        content: '';
        background: rgba(50, 85, 157, .4);
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
}
.shift_up_card {
    position: relative;
    top: -100px;
    padding: 0!important;
    min-height: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
}
.shift_up_card:before {
        content: '';
        display: block;
        border-top: solid 100px transparent;
        border-right: solid 100px #F3F3F3;
        position: absolute;
        left: -100px;
        top: 0;
}
.shift_up_card:after {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        content: '';
        box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
        display: block;
}
.shift_up_card .content {
        position: relative;
        z-index: 2;
}
.shift_up_card .content p.title strong {
            text-transform: uppercase;
            color: #211F5E;
}
.shift_up_card .quote {
        background: #F3F3F3;
        padding: 5rem 3rem;
        text-align: center;
}
.shift_up_card .quote q {
            font-size: 1.11111rem;
            font-style: italic;
            color: #211F5E;
}
@media all and (max-width: 600px) {
.shift_up_card {
        position: static;
    }
        .shift_up_card:before {
            display: none;
    }
}
.small_slides_widget {
    height: 240px!important;
    min-height: 0!important;
    position: relative;
}
.small_slides_widget li img {
        display: none;
}
.small_slides_widget li {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
}
.small_slides_widget li .slide_content {
            position: absolute;
            width: 80%;
            top: 90%;
            left: 50%;
            transform: translateX(-50%);
            background: #FFF;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
            padding: 1rem;
}
.small_slides_widget li .slide_content p.title {
                padding-bottom: 0.5rem;
}
.small_slides_widget li .slide_content p.title strong {
                text-transform: none;
                font-weight: 400;
}
.slider__widget .nav_arrows {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.slider__widget .nav_arrows span.arrows_left {
        margin: 0.5rem;
}
.slider__widget .nav_arrows span.arrows_right {
        margin: 0.5rem;
}
.colls .logo {
    padding: 1rem;
}
.colls .logo img {
        max-height: 80px;
        width: auto!important;
}
/* Header height is controlled by flexbox in components.sss */
.main_wr {
    opacity: 0;
    transition: opacity 1s;
    position: relative;
    z-index: 2;
}
.main_wr.show {
        opacity: 1;
}
.intro {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background: #FFF url(/theme/bovero/dist/images/09ad014ba2295e15ea3be417c190d6ba.png) no-repeat center center;
    background-size: 500px auto;
    transition: opacity 1s;
}
.intro.hide {
        opacity: 0;
}
@media all and (max-width: 600px) {
.intro {
        background-size: 300px auto;
    }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 115px;
    z-index: 200000;
    transition: background 0.5s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
        align-items: stretch;
}
@media all and (max-width: 600px) {
header {
        background: #FFF;
    }
}
header .center {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        width: 100%;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        max-width: 1024px;
}
@media all and (max-width: 990px) {
header .center {
            padding-left: 0;
    }
}
header .logo__placeholder {
        position: relative;
        width: 100%;
        max-width: 420px;
        -ms-flex-negative: 1;
            flex-shrink: 1;
}
header .logo {
        display: block;
        width: 100%;
        height: 115px;
        position: absolute;
        left: 0;
        top: -75px;
        padding: 0.75rem 1rem;
        background: #FFF;
}
@media all and (max-width: 600px) {
header .logo {
            width: 75%;
    }
}
header .logo span {
            display: none;
}
header .logo:before {
            content: '';
            width: 100%;
            height: 100%;
            background: url(/theme/bovero/dist/images/09ad014ba2295e15ea3be417c190d6ba.png) no-repeat left center;
            background-size: contain;
            display: block;
            transition: opacity 0.3s;
}
header .logo:hover {
            opacity: 1;
            transform: scale(1);
}
header .logo:hover:before {
                opacity: 0.8;
}
header .main_menu {
        display: none;
        -ms-flex: 1;
            flex: 1;
}
@media all and (min-width: 990px) {
header .main_menu {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
                align-items: center;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}
header .menu.simpel_list {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        gap: 0 4px;
        padding-right: 10px;
}
header .menu.simpel_list li a {
            color: #FFF;
            text-decoration: none;
            text-transform: uppercase;
            display: block;
            padding: 5px 8px;
            white-space: nowrap;
}
header .menu.simpel_list li a:hover {
                opacity: 0.8;
}
header .mobile__nav {
        display: none;
}
@media all and (max-width: 990px) {
header .mobile__nav {
            display: block;
    }
}
header .mobile.nav {
        background: #211F5E;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 50px;
        height: 50px;
        -ms-flex-item-align: center;
            align-self: center;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center;
        cursor: pointer;
}
header .mobile.nav .burger {
            width: 20px;
            height: 20px;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: end;
                align-items: flex-end;
            -ms-flex-direction: column;
                flex-direction: column;
            -webkit-user-select: none;
                -ms-user-select: none;
                    user-select: none;
}
header .mobile.nav .burger span {
                display: block;
                background-color: #FFF;
                height: 2px;
                margin-bottom: 6px;
                -ms-flex-negative: 0;
                    flex-shrink: 0;
                width: 100%;
                transition: width 0.3s;
}
header .mobile.nav .burger span:nth-child(2) {
                    width: 80%;
}
header .mobile.nav:hover .burger span {
                    width: 80%;
}
header .mobile.nav:hover .burger span:nth-child(2) {
                        width: 100%;
}
header.scrolling {
    background: #FFF;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}
header.scrolling .menu.simpel_list li a {
        color: #211F5E;
}
footer nav ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0 0 20px 0;
    border-top: solid 1px rgba(255, 255, 255, .1);
}
footer nav ul li {
        padding: 5px;
}
footer nav ul a {
        text-decoration: none;
}
@media all and (max-width: 600px) {
footer nav ul {
        padding-bottom: 80px;
        margin-top: 30px;
    }
}
.panel_nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20%;
    min-width: 320px;
    background: #FFF;
    z-index: 1;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.5s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .3);
}
.panel_nav.open {
        transform: translateX(0);
}
.panel_nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        padding-bottom: 20px;
}
.panel_nav ul a {
            color: #211F5E;
            text-decoration: none;
            text-transform: uppercase;
            display: block;
            padding: 5px;
}
footer {
    min-height: 500px;
    background: #151515;
    padding: 2rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
}
footer * {
        color: #FFF;
}
footer .center {
        position: relative;
}
footer .center * {
            color: #FFF;
}
footer .comp {
        color: #666;
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        padding: 0.5rem;
}
footer a.logo {
        background: url(/theme/bovero/dist/images/62564faae8eae37b9c60f59b07a08759.png) no-repeat 0 0;
        width: 100%;
        height: 70px;
        background-size: contain;
        display: block;
}
footer .coll {
        width: 33%;
}
@media all and (max-width: 600px) {
footer .coll {
            width: 100%!important;
            padding: 1rem!important;
    }
}
footer .coll_1 {
        width: 40%;
}
footer .coll_2 {
        width: 25%;
}
footer .coll_2 .title strong {
            color: #5288F6;
            font-size: 1.11111em;
}
footer .coll_2 ul {
            list-style-type: none;
            padding: 0;
}
footer .coll_2 ul, footer .coll_2 div {
            margin: 0;
}
@media all and (max-width: 600px) {
footer .coll_2 ul, footer .coll_2 div {
                margin: 0;
    }
}
footer .coll_2 ul {
            margin-left: 0;
}
footer .coll_2 ul li {
                padding-bottom: 0.2rem;
}
footer .coll_2 .colls {
            margin: 0;
}
footer .map_frame {
        margin-top: 2rem;
        width: 200px;
        height: 200px;
        transform: skew(0deg, 15deg);
        overflow: hidden;
        border-radius: 10px;
        position: relative;
}
footer .map_frame .inner_frame {
            width: 280px;
            height: 280px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%) skew(0deg, -15deg);
}
footer .map_frame .map {
            width: 100%;
            height: 100%;
}
.templ_2 {
    background: #FFF;
}
.slide_imgs {
    min-height: 580px;
}
.slide_imgs ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        width: 100%;
        height: 100%;
        position: relative;
        min-height: 580px;
}
.slide_imgs ul li {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
}
.slide_imgs ul li img {
                display: none;
}
.projects .colls .coll:first-child img {
            width: 100%;
            max-width: 180px;
            height: auto;
            display: block;
            margin: 1rem auto;
}
.projects .colls .coll:first-child .btns {
            display: -ms-flexbox;
            display: flex;
            text-align: right;
}
.projects .colls .coll:first-child .btns .btn {
                margin-left: auto;
}
.header_title_btn {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.social {
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.social li {
        padding: 0.5rem;
}
.social li a:hover i:before {
            color: #5288F6;
}
.map_show {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2000;
}
.map_show .map_el {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
}
.close_btn.full_screen {
    width: 35px;
    height: 35px;
    background: #5288F6;
    position: absolute;
    left: 2rem;
    top: 2rem;
    padding-top: 1rem;
}
.close_btn.full_screen span {
        background: #FFF;
        top: 0.9rem;
        left: 0.2rem;
        width: 80%;
}
.tags_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 1rem;
}
.tags_list li {
        padding: 0.2rem 0.1rem;
}
.tags_list li a {
        white-space: nowrap;
        display: inline-block;
        padding: 5px 10px;
        background: var(--color__4);
        text-decoration: none;
        border-radius: 20px;
}
.tags_list li.selected a {
        background: #211F5E;
        color: #FFF;
}
p.message {
    text-align: center;
    padding: 1rem;
}
.floated_card {
    position: relative;
    padding-right: 320px!important;
}
@media all and (max-width: 800px) {
.floated_card {
        padding-right: 1rem!important;
    }
}
.floated_card .floated_card {
        position: absolute;
        right: -50px;
        width: 100%;
        max-width: 300px;
        top: 50px;
        background: #FFF;
        padding: 1rem!important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, .2);
}
@media all and (max-width: 800px) {
.floated_card .floated_card {
            position: static;
    }
}
.floated_card .floated_card ul {
            list-style-type: none;
            width: 100%;
            margin: 0;
            padding: 0;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            -ms-flex-direction: row;
                flex-direction: row;
            -ms-flex-pack: center;
                justify-content: center;
}
.floated_card .floated_card ul li {
                width: 50%;
                padding: 1rem;
}
.floated_card .floated_card ul li a {
                    display: block;
                    width: 100%;
                    height: 100%;
                    display: -ms-flexbox;
                    display: flex;
                    -ms-flex-align: center;
                        align-items: center;
                    -ms-flex-pack: center;
                        justify-content: center;
}
.floated_card .floated_card ul li img {
                    border: none;
                    width: 100%;
                    height: auto;
}
.zebra_panels {
    
    padding: 1rem;
    padding-top: 2rem;
    background: #FFF;
}
.zebra_panels .zebra_panel {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-align: center;
            align-items: center;
        padding: 1.5rem 0;
        position: relative;
        z-index: 10000;
}
.zebra_panels .zebra_panel .image_panel {
            min-height: 412px;
            width: 60%;
            position: relative;
            z-index: 1;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
                align-items: center;
}
@media all and (max-width: 600px) {
.zebra_panels .zebra_panel .image_panel {
                width: 100%;
                min-height: 155px;
    }
}
.zebra_panels .zebra_panel .img {
            min-height: 350px;
            width: 100%;
}
.zebra_panels .zebra_panel .card {
            background: rgba(255, 255, 255, .8);
            padding: 1rem 2rem;
            width: 60%;
            position: relative;
            z-index: 2;
            margin-left: -5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}
.zebra_panels .zebra_panel .content p {
                font-size: 1.11111em;
                color: #32559D;
}
.zebra_panels .zebra_panel h2 {
            color: #211F5E;
            text-transform: uppercase;
            font-size: 2.22222rem;
            font-weight: bold;
            padding-bottom: 1rem;
            margin: 0;
            word-wrap: break-word;
            word-wrap: break-word;
            -webkit-hyphens: auto;
                -ms-hyphens: auto;
                    hyphens: auto;
}
@media all and (max-width: 600px) {
.zebra_panels .zebra_panel h2 {
                font-size: 1.38889rem;
                word-wrap: break-word;
                word-wrap: break-word;
                -webkit-hyphens: auto;
                    -ms-hyphens: auto;
                        hyphens: auto;
    }
}
.zebra_panels .zebra_panel.odd .card {
            margin-right: -5rem;
            margin-left: 0;
}
.zebra_panels.content {
        padding: 1.5rem 3rem;
}
.zebra_panels.content h1 {
            text-align: center;
            padding: 2rem;
}
.zebra_panels.content .zebra_panel {
            padding: 0;
}
.zebra_panels.content .zebra_panel h2 {
                color: #211F5E;
                font-size: 1.11111rem;
                text-transform: none;
                font-weight: normal;
}
@media all and (max-width: 600px) {
.zebra_panels.content {
        padding: 1rem;
    }
}
.zebra_panels .zebra_panel .img {
        background-size: cover;
}
@media all and (max-width: 600px) {
.zebra_panels .zebra_panel {
        display: block;
        margin-bottom: 1rem;
    }
        .zebra_panels .zebra_panel .img {
            width: 100%;
            min-height: 100px;
            background-size: cover;
    }
        .zebra_panels .zebra_panel .card {
            width: 100%;
            margin: 0;
            padding: 1rem;
    }
}
.block_layer {
    background: #32559D;
}
.block_layer .center {
        padding: 6rem 2rem;
}
.block_layer .center h3 {
            font-size: 2.77778em;
            font-weight: 900;
            text-align: center;
}
@media all and (max-width: 600px) {
.block_layer .center h3 {
                font-size: 1.38889em;
    }
}
.block_layer .center * {
            color: #FFF;
}
.block_layer .center .content {
            display: -ms-flexbox;
            display: flex;
}
@media all and (max-width: 600px) {
.block_layer .center .content {
                display: block;
    }
}
.block_layer .center .content p {
                width: 50%;
                padding-right: 1rem;
                font-size: 1em;
}
@media all and (max-width: 600px) {
.block_layer .center .content p {
                    width: 100%;
    }
}
.block_layer .center .btns {
            text-align: center;
}
::selection {
    background: #211F5E;
    color: #FFF;
}
::-moz-selection {
    background: #211F5E;
    color: #FFF;
}
body, html {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: #151515;
}
*, body {
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    font-size: 18px;
    word-wrap: break-word;
}
h1, h2, h3, h4, th {
    font-family: 'Lato', sans-serif;
    padding: 0;
    letter-spacing: 0.03em;
    margin: 0;
    padding-bottom: 30px;
    color: #5288F6;
    font-weight: 600;
    line-height: 1.2em;
    font-weight: normal;
    word-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}
h1 {
    font-size: 2.22222rem;
    color: #211F5E;
    font-weight: 900;
    text-transform: uppercase;
}
@media all and (max-width: 600px) {
h1 {
        font-size: 1.8rem;
    }
}
h2 {
    font-size: 1.66667rem;
}
h3 {
    font-size: 1.38889rem;
}
h4, th {
    font-size: 1.11111rem;
}
h5 {
    font-size: 1rem;
}
sub {
    font-size: 0.6rem;
    position: relative;
}
sup {
    font-size: 0.6rem;
    position: relative;
}
span, strong, em {
    font-size: 0.88889rem;
}
a, .read_more_link {
    color: #5288F6;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 0.88889rem;
}
a:hover, .read_more_link:hover {
        opacity: 0.8;
        transform: scale(1.02);
}
ul, ol {
    color: #211F5E;
    margin-top: 0;
}
ul li, ol li {
        font-size: 0.88889rem;
}
p {
    padding: 0 ;
    margin: 0;
    padding-bottom: 20px;
    font-size: 0.88889rem;
    line-height: 1.4em;
}
p em {
    font-size: 0.88889rem;
}
p strong {
    font-weight: 600;
}
p, em, i, span, strong {
    color: #211F5E;
}
table {
    border-collapse: collapse;
    margin-bottom: 10px;
}
table td, table th {
        padding: 3px;
        font-size: 0.88889rem;
}
table td:nth-child(2) {
        min-width: 80px;
}
form label {
        display: none;
        font-size: 0.8rem;
}
form label.show {
            display: inline;
}
form .row {
        padding: 0.2rem 0;
}
form input, form textarea {
        font-size: 0.8rem;
        width: 100%;
        border: solid 1px #5288F6;
        padding: 0.5rem;
}
form input[type=checkbox] {
        width: auto;
        display: inline-block;
}
@media all and (max-width: 800px) {
    iframe {
        width: 100%!important;
    }
}

/*# sourceMappingURL=app.css.map*/