@charset "UTF-8";
/* CSS Document */

/*
Colors
FSP Red:#D90D11
FSP Dark Red:#BD0003
Hoops Blue:#000A95
FSP Gold:#feb11b  
White:#FFFFFF
Black:#000000
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.centered {
    text-align: center;
    margin: 0 auto;
}

.container{
    width:100%;
    padding:0px;
    margin:0 auto;
}
@media (min-width:576px){.container{max-width:540px}}
@media (min-width:768px){.container{max-width:720px}}
@media (min-width:992px){.container{max-width:960px}}
@media (min-width:1200px){.container{max-width:1140px}}

.imgCircle {
    border-radius: 50%;
}

#pageBanner {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
}

#pageBanner img {
    max-width: 100%;
    height: auto;
}

/*  Header Styling */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 100;
    top:15px;
}

.pill-nav {
    background-color:ghostwhite;
    border-radius: 25px;
    padding: 5px 5px;
    background-blend-mode: screen;
    opacity: .9;
}

.pill-nav a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 14px 27px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 25px;
}

.pill-nav a:hover {
    background-color: #ddd;
    color: black;
    transition: .3s;
}

.pill-nav a.active {
    background-color: black;
    color: white;
}

/* About Styling */
#aboutMeSect {
    width: 100%;
    background: lightgray;
}

#aboutMeSect .container {
    display: flex;
    justify-content: space-between;
}

#aboutMeContent {
    width: 65%;
}

#aboutMeContent h2 {
    text-align: center
}

#aboutPicsAside {
    width: 35%;
    display: grid;
    grid-template-areas: 1fr 1fr 1fr 1fr 1fr 1fr 1fr / 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
}

.aboutPics {
    height: 140px;
}

#AboutPic1 {
    z-index: 2;
    grid-area: 1 / 1 / span 3 / span 3;
}

#AboutPic2 {
    z-index: 3;
    grid-area: 3 / 3 / span 3 / span 3;
}

#AboutPic3 {
    z-index: 2;
    grid-area: 5 / 1 / span 3/ span 3;
}


#whatIDoSect {
    width: 100%;
    text-align: center;
}

#whatIDoSect div {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.whatIdoIcons {
    border: 1px solid black;
    padding: 15px;
    width: 200px;
    height: 200px;
}

#whatIDoSect figure {
    margin: 10px;
}

/* FSP Web Page Styling */

#webGallerySect {
    max-width: 1140px;
    margin: auto;
}

.productHeaders {
    text-align: center;
    margin: 10px;
    font-family: Cochin;
    text-decoration: underline;
    font-size: 36px;
}

/*Web Gallery Styles*/

