@charset "UTF-8";
/* CSS Defined by F3 Designs (April 2021) f3designs.ca */


/* CUSTOM COLOUR PALETTE ================================================================================================= */
/*	blue-brand: #0476bc
	blue (brighter): #68add7
	red: #ce643e
	black: #262626


/* CUSTOM FONTS: GOOGLE ================================================================================================== */
/*	font-family: 'Roboto', sans-serif;
	font-weight: 300, 400;
	font-family: 'Oswald', sans-serif;
	font-weight: 300, 400, 500, 700;


/* VIEWPORTS (BOOTSTRAP 4) ================================================================================================ */
/*	__: mobile (i.e. col-12)
	sm: mobile (i.e. col-sm-12)
	md: tabletPortrait (i.e. col-md-12)
	lg: tabletLandscape / desktopSmall (i.e. col-lg-12)
	xl: desktopLarge (i.e. col-xl-12)


/* MEDIA QUERIES (BOOTSTRAP 4) ============================================================================================ */
/* Extra small devices (portrait phones, less than 576px) -- No media query since this is the default in Bootstrap
/* Small devices (landscape phones, 576px and up)
	@media (min-width: 576px) { ... }
/* Medium devices (tablets, 768px and up)
	@media (min-width: 768px) { ... }
/* Large devices (desktops, 992px and up)
	@media (min-width: 992px) { ... }
/* Extra large devices (large desktops, 1200px and up)
	@media (min-width: 1200px) { ... }


/* MEDIA QUERIES (CUSTOM) ================================================================================================== */
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) 
@media (min-width: 320px) and (max-width: 568px) {
	...
}
/* :::::::::::::::::::: MEDIA QUERY: Tablets (portrait and landscape) 
@media (min-width: 768px) and (max-width: 1024px) {
	...
}
/* :::::::::::::::::::: MEDIA QUERY: Tablets (portrait) 
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	...
}
/* :::::::::::::::::::: MEDIA QUERY: Tablets (landscape) 
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	...
}


/* TYPE SELECTORS ======================================================================================================== */
html, body {
	background-color: #333333;
	height: 100% !important; /* required for jumbotron and various flex CSS */
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #ffffff;
	-webkit-font-smoothing: antialiased; /* resolves issue with font displaying much bolder than it should in Mac Chrome and Safari */
	-moz-osx-font-smoothing: grayscale; /* resolves issue with font displaying much bolder than it should in Mac Firefox */
	scroll-behavior: smooth;
	/* Bootstrap's global default font-size is 16px=1rem */
	/* Bootstrap's global default line-height is 1.5 */
}
p {
	margin: 0px 0px 30px 0px;
	line-height: 24px;
	letter-spacing: 1px;
}
.lead {
	font-weight: 300;
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 10px;
	line-height: normal;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
	.lead {font-size: 1.5rem;}
}
h1 {
	font-family: 'Oswald', sans-serif;
	text-shadow: 10px 2px 10px rgba(38,38,38,.9);
	text-transform: uppercase;
	text-align: center;
	color: #ce643e;
	margin: 0px 0px 60px 0px;
}
h2 {
	font-family: 'Oswald', sans-serif;
	color: #d88365;
	text-shadow: 10px 2px 10px rgba(38,38,38,.9);
	margin: 0px 0px 30px 0px;
}
.h2-img {
	position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
	color: #ffffff;
	padding-bottom: 60px;
	font-size: 3rem;
}
h3 {
	font-family: 'Oswald', sans-serif;
	color: #68add7;
	text-shadow: 10px 2px 10px rgba(38,38,38,.9);
	margin: 60px 0px 10px 0px;
	font-weight: 300;
}
.display-1 {
	font-weight: 400;
}
.display-2 {
	font-weight: 400;
}
.display-3 {
	font-weight: 400;
}
.display-4 {
	font-weight: 400;
}


