/* Created By: Alex Michael Faulkner */
/* Date Created: 8/11/18 */
/* Thanks for checking out my portfolio!*/



/* !!!!!!!!!!! GLOBAL CSS !!!!!!!!!!! */
html {
	margin:0; 
	padding:0; 
}
html, body {
	height:100%; 
	background-color:#ffffff; 
	font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
	outline:0;
	color:#fff;
}
section {
	padding: 100px 0;
	display: block;
}
@media (min-width: 768px) {
	section {
		padding: 150px 0;
	}
}

/* Common Text Heading and Sub-Section */
.section-heading {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #0a090a;
	font-weight: bold;
	font-size: 35px;
	line-height: 35px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 0;
	margin-bottom: 60px;
}
.section-subheading {
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #777777;
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 30px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 100px;
	text-transform: none;
}
@media (min-width: 776px) {
	.section-heading {
		font-size: 40px;
	}
}
@media (min-width: 992px) {
	.section-heading {
		font-size: 50px;
	}
}
@media (min-width: 1200px) {
	.section-heading {
		font-size: 50px;
	}
}

/* Text Colors */
.blue-text {
	color: #00deff;
}
.white-text {
	color: #ffffff;
}
.yellow-text {
	color: #fed136;
}

/* Clear Divs */
.cleansweep {
	clear:both;
}

/* Highlighted Text and BG Color */
::-moz-selection { /* Code for Firefox */
    color: #ffffff;
    background: #00deff;
}
::selection {
    color: #ffffff; 
    background: #00deff;
}

/* Return to Top Button */
#return-to-top {
	position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(81, 95, 107, 0.8);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	color: #ffffff;
}
#return-to-top i {
    color: #fffff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(81, 95, 107, 0.9);
}
#return-to-top:hover i {
    color: #ffffff;
    top: 5px;
}


/* Button Container */
.btn {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 700;
	padding: 15px 50px;
}
/* Next Button */
.next-btn {
	background-color: #fed136;
  	border-color: #fed136;
	border-radius: 3px;
	display: block;
    margin-left: auto;
    margin-right: auto;
	color: #ffffff;
}
.next-btn span{
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;	
}
.next-btn span:after{
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}
.next-btn:hover {
	border-color: #fed136; !important;
	color: #ffffff;
}
.next-btn:hover span {
	padding-right: 25px;
}
.next-btn:hover span:after {
	opacity: 1;
	right: 0;
}

/* Resume Button */
.resume-btn-container {
    margin-left: auto;
    margin-right: auto;
	padding-top: 30px;
	padding-bottom: 60px;
	color: #ffffff;
}
@media (min-width: 776px) {
	.resume-btn-container {
		margin-left: auto;
		margin-right: auto;
		padding-top: 75px;
		padding-bottom: 109px;
		color: #ffffff;
	}
}
@media (min-width: 992px) {
	.resume-btn-container {
		margin-left: auto;
		margin-right: auto;
		padding-top: 80px;
		padding-bottom: 114px;
		color: #ffffff;
	}
}
@media (min-width: 1200px) {
	.resume-btn-container {
		margin-left: auto;
		margin-right: auto;
		padding-top: 105px;
		padding-bottom: 130px;
		color: #ffffff;
		
	}
}
.resume-btn {
	background-color: #00deff;
  	border-color: #00deff;
	border-radius: 3px;
	display: block;
    margin-left: auto;
    margin-right: auto;
	color: #ffffff;
}
.resume-btn:hover {
	border-color: #00deff; !important;
	color: #ffffff;
	background-color: #1dd3ee;
  	border-color: #1dd3ee;
	/* Fade Hover Effect */
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}


/* !!!!!!!!!!! NAVIGATION CSS !!!!!!!!!!! */
#mainNav {
	background-color: #0a090a;
}
#mainNav .navbar-toggler {
	font-size: 12px;
	padding: 10px 15px;
	color: #ffffff;
	border: 1;
	background-color: #fed136;
	border-color: #fed136;
}
#mainNav .navbar-brand img{
	height: 30px;
}
#mainNav .navbar-nav  {
	padding-top: 10px;
	padding-bottom: 10px;
	
}
#mainNav .navbar-nav .nav-item .nav-link {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffffff;
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	padding: 15px !important;
	margin: 0px;
	/* Fade Hover Effect */
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}
#mainNav .navbar-nav .nav-item .nav-link:hover {
	color: #fed136;
}
#mainNav .active {
	color: white;
  	background-color: #fed136;
  	border-color: #fed136;
	border-radius: 3px;
	}
