/*
   _   _   _   _   _   _   _   _    _ 
  / \ / \ / \ / \ / \ / \ / \ / \  / \
 ( T ) H ) I ) N ) K ) F ) A ) R )( M )
  \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/  \_/ 
  
Copyright 2020, by Raj Sagoo - Thinkfarm Ltd
*/


/*------------------------------------------------------------------------------------*/
/* 1. CSS reset  */
/*------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*------------------------------------------------------------------------------------*/
/* 2. Website font used.  */
/*------------------------------------------------------------------------------------*/

@font-face { 
	font-family: 'BemondseyBold'; 
	src: url('fonts/Bermondsey-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/Bermondsey-Bold.otf') format('opentype'), url('fonts/Bermondsey-Bold.woff') format('woff'), url('fonts/Bermondsey-Bold.ttf') format('truetype'), url('fonts/Bermondsey-Bold.svg#Bermondsey-Bold') format('svg'); 
	font-weight: normal; 
	font-style: normal; 
}

@font-face { 
	font-family: 'BemondseyMedium'; 
	src: url('fonts/Bermondsey-Med.eot?#iefix') format('embedded-opentype'), url('fonts/Bermondsey-Med.otf') format('opentype'), url('fonts/Bermondsey-Med.woff') format('woff'), url('fonts/Bermondsey-Med.ttf') format('truetype'), url('fonts/Bermondsey-Med.svg#Bermondsey-Med') format('svg'); 
	font-weight: normal; 
	font-style: normal; 
}


/*------------------------------------------------------------------------------------*/
/* 3. Site wide assets  */
/*------------------------------------------------------------------------------------*/	

body {		
	background: black;
}

.container {
	padding: 0;	
}

.nopadding {
	padding: 0 !important;
	margin: 0 !important;
}

.noborder {
	border: none !important;
}

.container-fluid {	
	margin: 0 auto;
	width: 100%;
	padding: 0;
}

.extrapadding {
	padding: 0 25px;
}

.logo {
	padding: 80px 0 50px 15px;
}

h1 {
	font-family: 'Open Sans', ariel;		
	font-weight: 400;
	font-size: 36px;	
	padding: 0 0 20px 0;
	color: rgb(255,221,0);
}

h2 {
	font-family: 'Open Sans', ariel;		
	font-weight: 400;
	font-size: 24px;	
	padding: 0 0 10px 0;
	color: rgb(255,221,0);
}

h3 {
	font-family: 'Open Sans', ariel;		
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;	
	padding: 50px 0 25px 0;
	color: rgb(255,221,0);
}

p {
	font-family: 'Open Sans', ariel;		
	font-weight: 400;
	font-size: 20px;	
	line-height: 28px;	
	color: rgb(255,255,255);
	padding: 0 0 20px 0;
}

a {
	color: rgb(255,255,255);
	text-decoration: underline;
	-webkit-transition: color 0.5s linear;
	-moz-transition: color 0.5s linear;
	-ms-transition: color 0.5s linear;
	-o-transition: color 0.5s linear;
	transition: color 0.5s linear;	
}

a:hover {
	color: rgb(202, 44, 44);
	text-decoration: underline;
}


.bg {	
	background: url("../images/ejom-bacc-homepage-bg.jpg") 0px 0px;
	background-position: center center;
    background-repeat: no-repeat; 
	background-size: cover;  
	height: 100vh;
}


.CTA a {
	font-family: 'Open Sans', ariel;		
	font-weight: 800;
	font-size: 18px;	
	line-height: 24px;	
	background: rgb(255,221,0);
	padding: 15px;
	color: rgb(87,8,97);	
	text-decoration: none;
	-webkit-transition: background 0.5s linear;
	-moz-transition: background 0.5s linear;
	-ms-transition: background 0.5s linear;
	-o-transition: background 0.5s linear;
	transition: background 0.5s linear;	
}

.CTA a:hover {
	font-family: 'Open Sans', ariel;		
	font-weight: 800;
	font-size: 18px;	
	line-height: 24px;	
	background: rgb(255,255,255);
	padding: 15px;
	color: rgb(87,8,97);	
	text-decoration: none;
}


.video-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
	height: auto; 
} 

.video-container iframe, .video-container object, .video-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

@media screen and (max-width: 768px) {

	.extrapadding {
		padding: 0 20px;
	}

}