/**
 * @author Design & Accessible Team ( Angie Radtke  )
 * @package Joomla
 * @subpackage Accessible-Template-Beez
 * @copyright Copyright (C) 2005 - 2019 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.php
 * Joomla! is free software. This version may have been modified pursuant to the
 * GNU General Public License, and as distributed it includes or is derivative
 * of works licensed under the GNU General Public License or other free or open
 * source software licenses. See COPYRIGHT.php for copyright notices and
 * details.
 */

*{
    box-sizing: border-box;
}

html{
    height: 100%;
}

html, body{
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background: #f3f5f7;
    color: #002d5c;
    padding: 0px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    padding-bottom: 130px;
}


a{
    color: #a2192b;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

a:hover{
    color: #ce314e;
    text-decoration: underline;
}

h1, h2, h3, h4{
    margin: 0;
    font-family: 'Merriweather', serif;
}

p{
    margin: 0 0 10px;
}

ul, ul.menu{
    margin: 0;
    padding: 0;
    list-style-type: none
}

article img{
    max-width: 100%;
}

article ul{
    list-style-type: disc;
    padding-left: 15px;
}

.news-menu .content-text img{
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.flex{
    display: flex;
    display: -ms-flex
}

.flex.vertical{
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex.horizontal{
    justify-content: space-between;
    flex-wrap: wrap;
}

.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


/* LOGO BAR */
.logo-bar{
    height: 50px;
    background: #002d5c;
    color: #fff;
    padding: 15px 0;
}

.logo-bar .login-link::before{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../images/login_w.svg") 0 0 no-repeat;
    position: relative;
    right: 10px;
    top: 3px;
}

.logo-bar.main-logo .login-link::before{
    background: url("../images/login.svg") 0 0 no-repeat;
}

.logo-bar.main-logo{
    height: 80px;
    padding: 25px 0 20px;
    background: #fff;
}


.logo-bar a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.logo-bar.main-logo a{
    color: #002d5c;
}

.logo-bar .container{
    flex: 1;
}


.logo-bar .logo{
    padding: 3px 0;
    margin-top: -5px;
}

.logo-bar .logo img{
    vertical-align: middle;
}

.logo-bar .logo h1,
.logo-bar .logo span{
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    font-weight: 300;
    margin-left: 15px;
    vertical-align: middle;
}

.logo-bar .logo-menu{
    flex: 2;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.logo-menu .phone{
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 26px;
}

.logo-menu .menu{
    margin: 0;
    margin-left: -15px;
    padding: 0;
}

.logo-bar .menu a:hover{
    text-decoration: underline;
}

.logo-menu .menu li{
    display: inline-block;
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 14px;
}

.pre-content{
    margin-bottom: 0px;
}

.pre-content .container{
    padding: 0;
}

.pre-content .bannergroup{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.pre-content .bannergroup a{
    color: #fff;
}

.pre-content .banneritem{
    flex: 0 50%;
    width: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-size: 17px;
    height: 230px;
    overflow: hidden;
}

.pre-content .banneritem a::before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e5788;
    opacity: 0.5;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}

.pre-content .banneritem a:hover::before{
    transform: scaleX(1);
}

.pre-content .banneritem .description{
    width: 100%;
    position: relative;
    z-index: -2;
    margin-bottom: -5px;
}

.pre-content .banneritem img{
    min-width: 100%;
    min-height: 100%;
}

.pre-content .banneritem .container{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 50px 0;
    text-align: center;
}

.pre-content .banneritem h2{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: bold;
}

.pre-content .banneritem p{
    margin-bottom: 30px;
}

.pre-content .banneritem p.more{
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
    margin: 0;
}

.pre-content .banneritem p.more:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/arrow.svg) 0 0 no-repeat;
    vertical-align: bottom;
    position: relative;
    left: 12px;
    top: 4px;
}

.main{
    margin-top: 20px;
}

.main-container{
    margin: 0 -10px;
}

.left-sidebar, .right-sidebar{
    flex: 1;
    margin: 0 10px;
}

.sidebar{
    padding-top: 78px;
}

.sidebar .moduletable{
    background: #fff;
    border: 1px solid #d6d8de;
    padding: 20px;
    margin-bottom: 15px;
}

.sidebar h3{
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

.component{
    flex: 2;
    margin: 0 10px;
    z-index: 1;
}

.moduletable h3{
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Fira Sans', sans-serif;
}

ul.latestnews{
    margin-top: -10px;
    display: flex;
}

.latestnews li{
    padding: 10px 20px;
    width: 20%;
    border-left: 2px dotted #d6d8de;
    margin-left: -2px;
}

.partners.bannergroup{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    margin: 0 -10px;
    padding: 0;
}

.partners.bannergroup img{
    width: 140px;
    margin: 0 auto;
    filter: gray;
    filter: grayscale(100%);
    transition: all 0.5s;
    opacity: 0.3;
}

.partners.bannergroup a:hover img {
    filter: none;
    opacity: 1;
}

a.presentation-button{
    display: block;
    text-align: center;
    width: 305px;
    margin: 10px auto;
    height: 30px;
    color: #fff;
    background: #a2192b;
    padding: 6px 0;
    cursor: pointer;
}

a.presentation-button:hover{
    background: #ce314e;
}

.promotion a.presentation-button:hover{background:#b9212e !important;}


/* mainbottom */
.mainbottom{
    margin: 0;
}
.mainbottom .services{
    height: 140px;
    padding: 12px 0;
    margin: 0 -10px;
    background: #5281ab;
    font-weight: 300;
    overflow: hidden;
}

.mainbottom .service{
    text-align: center;
    display: block;
    float: left;
    width: 25%;
    height: 100%;
    padding: 5px 10px;
    border-left: 2px dashed #fff;
    margin-left: -2px;
    color: #fff;
    cursor: pointer;
}

.mainbottom .service svg{
    display: block;
    height: 40%;
    margin: 0 auto 15px;
    fill: #fff;
}

.mainbottom .service:hover{
    color: #7fc2fb;
}

.main-rows h3{
    text-align: center;
    margin-bottom: 25px;
    color: #000;
}

.main-rows .news{
    padding: 25px 0;
}

.main-rows .news .moduletable{
    margin-left: -1px;
    overflow: hidden;
}

.main-rows .banners{
    background: #fff;
    padding: 25px 0;
}

.main-rows .banners .slick-slide{
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.main-rows .logos{
    background: #5281ab;
    padding: 25px 0;
}

.main-rows .numbers{
    padding: 25px 0;
}

.main-rows .numbers .bannergroup{
    display: flex;
    margin: 0 -20px;
}

.main-rows .numbers .banneritem{
    flex: 1;
    padding: 15px;
    background: #fff;
    border: 1px solid #d6d8de;
    text-align: center;
    font-size: 14px;
    margin: 0 20px;
}

.main-rows .numbers h4{
    font-family: 'Fira Sans', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer{
    background: #d6d8de;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
    height: 130px;
    color: #002d5c;
}

.footer .menu{
    width: 250px;
}

.footer .menu li{
    float: left;
    width: 50%;
    margin-bottom: 10px;
}

.footer .flex{
    justify-content: space-between;
}

.footer .single{
    flex: 1;
}

.footer .right{
    text-align: right;
}

.footer .left img{
    margin-bottom: 10px;
    width: 80px;
}

#back-wrapper{
    position: fixed;
    z-index: -1;
}

.nav-bar{
    height: 35px;
    background: #d6d8de;
}

.nav-bar ul.menu{
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    justify-content: center;
    padding: 10px 0;
}

.nav-bar ul.menu li{
    margin: 0 20px;
}


/* content */
.main{
    padding-bottom: 30px;
}
.breadcrumbs{
    margin-bottom: 30px;
    font-size: 12px;
}
h1{
    font-size: 17px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px dashed #d6d8de;
    margin-bottom: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td{
    padding: 20px;
    border: 2px dotted #d6d8de;
}

td{
    background: #fff;
    border-top: 0;
}

th{
    border-bottom: 0;
}

tr:first-child th,
tr:first-child td {
    border-top: 0;
}

tr th:first-child,
tr td:first-child {
    border-left: 0;
}

tr:last-child th,
tr:last-child td {
    border-bottom: 0;
}

tr th:last-child,
tr td:last-child {
    border-right: 0;
}

th p, td p{
    margin: 0;
}

tr{
    border-bottom: : 1px solid #d6d8de;
}

table th{
    background: #96b4d2;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}

article h3{
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    margin: 15px 0 5px;
}

article h2{
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin: 25px 0 10px;   
}

.after-title{
    padding-bottom: 10px;
    border-bottom: 2px dashed #d6d8de;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.after-title li{
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
}

.after-title li.bullet{
    display: inline-block;
    text-align: center;
    min-width: 20px;
    max-width: 50px;
    width: 5%;
}

.after-title li.bullet span{
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: #002d5c;
    margin: 0 auto;
}

.after-title li.active a{
    color: #002d5c;
    text-decoration: none;
}

article a.more,
.readmore a{
    text-align: right;
    margin: 20px 0;
    display: block;
    padding-right: 8px;
}

article a.more::after,
.readmore a::after{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/arrow.svg) 0 0 no-repeat;
    vertical-align: bottom;
    position: relative;
    left: 8px;
    top: 4px;
}

.secondary-highlight{
    background: #fff;
    padding: 20px;
    border: 1px solid #d6d8de;
    margin-top: 20px;
}

.secondary-highlight h2{
    margin-top: 0;
}

.newsblog article{
    border-bottom: 2px dashed #d6d8de;
    padding-bottom: 0px;
    margin-bottom: 20px;
    hyphens: auto;
}

article.newsblog{
    hyphens: auto;
}

.readmore{
    clear: both;
}

.newsblog .img-fulltext-left{
    margin-bottom: 20px;
}

.newsblog .published{
    font-size: 13px;
}

.latestnews .published{
    color: #666;
    margin-bottom: 10px;
    font-size: 12px;
}

.latestnews .published .time{
    margin-left: 10px;
}

.all-news {
    text-align: center;
    margin: 15px 0 0;
}

.all-news a::after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/arrow.svg) 0 0 no-repeat;
    vertical-align: bottom;
    position: relative;
    left: 6px;
    top: 4px;
}

.published img{
    height: 18px;
    vertical-align: bottom;
    margin-right: 5px;
}

.newsblog .article-info{
    margin: 15px 0 20px;
}

.newsblog .published .time{
    margin-left: 20px;
}

.blog h2{
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: 'Fira Sans', sans-serif;
}

.blog h3{
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.blog .category-image{
    width: 100px;
    margin-right: 50px;
    text-align: center;
}

.blog .category-contents{
    width: 100%;
}

.blog .category-image img{
    margin: 0 auto;
    max-width: 100%;
}
.blog .category-rubble{
    display: block;
    width: 50px;
    height: 40px;
    align-self: center;
}

.blog .category-rubble svg .st0{
    fill:#d6d8de;
}

.blog .category-rubble:hover svg .st0{
    fill:#A2192B;
}


.blog .category{
    padding: 15px 0;
    border-bottom: 2px dashed #d6d8de;
    display: flex;
}
.search-blog{
    margin: 25px 0 10px;
    display: flex;
}
.search-blog label{
    color: #babbbf;
    min-width: 150px;
    padding: 8px 0;
}

.search-blog input{
    width: 100%;
    height: 35px;
    border: 1px solid #d6d8de;
    padding-left: 5px;
    padding-right: 5px;
}

.search-blog input::placeholder{
    color: #babbbf;
    font-style: italic;
}


[id^=chronoform-RequestForm]{
    font-size: 18px;
    color: #000;
}

[id^=chronoform-RequestForm] .form-title{
    border: 0;
    font-size: 18px;
    color: #002d5c;
    font-weight: bold;
    width: auto;
    background: transparent;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #a2192b;
    width: 100%;
}
[id^=chronoform-RequestForm] #fin-custom{
    width: 100%;
}

[id^=chronoform-RequestForm] .gcore-line-tr{
    margin: 10px 0;
}

[id^=chronoform-RequestForm] .gcore-label-left{
    display: inline-block;
    width: 100px;
    margin-top: 5px;
    font-size: 14px;
    color: #707173;
}

[id^=chronoform-RequestForm] .gcore-label-left span{
    display: none;
}

[id^=chronoform-RequestForm] .gcore-input input{
    width: 295px;
    height: 30px;
}
[id^=chronoform-RequestForm] #ftd-recaptcha{
    margin-top: 20px;
    text-align: center;
}
[id^=chronoform-RequestForm] .gcore-input input.btn{
    margin: 0 auto;
    width: 245px;
    height: 40px;
    background: #a2192b;
    color: #fff;
    border: 0;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 30px;
}

[id^=chronoform-RequestForm] .gcore-input input.btn:hover{
    background: #ce314e;
}
[id^=chronoform-RequestForm] .gcore-input,
[id^=chronoform-RequestForm] #fitem8{
    display: inline-block;
    vertical-align: top;
}

[id^=chronoform-RequestForm] #ftd-button6{
    text-align: center;
}

[id^=chronoform-RequestForm] #ftr-orgname{
    font-size: 14px;
}