#mainNav .active:hover {
	color: white;
  	background-color: #f4c420;
  	border-color: #fed136;
	border-radius: 3px;
	}
.nav-link i {
	color: #525f6a;
}
@media (min-width: 992px) {
	#mainNav {
		padding-top: 15px;
    	padding-bottom: 15px;
    	-webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
    	-moz-transition: padding-top 0.3s, padding-bottom 0.3s;
    	transition: padding-top 0.3s, padding-bottom 0.3s;
    	border: none;
    	background-color: transparent;
		
  	}
	#mainNav .navbar-brand img{
		height: 35px;
    	-webkit-transition: all 0.3s;
    	-moz-transition: all 0.3s;
    	transition: all 0.3s;
	}
	#mainNav .navbar-nav .nav-item .nav-link {
    	padding: 15px !important;
		margin: 0px;
	}
	#mainNav .navbar-nav .nav-item .nav-link:hover {
    	color: #fed136; 
	}
	#mainNav .active {
	 	color: white;
  		background-color: #fed136;
  		border-color: #fed136;
		border-radius: 3px;
	}
	#mainNav .active:hover {
	 	color: white;
  		background-color: #f4c420;
  		border-color: #fed136;
		border-radius: 3px;
		/* Fade Hover Effect */
		-o-transition:.5s;
		-ms-transition:.5s;
		-moz-transition:.5s;
		-webkit-transition:.5s;
		transition:.5s;
	}
	#mainNav.navbar-shrink {
    	padding-top: 0;
    	padding-bottom: 0;
    	background-color: #0a090a;
	}
	#mainNav.navbar-shrink .navbar-brand img {
    	height: 30px;
	}
}



