* {
    box-sizing: border-box;
}

html, body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.8px;
    min-width: 320px;
}

input, textarea, button {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

a {
    text-decoration: none;
    outline: none;
}

a:focus {
    outline: none;
}

ul, ol {
    list-style: none;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
}

h3, h4, h5 {
    font-weight: normal;
}

section > h2 {
    padding-left: 25px;
    margin-bottom: 25px;
}

.page-wrapper {
    /*max-width: 1440px;
    margin: 0 auto;*/
}

/* @-moz-document url-prefix() {
    .page-wrapper {
        overflow-x: hidden;
        padding-right: 20px;
    }
} */

header {
    padding-top: 20px;
}

.content-row {
    display: flex;
    flex-direction: row;
    max-width: 1150px;
    padding: 0px 20px;
    margin: 0 auto;
    justify-content: space-between;
}

.components-wrapper {
    background-image: linear-gradient(to top, rgba(226, 226, 226, 0), rgba(241, 241, 241, 0.4));
    padding: 50px 0px 125px 0px;
}

.link-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 5px;
}

.red-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 5px;
}

header .search-panel {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgba(74, 74, 74, 0.5);
    padding: 40px 0px;
    transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    opacity: 0;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.52, 0.16, 0.24, 1), opacity 0.3s cubic-bezier(0.52, 0.16, 0.24, 1);
    -webkit-transition: transform 0.3s cubic-bezier(0.52, 0.16, 0.24, 1), opacity 0.3s cubic-bezier(0.52, 0.16, 0.24, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.52, 0.16, 0.24, 1), opacity 0.3s cubic-bezier(0.52, 0.16, 0.24, 1);
    -o-transition: transform 0.3s cubic-bezier(0.52, 0.16, 0.24, 1), opacity 0.3s cubic-bezier(0.52, 0.16, 0.24, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.52, 0.16, 0.24, 1), opacity 0.3s cubic-bezier(0.52, 0.16, 0.24, 1);
}

header .search-panel.is-visible {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    opacity: 1;
}

header .search-panel .center-content {
    flex:  1 100%;
}

header .search-panel .content-row {
    align-items: center;
}

header .search-panel .search-input {
    border-bottom: 2px solid #979797;
}

header .search-panel .search-input input {
    font-size: 36px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.8px;
    border: 0px;
    width: 100%;
    margin: 0px 0px 6px 0px;
    outline: 0px;
}

header .search-panel .search-input input::placeholder {
    color: #dfdfdf;
    opacity: 1;
}
header .search-panel .search-input input::-webkit-input-placeholder {
    color: #dfdfdf;
    opacity: 1;
}
header .search-panel .search-input input::-moz-placeholder {
    color: #dfdfdf;
    opacity: 1;
}
header .search-panel .search-input input:-ms-input-placeholder {
    color: #dfdfdf;
    opacity: 1;
}
header .search-panel .search-input input:-moz-placeholder {
    color: #dfdfdf;
    opacity: 1;
}

header .search-panel .help-block {
    display:  block;
    text-align:  right;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin-top:  10px;
}

header .search-panel .actions {
    margin-left: 5.86%;
}

header .search-panel .dismiss-btn {
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: solid 1px #979797;
    margin: 0px;
    cursor: pointer;
    outline: 0;
    position: relative;
}

header .search-panel .dismiss-btn::before {
    content: '';
    width: 22px;
    height: 2.8px;
    transform: rotate(-45deg);
    background-color: #979797;
    display: block;
    position: absolute;
    top: 12px;
    left: 3px;
}

header .search-panel .dismiss-btn::after {
    content: '';
    width: 22px;
    height: 2.8px;
    transform: rotate(45deg);
    background-color: #979797;
    display: block;
    position: absolute;
    top: 12px;
    left: 3px;
}

.header-controls-left, .header-controls-right {
    padding-top: 17px;
}

header .contrast-controls {
    margin-bottom: 10px;
}

header .contrast-controls > span {
    display: inline-block;
    vertical-align: middle;
}

