*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	
	--color-text: rgba(255,255,255,0.95);
	--color-bg: #0c0b10;
	--color-link: #039be5;
	--color-bg-date: rgb(96 56 178 / 48%);
	
	--color-border: rgba(177,177,177,0.3);
}


body {
	margin: 0;
	color: var(--color-text);
	background-color: var(--color-bg);

}

	#materialbox-overlay {
	    background-color: var(--color-bg);	
	}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover {
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

.frame {
	z-index: 1000;
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 100%;
	grid-template-areas: 'title' 'back' 'prev' 'sponsor';
	grid-gap: 1rem;
	justify-items: start;
	align-self: start;
	justify-self: start;
	pointer-events: none;
	align-items: center;
	padding: 2rem;
}

body #cdawrap {
    justify-self: start;
}

.frame a {
	pointer-events: auto;
}

.frame__title {
	grid-area: title;
	font-size: 1.25rem;
	margin: 0;
	font-weight: inherit;
}

.frame__back {
	grid-area: back;
}

.frame__prev {
	grid-area: prev;
}

.frame__demos {
	grid-area: demos;
	display: flex;
	gap: 1rem;
}

.title {
	font-weight: 400;
	font-size: clamp(2rem,8.5vw,8rem);
	text-align: center;
	margin: 14vh auto 5vh;
	display: flex;
	justify-content: center;
	width: min-content;
	border-bottom: 1px solid var(--color-border);
}

.title span::first-letter {
	opacity: 0.5;
}

.subtitle {
	text-align: center;
}

.releaseCard-grid {
	display: grid;
	margin: 0 0;
	grid-template-columns: 1fr;
	border-top: 1px solid var(--color-border);
}

.releaseCard:nth-child(3n - 1) {
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
}

.releaseCard {

	
	position: relative;
	min-height: 30vh;
	padding: 2vw;
	overflow: hidden;
	border-bottom: 1px solid var(--color-border);	
}

.releaseCard__img,
.releaseCard__img-wrap,
.releaseCard__img-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.releaseCard__img,
.releaseCard__img-inner {
	background-size: cover;
	background-position: 50% 50%;
}

.releaseCard__img,
.releaseCard__img-wrap {
	overflow: hidden;
}

.releaseCard__img {
	z-index: -1;
	pointer-events: none;
	--columns: 0;
	--rows: 0;
}

.js .releaseCard__img {
	opacity: 0;
	background-image: none !important;
}

.releaseCard__img-inner {
	filter: brightness(0.6);
	width: calc(100% + (var(--columns) - 1) * 1px);
	height: calc(100% + (var(--rows) - 1) * 1px);
}

.releaseCard__date {
	display: flex;
	align-content: center;
	align-items: center;
	line-height: 1;
	position: relative;
	font-family:octab;
	
	color:#fff;
}



.releaseCard__text {
	display: flex;
	align-content: center;
	align-items: center;
	line-height: 1;
	position: relative;
}

.releaseCard__text::before {
	content: '';
	width: 15px;
	height: 15px;
	border: 1px solid var(--color-link);
	background: var(--color-bg-date);
	margin: 0 10px 4px 0;
}

.releaseCard__title {
	font-weight: 400;
	font-size: clamp(1.5rem,5vw,2.5rem);
	font-family:mantra;
	color:#fff;

}

.releaseCard__link {
	position: relative;
	font-family:octab;
    font-weight: 400;
    font-size: clamp(1.5rem,5vw,2.5rem);
    margin: 0;
    color:#fff;
    letter-spacing: 0.4rem;
}



@media screen and (min-width: 33em) {
	.grid {
		grid-template-columns: repeat(2,1fr);
	}

}

@media screen and (min-width: 60em) {
	.frame {
		grid-template-columns: auto 1fr 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas: 'title title sponsor' 'back prev ...';
		align-content: space-between;
		justify-items: start;
		grid-row-gap: 1.5rem;
	}
	.releaseCard-grid {
		grid-template-columns: repeat(3,1fr);
	}
	.releaseCard {
	    min-height: 60vh;	
	}
	body #cdawrap {
	    justify-self: end;
	}
}



