@charset "UTF-8";
/* CSS Document */

/* FONTS */

/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v23-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-italic - latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-v23-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato-v23-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato-v23-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato-v23-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato-v23-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato-v23-latin-italic.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v23-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato-v23-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato-v23-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato-v23-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato-v23-latin-700.svg#Lato') format('svg'); /* Legacy iOS */
}
/* lato-700italic - latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lato-v23-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/lato-v23-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lato-v23-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/lato-v23-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/lato-v23-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/lato-v23-latin-700italic.svg#Lato') format('svg'); /* Legacy iOS */
}


/* FONTS end */


html { width:100%; min-height: -webkit-fill-available; height:100vh;}

* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body {
	height:100vh;
	min-height: -webkit-fill-available;
	min-height:100%;
	font-family: 'Lato', sans-serif;
	background:url(../images/bg.jpg) no-repeat center center fixed;
	background-color:#FFF;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: 100% 100% cover;
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	
	color:#000;
	font-size:15px;
	line-height:1.5em;
	font-weight:400;
	margin:0px;
	padding:0px;
}

.ecard-fixed { display:block;}
.ecard-mob { display:none; }

.clearfix { clear:both;}
img { border:0; border-style: none; outline:0;}
*:focus { outline:0!important;}

.rev-icons {
	/*display:inline-block!important;*/
	display:table-cell;
	padding:0px 3px;
}

.logo-naxos { width:85px; position:absolute; top:-20px; left:25px; z-index:600;}

.header-e {
	width:920px;
	height:90px;
	border-bottom:2px solid #0e3174;
	margin-left:25px;
	margin-right:25px;
	position:absolute;
	top:0px;
	left:0px;
	overflow:hidden;
	z-index:200;
}

.title { position:absolute; top:0px; left:100px;}


/* NAVIGATION */
.navigation-m nav {
	background: transparent;
	/*padding: 50px 0;*/
	margin-top:62px;
	font-size:15px;
}

/* By Dominik Biedebach @domobch */
.navigation-m nav ul {
	list-style: none;
	text-align: right;
}
.navigation-m nav ul li {
	display: inline-block;
}

.navigation-m nav ul li a {
	display: block;
	padding: 5px 8px;
	text-decoration: none;
	color: #0e3174;
	font-weight: 800;
	margin: 0 5px;
}

.navigation-m nav .active {
	display: block;
	padding: 5px 8px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: 800;
	margin: 0 10px;
}

.navigation-m nav .active {
    background: #0e3174;
}

.navigation-m nav ul li a,
.navigation-m nav ul li a:after,
.navigation-m nav ul li a:before {
	transition: all .5s;
}
.navigation-m nav ul li a:hover {
	color: #FFFFFF;
}

/* stroke */
.navigation-m nav.stroke ul li a,
.navigation-m nav.fill ul li a {
	position: relative;
}
.navigation-m nav.stroke ul li a:after,
.navigation-m nav.fill ul li a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0%;
	content: '.';
	color: transparent;
	background: #333;
	height: 1px;
}
.navigation-m nav.stroke ul li a:hover:after {
	width: 100%;
}

.navigation-m nav.fill ul li a {
	transition: all .5s;
}
/* By Dominik Biedebach @domobch */

.navigation-m nav.fill ul li a:after {
	text-align: left;
	content: '.';
	margin: 0;
	opacity: 0;
}
.navigation-m nav.fill ul li a:hover {
	color: #ffffff;
	z-index: 1;
	text-decoration:none;
}
.navigation-m nav.fill ul li a:hover:after {
	z-index: -10;
	animation: fill .5s forwards;
	-webkit-animation: fill .5s forwards;
	-moz-animation: fill .5s forwards;
	opacity: 1;
}

/* Keyframes */
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #0e3174;
  }
}

/* NAVIGATION end */

.ecard {
	background-color: rgba(255, 255, 255, .8);
	-moz-box-shadow: 0px 5px 15px -4px rgba(0,0,0,0.4); 
	-webkit-box-shadow: 0px 5px 15px -4px rgba(0,0,0,0.4); 
	box-shadow: 0px 5px 15px -4px rgba(0,0,0,0.4);
	border-top:20px solid #0e3174;
	border-right:5px solid #0e3174;
	border-left:5px solid #0e3174;
	border-bottom:5px solid #0e3174;
	margin:25px auto 0px!important;
	/*padding-bottom:30px;*/
	position:relative;
}