header .contrast-controls .options {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

header .contrast-controls .options button {
    border-radius: 5px;
    background-color: #ffffff;
    border: solid 1px #414141;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
}

header .contrast-controls .options button:not(:last-child) {
    margin-right: 8px;
}

header .contrast-controls .options button.theme-light {
    color: #414141;
    background-color: #fff;
}

header .contrast-controls .options button.theme-dark {
    color: #ffff00;
    background-color: #000;
}

header .text-size-controls > span {
    display: inline-block;
    vertical-align: -5px;
}

header .text-size-controls .options {
    display: inline-block;
    vertical-align: middle;
}

header .text-size-controls .options button {
    margin: 0px;
    padding: 0px;
    background: none;
    border: none;
    cursor: pointer;
}

header .text-size-controls .options button:not(:last-child) {
    margin-right: -3px;
}

header .text-size-controls .options button.size-small {
    font-size: 16px;
}

header .text-size-controls .options button.size-regular {
    font-size: 22px;
}

header .text-size-controls .options button.size-big {
    font-size: 28px;
}

header .header-support-wrapper {
    margin-bottom: 10px;
    text-align: right;
}

header .header-support-wrapper a {
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}

header .social-icons {
    display: flex;
    flex-direction: row;
}

header .social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

header .social-icons a:not(:last-child) {
    margin-right: 10px;
}

header nav {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex: 1 100%;
}

header nav a {
    flex: 1 100%;
    text-align:  center;
    border-bottom: 4px solid transparent;
    padding: 7px 5px;
}

header nav a.is-active {
    border-bottom-color: #ec1d24;
    color: #ec1d24;
    font-weight: bold;
    transition: color ease 0.2s;
}

section.hero-slider {
    padding: 35px 0px 23px 0px;
}

section.hero-slider .slider-container {
    flex: 1 74%;
    max-width: 825px;
    width: 49%;
}

section.hero-slider .slider-container .slide-item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 464px;
}

section.hero-slider .slider-slide-list {
    flex: 1 26%;
    min-width: 285px;
    border-top: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
}

section.hero-slider .slide-list--item {
    padding: 24px 10px 5px 25px;
    border-bottom: 1px solid #f1f1f1;
    flex: 1 25%;
    cursor: pointer;
    transition: all ease 0.2s;
}

section.hero-slider .slide-list--item:hover {
    background-color: #f1f1f1;
    opacity: 0.9;
}

section.hero-slider .slide-list--item.is-active {
    padding: 13px 10px 5px 25px;
    position: relative;
}

section.hero-slider .slide-list--item.is-active::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -18px;
    width: 28px;
    height: 28px;
    transform: rotate(45deg) translate3d(0, -50%, 0);
}

section.hero-slider .slide-list--item .slide-category, .slide-title {
    display: block;
}

section.hero-slider .slide-list--item .slide-category {
    line-height: 1.23;
    margin-bottom: 5px;
}

section.hero-slider .slide-list--item.is-active .slide-category {
    font-weight: bold;
}

section.hero-slider .slide-list--item .slide-title {
    line-height: 1.33;
    letter-spacing: 0.8px;
    max-width: 195px;
}

section.hero-slider .slide-list--item.is-active .slide-title {
    font-weight: bold;
}

.components-wrapper .list-view--item.is-active:hover span {
    font-weight: bold;
}

.components-wrapper .list-view--item.is-active:hover h3 {
    font-weight: bold;
}

.components-wrapper .list-view--item.is-active:hover h5 {
    font-weight: bold;
}

section.hero-slider .slide-list--item .link-arrow {
    display: none;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    margin-top: 8px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    color: #ec1d24;
}

section.hero-slider .slide-list--item.is-active .link-arrow {
    display: inline-block;
}

.components-wrapper .list-view--item.is-active .link-arrow {
    font-weight: bold;
}

section.hero-slider .slide-list--item.is-active .link-arrow::after {
    border-left-color: #ec1d24;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-left: 5px;
    vertical-align: 1px;
}

.components-wrapper .list-view--item.is-active .link-arrow::after {
    border-left-color: #ec1d24;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-left: 5px;
    vertical-align: 1px;
}

section.logo-links {
    padding-top: 100px;
    padding-bottom: 70px;
    background-image: url(../images/logo_section_background.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
}

section.logo-links .sponsor-row {
    max-width: 1150px;
    padding: 0px 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(33%, 1fr));
    grid-row-gap: 60px;
    align-items: center;
    justify-items: center;
    margin-bottom: 80px;
}
section.logo-links .sponsor-row:last-of-type {
    margin-bottom: 50px;
}

@media screen and (min-width: 900px) {
    section.logo-links .sponsor-row,
    section.logo-links .sponsor-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    section.logo-links .sponsor-row:nth-of-type(5) .sponsor-list--item,
    section.logo-links .sponsor-row:nth-of-type(7) .sponsor-list--item {
        margin: 0 4%;
    }   
    section.logo-links .sponsor-row:nth-of-type(3) .sponsor-list--item,
    section.logo-links .sponsor-row:nth-of-type(2) .sponsor-list--item {
        width: 30%;
    }   
}