[id^=chronoform-RequestForm] #personal{
    width: auto;
    height: auto;
}

[id^=chronoform-RequestForm] #fitem{
    font-size: 13px;
    font-weight: light;
}

#back-wrapper{
    display: none;
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background: rgba(0,0,0,0.5);
}

#back-wrapper .wrap{
    position: absolute;
    width: 455px;
    left: 50%;
    margin-left: -222px;
    padding: 30px 25px;
    top: 80px;
    background: #eceded;
}

#back-wrapper .cross{
    position: absolute;
    right: 5px;
    top: -35px;
    z-index: 999999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 4px;
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold;
}
.glyphicon-ok:before{content:"V";}
.glyphicon-remove:before{content: "X";}

a.anchor{
    display: block;
    position: relative;
    top: -125px;
    visibility: hidden;
}

#back-wrapper .thankyou{
    text-align: center;
}

.participants-alphabit{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 1110px;
}

.participants-alphabit .participant-index p span{
    font-family: 'Fira Sans', sans-serif !important;
    color: #002d5c !important;
}

.participants-alphabit .participant-index{
    display: block;
    margin-bottom: 20px;
    padding: 0 10px;
    white-space: break-spaces;
    width: 25%;
}

.participants-content{
    display: block;
}

.participants-content .city{
    font-size: 16px;
    color: #002d5c;
    margin: 20px 0;
    display: block;
    font-weight: bold;
    padding-top: 90px;
    margin-top: -90px;
}