/* MISCELLANEOUS CLASSES ================================================================================================= */
/* NOTE ____________________________________________________ */
.note {
	font-size: 16px;
	border-left: solid 3px #d9534f;
	border-right: solid 3px #d9534f;
	padding: 15px;
	background-color: #fdf7f7;
	margin-top: 60px;
}
/* NOWRAP __________________________________________________ */
.nowrap {
	white-space: nowrap;
}
/* PIPE ____________________________________________________ */
.pipe {
	padding: 0px 15px 0px 15px;
	color: #68add7;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.pipe {display: none !important;}
}
/* BLUE ____________________________________________________ */
.blue {
	color: #68add7;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 1px;
}
/* BLACK ___________________________________________________ */
.black {
	background-color: rgba(38, 38, 38, 0.5);
	flex: 100%;
	padding: 45px 45px 15px 45px;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
	.black {padding: 15px; text-align: center;}
}
/* AWESOME _________________________________________________ */
.awesome {
	font-size: 40px;
}
/* IMAGE ___________________________________________________ */
.image {
	padding: 0px 15px 60px 15px;
}
/* COLS ____________________________________________________ */
/* BOOTSTRAP TIP: By default, cols have a gutter separating them; however when applying a background-color or border to the col, this won't be obvious b/c the gutters are created using padding which expands the background-color or border into the gutter. Required work-around is applying an inner div within the col. */

/* (adds margin-bottom to all cols on portrait and landscape smart phone and tablet) */
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
  [class*="col-"] {margin-bottom: 30px;}
}
/* :::::::::::::::::::: MEDIA QUERY: Tablets (portrait and landscape) */
@media (min-width: 768px) and (max-width: 1024px) {
	[class*="col-"] {margin-bottom: 30px;}
}