section.logo-links .sponsor-row:nth-of-type(7) .sponsor-list--item:first-of-type img{
    width: auto;
    height: auto;
}   
section.logo-links .sponsor-row:nth-of-type(5) .sponsor-list--item img,
section.logo-links .sponsor-row:nth-of-type(7) .sponsor-list--item img{
    /*max-width: 140px;
    max-height: 50px;
    height: auto;*/
}   
section.logo-links .sponsor-list--item {
    text-align:  center;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.logo-links .icon-list--item {
    text-align:  center;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.logo-links .icon-list--item {
    padding: 34px 20px;
    min-height: 180px;
    position: relative;
}

section.logo-links a.icon-list--item {
    border: 1px solid #f1f1f1;
    outline: none;
}

section.logo-links a.icon-list--item:hover {
    background-color: #f1f1f1;
    outline: none;
}

section.logo-links a.icon-list--item:hover::after {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    background-color: #ec1d24;
    bottom: -1px;
    left: 0px;
    right: 0px;
}

section.logo-links .icon-list--item span {
    display:  none;
    position: absolute;
    bottom: 5px;
    left: 0px;
    right: 0px;
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.8px;
    font-size: 13px;
    font-weight: bold;
}

section.logo-links a.icon-list--item:hover span {
    display: block;
}

section.logo-links .icon-list--item img, section.logo-links .sponsor-list--item img {
    margin: auto;
}
section.logo-links .sponsor-list--item img {
    margin: auto;
    height: auto;
    width: auto;
}
/*
section.logo-links .sponsor-list--item:nth-of-type(1) a{
    height: 45px;
}
section.logo-links .sponsor-list--item:nth-of-type(2) a{
    height: 35px;
}
section.logo-links .sponsor-list--item:nth-of-type(3) a{
    height: 75px;
}
section.logo-links .sponsor-list--item:nth-of-type(4) a{
    height: 70px;
}
section.logo-links .sponsor-list--item:nth-of-type(5) a{
    height: 90px;
}*/
section.logo-links .icon-list--item img {
    max-width: 100%;
}
.section-heading {
    max-width: 1150px;
    padding: 0px 20px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.section-heading h2 {
    text-align: center;
}

section.logo-links .content-row + .section-heading {
    margin-top: 125px;
}

.list-view .list-view--item {
    padding: 33px 25px 34px 25px;
    border-color: #f1f1f1;
    border-style: solid;
    border-top-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 0px;
    height: 134px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: background cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
    padding-left: 25px;
}

.list-view a {
    display: block;
}

.list-view .list-view--item:hover {
    background-color: #f1f1f1;
}

.list-view .list-view--item:hover > span {
    font-weight: bold;
}

.list-view .list-view--item:hover > h3 {
    font-weight: bold;
}

.list-view .list-view--item:hover > h5 {
    font-weight: bold;
}

.list-view .list-view--item::after {
    content:  '';
    display:  block;
    position:  absolute;
    bottom: 0px;
    left:  0px;
    right:  0px;
    height:  4px;
    background-color: #ec1d24;
    opacity: 0;
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}

.list-view .list-view--item:hover::after {
    opacity: 1;
}

.list-view .list-view--item:last-child {
    border-bottom-width:  1px;
}

.list-view .list-view--item .category {
    display: block;
    /* font-size: 13px; */
    line-height: 1.23;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
    max-width: 355px;
}

.list-view .list-view--item h5 {
    font-size: 13px;
}

.list-view .list-view--item .title {
    display: block;
    /* font-size: 18px; */
    line-height: 1.33;
    letter-spacing: 0.8px;
    max-width: 355px;
}

.list-view .list-view--item h3 {
    font-size: 18px;
}

.list-view .list-view--item .more-link {
    display: block;
}

.list-view .list-view--item a {
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 5px;
    display: none;
    font-size: 13px;
    color: #ec1d24;
}

.list-view .list-view--item .more-link {
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 5px;
    display: none;
    font-size: 13px;
    color: #ec1d24;
}

.list-view .list-view--item:hover {
    padding: 22px 25px 22px 25px;
}

.list-view .list-view--item:hover a {
    display: inline-block;
}

.list-view .list-view--item:hover > .more-link {
    display: inline-block;
}

.list-view .list-view--item:hover > .more-link::after  {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #ec1d24;
    margin-left: 5px;
    vertical-align: 1px;
}

.list-view + .link-more {
    display: inline-block;
    margin-top: 25px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.8px;
    margin-left: 25px;
}


.list-view + .link-more::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #383838;
    margin-left: 5px;
    vertical-align: 1px;
}

.newsletter-wrapper {
    border: solid 1px #f1f1f1;
}

.newsletter-wrapper img {
    width: 100%;
}

.newsletter-wrapper .inner {
    padding: 33px 25px 43px 25px;
}

.newsletter-wrapper .inner .intro-text {
    font-size: 18px;
    line-height: 1.33;
    letter-spacing: 0.8px;
}

.newsletter-input-wrapper {
    margin-top: 35px;
    display: flex;
    align-items: center;
}

.newsletter-input-wrapper .input {
    flex: 1 100%;
    margin-right: 10.25%;
}

.newsletter-input-wrapper .input label {
    font-size: 16px;
    display: block;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

.newsletter-input-wrapper .input input[type="email"],
.newsletter-input-wrapper .input input[type="text"] {
    font-size: 16px;
    display: block;
    line-height: 2;
    letter-spacing: 0.8px;
    border: 0px;
    outline: 0px;
    width: 100%;
    padding: 0px;
    border-bottom: solid 2px #c0c0c0;
}

.newsletter-input-wrapper .action button {
    border-radius: 5px;
    background-color: #ec1d24;
    border: 0px;
    margin: 0px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.38;
    letter-spacing: 2px;
    padding: 14px 15px;
    min-width: 220px;
    cursor: pointer;
    transition: opacity 0.2s cubic-bezier(0.52, 0.16, 0.24, 1);
}

.newsletter-input-wrapper .action button:hover {
    opacity: 0.7;
}

.news-headline-row {
    display: flex;
    flex-direction: row;
    max-width: 1150px;
    padding: 0 23px;
    margin: 0 auto;
    justify-content: space-between;
}

.news-headline-row a:hover {
    color: #ec1d24;
}

.news-headline {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    padding-left: 23px;
}

.news-filter {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    padding-top: 24px;
    text-transform: uppercase;
    cursor: pointer;
}

.news-filter a {
    display: inline-block;
    padding: 2px 4px;
}

.news-filter a.is-active {
    color: #ec1d24;
}

.news-row {
    display: flex;
    flex-direction: row;
    max-width: 1150px;
    padding: 20px 20px;
    margin: 0 auto;
    justify-content: space-between;
}

.news-components-wrapper {
    background-image: linear-gradient(to top, rgba(226, 226, 226, 0), rgba(241, 241, 241, 0.4));
    padding: 35px 0px 75px 0px;
}

.news-wrapper {
    max-width: 350px;
    min-height: 370px;
    border: 0 solid #f1f1f1;
    flex: 1 25%;
    transition: all ease 0.2s;
    position: relative;
}
.news-wrapper span {
    display: block;
}

.news-wrapper img {
    margin-top: -1px;
    width: 100%;
    min-width: 350px;
    max-height: 197px;
}

.news-wrapper .inner {
    padding: 34px 25px 34px 25px;
}

.news-wrapper .inner .red-arrow {
    color: #ec1d24;
}

.news-category {
    /* font-size: 13px; */
    line-height: 1.23;
    letter-spacing: 0.4px;
    padding: 34px 25px 0 25px;
}

.news-wrapper h5 {
    font-size: 13px;
}

.news-title {
    /* font-size: 18px; */
    line-height: 1.33;
    letter-spacing: 0.8px;
    padding: 5px 25px 0 25px;
}

.news-wrapper h3 {
    font-size: 18px;
    padding-bottom: 70px;
}

.news-wrapper:hover > .news-title {
    font-weight: bold;
}

.news-wrapper .red-link {
    display: none;
    font-weight: bold;
    line-height: 1.23;
    color: #ec1d24;
    letter-spacing: 0.8px;
    margin-top: 8px;
    text-transform: uppercase;
    padding: 5px 25px 0 25px;
}

.news-wrapper:hover > .red-link {
    display: block;
}

.load-more {
    margin: auto auto;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
}

.load-more:hover {
    color: #ec1d24;
}

.news-wrapper:hover {
    background-color: #f1f1f1;
    border-bottom: 4px solid #ec1d24;
}

section.sponsors-background {
    background-image: linear-gradient(to top, rgba(226, 226, 226, 0), rgba(241, 241, 241, 0.4));
    padding-top: 50px;
}

.news-single-wrapper {
    background-image: linear-gradient(to top, rgba(226, 226, 226, 0), rgba(241, 241, 241, 0.4));
    /*padding: 0 385px;*/
}

/*.news-single-wrapper .content-wrapper {
    padding: 26px 0 50px 0;
}*/

.slick-news .slick-arrow {
    position: absolute;
    z-index: 1;
    top: calc(50% - 23px);
    transform: translate3d(0,-50%,0);
    height: 45px;
    width: 45px;
    background-color: #000;
    border-radius: 50%;
    border: 0;
    outline: 0px;
    cursor: pointer;
    padding: 0px;
    color: transparent;
    opacity: 0.5;
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
}

.slick-news .slick-arrow:hover {
    opacity: 1;
}

.slick-news:hover .slick-arrow {
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
    -moz-transform: translateX(0) !important;
    -o-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    opacity: 1 !important;
}

.slick-news .slick-arrow.slick-prev {
    left: 20px;
    transform: translateX(-70px);
    opacity: 0;
}

.slick-news .slick-arrow.slick-next {
    right: 20px;
    transform: translateX(70px);
    opacity: 0;
}

.slick-news .slick-arrow.slick-prev::before {
    content: '';
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 8px;
    transform: rotate(135deg);
    cursor: pointer;
    top: 12px;
    position: absolute;
    left: 16px;
}

.slick-news .slick-arrow.slick-next::before {
    content: '';
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 8px;
    transform: rotate(-45deg);
    cursor: pointer;
    top: 12px;
    position: absolute;
    right: 15px;
}

.news-single-wrapper .content-wrapper {
    padding-top: 26px;
}

.news-single-wrapper .competition-single-top {
    padding-top: 35px;
}

.news-single-wrapper .content-wrapper .text-wrapper {
    max-width: 580px;
    padding: 0px 20px;
    margin: 0 auto;
}

.news-single-wrapper .content-wrapper .text-wrapper .link-arrow::after {
    color: #ec1d24;
}

.news-single-wrapper .content-wrapper .image-wrapper {
    max-width: 1110px;
    padding: 30px 0 35px 0;
    margin: 0 auto;
}

.news-single-wrapper .content-wrapper .image-wrapper img {
    width: 100%;
    height: auto;
}

.single-category, .single-title, .single-text {
    display: block;
}

.single-category {
    /* font-size: 13px; */
    font-weight: normal;
    line-height: 1.23;
    letter-spacing: 0.4px;
    padding-bottom: 5px;
}

.text-wrapper h5 {
    font-size: 13px;
}

.single-title {
    /* font-size: 36px; */
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    padding-bottom: 25px;
}

.text-wrapper h2 {
    font-size: 36px;
}

.text-wrapper p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    padding-bottom: 5px;
}

strong {
    font-weight: bold;
}

.single-results {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-top: 5px;
}

.single-results:hover {
    color: #ec1d24;
}

.single-results::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #000000;
    margin-left: 5px;
}

.single-results:hover::after {
    border-left: 4px solid #ec1d24;
}

section.other-news {
    padding: 0px 20px;
    max-width: 580px;
    margin: 50px auto 125px;
}

section.other-news .other-news-title {
    display: block;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.33;
    letter-spacing: 0.8px;
    padding: 0 0 25px 25px;
}

.competition-list--left {
    padding: 15px 15px 15px 0;
    min-width: 540px;
}
.competition-list--right {
    padding: 15px 0 15px 15px;
    min-width: 555px;
}

.more-news {
    display: block;
    padding-top: 25px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.8px;
    margin: 0 auto;
}

.more-news:hover {
    color: #ec1d24;
}

/*.about-us {
    min-width: 445px;
}*/

.about-us-title {
    display: block;
    /* font-size: 36px; */
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    text-align: left;
}

.about-us h2 {
    font-size: 36px;
}

/* .about-us-text {
    display: block;
    padding-top: 25px;
} */

.about-us p {
    padding-top: 25px;
} 

.reset-padding {
    padding-left: 0;
    padding-right: 0;
}

.about-board-title {
    display: block;
    padding: 47px 20px 26px 0;
    /* font-size: 36px; */
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    text-align: left;
}

.about-board h2 {
    font-size: 36px;
}

/* .about-board-list {
    display: block;
    width: 190px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
}

.about-board-list .title {
    font-weight: bold;
    display: block;
}

.about-board-list .about-board-list--item {
    display: block;
} */

.about-board p {
    width: 190px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
}

.about-us-image-wrapper {
    max-width: 1110px;
    margin: 35px auto 0px;
}

.about-us-image-wrapper img {
    width: 100%;
}

section.history {
    margin-top: -125px;
}

section.history .history-padding {
    padding-top: 110px;
    padding-bottom: 75px;
}

section.history h2 {
    font-size: 36px;
}

.history-title {
    display: block;
    /* font-size: 36px; */
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    text-align: left;
    max-width: 1150px;
    margin: 35px auto 0px;
    padding: 0px 20px;
}

/* .history-text {
    display: block;
    width: 320px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
} */

.history-content {
    
    width: 320px;
}

.history-content p {
    padding-top: 25px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
}

section.history ul {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    display: block;
    list-style-type: disc;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    margin-bottom: 5px;
}

section.history ol {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    display: block;
    list-style-type: decimal;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    margin-bottom: 5px;
}

section.history li {
    display: list-item;
}

/* .history-text--paragraph {
    display: block;
    padding-top: 35px;
} */

/* .history-text--paragraph {
    padding-top: 35px;
} */

.history-content a {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-align: left;
    padding-top: 10px;
    text-decoration: underline;
    display: inline;
}

.history-content a:hover {
    text-decoration: none;
}

.group-component {
    padding-top: 35px;
    padding-bottom: 60px;
}

.group-component-title {
    display: block;
    /* font-size: 36px; */
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    text-align: left;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0px 20px;
}

.group-component h2 {
    font-size: 36px;
}

.group-item {
    width: 23%;
    padding-top: 35px;
}

.group-item h4 {
    font-size: 16px;
}

.group-info {
    /* font-size: 16px; */
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    padding-bottom: 5px;
}
.group-info .title,
.group-info .address, 
.group-info .mail,
.group-info .number, 
.group-contact .title,
.group-contact .name,
.group-contact .mail,
.group-contact .number {
    display: block;
}

.group-contant .number .icon.icon-phone.icon-black path {
    fill: black;
}

.group-info .mail:hover,
.group-contact .mail:hover {
    text-decoration: underline;
}

.mail {
    word-wrap: break-word;
}

.group-info .title, .group-contact .title {
    font-weight: bold;
}

.group-contact {
    /* font-size: 16px; */
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    /* padding-bottom: 35px; */
}

.useful-links--last {
    padding-bottom: 50px;
}

.useful-links-text {
    display: block;
    max-width: 475px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    padding-top: 35px;
}

.useful-links-text p {
    padding-bottom: 25px;
}

.useful-links--item {
    width: 21.62%;
    padding-bottom: 35px;
}

.useful-links--item .text {
    display: block;
}

.useful-links--item .title-bold {
    font-weight: bold;
}

.useful-links--item .text-bold {
    font-weight: bold;
}

.useful-links--item .text-bold:hover {
    color: #ec1d24;
}

.useful-links--item .more {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-top: 5px;
}

.useful-links--item .more:hover {
    color: #ec1d24;
}

.useful-links--item .more::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #383838;
    margin-left: 5px;
}