.participants-content .participant-info{
    display: block;
    max-width: 600px;
}

.participants-content .participant-info span{
    margin-bottom: 5px;
    display: block;
}

.person{
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.person:hover img{
    border: 1px solid #a2192b;
}

.person img{
    width: 100px;
    float: left;
    margin-right: 20px;
    border: 1px solid transparent;
}

.person .inner{
    display: inline-block;
    vertical-align: middle;
}

.persons li{
    clear: both;
}

.team article img{
    float: left;
    margin: 0 20px 200px 0;
}

.fixed-padding{
    padding-top: 85px;
}

.fixed-top{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}


/* 20 years celebration banner */
.logo-bar.main-logo{
    position: relative;
}

.logo-bar .logo,
.logo-bar .logo-menu{
    z-index:5;
    position: relative;
}

.celebration{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/celebration/sky_fon.png);
    background-size: cover;
    background-position: 50% 50%;
    z-index:0;
    font-size: 42px;
    font-weight: 300;
    color: #a2192b;
    overflow: hidden;
}

.celebration_link{
    display: block;
    position: absolute;
    height: 80px;
    width: 350px;
    top: -18px;
    left: 175px;
    z-index: 999;
}

.celebration .container{
    padding: 0;
    padding-left: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.celebration .text{
    position: relative;
    z-index:3;
}

#celebration_sun{
    position: absolute;
    top: -35px;
    left: 50px;
    display: none;
    z-index: 2;
}
#celebration_rays{
    position: absolute;
    left: -238px;
    top: -135px;
    display: none;
    z-index: 4;
}
#celebration_rays{
    transform: rotate(0);
    transform-origin: 362px 172px;
    transition: transform 8s linear;
}

