body {
  background: #9eb2d8; 
  font-family:sans-serif; 
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(85, 117, 170, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 0 2vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 20;
}

  .header > div.social { 
	   display: none;
  }
  
@media screen and (max-width: 600px) {
  .header {
    height: 60px;
    padding: 0 4vw;
  }
  .home > div.social{
	display: none;
  } 
  .header > div.social { 
	   display: block;
	   position: absolute;
	   right: 15%;
  }
  .header > div.social a{
	  display: inline-block;
	  margin: 5px;
  }
}

.header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-transform: translateX(-55px);
          transform: translateX(-55px);
}

@media screen and (max-width: 600px) {
  .header ul {
    display: none;
  }
}

.header ul li {
  color: #fff;
  margin: 0 2vw;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.7;
  font-weight: inheritl;
}

.header ul li:hover {
  opacity: 1;
}

.header ul li.active {
  opacity: 1;
  font-weight: bold;
}

.header .search {
  cursor: pointer;
  opacity: 0.5;
}

@media screen and (max-width: 600px) {
  .header .search {
    display: none;
  }
}

.header .search:hover {
  opacity: 1;
}

.header .menuIcon {
  display: none;
}

@media screen and (max-width: 600px) {
  .header .menuIcon {
    display: block;
  }
}

.header .menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(52, 62, 86, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}

.header .menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 100%;
}

.header .menu ul li {
  margin: 20px 0;
}

.header .menu ul li .search {
  display: block;
}

.header .menu ul .logo {
  width: 100%;
  height: 12.75vw;
  margin: 20px 0;
}

.header .menu ul .close {
  position: absolute;
  right: 5vw;
  top: 4vw;
  width: 100%;
}