.useful-links--item .more:hover::after {
    border-left: 5px solid #ec1d24;
}

.search-results-wrapper {
    width: 540px;
    margin: 0 auto;
    padding-bottom: 110px;
    padding-top: 35px;
}

.search-results-wrapper p{
    padding-top: 15px;
}

.search-results-title {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: 0.8px;
    text-align: left;
}

.more-red {
    display: block;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.8px;
    color: #ec1d24;
}

.more-red::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #ec1d24;
    margin-left: 5px;
    vertical-align: 1px;
}

.search-more {
    display: block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-align: left;
    text-transform: uppercase;
    padding-top: 25px;
    padding-left: 25px;
}

.search-more:hover {
    color: #ec1d24;
    cursor: pointer;
}

.down-arrow::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #000000;
    margin-left: 5px;
    padding-bottom: 3px;
}

footer {
    padding: 48px 0px;
    background-image: linear-gradient(#004268, #004268);
}

.footer-navigation--col {
    padding-right: 8px;
}

.footer-navigation--col nav a {
    display: block;
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 0.4px;
    position: relative;
}

.footer-navigation--col nav a:hover {
    text-decoration: underline;
}

.footer-navigation--col nav a::before {
    content: '';
    width: 10px;
    height: 1px;
    background-color: #fff;
    margin-right: 4px;
    position: absolute;
    left: -14px;
    top: 12px;
}

.footer-navigation--col h3 {
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: 0.8px;
    margin-bottom: 7px;
}

.footer-navigation--col .link-more {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.8px;
    margin-top: 10px;
    position: relative;
}

.footer-navigation--col .link-more::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 4px solid #fff;
    margin-left: 5px;
    vertical-align: 2px;
}