/* BUTTONS =============================================================================================================== */
/* BTN-PRIMARY _____________________________________________ */
.btn-primary {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
	border-radius: 15px;
	margin: 60px 0px 30px 0px;
	padding: 15px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	box-shadow: 10px 2px 10px rgba(38,38,38,.6);
}
.btn-primary:link {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
}
.btn-primary:visited {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
}
.btn-primary:hover {
	background-color: #262626;
	border: solid 1px #0476bc;
	color: #ffffff;
}
.btn-primary:active {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
}
/* BTN-DEFAULT _____________________________________________ */
.btn-default {
	background-color: #ce643e;
	border: solid 1px #ce643e;
	color: #ffffff;
	border-radius: 15px;
	margin: 60px 0px 30px 0px;
	padding: 15px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	box-shadow: 10px 2px 10px rgba(38,38,38,.6);
}
.btn-default:link {
	background-color: #ce643e;
	border: solid 1px #ce643e;
	color: #ffffff;
}
.btn-default:visited {
	background-color: #ce643e;
	border: solid 1px #ce643e;
	color: #ffffff;
}
.btn-default:hover {
	background-color: #262626;
	border: solid 1px #ce643e;
	color: #ffffff;
}
.btn-default:active {
	background-color: #ce643e;
	border: solid 1px #ce643e;
	color: #ffffff;
}
/* BUTTON-IMAGE ____________________________________________ */
.btn-img {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
	border-radius: 15px;
	margin: 60px 0px 30px 0px;
	padding: 15px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0px;
	box-shadow: 10px 2px 10px rgba(38,38,38,.6);
	position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn-img:link {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
}
.btn-img:visited {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
}
.btn-img:hover {
	background-color: #262626;
	border: solid 1px #0476bc;
	color: #ffffff;
	text-decoration: none;
}
.btn-img:active {
	background-color: #0476bc;
	border: solid 1px #0476bc;
	color: #ffffff;
}



/* MODAL ================================================================================================================= */
.modal-content {
	border-radius: 30px;
	background-color: #262626;
	color: #ffffff;
	text-align: left;
	box-shadow: 10px 2px 10px rgba(38,38,38,.6);
}
.modal-content a:link {
	font-family: 'Oswald', sans-serif;
	color: #68add7;
	letter-spacing: 1px;
	text-decoration: underline;
}
.modal-content a:visited {
	color: #68add7;
	text-decoration: underline;
}
.modal-content a:hover {
	color: #d88365;
	text-decoration: underline;
}
.modal-content a:active {
	color: #68add7;
	text-decoration: underline;
}


/* ALERT ================================================================================================================= */
.alert {
	text-align: center;
	border-radius: 0px;
	background-color: #262626 !important;
	color: #ffffff !important;
	border: none !important;
	width: 100%;
	margin: 0px;
	z-index: 999;
}
.alert a:link {
	font-family: 'Oswald', sans-serif;
	color: #d88365;
	letter-spacing: 1px;
}
.alert a:visited {
	color: #d88365;
}
.alert a:hover {
	color: #d88365;
}
.alert a:active {
	color: #d88365;
}
.close {
	color: #68add7 !important;
	text-shadow: none;
	opacity: 1;
}
.close:hover {
	color: #ffffff;
	opacity: 1;
}


/* JUMBOTRON ============================================================================================================= */
.jumbotron-music {
	background-image: url(../img/bg-music-00.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: 100%;
	position: relative;
	color: #ffffff;
	margin: 0px;
}
.jumbotron-movies {
	background-image: url(../../../../bulldogmusic.ca/assets/img/bg-movies-00.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: 100%;
	position: relative;
	color: #ffffff;
	margin: 0px;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.jumbotron {
	background-position: 50% 0%; /* horizontal / vertical */
}
}
/* :::::::::::::::::::: MEDIA QUERY: Tablets (portrait and landscape) */ 
@media (min-width: 768px) and (max-width: 1024px) {
.jumbotron {
	background-position: 50% 0%; /* horizontal / vertical */ 
}
}
.jumbotron-content {
	position: absolute;
	top: 0px	
}
.jumbotron h1 {
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}
.jumbotron h2 {
	font-family: 'Roboto', sans-serif;
	margin-bottom: 0px;
	color: #ffffff;
	font-weight: 300;
}
.jumbotron .brand {
	padding: 15px 0px 45px 0px;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
	.brand {max-width: 152px;}
}


/* SECTIONS ============================================================================================================== */
section {
	background-color: #262626;
	padding: 60px 0px 30px 0px;
}
/* SECTION1 (ABOUT) ________________________________________ */
.section1music {
	background-image: url(../img/bg-music-01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: auto;
	position: relative;
}
.section1movies {
	background-image: url(../../../../bulldogmusic.ca/assets/img/bg-movies-01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: auto;
	position: relative;
}
/* SECTION2 (SERVICES) _____________________________________ */
.section2music {
	background-image: url(../img/bg-music-02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
}
.section2movies {
	background-image: url(../../../../bulldogmusic.ca/assets/img/bg-movies-02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
}
/* SECTION3 (CONTACT) ______________________________________ */
.section3music {
	background-image: url(../img/bg-music-03.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
}
.section3movies {
	background-image: url(../../../../bulldogmusic.ca/assets/img/bg-movies-03.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center; /* horizontal vertical */
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
}
.contact-row2 {
	margin-top: 60px;
}
.contact-row2 h1 {
	display: inline;
}
.contact-row2 h2 {
	color: #ffffff;
}
.contact-row2 .icon {
	padding-left: 30px;
	margin-top: -15px;
}
.contact-row2 .btn-default {
	margin: 0px;
}


/* FOOTER ================================================================================================================ */
footer {
	background-color: #262626;
	text-align: center;
	padding: 30px 0px 30px 0px;
}
/* FOOTER-ROW1 (LET'S CONNECT) _____________________________ */
.footer-row1 {
	border-bottom: solid 1px #68add7;
	padding: 30px;
}
.footer-row1 ul {
	list-style: none;
	padding: 0px;
}
.footer-row1 li {
	display: inline;
}
.footer-row1 h1 {
	display: inline;
	text-transform: lowercase;
	padding: 0px 60px 0px 60px;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.footer-row1 h1 {font-size: 30px; padding: 0px 30px 0px 30px;}
}
.footer-row1 a:link {
	color: #ffffff;
}
.footer-row1 a:visited {
	color: #ffffff;
}
.footer-row1 a:hover {
	color: #0476bc;
}
.footer-row1 a:active {
	color: #ffffff;
}
/* FOOTER-ROW2 (COPYRIGHT/TOP) _____________________________ */
.footer-row2 {
	padding: 45px 0px 0px 0px;
}
.footer-row2 ul {
	list-style: none;
	padding: 0px;
}
.footer-row2 li {
	display: inline;
}
/* :::::::::::::::::::: MEDIA QUERY: Smart Phones (portrait and landscape) */
@media (min-width: 320px) and (max-width: 568px) {
.footer-row2 li {display: block;}
}
.footer-row2 a:link {
	font-family: 'Oswald', sans-serif;
	color: #d88365;
}
.footer-row2 a:visited {
	font-family: 'Oswald', sans-serif;
	color: #d88365;
}
.footer-row2 a:hover {
	font-family: 'Oswald', sans-serif;
	color: #d88365;
}
.footer-row2 a:active {
	font-family: 'Oswald', sans-serif;
	color: #d88365;
}
.footer-row2 .scroll-up .btn {
	color: #68add7;
	font-size: 1.5rem;
	opacity: 1;
}
.footer-row2 .scroll-up .btn:hover {
	opacity: 0.5;
}
.footer-row3 {
	padding: 60px 0px 60px 0px;
}
.footer-row3 img {
	padding: 0px 30px 0px 0px;
}


/* EMAIL FORM ============================================================================================================ */
#sendmessage {
	cursor: pointer;
}
.contact .form-group input.form-control {
	height: auto;	
	width: 100%;
	margin: 0px auto 0px auto;
}
.contact .form-group textarea.form-control {
	height: 210px;
}
.contact input {
	border: solid 1px #d88365;
	border-radius: 0px;
	background-color: rgba(38, 38, 38, 0.5);
}
.contact textarea {
	border: solid 1px #d88365;
	border-radius: 0px;
	background-color: rgba(38, 38, 38, 0.5);
}
.contact .btn-primary {
	border-radius: 0px;
	width: 100%;
	margin: 0px;
}
::-webkit-input-placeholder {
	color: #ffffff !important;
	text-align: center !important;
}
input {
	text-align: center !important;
}
textarea {
	text-align: center !important;
}
.with-errors {
	color:#d9534f;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600 !important;
}
.alert {
	border-top: none;
	border-right: solid 3px #d1e9f3;
	border-bottom: none;
	border-left: solid 3px #d1e9f3;
	border-radius: 0px;
	background-color: #deecf6;
	color: #617e93;
}
.alert-success {
	border-top: none;
	border-right: solid 3px #dce9cd;
	border-bottom: none;
	border-left: solid 3px #dce9cd;
	border-radius: 0px;
	background-color: #e2efda;
	color: #668b5f;
}
.g-recaptcha {
	display: inline-block;
}
.bulldogfocus {
	background-color:  #262626;
	color: #cccccc;
}
.bulldogfocus:focus {
	background-color:  #262626;
	color: #cccccc;
}
.contact select {
	border: solid 1px #d88365;
	border-radius: 0px;
	background-color: #d88365;
	width: 100%;
}
.contact .date {
	border: solid 1px #d88365;
	border-radius: 0px;
	background-color: #d88365;
}



/* 404 NOT FOUND ========================================================================================================= */
.notfound {
	height: 100%;
}
.notfound-message {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 360px;
	width: 100%;
	text-align: center;
	color: #ffffff;
}
.notfound-message img {
	margin: 0 auto !important;
	text-align: center !important;
}