#celebration_rays.rotate{
    transition: transform 8s ease-in;
    transform: rotate(359deg);
    transform-origin: 362px 172px;
}
.relative{
    position: relative;
}

/*mobile*/

@media (max-width: 1200px){
    .logo-bar.main-logo{
        margin-bottom: 60px;
    }
    .celebration{
        top: 80px;
        height: 60px;
        font-size: 32px;
    }
    .celebration .container{
        padding-left: 0;
        text-align: center;
    }
    .celebration .text{
        width: 100%;
    }
    #celebration_sun,
    #celebration_rays{
        display: block;
    }
    #celebration_sun{
        left: 0;
    }
    #celebration_rays{
        left: -288px;
    }
    .celebration_link{
        width: 95vw;
        min-width: 100%;
        left:0;
        top: 62px;
        height: 60px;
    }
}

@media (max-width: 1000px){
    .container{
        padding: 0 10px;
        height: auto;
    }
    .pre-content .bannergroup,
    ul.latestnews{
        display: block;
    }
    .pre-content .banneritem{
        width: 100%;
    }
    
    .latestnews li{
        width: 100%;
    }
    .slick-prev, .slick-next{
        display: none !important;
    }
    .main-container{
        display: block;
    }
    .nav-bar{
        height: auto;
    }
    .nav-bar ul.menu li{
        margin: 0 10px;
        text-align: center;
    }
    .sidebar{
        margin: 10px 0;
        padding: 0 10px;
    }
    .team article img{
        margin-bottom: 20px;
    }
    .footer{
        height: auto;
        position: static;
        padding-bottom: 60px;
    }
    body{
        padding-bottom: 0;
    }
    .fixed-padding{
        padding-top: 0;
    }
    .fixed-top{
        position: static;
    }
}

