

/* CSS VARIABLES */
:root {
    --yellow: #2888a3;
    --blue: #2888a3;
    --cyan: #2888a3;
    --grey: #2888a3;
    --light: #2888a3;
        --black: #000000;
        --white: #FFFFFF;
}
body, html {
	height: 100%;
}
body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 24px;
    /*Body Text Color*/
    color: white;
    /*Body BG*/
    background: black;
}
a, a:hover, a:focus {
    color: var(--blue);
}
#wrapper {
    min-height: 100%;
    padding: 0;
}
/* JUMBOTRON (HEADER) */
.jumbotron {
    height: 50px; /* Adjust this value to the height of your header image, added extra 10px for border */
    margin: 0; /* If you have removed the fixed mobile menu, replace with margin: 0; */
    padding: 0;
    border-bottom: 10px black;
    position: center;
    background: black;
    
}
/* This is needed to vertically align site name/logo */
.jumbotron .container {
    height: 100%;
    position: relative;
}
.branding {
    position: absolute;
    left: 50%;
    top: 67%;
    transform: translate(-50%, -50%);
}
/* NAVIGATION */
.navbar {
    background: white;
    margin: 0;
    border-radius: 0;
	border: 0;
	text-align: left;
    position: fixed; /* This forces the navigation fixed to the top of the window for tablet/mobile */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.navbar-brand:hover {
    color: var(--blue);
}
.logo {
	background:url('../img/logo.png') 70% 50% no-repeat;
	text-indent: -99999px;
	display: block;
	width: 210px; /* Update this value to the width of your logo */
    height: 50px;
	padding:0;
}
.navbar-brand {
	color: #fff;
    font-size: 30px;
    text-transform: uppercase;
}
/* Remove this CSS if you don't want center aligned navigation links */
.navbar-nav {
	float: none;
}
.navbar-nav>li {
	float: none;
	display: block;
}
/* End of center aligned navigation links */
.nav>li>a {
    color: black;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1.5px;
    font-family: 'Abel', sans-serif;
    padding: 15px 20px;
}
.nav>li>a:focus, .nav>li>a:hover {
    background: black;
    color: var(--white);
    text-decoration: none;
}
.nav>li>a .fa {
    margin-right: 10px;
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background: black;
    color: var(--cyan);
}
.dropdown-menu {
    background: white;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.dropdown-menu>li>a {
    color: black;
    border-left: 5px solid transparent;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background: black;
	color: #fff;
}
/* NAV Dropdown Separater */
.dropdown-menu .divider {
    background: var(--cyan);
}
/* NAV Dropdown Header */
.dropdown-header {
    color: black;
}
/* Colour of hamburger icon */
.navbar-toggle .icon-bar {
    background: var(--cyan);
}
/* CONTENT */
#content {
    padding: 40px 0 50px;
}
h1, h2 , h3, h4, h5 {
    color: white;
    text-align: center;
}

.avatar {
	margin: 0 6px 4px 0;
    border: 0px;
	padding: 2px;
    float: left;
    height: 300px;
}
/* PORTFOLIO SECTION */
.portfolio {
    margin: 30px 0;
}
.portfolio .row > .row {
    margin-bottom: 20px;
}
.portfolio article {
    border-bottom: 1px solid var(--light);
}
/* If the image isn't 100% width of the div, this centers the image */
.portfolio article img {
    margin: 0 auto;
    display: block;
}
.portfolio article h2 {
    margin: 0;
    font-size: 24px;
}
.portfolio article h2:before {
    display: none; /* Removes yellow triangle */
}
.portfolio-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    width: 100%;
}
.portfolio-links {
    flex-shrink: 0;
}
.portfolio-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
}
.portfolio-links ul li {
    display: inline-block;
}
.portfolio-links a {
    border-bottom: 4px solid var(--blue);
    padding: 8px 5px;
    margin: 0 10px;
    display: inline-block;
}
.portfolio-links a:hover {
    text-decoration: none;
    background: var(--blue);
    color: #fff;
}
/* ASIDE box */
aside {
    background-color: var(--white);
    width: 100%;
    float: none;
    padding: 20px 20px 30px;
    color: #fff;
    margin: 25px 0;
}
aside ul {
    padding-left: 0;
    list-style: none;
}
aside ul li {
    margin-bottom: 15px;
    background: url('../img/arrow.png') left top no-repeat; /* Background-image is used rather than "list-style-image" to reposition the image as it is taller than the line height. */
    padding-left: 20px;
}
aside ul li a {
    color: var(--yellow);
}
aside ul li a:hover {
    color: var(--yellow);
}
/* FOOTER */
footer {
	background: var(--white);
	width: 100%;
	color: var(--cyan);
    font-size: 14px;

}
footer .slogan {
    color: var(--white);
    text-transform: uppercase;
    font-size: 150%;
    text-align: right;
    float: right;
    margin: 0;

}
footer h2 {
    font-weight: normal;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 10px;
    padding: 0;
    font-size: 20px;
    border: none;
}