.row {
  margin: 8px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that float next to each other */
.column {
  float: left;
  width: 25%;
}

/* Creates two equal columns that float next to each other */ 
.halfCol {
    float: left;
    width: 50%;
    padding: 8px;
}

/* Creates 3 equal columns that float next to each other */ 
.thirdCol {
    float: left;
    width: 33%;
    padding: 8px;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: lightgray;
  padding: 10px;
}

.content video {
    width: 100%;
    height: auto;
}
.content img {
    max-height: 320px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
    .halfCol {
        width: 100%;
    }
    .thirdCol {
        width: 100%;
    }
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    filter: grayscale(40%);
}

.webPics {
    width: 100%;
}

.riseIn {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.riseIn2 {
    animation: fadeInAnimation ease 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.riseIn3 {
    animation: fadeInAnimation ease 9s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.riseIn4 {
    animation: fadeInAnimation ease 12s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.riseIn5 {
    animation: fadeInAnimation ease 15s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
 
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

/*Web Slideshow Styles*/
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}


/*SlideShow*/

#slideshow {
	margin: 0 auto;
	padding: 0px;
	height: 500px;
	width: 100%;
	background-color: none;
	box-sizing: border-box;
}

.slideshow-title {
	font-family: 'Allerta Stencil';
	font-size: 62px;
	color: #fff;
	margin: 0 auto;
	text-align: center;
	margin-top: 25%;
	letter-spacing: 3px;
	font-weight: 300;
}

.sub-heading {
	padding-top: 50px;
	font-size: 18px;
} .sub-heading-two {
	font-size: 15px;
} .sub-heading-three {
	font-size: 13px;
} .sub-heading-four {
	font-size: 11px;
} .sub-heading-five {
	font-size: 9px;
} .sub-heading-six {
	font-size: 7px;
} .sub-heading-seven {
	font-size: 5px;
} .sub-heading-eight {
	font-size: 3px;
} .sub-heading-nine {
	font-size: 1px;
}

.entire-content {
	margin: auto;
	width: 190px;
	perspective: 1000px;
	position: relative;
	padding-top: 80px;
}

.content-carrousel {
	width: 100%;
	position: absolute;
	float: right;
	animation: rotar 30s infinite linear;
	transform-style: preserve-3d;
}

.content-carrousel:hover {
	animation-play-state: paused;
	cursor: pointer;
}

.content-carrousel figure {
	width: 100%;
	height: 220px;
	border: 1px solid #3b444b;
	overflow: hidden;
	position: absolute;
}

.content-carrousel figure:nth-child(1) {
	transform: rotateY(0deg) translateZ(300px); 
} .content-carrousel figure:nth-child(2) {
	transform: rotateY(40deg) translateZ(300px); 
} .content-carrousel figure:nth-child(3) {
	transform: rotateY(80deg) translateZ(300px); 
} .content-carrousel figure:nth-child(4) {
	transform: rotateY(120deg) translateZ(300px); 
} .content-carrousel figure:nth-child(5) {
	transform: rotateY(160deg) translateZ(300px); 
} .content-carrousel figure:nth-child(6) {
	transform: rotateY(200deg) translateZ(300px); 
} .content-carrousel figure:nth-child(7) {
	transform: rotateY(240deg) translateZ(300px); 
} .content-carrousel figure:nth-child(8) {
	transform: rotateY(280deg) translateZ(300px); 
} .content-carrousel figure:nth-child(9) {
	transform: rotateY(320deg) translateZ(300px); 
} .content-carrousel figure:nth-child(10) {
	transform: rotateY(360deg) translateZ(300px); 
} 

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #000;
    border-radius: 1px;
}

.content-carrousel img {
	image-rendering: auto;
	transition: all 300ms;
	width: 100%;
	height: 100%;
}

.content-carrousel img:hover {
	transform: scale(1.2);
	transition: all 300ms;
}

@keyframes rotar {
	from {
		transform: rotateY(0deg);
	} to {
		transform: rotateY(360deg);
	}
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* Footer Styling */
footer {
    background: black;
    color: white;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    text-align: center;
    grid-row-gap: 15px;
    padding: 15px 0 0 0;
}

.HoopsFootSect {
    grid-area: 1 / 3 / span 1/ span 1;
}

.WebFootSect {
    grid-area: 1 / 2 / span 1/ span 1;
}

.ContactFootSect {
    grid-area: 2 / 2 / span 1/ span 2;
    color: white;
    margin: 0;
    padding: 0;
}

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

footer h4 {
    font-size: 20px;
}

.footerIcons i {
    font-size: 24px;
    margin: 5px;
}

.footerIcons {
    color: white;
}



/* 
-3 Branch Footer Styling

footer {
    background: black;
    color: white;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    text-align: center;
    grid-row-gap: 15px;
    padding: 15px 0 0 0;
}

.TalkFootSect {
    grid-area: 1 / 4 / span 1/ span 1;
}

.HoopsFootSect {
    grid-area: 1 / 3 / span 1/ span 1;
}

.WebFootSect {
    grid-area: 1 / 2 / span 1/ span 1;
}

.ContactFootSect {
    grid-area: 2 / 2 / span 1/ span 3;
    color: white;
    margin: 0;
    padding: 0;
}

-3 Branch Header Styling 
#homeHeader {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: black;
    margin-top: 0px;
    padding: 10px;
    height: 50px;
    position: relative;
    top: 0;
}

#homeHeader figure a {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    text-decoration: none;
}

#homeHeader a {
    color: white;
    text-decoration: none;
}

.logoCircle {
    width: 50px;
}

#homeNav ul {
    margin: 0;
    padding: 0;
}

#homeNav li {
    display: inline-flex;
    margin-left: 50px;
    font-size: 20px;
}

#logoLink figcaption {
    margin-left: 10px;
    font-size: 24px;
}

/* Home Page Styling

#homeBanner {
    padding: 0px;
}

#homeHoverSection {
    display: grid;
    width: 100%;
    margin:  0;
    padding: 0;
    grid-template: 1fr / 1fr 1fr 1fr;
}

#webHoverSect {
    grid-area: 1 / 1 / 2 / 2;
}

#hoopsHoverSect {
    grid-area: 1  / 2 / 1 / 3;
}

#talkHoverSect {
    grid-area: 1 / 3 / 1 / 4;
}

.hoverPicsFig img {
    width: 100%;
}


.hoverPicsFig {
  position: relative;
}

.hoverPics {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}

.hoverPicsFig:hover a .overlay {
  opacity: 1;
}

.overlay img {
  width: 50%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}


#contentSect {
    width: 100%;
    display: grid;
    grid-template: 1fr / 1fr 2fr 2fr 1fr;
    margin: 0;
    padding: 0;
}

#talkTwitter {
    grid-column: 2 / 3;
}

#hoopsTwitter {
    grid-column: 3 / 4;
}

 */