@media (max-width: 800px){
    .footer .flex{
        display: block;
    }
    .main-rows .numbers .bannergroup{
        display: block;
        margin: 0;
    }
    .main-rows .numbers .banneritem{
        width: 100%;
        margin: 0;
    }
    .mainbottom .service{
        width: 49%;
        margin-bottom: 10px;
        
    }
    .mainbottom .services{
        height: auto;
        border-bottom: 2px dashed #fff;
        
    }
    .mainbottom .service svg{
        height: 40px;
    }
    .participants-alphabit{
        display: block;
        height: auto;
    }
    h1{
        margin-bottom: 10px;
    }
    .after-title{
        margin-bottom: 10px;
        padding-bottom: 0;
    }
    .blog h2{
        padding-right: 20px;
    }
    a.presentation-button{
        height: auto;
        max-width: 100%;
    }
}
@media (max-width: 455px){
    #back-wrapper .wrap{
        width: 100%;
        margin-left: 0;
        left: 0;
        top: 40px;
        padding: 20px;
    }
    [id^=chronoform-RequestForm] .gcore-input{
        width: 100%;
    }
    [id^=chronoform-RequestForm] .gcore-input input{
        width: 100%;
    }
    [id^=chronoform-RequestForm] .gcore-line-tr{
        margin: 5px 0;
    }
    .mod-languages{
        padding-right: 5px !important;
        margin-right: 0 !important;
    }
    .logo-menu .moduletable:first-child .mod-languages{
        display: flex;
        align-items: center;
        padding-top: 0
    }
    .mod-languages .lang-inline{
        display: flex !important;
        align-items: center;
    }
}

@media (max-width: 399px) {
    .moduletable.lang-selector {
        margin-left: 25px
    }
}

@media (max-width: 359px){
    .nav-bar ul.menu{
        font-size: 10px;
    }
    .logo-menu .menu{
        margin-left: -15px!important;
    }
    .logo-menu .menu li{
        margin-left: 5px;
    }
    .logo-menu .moduletable{
        width: 50%;
    }
    .logo-menu .moduletable.lang-selector{
        width: auto;
    }
    .logo-bar a{
        font-size: 80%;
    }
    .mod-languages{
        margin-right: 20px !important;
    }

    .mod-languages li span{
        padding: 1px 4px !important;
    }
}

#totop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(../images/icon_top.png) 0 0 no-repeat;
    transition: background 0.2s ease;
}

#totop.show{
    display: block;
}

#totop:hover{
    background-position: 100% 100%;
}

.highlight-button{
    text-align: left;
    margin: 50px 0 10px;
}

.highlight-button a{
    color: #fff !important;
    background: #a2192b !important;
    padding: 15px 20px;
}

.highlight-button a:hover{
    background: #ce314e !important;
}

.hidden{
    display: none;
}

.logo-menu .moduletable{
    flex: auto 0;
}

.mod-languages{
    padding-right: 40px;
    padding-top: 0;
    height: 20px;
    margin-right: 40px;
    margin-top: 0;
    border-right: 1px solid #fff;
}

.main-logo .mod-languages{
    border-right: 1px solid #002d5c;
    padding-top: 11px;
    height: 40px;
}

.logo-bar.main-logo .mod-languages a{
    color: #a2192b
}

.mod-languages a{
    color: #fff;
}

.logo-bar.main-logo .mod-languages a:hover{
    color: #ce314e;
}

.mod-languages a:hover{
    color: #fff;
    text-decoration: underline;
}

.logo-bar.main-logo .mod-languages .lang-active span{
    color: #fff;
    background: #002d5c;
}

.mod-languages .lang-active span{
    background: #fff;
    color: #002d5c;
    padding: 2px 4px;
    display:inline-block;
}