footer ul li {
    margin-bottom: 10px;
}
footer ul.links {
    list-style: none;
    padding: 0;
}
footer ul.links li {
    margin-bottom: 20px;
}
footer ul.links li a {
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px dotted var(--light);
    letter-spacing: 1px;
    padding-bottom: 5px;
}
footer ul.links li a:hover {
    text-decoration: none;
    color: var(--cyan);
    border-bottom: 1px solid var(--white);
}
footer .widget {margin: 0 15px 40px;}
footer .widget:nth-child(1) {
    margin-top: 10px;
}

/* MEDIA QUERIES */
@media screen and (min-width: 768px) {
    .branding {
        top: 50%;
        left: 18%;
    }
    .jumbotron {
        background-position: 50% 0%;
        margin-top: 0; /* If you have removed the fixed mobile menu, remove this line */
    }
    .navbar {
        text-align: center;
        position: static;
    }
    .navbar-brand {
        position: relative;
        left: 30%;
    }
    .navbar-nav>li {display: inline-block;}
    .nav>li>a .fa {
        display: block;
        margin: 10px auto;
        font-size: 28px;
    }
    aside {
        background-image: url('../img/sidebar.png');
        background-position: 0 100%;
        background-repeat: no-repeat;
        float: right;
        width: 220px;
        margin: 0 0 50px;
    }
    footer {
        padding: 25px 0;
        background-position: center top;
    }
    footer .slogan {
        padding: 0 0 10px 20px;
    }    
    footer .widget:nth-child(1) {
        margin: 0;
    }
    footer .widget:nth-child(2) {
        margin: 30px 0 0;
    }
    footer .widget:nth-child(3) {
        margin: 70px 0 0;
    }
    footer .slogan {
        padding: 0 40px 10px 20px;
    }

}








/*-------------------------------------------------------------------------------*/

/* BUTTON COLOR CSS */
.button-3 {
  appearance: none;
  background-color: #2ea44f;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  background-color: #2c974b;
}

.button-3:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}



/**/
.button-4 {
  appearance: none;
  background-color: #a49b2e;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-4:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-4:hover {
  background-color: #978e2c;
}

.button-4:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}


/**/
.button-5 {
  appearance: none;
  background-color: #1718a8;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-5:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-5:hover {
  background-color: #a00301;
}

.button-5:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}


/**/
.button-6 {
  appearance: none;
  background-color: #7a8795;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-6:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-6:hover {
  background-color: #434a52 ;
}

.button-6:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}



/**/
.button-7 {
  appearance: none;
  background-color: #396882;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-7:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-7:hover {
  background-color: #bababa;
}

.button-7:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}

/**/
.button-8 {
  appearance: none;
  background-color: #5c3591;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-8:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-8:hover {
  background-color: #7b47c2;
}

.button-8:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}



/**/
.button-9 {
  appearance: none;
  background-color: #a5721a;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-9:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-9:hover {
  background-color: #fcd58c;
}

.button-9:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}


/**/
.button-10 {
  appearance: none;
  background-color: #a59252;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-10:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-10:hover {
  background-color: #729974;
}

.button-10:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}


/**/
.button-11 {
  appearance: none;
  background-color: #555a5b;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-11:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-11:hover {
  background-color: #387d86;
}

.button-11:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}



/**/
.button-12 {
  appearance: none;
  background-color: #8c6d38;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-12:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-12:hover {
  background-color: #c99d51;
}

.button-12:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}


/**/
.button-13 {
  appearance: none;
  background-color: #6444a8;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-13:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-13:hover {
  background-color: #da6b26;
}

.button-13:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}

/**/
.button-14 {
  appearance: none;
  background-color: black;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
}

.button-14:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-14:hover {
  background-color: #b1b1b1;
}

.button-14:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}






/*-------------------------------------------------------------------------------*/

/* FLEX CSS */

.flex-row{
    display: flex;
    flex-direction: flex-row;
    flex-wrap: wrap;
    justify-content: space-evenly;

}
.flex-box{
font-family: Arial, Helvetica, sans-serif;
    border-radius: 0px;
    border: 1px solid black;
	width: 300px;
    margin: 5rem 0rem;
}

.flex-box p{padding: 0.8rem; line-height: 1.8rem;}

.flex-box a {text-decoration: none; color: white}



.flex-box button:hover{
	cursor: pointer;
	opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
}