footer .contact-info {
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 0.4px;
}

footer .contact-info a:hover {
    text-decoration: underline;
}

footer .cta-btn {
    border-radius: 5px;
    background-color: #ffffff;
    line-height: 1.38;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #004268;
    padding: 14px 46px;
    display: inline-block;
    margin-top: 7px;
    transition: opacity 0.2s cubic-bezier(0.52, 0.16, 0.24, 1)
}

footer .cta-btn:hover {
    opacity: 0.7;
}

.footer-alt-nav {
    text-align:  center;
    margin-top:  59px;
}

.footer-alt-nav nav a {
    font-size: 13px;
    font-weight:  bold;
    line-height: 1.77;
    letter-spacing: 0.4px;
    position:  relative;
}

.footer-alt-nav nav a:not(:last-child)::after {
    content: '';
    width:  1px;
    height: 13px;
    background-color:  #fff;
    position:  absolute;
    right:  0px;
    top: 2px;
}

.footer-alt-nav nav a:not(:last-child) {
    padding-right: 11px;
    margin-right: 6px;
}

.footer-alt-nav nav a:hover {
    text-decoration: underline;
}

footer .copyright {
    text-align: center;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.77;
    letter-spacing: 1px;
}

.icon {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 4px;
}

.icon.icon-email {
    background-image: url(../images/mail_icon.svg);
}
.icon.icon-email-dark {
    background-image: url(../images/mail_icon_dark.svg);
}