/* !!!!!!!!!!! BANNER CSS !!!!!!!!!!! */
header.banner {
	text-align: center;
	color: white;
	background-repeat: no-repeat;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.banner-container {
	text-align: center;
	color: white;
	background-repeat: no-repeat;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	/* Fade Hover Effect */
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}
.hello-banner {
	background-image: url(../img/portfolio/hello_bg.jpg);
	background-position: top center;
	background-color: #0a090a;
}
/* Banner Images */
.hello-banner {
	background-image: url(../img/portfolio/hello_bg.jpg);
	background-position: top center;
	background-color: #0a090a;
}
.uxui-banner {
	background-image: url(../img/ux-ui/uxui_bg.jpg);
	background-position: top center;
	background-color: #0a090a;
}
.graphic-design-banner {
	background-image: url(../img/graphic-design/graphic_design_bg.jpg);
	background-position: top center;
	background-color: #0a090a;
}
.development-banner {
	background-image: url(../img/development/development_bg.jpg);
	background-position: center center;
	background-color: #0a090a;
}
.video-banner {
	background-image: url(../img/video/video_bg.jpg);
	background-position: top center;
	background-color: #0a090a;
}
.about-me-banner {
	background-image: url(../img/about-me/about_me_bg.jpg);
	background-position: center center;
	background-color: #0a090a;
}

/* Common Banner Text */
.banner-text {	
	padding-top: 125px;
	padding-bottom: 100px;
}
.banner-text span {
	color: #00deff;
}
.banner-text i {
	color: #eeeeee;
}
.banner-text i:hover {
	color: #fed136;
	/* Fade Hover Effect */
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
}

/* Hello Banner Text */
.by-text {
	font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-style: italic;
  	font-weight: 100;
  	font-size: 40px;
	color: #ffffff;
	margin-bottom: 45px;
}
.alex-micheal-faulkner-text {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  	font-weight: bolder;
	letter-spacing: -5px;
  	font-size: 70px;
  	line-height: 60px;
  	color: #fed136;
	
}
.designs-text {
	font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-style: italic;
  	font-weight: 100;
  	font-size: 45px;
	margin-top: -25px;
  	margin-bottom: 60px;
  	color: #ffffff;
	/* Rotate Text */
	-webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}
/* Portfolio Banner Text */
.banner-title {
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  	font-weight: bolder;
	letter-spacing: -3px;
	font-style: italic;
  	font-size: 45px;
  	line-height: 60px;
  	color: #fed136;
	margin-top: 20px;
}
.banner-subtext {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  	font-weight: bolder;
  	font-size: 25px;
  	line-height: 25px;
  	color: #00deff;
	margin-top: 20px;
}
.banner-description {
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 30px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 10px;
	margin-bottom: 60px;
	text-transform: none;
}

@media (min-width: 768px) {
	/* Hello Banner Text */
	.banner-text {
		padding-top: 150px;
		padding-bottom: 150px;
		padding-right: 50px;
		padding-left: 50px;
	}
	.by-text {
  		font-weight: 100;
  		font-size: 50px;
		color: #ffffff;
		margin-bottom: 60px;
	}
	.alex-micheal-faulkner-text {
		font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  		font-weight: bolder;
		letter-spacing: -5px;
  		font-size: 100px;
  		line-height: 80px;
  		color: #fed136;
	}
	.designs-text {
		font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  		font-style: italic;
  		font-weight: 100;
  		font-size: 65px;
		margin-top: -35px;
  		margin-bottom: 60px;
  		color: #ffffff;
		/* Rotate Text */
		-webkit-transform: rotate(-5deg);
    	-moz-transform: rotate(-5deg);
    	-ms-transform: rotate(-5deg);
    	-o-transform: rotate(-5deg);
    	transform: rotate(-5deg);
		
	}
	/* Portfolio Banner Text */
	.banner-title {
		font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		font-weight: bolder;
		letter-spacing: -3px;
		font-style: italic;
		font-size: 80px;
		line-height: 60px;
		color: #fed136;
		margin-top: 50px;
	}
	.banner-subtext {
		font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		font-weight: bolder;
		font-size: 40px;
		line-height: 40px;
		color: #00deff;
		margin-top: 50px;
	}
	.banner-description {
		font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		color: #ffffff;
		font-size: 18px;
		font-weight: 400;
		font-style: italic;
		line-height: 30px;
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 20px;
		margin-bottom: 100px;
		text-transform: none;
	}
}
@media (min-width: 992px) {
	/* Hello Banner Text */
	.banner-text {
		padding-top: 150px;
		padding-bottom: 150px;
		padding-right: 50px;
		padding-left: 50px;
	}
	.by-text {
  		font-weight: 100;
  		font-size: 55px;
		color: #ffffff;
		margin-bottom: 60px;
	}
	.alex-micheal-faulkner-text {
		font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  		font-weight: bolder;
		letter-spacing: -5px;
  		font-size: 125px;
  		line-height: 100px;
  		color: #fed136;
	}
	.designs-text {
		font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  		font-style: italic;
  		font-weight: 100;
  		font-size: 85px;
		margin-top: -45px;
  		margin-bottom: 60px;
  		color: #ffffff;
		/* Rotate Text */
		-webkit-transform: rotate(-5deg);
    	-moz-transform: rotate(-5deg);
    	-ms-transform: rotate(-5deg);
    	-o-transform: rotate(-5deg);
    	transform: rotate(-5deg);
		
	}
	/* Portfolio Banner Text */
	.banner-title {
		font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		font-weight: bolder;
		letter-spacing: -3px;
		font-style: italic;
		font-size: 100px;
		line-height: 60px;
		color: #fed136;
		margin-top: 80px;
	}
	.banner-subtext {
		font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		font-weight: bolder;
		font-size: 50px;
		line-height: 40px;
		color: #00deff;
		margin-top: 60px;
	}
	.banner-description {
		font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		color: #ffffff;
		font-size: 18px;
		font-weight: 400;
		font-style: italic;
		line-height: 30px;
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 20px;
		margin-bottom: 100px;
		text-transform: none;
	}
}
@media (min-width: 1200px) {
	/* Hello Banner Text */
	.banner-text {
		padding-top: 150px;
		padding-bottom: 150px;
		padding-right: 150px;
		padding-left: 150px;
	}
	.by-text {
  		font-weight: 100;
  		font-size: 60px;
		color: #ffffff;
		margin-bottom: 60px;
	}
	.alex-micheal-faulkner-text {
		font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  		font-weight: bolder;
		letter-spacing: -5px;
  		font-size: 150px;
  		line-height: 115px;
  		color: #fed136;
	}
	.designs-text {
		font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  		font-style: italic;
  		font-weight: 100;
  		font-size: 100px;
		margin-top: -50px;
  		margin-bottom: 60px;
  		color: #ffffff;
		/* Rotate Text */
		-webkit-transform: rotate(-5deg);
    	-moz-transform: rotate(-5deg);
    	-ms-transform: rotate(-5deg);
    	-o-transform: rotate(-5deg);
    	transform: rotate(-5deg);
		
	}
	/* Portfolio Banner Text */
	.banner-title {
		font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		font-weight: bolder;
		letter-spacing: -3px;
		font-style: italic;
		font-size: 115px;
		line-height: 60px;
		color: #fed136;
		margin-top: 80px;
	}
	.banner-subtext {
		font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		font-weight: bolder;
		font-size: 60px;
		line-height: 40px;
		color: #00deff;
		margin-top: 100px;
	}
	.banner-description {
		font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
		color: #ffffff;
		font-size: 18px;
		font-weight: 400;
		font-style: italic;
		line-height: 30px;
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 20px;
		margin-bottom: 100px;
		text-transform: none;
	}
}




/* !!!!!!!!!!! HOMEPAGE PORTFOLIO DISPLAY CSS !!!!!!!!!!! */
.portfolio-section {
	background-image: url(../img/grey_pattern.png);
    background-repeat: repeat;
	background-color: #f4f4f4;
}
.portfolio-type {
	display: block;
  	position: relative;
  	max-width: 400px;
  	margin: 0 auto;
	padding-bottom: 50px;
}
.portfolio-type img {
	width: 100%;
    max-width: 400px;
    height: auto;
}
.portfolio-link {
	display: block;
  	position: relative;
  	max-width: 400px;
  	margin: 0 auto;
}
.portfolio-hover {
  	background: rgba(254, 209, 54, 0.9);
  	position: absolute;
  	width: 100%;
  	height: 100%;
  	opacity: 0;
  	transition: all ease 0.5s;
  	-webkit-transition: all ease 0.5s;
  	-moz-transition: all ease 0.5s;
}
.portfolio-hover:hover {
  	opacity: 1;
}
.portfolio-hover-content {
  	position: absolute;
  	width: 100%;
  	height: 20px;
  	font-size: 20px;
  	text-align: center;
  	top: 50%;
  	color: white;
}
.portfolio-hover-content i {
  	margin-top: -15px;
}
.portfolio-text {
  	max-width: 400px;
  	margin: 0 auto;
  	background-color: white;
  	text-align: center;
  	padding: 25px;
}
.portfolio-text h1 {
  	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  	font-weight: 700;
  	font-size: 20px;
	color: #0a090a;
}
.portfolio-text h2 {
  	font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-style: italic;
  	font-size: 16px;
	color: #777777; 	
}




/* !!!!!!!!!!! ICON SECTION CSS !!!!!!!!!!! */
.icon-section {
	background-color: #ffffff;
}

.icon-section h1 {
  	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  	font-weight: 700;
  	font-size: 20px;
	color: #0a090a;
	margin-top: 30px;
}
.icon-section h2 {
  	font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  	font-style: italic;
  	font-size: 16px;
	color: #777777; 
	line-height: 25px;
	margin-bottom: 50px;
	padding-left: 20px;
	padding-right: 20px;
}



/* !!!!!!!!!!! UX/XU - GRAPHIC DESIGN - DEVELOPMENT - VIDEO DISPLAY CSS !!!!!!!!!!! */
.display-section {
	background-image: url(../img/grey_pattern.png);
    background-repeat: repeat;
	background-color: #f4f4f4;
	margin-top: -50px;
}
.display img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
	padding-bottom: 50px;
}