@media (max-width:800px){
    .mod-languages{
        padding-right: 20px;
        margin-right: 20px;
    }
}

.nofloat{
    float: none!important;
    vertical-align: middle;
}

.ng-counter.base {
  padding-left: 35px;
  display: flex;
  width: 500px
}

.ng-counter .thread {
  display: inline-block;
  position: relative;
  margin-top: -25px;
  transform-origin: 50% 0;
  animation: moveIt 2.5s ease-in-out infinite;
}

.ng-counter .counter-holder{
    margin-left: 30px;
    display: flex;
    align-self: flex-end;
    line-height: 22px;
    color: #ce314e;
    align-self: flex-start;
    font-family: 'Merriweather' !important;
}

.ng-counter #seconds-counter {
    margin: 0 10px;
    color: #002d5c;
    width: 60px;
    display: inline-block;
    text-align: left;
}

@keyframes moveIt {
  0%, 100% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(-25deg);
  }
}

.logo-menu .ny-banner {
    flex:2;
    margin-left: 20px
}

@media (max-width: 1000px) {
    .ny-banner{
        display: none;
    }
}

.hp, #ftr-hp {
    display: none!important;
}

.cours_info{
    display: flex;
    margin-bottom: 10px;
}

.cours_info_l{
    max-width: 250px;
    margin-right: 10px;
}

.cours_info_l button{
    background: transparent;
    border: 1px solid #63abd7;
    color: #63abd7;
    font-size: 10px;
    padding: 5px 10px;
}

.cours_info_r{
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    color: #63abd7;
    font-size: 10px;
}