.icon.icon-phone {
    background-image: url(../images/phone_icon.svg);
}

.icon.icon-phone-dark {
    background-image: url(../images/phone_icon_dark.svg);
}

section.promo-banner {
    margin-bottom: 125px;
}

section.promo-banner .content-row {
    align-items: center;
}

section.promo-banner img {
    width: 100%;
    max-width: 100%;
}

.about-us {
    width: 40%;
}

.about-board {
    width: 49%;
}

.about-board a {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-align: left;
    padding-top: 10px;
    text-decoration: underline;
    display: inline-block;
}

.about-us a {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.23;
    letter-spacing: 0.8px;
    text-align: left;
    padding-top: 10px;
    text-decoration: underline;
    display: inline;
}

.about-us a:hover {
    text-decoration: none;
}

.icon-search {
    width: 33px;
    height: 33px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 10px;
    background-image: url(../images/search.svg);
}

.search-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.list-view--item.border-reset {
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 1px;
}

a#tabs-container1, a#tabs-container2 {
    left:-999px;
    position:absolute;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
    z-index:-999;
}

a#tabs-container1:focus, a#tabs-container1:active {
    background-color: #979797;
    top: 0;
    left: 33%;
    width: 164px;
    height: 44px;
    overflow:auto;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    z-index:999;

    text-align: center;
    padding-top: 10px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #ffffff;
}