.header .menu .social {
  position: absolute;
  bottom: 35vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu .social img {
  margin: 10px;
}

main {
  padding-top: 80px;
}

main.active {
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  main {
    padding-top: 60px;
  }
}

.home{ 
  background: url(../img/NOVA88-JC-MAIN-BANNER-EN.jpg) no-repeat bottom center;
  background-size: cover;
  width: 100%;
  height: calc(100vh) ;
}
 
.story, 
.news{
  background: url(../img/bg.png) no-repeat top center; 
  background-size: cover;
  width: 100%;
  height: calc(100vh - 80px);
}
  
.home {
  overflow: hidden;
}
  
.home .social {
  position: fixed;
  left: 2%;
  top: 40%;
  z-index: 1;
}
  
@media screen and (max-width: 600px) {
  .home .social {
    right: 4%;
    top: 35%;
  }
}

.home .social img {
  margin: 25px 0;
  opacity: 0.7;
}

.home .social img:hover {
  opacity: 1;
}

.home .banner {
  width: 100%;
}
 

.newsBox {  
  position: static; 
  bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px; 
  width: 100%; 
  background: rgba(84, 116, 171, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px); 
  height: auto;
  border: none;
}

.newsBox  a:hover .newsItem{
	text-decoration: none;
	color: white;
	background: rgba(158, 178, 216,1);
}  

.newsBox .newsItem{
	width: 100%; 
	margin-bottom: 10px;
	
	display: inline-block; 
	padding-top: 10px;
	padding-bottom: 10px; 
	border-bottom: 2px solid rgba(255,255,255, 0.5);
	border-right: 2px solid rgba(255,255,255, 0.5);
	border-radius: 15px;
	box-shadow: 0px 1px 2px rgba(255,255,255, 0.5);
	background: rgba(0,0,0,0.2);
	 
} 

.newsItem .imgBox{
	width: 25%;
}

.newsItem .newstxt{
	text-align: left; 
	 width: 75%; 
	padding: 0px;
	display: inline-block; 
}

.newsBox a h1{
	font-size: 1.5em;
	margin-bottom: 5px;
	margin-top: 10px;
} 

.videoBox{  
	padding-top: 90px;  
	width: 100%; 
	height: auto;
	background: rgba(158, 178, 216, 0.5); 
	text-align: center; 
} 

.videoBox .ambasador{ 
	max-width: 1280px; 
	padding-top:20px; 
	padding-bottom:50px;  
}

.videoBox .videotxt p{
	opacity: .5;
	width: 80%;
	text-align: center;
	font-size: 1.3em;
	color: rgb(0,0,0)
} 


.videoBox .videotxt h1{
	font-size: 2.0em;
	margin-top: 20px;
	margin-bottom: 10px;
}

.videoBox .mainframe{  
	position: relative;   
	width: 100%;  
	height: 60vh; 
}

.videoBox .mainframe iframe{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0; 
	height: 100%;
	width: 100%; 
	border-radius: 20px;
} 

.videoBox .thumbnail{
	background: transparent;
	margin-top: 10px;
	border: none;
}

.videoBox .thumbnail img{
	display: inline-block;
	width: 20%;
	height: 100px;
	padding: 0px 5px 0px 5px;
	border-radius: 30px;
	
}

.videoBox .thumbnail a{
	cursor: pointer;
	text-decoration: none;
}

.videoBox .thumbnail img:hover{
	
	animation: shake 0.3s;
}
.videoBox .join{
	display: none;
}


@keyframes shake {
  0% { transform: rotate(0deg); }  
  25% { transform:  rotate(7deg); } 
  50% { transform:  rotate(0deg); } 
  75% { transform:  rotate(-7deg); } 
  100% { transform:   rotate(-1deg); }
}

@media only screen and (max-width: 1000px){
	 .home{
		width: 100%;
		height: auton !important;
		}  
		 
	.videoBox .videotxt p{
		opacity: .5; 
		font-size: 1.2em; 
	}  
	
	.videoBox .mainframe{
		height: 300px;
		width: 70%;
	}
	
	.videoBox{
		padding-top: 50px;
		height: auto;
		
	}
	
	.videoBox .container{ 
		padding-top: 50px;
		padding-bottom:30px;
	
	} 

	.videoBox .thumbnail{ 
		margin-top: 5px;
		
	}

	.videoBox .thumbnail img{ 
		width: 20%;
		height: 80px;
		padding: 0px 3px 0px 3px;
		border-radius: 20px;
	}  
	
	.newsBox{
		padding-top: 50px;
	}

	.newsBox .container{
		width: 80%;
	}
		
	.newsBox a h1{
		font-size: 1.2em;
		margin-bottom: 5px;
		margin-top: 10px;
	}

}

@media only screen and (max-width: 854px) {
	.home{ 
		height: 500px !important;
	} 
		 
	.videoBox .videotxt p{
		opacity: .5; 
		font-size: 1.1em;  
	}  
	
	.videoBox .mainframe{
		height: 300px;
		width: 70%;
	}
	
	.videoBox{
		padding-top: 40px;
		
	}
	
	.videoBox .container{ 
		padding-top: 40px;
		padding-bottom:30px;
	
	} 

	.videoBox .thumbnail{ 
		margin-top: 2px;
		
	}

	.videoBox .thumbnail img{ 
		width: 20%;
		height: 60px;
		padding: 0px 3px 0px 3px;
		border-radius: 20px;
	}  
	
	.newsBox{
		padding-top: 50px;
		height: auto;
	}

	.newsBox .container{
		width: 80%;
	}
		
	.newsBox a h1{
		font-size: 1.2em;
		margin-bottom: 5px;
		margin-top: 10px;
	}
	
}

@media screen and (max-width: 600px) {
	.home{ 
		height: 400px !important;
	} 
		 
	.videoBox .videotxt p{
		opacity: .5; 
		font-size: 1.1em;  
	}  
	
	.videoBox .mainframe{
		height: 300px;
		width: 70%;
	}
	
	.videoBox{
		padding-top: 40px;
		
	}
	
	.videoBox .container{ 
		padding-top: 40px;
		padding-bottom:30px;
	
	} 

	.videoBox .thumbnail{ 
		margin-top: 2px;
		
	}

	.videoBox .thumbnail img{ 
		width: 20%;
		height: 60px;
		padding: 0px 3px 0px 3px;
		border-radius: 20px;
	}    
	.videoBox .join{
		display: block; 
		height: 60px; 
		font-size: 2em;
		width: 250px;
		border-radius: 15px;
		background: linear-gradient(to bottom,#a6e9ff 0%,#00aeff 88%);
		box-shadow: 5px 5px  5px gray;  
		font-weight: bold;
		//color: rgb(4,47,90);
		position: relative;
		padding-top: 10px;
		padding-left: 20px;
	} 
	.videoBox .anova88:hover{
		text-decoration: none;
		color: white;
	}  
	.videoBox .join img{
		display: inline-block;
		width: 60%;
		height: 40px;
		float: right;
		margin-top: 2px;
		margin-right: 15px; 
	}
	.videoBox .join .nv88{
		position: absolute;
		color: #ff7600;
		font-weight: bold;
		font-size: 1.3em;
		text-shadow: 1px 2px 5px gray; 
		right: 25px;
	}
	.newsBox{
		padding-top: 50px;
		display: inline-block;
	} 
	
	.newsItem .imgBox{
		display: inline;
		width: 100%;
		height: auto;
		margin-top: 2px;
		margin-left: 0px;
		margin-right: 0px;
	} 
	.newsItem .newstxt{
		display: inline;
		width: 100%;
	}

	.newsBox .container{
		width: 90%;
	}
		
	.newsBox a h1{
		font-size: 1.1em;
		margin-bottom: 5px;
		margin-top: 0px;
	}
	
	.newsBox a p{
		font-size: 0.8em;
	}
	
	.newsBox a{
		display: none;
	}
	.newsBox a:nth-child(1){
		display: block;
	}
	.newsBox a:nth-child(2){
		display: block;
	}
	.newsBox a:nth-child(3){
		display: block;
	}
	.newsBox a:nth-child(4){
		display: block;
	}
}

 .profile{ 
		width: 100%:
 }

.profile .banner { 
  position: relative;
  width: 100%; 
  padding-bottom: 39%;
  background: url(../img/proBg.png) no-repeat top center;
  background-size: 100%;
  -webkit-animation: banner 10s ease-in-out infinite alternate;
          animation: banner 10s ease-in-out infinite alternate;
}

@-webkit-keyframes banner {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}

@keyframes banner {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}


.profile .banner .proMan {
  position: absolute;
  background: url(../img/proMan.png) no-repeat top center;
  background-size: contain;
  max-width: 400px;
  width: 40%;
  padding-bottom: 30%;
  top: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  -webkit-animation: proMan 1s ease-in;
          animation: proMan 1s ease-in;
}

@-webkit-keyframes proMan {
  0% {
    -webkit-transform: translateX(-50%) translateY(20%);
            transform: translateX(-50%) translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes proMan {
  0% {
    -webkit-transform: translateX(-50%) translateY(20%);
            transform: translateX(-50%) translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1000px) {
  .profile .banner .proMan {
    width: 30%;
    padding-bottom: 35%;
    top: 10%;
  }
}

.profile .banner .proLtext {
  position: absolute;
  background: url(../img/proLtext.png) no-repeat;
  background-size: contain;
  max-width: 500px;
  width: 35%;
  padding-bottom: 20%;
  top: 10%;
  right: 60%;
  -webkit-animation: proLtext 1s ease-in;
          animation: proLtext 1s ease-in;
}

@-webkit-keyframes proLtext {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes proLtext {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

@media screen and (max-width: 1000px) {
  .profile .banner .proLtext {
    top: 24%;
    left: 7%;
    width: 30%;
  }
}

.profile .banner .proRtext {
  position: absolute;
  background: url(../img/proRtext.png) no-repeat;
  background-size: contain;
  max-width: 450px;
  width: 20%;
  padding-bottom: 7%;
  top: 50%;
  right: 60%;
  -webkit-animation: proRtext 1s ease-in;
          animation: proRtext 1s ease-in;
}

@-webkit-keyframes proRtext {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes proRtext {
  0% {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

.profile .banner .proInfo{
	position: absolute;
	background: white;
	padding-bottom: 20px;
	border-radius: 10px;
	//border: 1px solid white; 
	width: 350px;
	height: auto; 
	top: 10%;
	left: 65%;
	-webkit-animation: proRtext 1s ease-in;
		animation: proRtext 1s ease-in;
		 
}
 

.profile .banner .proInfo .title{ 
	margin-top: 20px;
	margin-left: 10px;
}

.profile .banner .proInfo .frame .text{ 
	width: 100%; 
	padding: 3px 20px 3px 20px;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
 flex-direction: row;
}

.profile .banner .proInfo .frame > div h1{ 
	width: 40%;  
	font-weight: bold;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
	flex: 40%;
}


.profile .content .frame > div.text p {
  color: #81889a;
  text-align: center;
  width: 60%; 
  flex: 60%;
} 

.career{
	position: relative;
	width: 100%;
	height: calc(89vh - 5px);
	max-height: 1000px;
	min-height: 800px;
}
.career .honor{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
	text-align: center;
	text-transform: uppercase;
	flex-direction: row;
	background: rgba(0,0,0,0.5);
	color: white;
   
}

.career .honor .cup{
	width: calc(100% / 5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
	text-align: center;
	text-transform: uppercase; 
	
}

.career .honor .title{
	font-size: 1.3rem;
	margin-top: 10px;
	
}

.career .honor .cup .cupContent{ 
	width: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
	text-align: center;
	text-transform: uppercase;
	flex-direction: row;
	align-items: center; 
	margin-bottom: 10px;
	 
} 

.career .honor .cup .cupContent p{
	font-size: 1.5rem;
}

.career .honor .cup .cupContent h1{
	font-size: 3rem;
}

.career .honor .cup .cupContent img{
	height: 70px;
	width: auto;
}

.career .clubs{  
	position: relative;
	height: calc(100% - 20%);
	max-height: 800px;
	min-height: 200px;
	//background: #EBEFE9;
	 
}
 
.career .teams{ 
	position: absolute;
	max-width: 1230px;
	max-height: 600px;
	width: 80%;
	height: 80%;  
	//top: 5%;
	top: 0;
	bottom: 5%;
	margin-top: auto;
	margin-bottom: auto;
	//right: 10%;  
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	
}

.career .teams .team{
	position: relative;
	float: left;
	width: calc(100% / 3 - 10px); 
	height: calc(100%/3);
	padding: 10px;
	margin: 5px;
	border: 1px solid gray;
	border-radius: 10px;
	background: white;
	//background: rgba(0,0,0,0.5);
	//color: white;
}
.team .clubContent{
	position: absolute;;
	width: 100%;
	margin-top: 20px; 
	height: 90px;
	top: 30%;
	left: 0;
	text-align: center; 
}

.team .clubContent .logo{
	position: absolute;
	width: 30%;
	height: 90px; 
	left: 0;
	top: 0; 
}


.team .clubContent .logo img{
	width: auto;
	height: 90px;
}

.team .clubContent .appearances{
	position: absolute;
	width: 30%;
	height: 90px;
	top: 0;
	left: 30%;
	//border: 1px solid gray;
	background: rgba(0,0,0,0.1);
	border-radius: 5px;
}

.team .clubContent > .appearances p, .goals p{
	margin-top: 5px;
}

.team .clubContent > .appearances h1, .goals h1{
	margin-top: 3px;
	font-size: 2.9rem;
}

.team .clubContent .goals{
	position: absolute;
	width: 30%;
	height: 90px;
	top: 0;
	right: 5%;
	//border: 1px solid gray;
	background: rgba(0,0,0,0.1);
	border-radius: 5px;
}

.team .title{ 
	width: 100%;  
}

.team .title h1{  
	font-size: 1.4rem;
	margin-top: 10px;
	margin-left: 15px;
	margin-bottom: 0px;
	left:0;
	top:0;
}

.team .title img{
	width: 80px;
	height: 60px;
	position: absolute; 
	right:0;
	top:10; 
}

.career .awards{ 
	width:100%;
	bottom: 0px;
	padding: 20px;
}

.career .awards .textColumn{
	width: calc(100% / 5);
	text-align: center;
	margin-left:5px;
	margin-right: 5px;
	text-transform: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1232px){

	.profile .banner .proInfo{
		width: 350px;
		height: auto; 
		top: 4%;
		left: 65%;
		-webkit-animation: proRtext 1s ease-in;
			animation: proRtext 1s ease-in;
			 
	}

	.career{
		height: auto;
	}
	.career .clubs{
		position: inline;
		height:600px;   
	}
	 
	.career .teams{  
		width: 100%;
		height: 85%;  
		top: 5%;
		right: 0%;  
		
	}    

}	
@media screen and (max-width: 1120px){
	.profile .banner .proInfo{
		display: none;
	}		
	
		
	.profile .banner { 
	  height: auto;
	  padding-bottom: 39%; 
	} 
	  

	.career .honor .title{
		font-size: 1rem;
		margin-top: 5px;
		
	}  

	.career .honor .cup .cupContent p{
		font-size: 1.3rem;
	}

	.career .honor .cup .cupContent h1{
		font-size: 3rem;
	}

	.career .honor .cup .cupContent img{
		height: 50px;
		width: auto;
	}
	 
}

@media screen and (min-width: 1121px){
	.profile .content .proInfo{
		display: none;
	}		
}


@media screen and (max-width: 1000px) {
  .profile .banner .proRtext {
    width: 25%;
    padding-bottom: 10%;
    top: 33%;
    right: 12%;
  }  

} 

@media screen and (max-width: 950px) {
	 
	.career .clubs{
		position: relative;
		height: 800px; 
	}
	 
	.career .teams{ 
		width: 80%;
		height: 90%;  
		/* top: 2%;
		right: 10%;   */
		top: 0;
		right: 0;
		left: 0;
		bottom:50px;
		 
	}

	.career .teams .team{ 
		width: calc(100% / 2 - 10px); 
		height: calc(100%/5); 
		 
	}
	.team .clubContent{  
		margin-top: 10px; 
		height: 50px;
		top: 30%;
		left: 0;
		text-align: center; 
	}

	.team .clubContent .logo{ 
		width: 30%;
		height: 70px;  
	}


	.team .clubContent .logo img{
		width: auto;
		height: 70px;
	}

	.team .clubContent .appearances{ 
		height: 70px;     
	}

	.team .clubContent > .appearances p, .goals p{
		margin-top: 2px;
	}

	.team .clubContent > .appearances h1, .goals h1{
		margin-top: 2px;
		font-size: 2.3rem;
	}

	.team .clubContent .goals{ 
		height: 70px;    
	}

	.team .title{ 
		width: 100%;  
	}

	.team .title h1{  
		font-size: 1.2rem;
		margin-top: 4px;  
	} 
 
}

@media screen and (max-width:700px) {  
	.career .clubs{
		position: relative;
		height: 1300px;   
		max-height: 1300px;
		padding: 0; 
	} 
	
	.career .teams{ 
		max-height: 100vh; 
		left: 0;
		top:0;
		right: 0;
		bottom: 0;
		margin-left: auto;
		margin-right: auto;
		margin-top: 15px;
	}

	.career .teams .team{ 
		position: inline;
		width: calc(100% - 10px); 
		height: 130px;   
		min-width: 350px;
	} 
	
	.career .honor .title{
		width: 70%; 
	 
		font-size: 0.8rem;
		text-align: left;
		margin:10px;
		
	}  

	.career .honor .cup{
		position: relative;
		height: 110px;
	}

	.career .honor .cup .cupContent{
		position: absolute;
		width: calc(100% / 5);
		bottom: 0px;
		left: 10%;
		align-items: center; 
	}
	.career .honor .cup .cupContent p{
		font-size: 1.3rem;
	}

	.career .honor .cup .cupContent h1{
		font-size: 1.4rem;
	}

	.career .honor .cup .cupContent img{
		height: 30px;
		width: auto;
	}
	 
	.career .awards{ 
		font-size: 0.8em;
	}  
  .profile .content .frame >  div { 
	 min-width: 100%;
  }
   .profile .content .frame > div.text h1 {
    width: 40%;
	 padding-left: 10px;
   }
     .profile .content .frame > div.text p {
    width: 60%;
  }
	
} 

@media screen and (max-width:450px) {   
	.career .teams{   
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		margin-top: 15px;
	} 
	
}  

.profile .content {   
  width: 100%;
  margin: 0 auto; 
  background: rgba(255,255,255,0.5); 
}

.profile .content .title, .profile .banner .title {
  font-size: 20px;
  color: #ff5e00;
  font-weight: bold;
  margin: 30px 0 5px 0;
}


.profile .content .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
}

.profile .content .frame.active {
  -webkit-animation: _appear 0.5s forwards linear alternate;
          animation: _appear 0.5s forwards linear alternate;
}

.profile .content .frame > div {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin: 5px 0;
}

@-webkit-keyframes _appear {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes _appear {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
 
 


.news .content {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.news .content h1 {
  font-size: 24px;
  font-weight: bold;
  color: #2e374d;
  margin: 20px 0;
  text-transform: uppercase;
}

.news .content .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news .content .frame > div {
  width: 32%;
}

@media screen and (max-width: 1000px) {
  .news .content .frame > div {
    width: 49%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .news .content .frame > div {
    width: 100%;
  }
}

.news .content .frame > div:hover .newsImg img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 1;
}

.news .content .frame > div .video {
  width: 100%;
  height: 250px;
  position: relative;
  z-index: 1;
}

.news .content .frame > div .newsImg {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news .content .frame > div .newsImg img {
  -webkit-transition: 3s;
  transition: 3s;
  opacity: 0.7;
}

.news .content .frame > div .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

.news .content .frame > div .text > div {
  width: 70%;
  text-align: right;
}

.news .content .frame > div .text > div p {
  font-size: 14px;
  color: #2e374d;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 600px) {
  .news .content .frame > div .text > div p {
    font-size: 12px;
  }
}

.news .content .frame > div .text > div span {
  font-size: 12px;
  color: #2e374d;
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  .news .content .frame > div .text > div span {
    font-size: 12px;
  }
}
/*# sourceMappingURL=scss.css.map */


.videoPage{ 
	background: url(../img/proBg.png) repeat bottom center;
	background-size: cover;
	text-align: left;
	padding-top: 80px;
	margin: 0px;  
} 

.videoPage .thumbnail h1{
	width: 100%; 
	text-align: left;
	font-size: 1.8em;
	padding: 10px;
	padding-bottom: 2px;
}

.videoPage .thumbnail{
	background: rgba(255,255,255,0.5);
	position: relative;
	max-width: 1280px;
	margin-top: 20px;  
	margin-bottom: 10px;
}

.videoPage .thumbnail .predictions{
	position: relative; 
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-top: 43%;
}
  
.videoPage .thumbnail .related{
	position: absolute; 
	width: 25%;
	top: 0;
	bottom: 0;
	right: 0;
}

.videoPage .thumbnail  .newframe{
	position: relative;   
	width: 100%;  
	height: 50vh;
	top: 0;
	bottom:0;
	left: 0;
}

.videoPage .thumbnail .newframe iframe{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0; 
	height: 100%;
	width: 100%;
	
}

.videoPage .thumbnail a{
	display: inline-block;
	vertical-align: top;
	width: calc(98%/4); 
	color:black;
	text-align: left;
	font-size: 0.8em;
	font-weight: bold;
	top:0;
}
 
.videoPage .thumbnail a img {  
	border-radius: 5px; 
	 
}
 
.videoPage .thumbnail a p {  
	margin-left: 10px; 
	 
}

.videoPage .thumbnail .related a { 
	padding:5px;
	width: auto;
}

.videoPage .thumbnail .related a img {  
	border-radius: 10px; 
	 
}
 

.storyPage{
	position: inline;
	padding-top: 80px; 
	margin: 0px;  
	background: url(../img/proBg.png) repeat bottom center;
	background-size: cover; 
  
} 
 

.storyPage .title{
	font-size: 2em;
	padding: 20px;
	width: 100%;
	//padding-left: 10%;
	background: rgba(0,0,0,0.5);
	color: white;
	text-align: center;
}

.story1{   
	max-width: 1200px;  
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid gray;
	background: rgba(255,255,255,0.8);
	border-radius: 20px;  
} 

.story1 .txt{ 
	text-align: left; 
	margin-left: 2%;
	margin-right: 2%;
	margin-bottom: 20px; 
	margin-top: 20px;
}
 
.story1   img{
	max-width: 100%;
   object-fit: contain;
}

.story1 .txt h2{
	font-size: 1.5em;
	margin: 20px;
	margin-left:0px;
} 

.story1 h3{
	font-weight: bold;
	margin-top: 20px;
	background: rgba(0,0,0,0.5);
	width: 100%;
	text-align: left;
	padding: 10px;
	color:  #fff;
} 
  
 @media screen and (max-width : 700px){		   
	.videoPage .thumbnail  .newframe{ 
		height: 30vh;
 
	}
	.videoPage .thumbnail a{
		display: inline-block;
		vertical-align: top;
		width: calc(98%/2);    
	}
	.story1 {
			border-radius: 0px;
			margin: 0px;
	 }
	 
 }