.cours_info_r span{
    max-width: 190px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.cours_info_r img{
    max-width: 15px;
    margin-right: 5px
}

.cours_header{
    background-image: url('/images/courses/Lessons1_fon.jpg');
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 225px;
    display: flex;
    align-items: center;
    padding: 0 20px
}

.cours_header h3{
    color: #fff;
    width: 60%;
    font-size: 30px;
    font-family: 'Merriweather';
    font-weight: lighter;

}

.cours_bullets{
    background: #d5e0eb;
    padding: 0 20px;
}

.cours_bullet{
    display: flex;
    border-bottom: 2px dotted #fff;
    padding: 20px 0px;
}

.cours_bullet_l{
    font-size: 16px;
    font-weight: bold;
    color: #002d5c;
    flex: 0 0 30%;
}

.cours_bullet_r{
    font-size: 14px;
    color: #002d5c;
}

.cours_bullet_r ul{
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

.cours_lector{
    display: flex;
}

.cours_lector_img{
    max-width: 80px;
    margin-right: 5px;
}
.cours_lector img{
    width: 100%;
}

.cours_lector_name, .cours_lector_aff{
    margin: 0;
}

.cours_lector_name{
    font-weight: bold;
}

.cours_block .nb{
    border: 0 !important;
}

.cours_bullet .submit{
    color: #fff;
    background: #5281ab;
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
}

.cours_program{
    margin-top: 20px;
}

.cours_intro{
    display: flex;
    margin-bottom: 20px;
}

.cours_intro img{
    width: 12%;
    margin-right: 10px;
}

.cours_intro p{
    margin: 0;
    color: #63abd7;
    font-size: 21px;
    line-height: 32px;
}

.cours_collapse{
    display: flex;
    flex-direction: column;
    margin: 5px 0;
    border: 1px solid #e4e4e4;
    color: #002d5c;
    font-size: 14px;
    padding: 10px;
}

.cours_collapse_head{
    display: flex;
    font-weight: bold;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}

.cours_collapse_switcher img{
    width: 20px;
    cursor: pointer;
}

.cours_collapse_content{
    display: none;
    margin-top: 10px;
}

.cours_collapse_content.show{
    display: block !important;
}

.cours_submission{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.cours_submission button{
    background: #a2192b;
    padding: 10px 20px;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.cours_submission button:hover{
    background: #ce314e;
}

.cours_prices_learn{
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.cours_prices_learn img{
    width: 30px;
    margin-right: 10px;
}

.cours_prices_learn button{
    border: 0;
    padding: 10px 20px;
    background: #5281ab;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cours_section_head{
    color: #002d5c;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.cours_recall{
    display: flex;
    border-bottom: 2px dotted #d6d8de;
    margin: 10px 0;
    padding-bottom: 10px;
}

.cours_recall_img{
    margin-right: 10px;
}

.cours_recall_img img{
    max-width: 80px;
}

.cours_recall_quote{
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background-image: url('/images/svg/quotes.svg');
    background-repeat: no-repeat;
    background-size: 70px;
    padding-top: 10px;
}

.cours_quote_text{
    font-size: 21px;
    color: #63abd7;
    font-style: italic;
    padding-bottom: 20px;
}

.cours_quote_uni{
    font-size: 16px;
    font-weight: bold;
    color: #002d5c;
    text-align: right;
}

.cours_text{
    color: #002d5c;
    font-size: 14px;
}

.cours_sidebar{
    border: 1px solid #d6d8de;
}

.cours_sidebar_head{
    font-size: 16px;
    font-weight: bold;
    color: #002d5c;
    text-align: center;
    padding: 20px 0;
}

.cours_sidebar_cours{
    height: 105px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
}

.cours_sidebar_cours.orange{
    background: #f15a24;
}

.cours_sidebar_cours.green{
    background: #6bb14e;
}

.cours_sidebar_cours.blue{
    background: #5281ab;
}

.cours_sidebar_cours.purple{
    background: #93278f;
}

.cours_info_row{
    display: flex;
    color: #fff;
}

.cours_info_row button{
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    margin-right: 50px;
    font-size: 12px;
    opacity: 0.35;
    padding: 5px 7px;
    cursor: pointer;
}

.cours_cours_date{
    display: flex;
    align-items: center;
    font-size: 12px;
}

.cours_cours_date img{
    width: 20px;
    margin-right: 5px;
    opacity: 0.35;
}

.cours_cours_title{
    flex: 1 1 auto;
    display: flex;
    /*align-items: flex-end;*/
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.cours_cours_title a{
    color: #fff;
}

.cours_cours_title a{
    color: #fff;
    text-decoration: none;
    font-family: 'Merriweather';
    font-weight: lighter;
}

@media (max-width: 450px) {
    .cours_header{
        height: auto;
    }
    .cours_header h3{
        font-size: 14px;
        width: 70%;
        margin: 0;
        padding: 10px 0;
    }

    .cours_bullet_l, .cours_quote_uni {
        font-size: 14px;
    }

    .cours_intro p{
        font-size: 14px;
        line-height: 18px;
    }

    .cours_quote_text{
        font-size: 15px;
    }
}

.counter-holder.hide{
    display: none;
}


#searchForm .btn-toolbar{
    display: flex;
}

#searchForm .btn-toolbar .pull-left{
    display: flex;
}

#searchForm .btn-toolbar .pull-left:first-child{
    flex: auto;
    margin-right: 15px;
}

#searchForm .btn-toolbar .pull-left label{
    display: none;
}

#searchForm .btn-toolbar .pull-left input{
    height: 40px;
    outline: none;
    padding: 0 10px;
    width: 100%;
}

#searchForm .btn-toolbar .pull-left button{
    height: 40px;
    width: 85px;
    color: #fff;
    text-transform: uppercase;
    border: 0;
    background: #a2192b;
    cursor: pointer;
    outline: none;
}

#searchForm .searchintro{
    margin-top: 15px;
    color: #000;
    font-family: "Fira Sans", sans-serif;
    font-size: 14px;
}

#searchForm .searchintro .badge-info{
    color: #a2192b;
    font-family: "Fira Sans", sans-serif;
    font-size: 21px;   
}

#searchForm .phrases{
    background: #d5e0eb;
    padding: 15px;
    padding-bottom: 40px;
}

#searchForm .phrases .p-head{
    font-weight: bold;
    color: #002d5c;
    font-size: 14px;
    margin-bottom: 20px;
}

#searchForm .phrases .p-fields{
    display: flex;
    flex-wrap: wrap;
    color: #000;
    font-size: 14px;
}

#searchForm .phrases .p-fields .phrases-box{
    flex: 1 0 auto;
}

#searchForm .phrases .p-fields .phrases-box .controls{
    display: flex;
    justify-content: space-around;
}

#searchForm .phrases .p-fields .phrases-box .controls label{
    display: flex;
    align-items: center;
    margin-right: 5px;
}

#searchForm .phrases .p-fields .phrases-box .controls input{
    margin-top: 0;
    margin-left: 0;
}

#searchForm .form-pag{
    display: flex;
    margin-top: 5px;
    border-bottom: 2px dashed #d6d8de;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

#searchForm .form-pag .form-limit{
    display: flex;
    align-items: baseline;
}