a#tabs-container2:focus, a#tabs-container2:active {
    background-color: #979797;
    top: 0;
    left: 33%;
    width: 164px;
    height: 44px;
    overflow:auto;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    z-index:999;

    text-align: center;
    padding-top: 10px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #ffffff;
}

.velika_slova, .vs {
	text-transform: uppercase;
}

.in-active {
    color: #ec1d24;
}

.news-single-wrapper ul {
    
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    display: block;
    list-style-type: disc;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    margin-bottom: 5px;
}

/* .news-single-wrapper ul.slick-dots {
    position: absolute;
    top: 50%;
    margin: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
} */

.news-single-wrapper ol {

    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: left;
    display: block;
    list-style-type: decimal;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    margin-bottom: 5px;
}

.news-single-wrapper li {
    display: list-item;
}

.filter-panel {
    display: none;
    position: absolute;
    top: 45px;
    right: 0px;
    box-shadow: 2px 2px 8px 0 rgba(149, 149, 149, 0.25);
    background-color: #ffffff;
    padding: 25px;
    flex-direction: row;
    justify-content: space-between;
    width: 500px;
}

.filter-panel.is-visible {
    display: flex;
    z-index: 1;
}

.filter-panel .filter-column a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #414141;
    padding: 5px 0px;
}