.home:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url('../images/bg-ecard.png');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.txt-black { color:#000000;}
.txt-blue { color:#0e3174;}

h1 { font-family: 'Lato', sans-serif; font-size:25px; line-height:35px; text-align:left; color:#0e3174; font-weight:700; margin:10px 0px 0px;}
h2 { font-family: 'Lato', sans-serif; font-size:30px; line-height:35px; text-align:left; color:#0e3174; font-weight:700; margin:35px 0px 0px;}
h3 { font-family: 'Lato', sans-serif; font-size:27px; line-height:33px; color:#0e3174; font-weight:700; margin:0px 0px 0px;}
h4 { font-family: 'Lato', sans-serif; font-size:23px; line-height:30px; color:#0e3174; font-weight:700; margin:0px 0px 0px;}

.fsize15 { font-size:15px; line-height:1.3em;}
.fsize18 { font-size:18px; line-height:21px;}
.fsize20 { font-size:20px; line-height:23px;}
.fweight400 { font-weight:400;}
.fweight700 { font-weight:700;}

.p-lr10 { padding-left:10px; padding-right:10px;}
.p-lr15 { padding-left:15px; padding-right:15px;}
.p-lr25 { padding-left:25px; padding-right:25px;}

.shadow-img {
	-moz-box-shadow: 0px 0px 10px rgba(68,68,68,0.25);
	-webkit-box-shadow: 0px 0px 10px rgba(68,68,68,0.25);
	box-shadow: 0px 0px 10px rgba(68,68,68,0.25);
}

.content-home { margin-top:20px; position:relative;}
.content-music { padding-top:130px; position:relative;}
.content-music2 { padding-top:110px; position:relative;}

.flag-b {
	width:90px;
	background-color:#0e3174;
	color:#FFFFFF;
	font-size:15px;
	padding:3px 10px;
	text-align:center;
	border-radius:3px;
	margin:0px 0px 10px;
}

.content-home .half-l, .content-home .half-r, .discs-l, .discs-r {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.discs7, .discs2, .discs3 {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}


.btn-m {
  padding: 5px 40px 6px;
  text-align: center;
  text-transform:uppercase;
  font-size:15px;
  font-weight:700;
  opacity: 1;
  transition: 0.3s;
  border-radius:2px;
  cursor: pointer;
}

.btn-s {
  color: #000000!important;
  padding: 4px 10px 5px;
  text-align: center;
  text-transform:uppercase;
  font-size:12px;
  font-weight:600;
  opacity: 1;
  transition: 0.3s;
  border-radius:2px;
  cursor: pointer;
}

.btn-m a:link, .btn-m a:visited, .btn-m a:link, .btn-m a:visited, .btn-reco a:link, .btn-reco a:visited {color:#000000!important; text-decoration:none!important;}
/*.btn-m a:hover {opacity: 0.7!important; text-decoration:none!important; color:#000000!important;} */

.btn-discover { border:3px solid #0e3174; color: #000000;}
.btn-discover:hover { background-color:#0e3174; color: #FFFFFF; text-decoration:none; cursor:pointer;}
.btn-watch, .btn-podcast { background-color:#e4eda5!important; border:1px solid #e0e7ae;}
.btn-watch:hover, .btn-podcast:hover { background-color:#c5d07c!important;}

.btns {
	/*display:inline-block!important;*/
	display:table-cell;
	padding:0px 5px 0px 5px;
}

.discs-l img, .discs7 img, .discs2 img, .discs3 img {
	-webkit-filter: brightness(100%);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.discs-l:hover img, .discs7:hover img, .discs2:hover img, .discs3:hover img {
	-webkit-filter: brightness(120%);
}

hr.style-one {
	width:920px;
	border-top: 2px solid #0e3174;
	position:absolute;
	bottom:0px;
	left:25px;
}

hr.style-two {
	width:100%;
	border-top: 2px solid #0e3174;
	margin:15px auto;
}


/* FOOTER */

.footer {
	font-size:11px;
	line-height:13px;
	font-weight:700;
	text-align:center;
	margin:20px 0px;
	color:#000000;
}

.footer a {
	color:#000000!important;
}

.footer a:hover {
	color:#000000!important;
	text-decoration:none!important;
}

/* FOOTER end */

.bg-m {
	height:550px;
}

.bg-all {
	height:545px;
	background-color:transparent;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: 100% 100% cover;
}

.bg-1 {
	background:url(../images/bg-1.jpg) no-repeat center center scroll;
}

.bg-2 {
	background:url(../images/bg-2.jpg) no-repeat center center scroll;
}

.bg-3 {
	background:url(../images/bg-3.jpg) no-repeat center center scroll;
}

.bg-4 {
	background:url(../images/bg-4.jpg) no-repeat center center scroll;
}

.bg-5 {
	background:url(../images/bg-5.jpg) no-repeat center center scroll;
}

.bg-6 {
	background:url(../images/bg-6.jpg) no-repeat center center scroll;
}

.bg-7 {
	background:url(../images/bg-7.jpg) no-repeat center center scroll;
}

.bg-8 {
	background:url(../images/bg-8.jpg) no-repeat center center scroll;
}

.bg-9 {
	background:url(../images/bg-9.jpg) no-repeat center center scroll;
}

.bg-10 {
	background:url(../images/bg-10.jpg) no-repeat center center scroll;
}

.bg-11 {
	background:url(../images/bg-11.jpg) no-repeat center center scroll;
}

.bg-12 {
	background:url(../images/bg-12.jpg) no-repeat center center scroll;
}

.bg-13 {
	background:url(../images/bg-13.jpg) no-repeat center center scroll;
}

.bg-14 {
	background:url(../images/bg-14.jpg) no-repeat center center scroll;
}

.bg-15 {
	background:url(../images/bg-15.jpg) no-repeat center center scroll;
}

.fsize-titles {
	font-size:16px!important;
	line-height:21px!important;
}


.star {
	color:#c20000;
	font-size:13px;
	line-height:15px;
}


@media screen and (min-width: 980px) {
.ecard {
	width:980px;
	height:570px;
}

.content-home .half-l {
	-ms-flex: 0 0 44%;
	flex: 0 0 44%;
	max-width: 44%;
}

.content-home .half-r {
	-ms-flex: 0 0 56%;
	flex: 0 0 56%;
	max-width: 56%;
	
	margin-top:70px;
}

.content-music2 .discs7 {
	-ms-flex: 0 0 13.5%;
	flex: 0 0 13.5%;
	max-width: 13.5%;
}

.content-music .discs3, .content-music .discs2 {
	-ms-flex: 0 0 24%;
	flex: 0 0 24%;
	max-width: 24%;
}

.discs-l {
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
	max-width: 40%;
}

.discs-r {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

}

@media screen and (max-width: 979px) {
.ecard {
	width:100%;
	/*height:100%;*/
	border:none;
	margin-top:0px!important;
	position:relative;
	overflow-y:scroll;
}

.ecard-fixed { display:none!important;}
.ecard-mob { display:block!important; }

.logo-naxos { top:0px!important;}

.header-e {
	width:100%!important;
	height:auto;
	border-bottom:2px solid #0e3174;
	margin:100px 0px 20px 0px;
	overflow:hidden;
	padding-bottom:15px;
	position:absolute;
	top:0px;
	left:0px;
}

.content-home { margin-top:30px;}
.content-music, .content-music2 { padding-top:260px; overflow:hidden}

h1, h2 { font-size:28px; line-height:30px; text-align:center; margin:10px 0px 0px;}
h3 { font-size:28px; line-height:32px; margin:0px 0px 0px;}

.txtcen-mob { text-align:center;}
.no-mtop-mob { margin-top:0px!important;}
.no-pad-mob { padding-left:0px!important; padding-right:0px!important;}
.mb30-mob { margin-bottom:30px;}

.w100-mob {width:100%;}
.w70-mob { width:70%;}

.center-mob {
	justify-content:center;
}

hr.style-one {
	width:100%!important;
	border-top: 2px solid #0e3174;
	position:absolute;
	bottom:0px;
	left:0px;
}

.bg-m {
	height:100%;
}

.bg-1, .bg-2, .bg-3, .bg-4, .bg-5, .bg-6, .bg-7, .bg-8, .bg-9, .bg-10, .bg-11, .bg-12, .bg-13, .bg-14, .bg-15, .bg-all {
	background-color:transparent;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: 100% 100% cover;
	height:100%!important;
}

.bg-all { padding-bottom:30px;}

.flag-b { margin:0px 0px 10px;}

.fsize-titles {
	font-size:17px;
	line-height:21px;
}

.rev-icons {
	justify-content:center;
}

}






/* INLINE */
.inline-style {

	width:100%;
	height:100%;
	font-family: 'Lato', sans-serif;
	font-size:15px;
	letter-spacing:normal;
	line-height:1.3em;
	border:3px solid #CCC;
	border-radius:2px;
	color:#333333;
	padding:20px;
	background-color:#FFF;
}

.inline-content {
	margin-top:20px;
	text-align:justify;
}

.inline-content a:link, .inline-content a:visited, .inline-content a:active {
	color:#666;
	background:none;
}

.inline-content a:hover {
	background:none;
}

.inline-img {
	float:left;
	margin:0px 15px 5px 0px;
	position:relative;
	z-index:100;
}

.inline-right img{
	float: right; 
	padding-left:10px;
	padding-top:10px;
	position:absolute;
	bottom: 10px;
}

.box {
	background-color:#f3f3f3;
	border:1px solid #EEEEEE;
	padding:15px;
	margin:15px auto;
}

/* INLINE end */