#searchForm .form-pag .form-limit label{
    margin-right: 5px;
}

.pagination.hide{
    display: none;
}

#searchForm .form-pag .pagination{
    display: flex;
    justify-content: center;
    flex: 1 0 auto;
    flex-direction: column;
    align-items: center;
}

#searchForm .form-pag .pagination .pag-counter{
    margin-top: 5px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    color: #000;
}

#searchForm .form-pag .pagination ul{
    display: flex;
}

#searchForm .form-pag .pagination li{
    margin: 0 5px;
    height: 25px;
    width: 25px;
    border: 1px solid #d5e0eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

#searchForm .form-pag .pagination-next, #searchForm .form-pag .pagination-prev {
    height: auto !important;
    width: auto !important;
    border: 0 !important;
}

.search-results .result-title{
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #a2192b;
}

.search-results .highlight{
    font-weight: bold;
}

.search-results .result-category{
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.search-results .result-category .small{
    background: #5281ab;
    font-size: 12px;
    color: #fff;
    padding: 2px 6px;
}

.search-results .result-text{
    margin-left: 0;
    margin-bottom: 50px;
    font-size: 14px;
    color: #60686d;
}

.search-head{
    position: relative;
}

.search-head .search-query{
    max-width: 250px !important;
    height: 25px;
    background: #edf0f2;
    border: 0;
    outline: none;
    padding: 0 5px;
    font-size: 12px;
    font-family: Fira, sans-serif;
}

.search-head button{
    position: absolute;
    right: 0;
    border: 0;
    background: 0;
    height: 100%;
    outline: none;
    cursor: pointer;
    top: 1px;
}

.search-page .search-head .search-query{
    background: #001a41;
    border: 1px solid #004296;
    color: #fff;
}

.search-head .zoom-container{
    display: flex;
    align-items: center;
}

.search-page .search-head .s-blue{
    display: none;
}

.main-page .search-head .s-white{
    display: none;
}

.search-head button img{
    width: 15px;
}

.hide{
    display: none;
}

@media (max-width: 660px) {
    #searchForm .phrases .p-fields .phrases-box .controls{
        flex-direction: column;
        margin-top: 20px;
    }

    #searchForm .phrases .p-fields{
        flex-direction: column;
    }

    #searchForm .form-pag{
        flex-direction: column;
    }

    #searchForm .form-pag .pagination{
        align-items: flex-start;
        margin-top: 3px;
    }

    #searchForm .form-pag .pagination li{
        display: none;
    }

    #searchForm .form-pag .pagination-next, #searchForm .form-pag .pagination-prev {
        display: flex !important; 
        margin-left: 0 !important;
    }
}

.logo-bar{
    display: flex;
    align-items: center;
}

.logo-bar .logo{
    margin-top: 0 !important;
    display: flex;
    align-items: center;
}

.logo-bar .logo-menu{
    display: flex;
    align-items: center;
}

.logo-bar .moduletable.search-mod{
    margin-right: 40px;
}

@media (max-width: 695px){
    .search-mod{
        display: none;
    }
}

@media (max-width: 383px) {
    .logo-menu .menu{
        display: flex;
        align-items: center;
        margin-left: 0;
    }
    .logo-menu .menu li{
        margin-left: 3px;
        font-size: 12px;
    }
    .main-logo .mod-languages{
        margin-top: -3px;
    }

    .logo-bar .login-link::before{
        content: none;
    }
}


.slick-arrow::before{
    color: #d6d8de !important;
}

.slick-prev{
    left: 0 !important;
    z-index: 99;
}

.slick-next{
    right: 0 !important;
    z-index: 99;
}

.field-entry.resource_subject, .field-entry.resource_type,
.field-entry.resource_format, .field-entry.resource_polithematic{
    display: none;
}

.filter_list{
    margin-bottom: 25px;
}

.filter_list li{
    display: flex;
    align-items: center;
}

.filter_list li input{
    margin-right: 5px;
}

#run_filter{
    background: #a2192b;
    width: 100%;
    border: 0;
    color: #fff;
    cursor: pointer;
    height: 30px
}

#run_filter:focus{
    outline: none;
}

.category.hide{
    display: none;
}

.category .fields-container{
    display: none;
}

.filter_reset{
    display: none;
}

.filter_reset.show{
    display: flex;
    justify-content: flex-end;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.logo img, .footer .single.left img{
    zoom: 1.2;
}
