@import url(https://fonts.googleapis.com/css?family=Noto+Serif&display=swap);
/* New SCSS added

Design - Level Studio (levelstudio.ch)
FrontEnd - Zoom Design (zoomdesign.ch)

*/
.clearer::after {
  content: "";
  clear: both;
  display: table;
}

/*
$from options: left, right, top, bottom, fixed
$distance: distance animation in pixel : default = 200px
$duraion: timing of animation : default = 1px
$js: boolean : load animation only if you had .active class to the element
$animation-timing-function : is the animation curve

linear 	The animation has the same speed from start to end 	
ease 	Default value. The animation has a slow start, then fast, before it ends slowly 	
ease-in 	The animation has a slow start 	
ease-out 	The animation has a slow end 	
ease-in-out 	The animation has both a slow start and a slow end 	
step-start 	Equivalent to steps(1, start) 	
step-end 	Equivalent to steps(1, end) 	
steps(int,start|end) 	Specifies a stepping function, with two parameters. The first parameter specifies the number of intervals in the function. It must be a positive integer (greater than 0). The second parameter, which is optional, is either the value "start" or "end", and specifies the point at which the change of values occur within the interval. If the second parameter is omitted, it is given the value "end" 	
cubic-bezier(n,n,n,n) 	Define your own values in the cubic-bezier function
Possible values are numeric values from 0 to 1 	
initial 	Sets this property to its default value. Read about initial 	
inherit 	Inherits this property from its parent element. Read about inherit

$deault opacity: starting opacity of the animation : default = 0

*/
/*add class .revealOnScroll if you want use scrollingAnimation.js*/
.js-anim-left {
  opacity: 0;
  backface-visibility: hidden;
}

.js-anim-left.animated {
  opacity: 1;
  animation-name: left;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.js-anim-right {
  opacity: 0;
  backface-visibility: hidden;
}

.js-anim-right.animated {
  opacity: 1;
  animation-name: right;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes right {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.js-anim-bottom {
  opacity: 0;
  backface-visibility: hidden;
}

.js-anim-bottom.animated {
  opacity: 1;
  animation-name: bottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes bottom {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-anim-top {
  opacity: 0;
  backface-visibility: hidden;
}

.js-anim-top.animated {
  opacity: 1;
  animation-name: top;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes top {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-anim-fixed {
  opacity: 0;
  backface-visibility: hidden;
}

.js-anim-fixed.animated {
  opacity: 1;
  animation-name: fixed;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes fixed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.anim-left {
  opacity: 0;
  backface-visibility: hidden;
  opacity: 1;
  animation-name: left;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-right {
  opacity: 0;
  backface-visibility: hidden;
  opacity: 1;
  animation-name: right;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes right {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-bottom {
  opacity: 0;
  backface-visibility: hidden;
  opacity: 1;
  animation-name: bottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes bottom {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-top {
  opacity: 0;
  backface-visibility: hidden;
  opacity: 1;
  animation-name: top;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes top {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fixed {
  opacity: 0;
  backface-visibility: hidden;
  opacity: 1;
  animation-name: fixed;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes fixed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.list {
  list-style: inherit;
  margin: 0 0 0 25px;
  padding: 0;
}

/*
Mixin to hide element on desktop or mobile default size 768px

*/
.only_desktop {
  display: block;
}

@media screen and (max-width: 768px) {
  .only_desktop {
    display: none;
  }
}

.only_mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .only_mobile {
    display: block;
  }
}

.w1280 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.w1024 {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.w960 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

/*
Usage:
@include target-metro {
  color: cyan;
}
*/
@font-face {
  font-family: 'eurovision-icons';
  src: url(/build/fonts/eurovision-icons.1fd46a5f.eot);
  src: url(/build/fonts/eurovision-icons.1fd46a5f.eot) format("embedded-opentype"), url(/build/fonts/eurovision-icons.7d77c1d8.ttf) format("truetype"), url(/build/fonts/eurovision-icons.755ac234.woff) format("woff"), url(/build/images/eurovision-icons.77c4ddf6.svg) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'eurovision-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-thin-left:before {
  content: "\e909";
}

.icon-arrow-thin-right:before {
  content: "\e90a";
}

.icon-icon-events:before {
  content: "\e90b";
}

.icon-icon-worldfeeds:before {
  content: "\e90c";
}

.icon-icon-worldlink:before {
  content: "\e90d";
}

.icon-Icon-arrow-1:before {
  content: "\e900";
}

.icon-Icon-check:before {
  content: "\e901";
}

.icon-Icon-clock:before {
  content: "\e902";
}

.icon-Icon-delete:before {
  content: "\e903";
}

.icon-Icon-link-arrow:before {
  content: "\e904";
}

.icon-Icon-newsletter:before {
  content: "\e905";
}

.icon-social-facebook:before {
  content: "\e906";
}

.icon-social-linkedin:before {
  content: "\e907";
}

.icon-social-twitter:before {
  content: "\e908";
}

.bg-darkgrey {
  background-color: #16171A;
}

.bg-darkgrey a:hover {
  color: #5f5f5f;
}

.bg-grey {
  background-color: #2B2F34;
}

.bg-white {
  background-color: white;
}

.bg-almostwhite {
  background-color: #F5F5F5;
}

.btn-insights {
  font-size: 18px;
  font-size: 1.8rem;
  color: #7D7D7D;
  border: 2px solid #979797;
  padding: 1rem 2rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -moz-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -o-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

.btn-insights:hover {
  background-color: #979797;
  color: white;
}

.cards a {
  text-decoration: none;
}

.card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -moz-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -o-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

@media (min-width: 600px) {
  .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .card:hover .image img {
    transform: scale(1.1) translateZ(0);
  }
}

.card > .image {
  position: relative;
}

.card > .image a, .card > .image .imgcontainer {
  overflow: hidden;
  display: block;
}

.card > .image:after {
  content: '';
  position: absolute;
  background-color: black;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(14, 21, 53, 0.2) 80%, rgba(0, 0, 0, 0.75) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(14, 21, 53, 0.2) 80%, rgba(0, 0, 0, 0.75) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(14, 21, 53, 0.2) 80%, rgba(0, 0, 0, 0.75) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 );
  /* IE6-9 */
}

.card > .image img {
  object-fit: cover;
  -webkit-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -moz-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -o-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  display: block;
  max-width: 100%;
  transform: translateZ(0);
}

.card .category {
  position: absolute;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  left: 1.5rem;
  bottom: .6rem;
  width: 100%;
  z-index: 1;
}

@media (min-width: 600px) {
  .card .category {
    font-size: 1.1rem;
    line-height: 1.3rem;
    left: 2rem;
    bottom: 1.6rem;
  }
}

.card .category:before {
  content: '';
  display: block;
  background-color: #DD0031;
  position: absolute;
  left: -2rem;
  width: 1rem;
  height: .4rem;
  bottom: .5rem;
}

@media (min-width: 600px) {
  .card .category:before {
    left: -2.5rem;
  }
}

.card .category.nocat:before {
  left: 0;
  width: calc( 100% - 4rem);
}

.card > .text {
  text-decoration: none;
  background-color: white;
  position: relative;
  padding: 1.5rem;
  padding-bottom: 3.5rem;
  -webkit-font-smoothing: subpixel-antialiased;
}

@media (min-width: 600px) {
  .card > .text {
    padding: 2rem;
  }
}

.card > .text a {
  text-decoration: none;
}

.card > .text h3 {
  color: #494949;
  font-family: Gotham;
  font-weight: bold;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -moz-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -o-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

@media (min-width: 600px) {
  .card > .text h3 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 992px) {
  .card > .text h3 {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 3rem;
  }
}

@media (min-width: 1200px) {
  .card > .text h3 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 3.6rem;
  }
}

.card > .text h3:hover {
  color: #DD0031;
}

.card .excerpt {
  display: none;
}

@media (min-width: 600px) {
  .card .excerpt {
    color: #4F4F4F;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 1200px) {
  .card .excerpt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}

.card .details {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.1rem;
  line-height: 1;
}

@media (min-width: 600px) {
  .card .details {
    left: 2rem;
    right: 2rem;
    bottom: 1.6rem;
  }
}

.card .details date {
  color: #DD0031;
  font-weight: bold;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: .5rem;
  display: block;
}

@media (min-width: 600px) {
  .card .details date {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.card .details .tags {
  display: none;
  line-height: 1;
  vertical-align: baseline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 600px) {
  .card .details .tags {
    text-transform: uppercase;
    font-size: 13px;
    font-size: 1.3rem;
    color: #7D7D7D;
    display: -webkit-box;
  }
}

.card .details .tags > a {
  text-decoration: none;
  color: #7D7D7D;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  line-height: 1;
  margin-top: .5rem;
}

.card .details .tags > a:hover {
  text-decoration: underline;
  color: #7D7D7D;
}

.card .details > a {
  font-size: 9px;
  font-size: 0.9rem;
  color: #DD0031;
  font-weight: bold;
  text-decoration: none;
  display: block;
  text-align: center;
}

@media (min-width: 600px) {
  .card .details > a {
    font-size: 13px;
    font-size: 1.3rem;
    text-align: right;
  }
}

@media (min-width: 600px) {
  section.homepage-slider {
    padding: 20px 20px 40px 20px;
  }
}

@media (min-width: 992px) {
  section.homepage-slider {
    padding: 20px 20px 0px 20px;
  }
}

section.homepage-slider .tns-outer {
  position: relative;
}

section.homepage-slider .tns-outer .tns-controls {
  display: none;
  position: absolute;
  padding: 2rem;
  z-index: 100;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
  bottom: 0rem;
  color: white;
}

@media (min-width: 600px) {
  section.homepage-slider .tns-outer .tns-controls {
    display: flex;
  }
}

@media (min-width: 992px) {
  section.homepage-slider .tns-outer .tns-controls {
    bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  section.homepage-slider .tns-outer .tns-controls {
    bottom: 4rem;
  }
}

section.homepage-slider .tns-outer .tns-nav {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  pointer-events: none;
  text-align: center;
  top: calc( .42 * 100vw);
}

@media (min-width: 600px) {
  section.homepage-slider .tns-outer .tns-nav {
    top: auto;
    bottom: -30px;
  }
}

@media (min-width: 992px) {
  section.homepage-slider .tns-outer .tns-nav {
    bottom: 10px;
  }
}

section.homepage-slider .tns-outer .tns-nav button {
  margin: 0 5px;
  padding: 10px 0;
}

section.homepage-slider .tns-outer .tns-nav button:after {
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 4px;
  display: block;
}

section.homepage-slider .tns-outer .tns-nav button.tns-nav-active:after {
  background-color: #DD0031;
}

section.homepage-slider .tns-outer button {
  font-size: 50px;
  appearance: none;
  background-color: transparent;
  border: 0;
  pointer-events: all;
}

section.homepage-slider .main-slider {
  width: 100%;
}

section.homepage-slider .main-slider .slide .slide-content {
  position: relative;
}

section.homepage-slider .main-slider .slide .slide-content img {
  width: 100%;
  height: calc( (100vw - 40px) * .4082798);
  object-fit: cover;
}

section.homepage-slider .main-slider .slide .slide-content .gradient {
  display: none;
}

@media (min-width: 600px) {
  section.homepage-slider .main-slider .slide .slide-content .gradient {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #0e1535;
    background: -moz-linear-gradient(0deg, rgba(14, 21, 53, 0.75) 0%, rgba(14, 21, 53, 0.02) 20%, rgba(14, 21, 53, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(14, 21, 53, 0.75) 0%, rgba(14, 21, 53, 0.02) 20%, rgba(14, 21, 53, 0) 100%);
    background: linear-gradient(0deg, rgba(14, 21, 53, 0.75) 0%, rgba(14, 21, 53, 0.02) 20%, rgba(14, 21, 53, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0e1535",endColorstr="#0e1535",GradientType=1);
  }
}

section.homepage-slider .main-slider .slide .slide-content .slide-text {
  width: 100%;
  color: white;
}

section.homepage-slider .main-slider .slide .slide-content .slide-text a {
  text-decoration: unset;
  color: white;
}

section.homepage-slider .main-slider .slide .slide-content .slide-text a:hover {
  text-decoration: underline;
}

@media (min-width: 600px) {
  section.homepage-slider .main-slider .slide .slide-content .slide-text {
    position: absolute;
    text-align: center;
    bottom: 0px;
  }
}

@media (min-width: 992px) {
  section.homepage-slider .main-slider .slide .slide-content .slide-text {
    bottom: 5rem;
  }
}

section.homepage-slider .main-slider .slide .slide-content .slide-text .container-text {
  margin: 0 auto;
  padding: 30px 20px;
}

@media (min-width: 600px) {
  section.homepage-slider .main-slider .slide .slide-content .slide-text .container-text {
    max-width: calc( 100% - 120px);
    padding: 10px 20px;
  }
}

section.homepage-slider .main-slider .slide .slide-content .slide-text .container-text h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
}

@media (min-width: 600px) {
  section.homepage-slider .main-slider .slide .slide-content .slide-text .container-text h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 26px;
  }
}

section.homepage-slider .main-slider .slide .slide-content .slide-text .container-text p {
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
}

@media (min-width: 600px) {
  section.homepage-slider .main-slider .slide .slide-content .slide-text .container-text p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
  }
}

section.whoarewe {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #222728;
  padding: 30px 0 40px 0;
}

@media (min-width: 600px) {
  section.whoarewe {
    background-color: transparent;
    padding: 50px 0;
  }
}

@media (min-width: 992px) {
  section.whoarewe {
    text-align: right;
  }
}

@media (min-width: 600px) {
  section.whoarewe:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    z-index: -1;
    background-image: url(/build/images/background-logo.239c95f1.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

@media (min-width: 992px) {
  section.whoarewe:before {
    background-size: 70%;
  }
}

section.whoarewe .row {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

@media (min-width: 600px) {
  section.whoarewe .row {
    display: block;
  }
}

section.whoarewe .row .left {
  color: #7D7D7D;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  text-align: left;
  width: 100%;
}

@media (min-width: 600px) {
  section.whoarewe .row .left {
    text-align: right;
    width: 58.33333%;
  }
}

@media (min-width: 992px) {
  section.whoarewe .row .left {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    width: 41.66667%;
  }
}

section.whoarewe .row .right {
  color: #E9E9E9;
  font-weight: bold;
  text-align: left;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 34px;
  width: 100%;
}

@media (min-width: 600px) {
  section.whoarewe .row .right {
    width: 41.66667%;
  }
}

@media (min-width: 992px) {
  section.whoarewe .row .right {
    font-size: 30px;
    font-size: 3rem;
    line-height: 40px;
  }
}

section.whoarewe .btn-insights {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 22px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  section.whoarewe .btn-insights {
    margin-top: 4rem;
  }
}

@media (min-width: 992px) {
  section.whoarewe .btn-insights {
    padding: 18px 40px;
    margin-top: 0;
    text-align: left;
    margin-top: 0;
  }
}

@media (min-width: 600px) {
  section.whoarewe .btn-insights.no-tablet {
    display: none;
  }
}

@media (min-width: 992px) {
  section.whoarewe .btn-insights.no-desktop {
    display: none;
  }
}

@media (max-width: 600px) {
  section.whoarewe .btn-insights.no-mobile {
    display: none;
  }
}

section.events {
  background-color: #F5F5F5;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 600px) {
  section.events {
    padding-top: 7.5rem;
    padding-bottom: 10rem;
  }
}

section.events h2 {
  position: relative;
  padding-left: 4rem;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  margin: 0;
  color: #494949;
}

section.events h2 span.icon-icon-events {
  position: absolute;
  left: 0;
}

@media (min-width: 600px) {
  section.events h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 36px;
  }
}

@media (min-width: 992px) {
  section.events h2 {
    width: 25%;
  }
}

section.events .row {
  display: flex;
  margin-top: 4rem;
  flex-direction: column-reverse;
}

@media (min-width: 600px) {
  section.events .row {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  section.events .row {
    margin-top: -10rem;
  }
}

section.events .row .left {
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 3rem;
}

@media (min-width: 600px) {
  section.events .row .left {
    width: 25%;
  }
}

@media (min-width: 992px) {
  section.events .row .left {
    padding-top: 12rem;
    padding-right: 25px;
  }
}

section.events .row .left .menu {
  text-align: left;
}

section.events .row .left .menu ul {
  width: 100%;
}

section.events .row .left .menu ul li a {
  font-weight: 300;
  color: #7D7D7D;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 42px;
  text-decoration: none;
  border-top: 2px solid #E4E4E4;
  display: block;
  position: relative;
  cursor: pointer;
}

section.events .row .left .menu ul li a:hover {
  text-decoration: underline;
}

section.events .row .left .menu ul li a:after {
  color: #7D7D7D;
  display: block;
  bottom: 0;
  top: 0;
  position: absolute;
  line-height: 42px;
  right: 5px;
  font-family: 'eurovision-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
}

section.events .row .left .menu ul li:last-of-type a {
  border-bottom: 2px solid #E4E4E4;
}

section.events .row .left .btn-cta {
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #DD0031;
  border: 2px solid #DD0031;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 40px;
  line-height: 22px;
  font-size: 18px;
  font-size: 1.8rem;
  -webkit-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -moz-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -o-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

@media (min-width: 600px) {
  section.events .row .left .btn-cta {
    padding: 18px;
    display: block;
  }
}

section.events .row .left .btn-cta:hover {
  background-color: #DD0031;
  color: white;
}

section.events .row .right {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 600px) {
  section.events .row .right {
    width: 75%;
  }
}

section.events .row .cards {
  display: flex;
  flex-wrap: wrap;
}

section.events .row .cards a {
  width: calc(50% - 7px);
  margin-left: 7px;
  margin-right: 7px;
}

section.events .row .cards a:first-of-type {
  margin-left: 0px;
}

section.events .row .cards a:nth-of-type(2) {
  margin-right: 0px;
}

section.events .row .cards a:last-of-type {
  margin: 0px;
}

@media (max-width: 599px) {
  section.events .row .cards a:last-of-type {
    width: 100%;
    margin-top: 14px;
  }
  section.events .row .cards a:last-of-type .card {
    display: flex;
    flex-direction: row;
  }
  section.events .row .cards a:last-of-type .image {
    width: calc( 50% - 7px);
  }
  section.events .row .cards a:last-of-type .text {
    width: calc( 50% + 7px);
  }
  section.events .row .cards a:last-of-type .text .details date {
    bottom: 1rem;
    left: calc( 50% - 7px + 1.5rem);
    right: 1.5rem;
  }
}

@media (min-width: 600px) {
  section.events .row .cards a {
    align-self: flex-start;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(33.3% - 20px);
  }
  section.events .row .cards a:nth-of-type(2) {
    margin-right: 15px;
  }
  section.events .row .cards a:last-of-type {
    margin-left: 15px;
    margin-top: 0;
  }
  section.events .row .cards a:hover h3 {
    color: #DD0031;
  }
}

section.events .row .cards .card {
  position: relative;
}

section.events .row .cards .card .tags {
  line-height: 16px;
}

section.events .row .cards .card .image .category {
  font-size: 10px;
  font-size: 1rem;
  left: 1.5rem;
  bottom: 1rem;
}

section.events .row .cards .card .image .category:before {
  left: -2rem;
}

@media (min-width: 992px) {
  section.events .row .cards .card .image .category {
    bottom: 1.6rem;
    font-size: 1.1rem;
    left: 2rem;
    line-height: 1.3rem;
  }
  section.events .row .cards .card .image .category:before {
    left: -2.5rem;
  }
}

section.events .row .cards .card .text {
  position: static;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  section.events .row .cards .card .text {
    padding: 2rem;
  }
}

section.events .row .cards .card .text h3 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 14px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  section.events .row .cards .card .text h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
  }
}

section.events .row .cards .card .text .details {
  position: static;
  padding-top: 1rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 16px;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  section.events .row .cards .card .text .details {
    margin-bottom: 8rem;
  }
}

section.events .row .cards .card .text .details .tags {
  display: none;
}

@media (min-width: 992px) {
  section.events .row .cards .card .text .details .tags {
    display: block;
  }
}

section.events .row .cards .card .text .details date {
  position: absolute;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 13px;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}

@media (min-width: 992px) {
  section.events .row .cards .card .text .details date {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 16px;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
  }
}

.container.worlds .row {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .container.worlds .row {
    flex-direction: row;
  }
}

.container.worlds .row section.worldfeeds {
  background-color: #EDEDED;
  position: relative;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

@media (min-width: 600px) {
  .container.worlds .row section.worldfeeds:before {
    content: '';
    background-color: #EDEDED;
    position: absolute;
    right: 100%;
    width: calc( 50vw - 50%);
    top: 0;
    bottom: 0;
  }
  .container.worlds .row section.worldfeeds:after {
    content: '';
    background-color: #EDEDED;
    position: absolute;
    left: 100%;
    width: calc( 50vw - 50%);
    top: 0;
    bottom: 0;
  }
}

@media (min-width: 992px) {
  .container.worlds .row section.worldfeeds {
    padding-left: 15px;
    padding-right: 8.33333%;
    padding-top: 9rem;
    padding-bottom: 9rem;
    width: calc( 58.33333% - 1.5rem);
    margin-top: -6rem;
    box-shadow: 2px 8px 5px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 6rem;
    padding-bottom: 2rem;
  }
  .container.worlds .row section.worldfeeds:after {
    display: none;
  }
}

.container.worlds .row section.worldfeeds h2 {
  position: relative;
  padding-left: 4rem;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  margin: 0;
  color: #494949;
  text-align: left;
}

.container.worlds .row section.worldfeeds h2 span.icon-icon-worldfeeds {
  position: absolute;
  left: 0;
}

.container.worlds .row section.worldfeeds h2 span.subtitle {
  display: block;
  color: #8C8E9F;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 14px;
}

@media (min-width: 600px) {
  .container.worlds .row section.worldfeeds h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 36px;
  }
}

.container.worlds .row section.worldfeeds .cards {
  margin: 4rem 0;
  text-align: left;
}

.container.worlds .row section.worldfeeds .cards a {
  text-decoration: none;
}

.container.worlds .row section.worldfeeds .cards a:hover .text h3 {
  color: #DD0031;
}

.container.worlds .row section.worldfeeds .cards a:hover .text h3:after {
  color: #DD0031;
}

.container.worlds .row section.worldfeeds .cards .card {
  margin-top: 20px;
  position: relative;
}

.container.worlds .row section.worldfeeds .cards .card .text {
  position: static;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
}

@media (min-width: 992px) {
  .container.worlds .row section.worldfeeds .cards .card .text {
    padding: 2rem 3rem 2rem 2rem;
  }
}

.container.worlds .row section.worldfeeds .cards .card .text h3 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 14px;
  margin-bottom: 0;
  margin-top: 0;
}

.container.worlds .row section.worldfeeds .cards .card .text h3:after {
  color: #8C8E9F;
  display: block;
  bottom: 0;
  top: 0;
  position: absolute;
  font-size: 20px;
  font-size: 2rem;
  right: 1.5rem;
  top: 2rem;
  font-family: 'eurovision-icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  -webkit-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -moz-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  -o-transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  transition: all 0.28s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
}

@media (min-width: 992px) {
  .container.worlds .row section.worldfeeds .cards .card .text h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
  }
}

.container.worlds .row section.worldfeeds .cards .card .text .details {
  position: static;
  padding-top: .5rem;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 16px;
  margin-bottom: 3rem;
}

.container.worlds .row section.worldfeeds .cards .card .text .details .tags {
  display: none;
}

@media (min-width: 992px) {
  .container.worlds .row section.worldfeeds .cards .card .text .details .tags {
    display: block;
  }
}

.container.worlds .row section.worldfeeds .cards .card .text .details date {
  position: absolute;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 13px;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}

@media (min-width: 992px) {
  .container.worlds .row section.worldfeeds .cards .card .text .details date {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 16px;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
  }
}

@media (min-width: 600px) {
  .container.worlds .row section.worldfeeds .btn-insights {
    position: absolute;
    right: 1.5rem;
    top: 8rem;
  }
}

@media (min-width: 992px) {
  .container.worlds .row section.worldfeeds .btn-insights {
    position: static;
  }
}

.container.worlds .row section.worldlink {
  color: white;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8rem;
  position: relative;
  text-align: center;
  padding-bottom: 10rem;
}

@media (min-width: 600px) {
  .container.worlds .row section.worldlink {
    display: flex;
    padding-bottom: 7rem;
  }
}

@media (min-width: 992px) {
  .container.worlds .row section.worldlink {
    display: block;
    width: 41.666666%;
    padding-left: 8.33333%;
    padding-top: 10rem;
    padding-bottom: 18rem;
    padding-right: 0;
  }
}

@media (min-width: 600px) {
  .container.worlds .row section.worldlink .text {
    width: 50%;
    margin-right: 15px;
  }
}

@media (min-width: 992px) {
  .container.worlds .row section.worldlink .text {
    width: 100%;
  }
}

.container.worlds .row section.worldlink .text h2 {
  position: relative;
  padding-left: 4rem;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  margin: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.container.worlds .row section.worldlink .text h2 span.icon-icon-worldlink {
  position: absolute;
  left: 0;
}

.container.worlds .row section.worldlink .text h2 span.subtitle {
  display: block;
  color: #8C8E9F;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 14px;
}

@media (min-width: 600px) {
  .container.worlds .row section.worldlink .text h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 36px;
  }
}

.container.worlds .row section.worldlink .text p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  text-align: left;
  color: #E9E9E9;
}

@media (min-width: 992px) {
  .container.worlds .row section.worldlink .text p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
  }
}

.container.worlds .row section.worldlink .text .btn-insights {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 600px) {
  .container.worlds .row section.worldlink .text .btn-insights {
    position: static;
    margin-top: 2rem;
    transform: none;
  }
}

@media (min-width: 992px) {
  .container.worlds .row section.worldlink .text .btn-insights {
    position: absolute;
    bottom: 13rem;
    right: 0;
    left: auto;
  }
}

.container.worlds .row section.worldlink .image {
  margin-top: 4rem;
}

@media (min-width: 600px) {
  .container.worlds .row section.worldlink .image {
    width: 50%;
    margin-left: 15px;
    margin-top: 0rem;
  }
}

@media (min-width: 992px) {
  .container.worlds .row section.worldlink .image {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 4rem;
    margin-left: 0;
  }
}

.container.worlds .row section.worldlink .image img {
  border-bottom: solid 10px #DD0031;
  max-width: 100%;
}

section.osspartners {
  background-color: #f5f5f5;
}

section.osspartners .row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 600px) {
  section.osspartners .row {
    flex-direction: row;
  }
}

@media (min-width: 600px) {
  section.osspartners .row .image {
    width: 50%;
  }
}

section.osspartners .row .image img {
  max-width: 100%;
}

section.osspartners .row .text {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10rem;
}

@media (min-width: 600px) {
  section.osspartners .row .text {
    width: 50%;
  }
}

@media (min-width: 992px) {
  section.osspartners .row .text {
    padding-right: 8.33333%;
  }
}

section.osspartners .row .text h2 {
  color: #4B4B4B;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 26px;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  section.osspartners .row .text h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 36px;
  }
}

@media (min-width: 992px) {
  section.osspartners .row .text h2 {
    margin-bottom: 5rem;
  }
}

section.osspartners .row .text p {
  color: #494949;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  text-align: left;
}

@media (min-width: 992px) {
  section.osspartners .row .text p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
  }
}

section.osspartners .row .text input {
  width: 100%;
  padding: 16px 20px;
  border: 0;
  border-bottom: solid 3px #4F4F4F;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 17px;
  border-radius: 0;
}

@media (min-width: 992px) {
  section.osspartners .row .text input {
    margin-top: 5rem;
  }
}

