/*

	Theme Name:  Paris Video Tech
	Author:      Charles-Henri Castaing®
*/


/*---------------------
RESET ASSIGNED STYLES*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-family: 'Roboto', helvetica, sans-serif;
}





/*-----
HTML5*/


/*------
UI KIT*/

/*Import font*/


@font-face {
    font-family: "montserrat";
    src: url('lib/fonts/Montserrat-Regular.ttf');
    font-weight: regular;
}
@font-face {
    font-family: "montserrat";
    src: url('lib/fonts/Montserrat-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: "Roboto";
    src: url('lib/fonts/Roboto-LightItalic.ttf');
    font-weight: lighter;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url('lib/fonts/Roboto-Light.ttf');
    font-weight: lighter;
}
@font-face {
    font-family: "Roboto";
    src: url('lib/fonts/Roboto-MediumItalic.ttf');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url('lib/fonts/Roboto-Medium.ttf');
    font-weight: bold;
}

/*Titles*/

h1, h2, h3, h4{
	font-family: "montserrat", helvetica, sans-serif;
	font-weight: bold;
	color: #324147;
	margin-bottom: 5vh;
}

h1{
	font-size: 32px;
}

h2{
	font-size: 24px;
}

h3{
	font-size: 19px;
}

h4{
	font-size: 16px;
}

@media screen and (max-width: 769px) {
	h1, h2, h3, h4{
		margin-bottom: 2vh;
	}
	h1{
		font-size: 22px;
	}
	h2{
		font-size: 20px;
	}
	h3{
		font-size: 18px;
	}
	p, em, th, td, tr, a, ul{
		font-size: 14px !important;
		margin-bottom: 1vh !important;
	}
	.logo a{
		font-size: 0 !important;
	}
}

.border-bottom-grey{
	border-bottom: solid 5px #324147;
}

.border-top-grey{
	border-top: solid 5px #324147;
}

.border-right-grey{
	border-right: solid 5px #324147;
}

.border-left-grey{
	border-left: solid 5px #324147;
}

.border-bottom-red{
	border-bottom: solid 5px #CE031B;
}

.border-top-red{
	border-top: solid 5px #CE031B;
}

.border-right-red{
	border-right: solid 5px #CE031B;
}

.border-left-red{
	border-left: solid 5px #CE031B;
}

.border-bottom-white{
	border-bottom: solid 5px #fff;
}

.border-top-white{
	border-top: solid 5px #fff;
}

.border-right-white{
	border-right: solid 5px #fff;
}

.border-left-white{
	border-left: solid 5px #fff;
}

/*Paragraph*/

p, em, th, td, tr, span, a, ul, li, strong{
	font-family: "Roboto", Helvetica, sans-serif;
	color: #324147;
	margin-bottom: 2vh;
}

p{
	font-size: 16px;
	font-weight: lighter;
}

em{
	font-size: 16px;
	font-weight: bold;
}

span{
	font-size: 16px;
	font-weight: lighter;
}

a{
	font-size: 16px;
	font-weight: lighter;
	text-decoration: none;
}

strong{
	font-weight: bold;
}

ul, li{
	font-size: 16px;
	font-weight: lighter;
}

ul li{
	list-style-type: circle;
}

.no-bullet li{
	list-style-type: none;
}

.underline{
	text-decoration: underline;
}

.underline-hover{
	text-decoration: none;
}

.underline-hover:hover{
	text-decoration: underline;
}

.uppercase{
	text-transform: uppercase;
}

.lowercase{
	text-transform: lowercase;
}

/*Alignment*/

.text-left{
	text-align: left;
	justify-content: flex-start;
	align-items: center;
}

.text-right{
	text-align: right;
	justify-content: flex-end;
	align-items: center;
}

.text-center{
	text-align: center;
	justify-content: center;
	align-items: center;
}

.text-justify{
	text-align: justify;
	justify-content: center;
	align-items: center;
}

.text-alone{
	width: 90%;
	margin: auto;
	display: flex;
	justify-content: center;
}

/*Colors*/

/*Text*/

.text-grey{
	color: #324147;
}

.text-red{
	color: #CE031B;
}

.text-white{
	color: #fff;
}

/*Background*/

.background-grey{
	background-color: #324147;
}

.background-red{
	background-color: #CE031B;
}

.background-white{
	background-color: #fff;
}

/*Overlay*/

.overlay-grey{
	background-color: rgba(50, 65, 71, 0.5);
}

.overlay-red{
	background-color: rgba(206, 3, 27, 0.5);
}

.overlay-white{
	background-color: rgba(255, 255, 255, 0.5);
}

/*Disable padding and margin*/

.no-margin{
	margin-left:0 !important;
 	margin-right:0 !important;
}

.no-padding{
	padding-left:0 !important;
  padding-right:0 !important;
}

.margin-top{
	margin-top: 50px;
}

.margin-bottom{
	margin-bottom: 50px;
}

.margin-left{
	margin-left: 50px;
}

.margin-right{
	margin-right: 50px;
}

.small-margin-top{
	margin-top: 25px;
}

.small-margin-bottom{
	margin-bottom: 25px;
}

.small-margin-left{
	margin-left: 25px;
}

.small-margin-right{
	margin-right: 25px;
}

/*Designing Blocks*/

.background-container{
	display: flex;
	justify-content: center;
	flex-flow: column wrap;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.container{
	display: flex;
	margin: 8vh auto;
	width: 90%;
}

.container-article{
	width:80%;
	margin:auto;
}

.column, .column-reverse,
.row, .row-reverse{
	display: flex;
}

.column{
	flex-flow: column wrap;
	align-items: center;
	justify-content: center;
}

.row{
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
.column-reverse{
	flex-flow: column-reverse wrap;
	align-items: center;
	justify-content: center;
}

.row-reverse{
	flex-flow: row-reverse wrap;
	justify-content: center;
	align-items: center;
}
.background-container .overlay-grey,
.background-container .overlay-red,
.background-container .overlay-white{
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-container{
	display: flex;
	margin: 5vh auto;
	width: 90%;
}

.half,
.third,
.quarter,
.fifth{
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.quarter img,
.fifth img{
	width: 70%;
	margin: auto;
}

.full{
	width: 100%;
}

.single .half{
	width: 45%;
}

.half{
	width: 49%;
	margin: 0 auto;
}

.half img{
	height: 50vh;
}

.single .third{
	width: 30%;
}

.third{
	width: 32%;
	margin: 0 auto;
}

.single .quarter{
	width: 22%;
}

.quarter{
	width: 24%;
	margin: 0 auto;
}

.single .fifth{
	width: 16%;
}

.fifth{
	width: 18%;
	margin: 0 auto;
}


.separator{
	display: flex;
	height: 5px;
	width: 90%;
	margin: auto;
	padding: 0;
}

@media screen and (max-width: 769px) {
	.container{
		margin: 5vh auto;
	}
	.half,
	.third,
	.quarter,
	.fifth{
		width: 100%;
		margin: 1vh 0;
	}
	.half img{
		height: 35vh;
	}
	.margin-top{
		margin-top: 20px;
	}

	.margin-bottom{
		margin-bottom: 20px;
	}

	.margin-left{
		margin-left: 20px;
	}

	.margin-right{
		margin-right: 10px;
	}

	.small-margin-top{
		margin-top: 10px;
	}

	.small-margin-bottom{
		margin-bottom: 10px;
	}

	.small-margin-left{
		margin-left: 10px;
	}

	.small-margin-right{
		margin-right: 10px;
	}
}

/*Images*/

img{
	width: 100%;
	display: flex;
	height: auto;
}

/*Shadows*/

.box-shadow{
	-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
}

/*Buttons*/

.btn{
	text-transform: uppercase;
	padding: 10px 30px;
	text-decoration: none;
	border-radius: 5px;
}

.btn:hover{
	text-decoration: none;
}

.btn-container{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	align-items: center;
	margin: 2vh 0;
}

.full-red{
	color: #fff;
	background-color: #CE031B;
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
}

.full-red:hover,
.full-grey:hover,
.full-white:hover{
	-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	transition: all .2s;
}

.full-grey{
	color: #fff;
	background-color: #324147;
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
}

.full-white{
	color: #324147;
	background-color: #fff;
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
}




/*HEADER*/




/*Container*/

.top-header{
	padding-top: 60px;
}

.header{
	background-color: #CE031B;
	position: fixed;
	height: 60px;
	width: 100%;
	z-index: 99998;
	top: 0;
}

.navbar-collapse{
	height: 60px;
}

.footer{
	background-color: #CE031B;
	position: relative;
}

.navbar-collapse,
.container-footer{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 90%;
	margin: auto;
	justify-content: space-between;
}

/*Logo*/

.logo{
	width: 50%;
}

.logo a{
	text-indent: -9999px;
	font-size: 0;
	display: block;
	margin-bottom: 0 !important;
}
.logo img{
	width: 40%;
}

/*Navigation*/

.menu-nav ul{
	display: flex;
	flex-flow: row nowrap;
	margin-bottom: 0;
}

.menu-nav li{
	list-style-type: none;
	margin-bottom: 0;
	margin: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu-nav a{
	font-family: "montserrat";
	font-weight: lighter;
	color: #fff;
	padding: 20px;
	display: flex;
	margin-bottom: 0;
	width: 100%;
	justify-content: center;
}

.menu-nav a:hover{
	background-color: #fff;
	color: #CE031B;
}

/*Toggle menu*/

.container-toggle{
	display: none;
	align-items: center;
	justify-content: center;
}

#toggle-menu {
	border: transparent;
	background-color: transparent;
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	position: relative;
	justify-content: space-around;
}

#toggle-menu .icon-bar{
 	width: 32px;
 	margin: 5px 0;
 	border-radius: 2px;
 	height: 2px;
 	display: block;
 	transition: all 150ms ease-in-out;
 	background-color: #fff;
}

.cross .top-bar{
	position: absolute;
	transform: rotate(45deg);
	top: 0;
}

.cross .middle-bar{
	position: absolute;
	top: 0;
	transform: rotate(-45deg);
}

.cross .bottom-bar{
	position: relative;
	opacity: 0;
}

@media screen and (max-width: 1025px) {
	.header .logo{
		width: 30%;
	}
	.header .logo img{
		width: 80%;
	}
}

@media screen and (max-width: 769px) {
	.header,
	.navbar-collapse{
		height: 50px;
	}
	.top-header{
		padding-top: 20px;
	}
	.navbar{
		display: flex;
		flex-flow: row-reverse;
		width: 90%;
		margin: auto;
		height: 50px;
	}
	.header .navbar-collapse .logo{
		width: 80%;
	}
	.container-toggle{
		display: flex;
	}
	.header .menu-nav ul{
		flex-flow: column nowrap;
		position: absolute;
		width: 100%;
		left: 0;
		right: 0;
		top: 50px;
		background-color: #CE031B;
		-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
		-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
		-o-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
		box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	}
	.menu-nav li{
		margin: 0;
	}
	#header-menu{
		display: none;
	}
}


/*FOOTER*/




/*Container*/

.footer{
	background-color: #CE031B;
}

.container-footer{
	padding: 50px 0;
	display: flex;
	flex-flow: column wrap;
	align-items: flex-start;
}

.container-info{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin-top: 50px;
}

.container-contact{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

.container-contact h4{
	text-transform: uppercase;
	color: #fff;
}

.footer .menu-nav a{
	padding: 0 20px;
}

.footer .menu-nav a:hover{
	background-color: #CE031B;
	color: #fff;
}

.footer .menu-nav li:last-child a{
	padding-right: 0;
}

.footer .logo a{
	margin-bottom: 30px;
}

.container-contact a{
	color: #fff;
}

.container-social{
	margin-left: 5vw;
}

.social{
	display: flex;
	margin-bottom: 0;
}

.social li{
	list-style-type: none;
	margin-bottom: 0;
}

.social li:first-of-type a{
	padding-left: 0;
}

.social li:last-of-type a{
	padding-right: 0;
}

.social a{
	padding: 0 10px;
}

.suscribe,
.container-suscribe{
	display: flex;
	align-items: center;
	flex-flow: row nowrap;
}

.container-suscribe{
	justify-content: space-between;
	width: 90%;
	margin: auto;
	padding: 25px 0;
}

.container-suscribe h2,
.container-suscribe a{
	margin-bottom: 0;
}
@media screen and (max-width: 767px){
	.footer .logo img{
		width: 80%;
	}
}
@media screen and (max-width: 769px) {
	.logo{
		width: 80%;
	}
	.container-suscribe{
		flex-flow: column wrap;
	}

	.container-footer{
		align-items: center;
	}

	.container-footer .logo img{
		width: 80%;
		margin: auto;
	}

	.container-info{
		flex-flow: column wrap;
		align-items: center;
		margin-top: 0;
	}

	.container-contact{
		flex-flow: column wrap;
		width: 90%;
		margin: 4vh auto;
		align-items: center;
	}

	.container-contact h4{
		text-align: center;
	}

	.contact{
		margin-bottom: 2vh;
	}

	.container-social{
		margin-left: 0;
	}

	.social{
		justify-content: center;
	}

	.social i {
		font-size: 20px;
	}

	.footer #menu-footer-menu{
		flex-flow: column wrap;
	}

	.menu-nav li{
		display: flex;
		justify-content: center;
	}

	.footer .menu-nav li:last-child a{
		padding-right: 20px;
	}
}

.info-container img{
	width: 60%;
	margin: auto;
	margin-bottom: 5vh;
}

/*Upcoming Events*/

.display-none{
	display: none;
}

/*Past Events*/

.past-events{
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
}

.past-events li {
	list-style-type: none;
	position: relative;
}

.past-events .overlay-grey{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
}
.container-past{
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	flex-flow: column wrap;
}
.past-events .half:hover .info-past{
	opacity: 1;
	transition: all .2s;
}

.container-past a:last-child{
	display: none;
}

.info-past{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	justify-content: center;
	z-index: 2;
	opacity: 0;
}

.past-title{
	margin: 0;
	text-align: center;
	width:90%;
}

.past-title a{
	font-family: 'montserrat';
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin: 0;
}

.date-past{
	margin: 30px 0;
	color: #fff;
}

.info-past a:last-child{
	display: block;
}

.container-past a{
	margin-bottom: 0 !important;
}

.our-sponsor img{
	filter: saturate(0%);
}

.our-sponsor img:hover{
	filter: saturate(100%);
	transition: all 0.2s;
}

@media screen and (max-width: 769px) {
	.info-container img{
		margin-bottom: 2vh;
	}
	.info-past{
		opacity: 1;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		justify-content: space-around;
	}
	.info-past .date-past{
		margin: 0;
	}
	.past-title a{
		font-size: 14px !important;
	}
	.fifth{
		margin: 2vh 0;
	}
	.fifth img{
		width: 70%;
		margin: auto;
	}
}

/*Single Posts*/


@media screen and (max-width: 769px){
	.single-post iframe{
		width: 100%;
		height: 30vh;
	}
}

/*Archive*/

.title-article{
	display: flex;
	justify-content: center;
}

.img-article{
	position: relative;
}

.img-article .overlay-grey,
.img-article .overlay-red,
.img-article .overlay-white{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.img-article img{
	height: 50vh;
	margin: 1vh 0;
}
.container-post{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	width: 90%;
	margin: auto;
}
.info-article{
	display: flex;
	justify-content: space-between;
	margin: 2vh 0;
}

.info-article h4 {
	margin-bottom: 0;
}

 .other-search{
	 width: 100%;

 }

.search-field{
	display: flex;
	justify-content: space-between;
}

.search-field .field{
	width: 90%;
	border-radius: 5px 0 0 5px;
	border: solid 2px #324147;
	padding-left: 20px;
	font-family: 'Roboto';
	font-size: 16px;
	font-style: italic;
	font-weight: lighter;
}

.search-field .btn{
	border: none;
	font-family: 'Roboto';
	font-size: 16px;
	width: 10%;
	border-radius: 0 5px 5px 0;
	padding: 10px 0;
	cursor: pointer;
}

@media screen and (max-width: 769px){
	.img-article img{
		height: 35vh;
	}
	.search-field .btn,
	.search-field .field{
		font-size: 14px;
	}
	.search-field{
		flex-flow: column;
	}
	.search-field .btn{
		width: 100%;
		border-radius: 5px;
	}
	.search-field .field{
		margin: 20px 0;
		border-radius: 5px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}



#comments{
	width: 100%;
}
.comments-list li{
	list-style-type: none;
}
.comment-body p{
	font-family: 'montserrat';
	font-size: 16px;
	color: #324147;
	margin: 2vh 0 2vh 54px;
}
.comment-author{
	display: flex;
	align-items: center;
}
.fn{
	margin-left: 10px;
}
.says{
	margin-bottom: 0;
	margin-left: 10px;
}
.comment-author img{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: solid 2px #CE031B;
}
.comment-meta{
	display: none !important;
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
}
.comment-meta a{
	color: #CE031B;
	text-decoration: underline;
}
.reply{
	display: flex;
	justify-content: flex-end;
}
.comment-reply-link{
	text-transform: uppercase;
	padding: 10px 30px;
	text-decoration: none;
	border-radius: 5px;
	color: #fff;
	background-color: #324147;
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
}
.comment-reply-link:hover,
.form-submit #submit:hover{
	text-decoration: none;
	-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.16);
	transition: all .2s;
}
.comment-form-comment label{
	display: none !important;
}
.comment-form-comment textarea{
	width: 100%;
	border: solid 2px #324147;
}
.form-submit{
	display: flex;
	justify-content: flex-end;
}
.form-submit #submit{
	text-transform: uppercase;
	font-family: 'Roboto';
	font-size: 16px;
	cursor: pointer;
	padding: 10px 30px;
	text-decoration: none;
	border-radius: 5px;
	color: #fff;
	background-color: #CE031B;
	-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	-o-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.16);
	border: none;
}
@media screen and (max-width: 769px){
	.comments h3{
		text-align: center;
	}
	.form-submit{
		justify-content: center;
	}
	.comment-reply-title{
		text-align: center;
	}
	.logged-in-as{
		text-align: center;
	}
}