/* !!!!!!!!!!! VIDEO SECTION CSS !!!!!!!!!!! */
.video-section {
	background-image: url(../img/grey_pattern.png);
    background-repeat: repeat;
	background-color: #f4f4f4;
	margin-top: -50px;
	margin-bottom: 50px;
}
.video-group {
	margin-bottom: 75px;
}



/* !!!!!!!!!!! ABOUT ME SECTION CSS !!!!!!!!!!! */
.about-me-section {
	
}
.program-icons {
	margin-top: -20px;
	margin-bottom: 100px;
}
.super-adobe img {
	display: block;
    margin-left: auto;
    margin-right: auto;
	width: 100%;
	margin-bottom: -150px;
}
@media (min-width: 768px) {
	.super-adobe img {
		margin-bottom: -200px;
	}
}
@media (min-width: 992px) {
	.about-me-section {
		margin-bottom: -145px;
	}
}
@media (min-width: 1200px) {
	.about-me-section {
		margin-bottom: 0px;
	}
}




/* !!!!!!!!!!! EXPERIENCE DISPLAY CSS !!!!!!!!!!! */
.experience-section {
	background-image: url(../img/grey_pattern.png);
    background-repeat: repeat;
	background-color: #f4f4f4;
	margin-top: -50px;
}
.experience-section h1 {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #0a090a;
	font-weight: bold;
	font-size: 24px;
	line-height: 35px;
	margin-top: 0;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: left;
}
.experience-section h2 {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #0a090a;
	font-weight: 100;
	font-size: 20px;
	line-height: 25px;
	margin-top: 0;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: left;
}
.experience-section h3 {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #0a090a;
	font-weight: bold;
	font-size: 20px;
	line-height: 25px;
	margin-top: 0;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: left;
}
.experience-section h4 {
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #777777;
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 30px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 75px;
	text-transform: none;
	text-align: left;
}
.experience-section h5 {
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #777777;
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 30px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 20px;
	text-transform: none;
	text-align: left;
}