/* my sytle */

	@font-face {
		font-family: octab;
		src: url(../fonts/octab-017.ttf);
	}
	.octabFont {
		font-family:octab;
	}
	.octaParagraph {
		font-family:octab;
		font-size: 20px;
	}

	.newsSection {
		margin-top: 0px;
	}
	.parallaxText{
		padding-left: 3vw;
		margin-top:35px;
		font-family: octab;
		text-align: center;
	}
	.tabs .tab a{
		color:#000;
		font-family:octab;
		font-size:20px;
	} /*Black color to the text*/

	.tabs .tab a:hover {
		background-color:#eee;
		color:#000;
	} /*Text color on hover*/

	.tabs .tab a.active {
		background-color:#424242 !important;
		color:#fff !important;
	} /*Background and text color when a tab is active*/

	.tabs .indicator {
		background-color:#000;
	} /*Color of underline*/
	.modal {
		max-height: 80%;
	}
	nav .sidenav-trigger {
    	margin: 0 0px;
    }
    .page-footer {
    	background-color:transparent;
	}
	.detailModal {
		color:rgba(0, 0, 0, 0.87);
		padding-left: 2vh;
		padding-right: 2vh;
	}
	@media only screen and (min-width: 601px)
	{
		.navbar-fixed {
		    height: 90px;
		}
	}
	@media only screen and (max-width: 601px)
	{
		.detailModal {
			padding-left: 0;
			padding-right: 0;
		}
	}	
	blockquote {
	    border-left: 5px solid #424242;
    }
	.modal.modal-fixed-footer {
	    padding: 0;
	    height: 80%;
    }   
    .modal {
		width:90%;
		max-width: 1920px;    
	}
	.section {
	    padding-top: 0;
	    padding-bottom: 0;
	}
	nav {	    
	    background-color: #0c0b10;
	}
    nav ul a, nav .brand-logo {
    	color: #fff;
	}
	nav ul a {
	    font-size: 2rem;
	    font-family: octab;
	}
	.navbar-fixed {
	    height: 90px;
	}
	@media only screen and (min-width: 601px)
	.navbar-fixed {
	    height: 90px;
	}
	@media only screen and (min-width: 601px)
	nav, nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i {
	    height: 90px;
	    line-height: 90px;
	}	
	nav {
		height: 90px;
		line-height: 90px;
	}
	.modal .modal-footer {
    	height: auto;
	    padding: 10px;
	} 
	.modal.modal-fixed-footer .modal-content {
		background-image: url(../images/background-logo.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100% auto;
		-o-background-size: 100% auto;
		-moz-background-size: 100% auto;
		-webkit-background-size: 100% auto;
	}
	@media only screen and (max-width: 601px)
	{
		.modal-content {
		    background-size:  auto 100% !important;
		    -o-background-size: auto 100% !important;
		    -moz-background-size: auto 100% !important;
		    -webkit-background-size: auto 100% !important;
		}
	}
	.modal.modal-fixed-footer .modal-footer {
    	z-index: 2;
	}
	.fade-in-image {
		animation: fadeIn 0.5s;
		-webkit-animation: fadeIn 0.5s;
		-moz-animation: fadeIn 0.5s;
		-o-animation: fadeIn 0.5s;
		-ms-animation: fadeIn 0.5s;
	}

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

	@-moz-keyframes fadeIn {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}

	@-webkit-keyframes fadeIn {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}

	@-o-keyframes fadeIn {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}

	@-ms-keyframes fadeIn {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}	
	.breakLink {
	    -ms-word-break: break-all;
	    word-break: break-all;
	    word-break: break-word;
	    -webkit-hyphens: auto;
	    -moz-hyphens: auto;
	    -ms-hyphens: auto;
	    hyphens: auto;		
    }
    .materialbox-caption {
    	z-index: 1003;
    	font-family: octab;
    	font-size:1.64rem;
    }