.filter-panel .filter-column a:hover {
    color: #ec1d24;
}

.filters {
    position: relative;
    width: 500px;
    display: flex;
    justify-content: flex-end;
}

.filter-panel .filter-column a.is-active {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #ec1d24;
    text-decoration: underline;
}

section.component-article-video {
    padding-top: 50px;
    max-width: 540px;
    margin: 0 auto;
}

.video-item {
    padding-bottom: 30px;
}

.video-item iframe {
    width: 100%;
}

/* .slick-dots {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    margin-top: -350px;
    max-width: 1110px;
    padding: 0;
    padding: 0 25px;
    cursor: pointer;
} */

.slick-dots {
    position: absolute;
    top: 50%;
    margin: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px 0 20px;
}

.slick-dots li{
    display: inline;
    cursor: pointer;
}

.slick-dots li:last-of-type {
    float:right;
    cursor: pointer;
}

/* .slick-dots li::after {
    content: '->';
    color: white;
    font-size: 50px;
    margin-top: -23px;
    margin-left: -30px;
} */

.slick-dots li::after {
    content: '';
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 8px;
    margin-left: -30px;
    margin-bottom: 12px;
    transform: rotate(135deg);
    cursor: pointer;
}

.slick-dots li:last-of-type::after {
    transform: rotate(-45deg);
    margin-left: -35px;
    cursor: pointer;
}

.slick-dots button{
    height: 45px;
    width: 45px;
    background-color:  #000;
    border-radius: 50%;
    border: 0;
    outline: 0px;
    cursor: pointer;
    padding: 0px;
}

.gdpr-wrapper {
    font-family: 'Source Sans Pro', sans-serif;
    max-width: 540px;
    margin: 0 auto;
    padding: 56px 0 125px 0;
}

.gdpr-wrapper .gdpr-title {
    display: block;
    
    font-size: 36px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.8px;
    color: #414141;
}

.gdpr-wrapper h2 {
    font-size: 36px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.8px;
    color: #414141;
}

.gdpr-wrapper p {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #414141;
    padding-top: 0px
}

.gdpr-wrapper .gdpr-subtitle {
    display: block;
    padding-top: 50px;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.8px;
    color: #414141;
}

.gdpr-wrapper h3 {
    display: block;
    padding-top: 50px;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.8px;
    color: #414141;
    margin-top: 25px;
}

.gdpr-wrapper .gdpr-tab {
    padding-left: 30px;
}

.gdpr-wrapper h4 {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #414141;
    margin-top: 25px;
    padding-top: 25px;
    font-weight: bold;
}

.gdpr-wrapper h5 {
    display: block;
    padding-left: 30px;
    margin-bottom: -25px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #414141;
    margin-top: 25px;
    font-weight: bold;
}

.gdpr-wrapper a {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    color: #414141;
    text-decoration: underline;
}

.gdpr-wrapper a:hover {
    text-decoration: none;
}

.cookie-container {
    position: fixed;
    z-index: 999;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    width: 100%;
    max-width: 952px;
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.2);
    background-color: #004268;
}

.cookie-container .cookie-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
}

.cookie-container .cookie-flex p {
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.77;
    letter-spacing: 0.4px;
    color: #ffffff;
}

.cookie-container .cookie-flex p a {
    font-weight: bold;
}

.cookie-container .cookie-flex p a:hover {
    color: #ec1d24;
}

.cookie-container .cookie-flex .cookie-button {
    display: block;
    justify-content: center;
    margin: 10px 0 9px 14px;
    background-color: #fff;
    text-align: center;
    width: 100%;
    max-width: 160px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    line-height: 1.38;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #004268;
    padding: 14px 32px;
    transition: opacity 0.2s cubic-bezier(0.52, 0.16, 0.24, 1)
}

.cookie-container .cookie-flex .cookie-button:hover {
    opacity: 0.7;
}

.text-wrapper a {
    text-decoration: underline;
}

.text-wrapper a:hover {
    text-decoration: none;
}
.grecaptcha-badge { visibility: hidden; }
.recaptcha-disclaimer {
    font-size: 13px;
    color: #c0c0c0;
    padding-top: 10px;
}
.recaptcha-disclaimer a {
    text-decoration: underline;
}
.recaptcha-disclaimer a:hover {
    text-decoration: none;
}