/* !!!!!!!!!!! MODAL POPUPS CSS !!!!!!!!!!! */
.modal {
	padding-right: 0px !important;
}
.modal .modal-dialog {
	margin: 0;
	height: 100%;
	max-width: 100vw;
}
.modal .modal-content {
	border-radius: 0;
	background-clip: border-box;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	min-height: 100%;
	padding: 100px 0;
	text-align: center;
}
.modal-content h1 {
	color: #263745;
	font-weight: bold;
	font-size: 40px;
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.advisory-title {
	color: #263745;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 50px;
}
.modal-content h2 {
	font-size: 25px;
	font-style: italic;
	color: #263745;
	margin-bottom: 50px;
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.modal-content p {
	color: #515f6b;
	font-size: 18px;
	font-weight: 400;
	font-style: italic;
	line-height: 30px;
	padding-left: 0px;
	padding-right: 0px;
	text-transform: none;
	font-family: 'Droid Serif', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.modal-content img {
	margin-top: 50px;
	margin-bottom: 50px;
	display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
	padding-top: 50px;
	padding-bottom: 25px;
}
.modal-content button {
	cursor: pointer;
}
.close-modal {
	position: absolute;
	width: 75px;
	height: 75px;
	background-color: transparent;
	top: 25px;
	right: 25px;
	cursor: pointer;
}
.close-modal:hover {
	opacity: 0.3;
}
.close-modal .lr {
	/* Safari and Chrome */
	z-index: 1051;
	width: 1px;
	height: 75px;
	margin-left: 35px;
	/* IE 9 */
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: #212529;
}
.close-modal .lr .rl {
	/* Safari and Chrome */
	z-index: 1052;
	width: 1px;
	height: 75px;
	/* IE 9 */
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	background-color: #212529;
}




/* !!!!!!!!!!! NEXT SECTION CSS !!!!!!!!!!! */




/* !!!!!!!!!!! CONTACT AND FOOTER CSS !!!!!!!!!!! */
.contact-section {
	background-color: #0a090a;
	background-image: url('../img/footer-image.png');
  	background-position: center;
 	background-repeat: no-repeat;
}
.contact-section h1 {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	padding: 10px;
}
.contact-section i {
	color: #fed136;
	padding-right: 10px;
}
.footer {
	background-color: #070607;
	padding: 25px;
}
.footer h1 {
	font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	padding: 10px;
}




/* Created By: Alex Michael Faulkner */