@charset "UTF-8";

/* RESET */

* {
	padding:0;
	margin:0;
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* > :last-child { 
	margin-bottom:0;
}

img {
	width:100%;
	height:auto;
	display:block;
	vertical-align: middle;
}

.clearfix::after {
	content:"";
	clear:both;
	display:table;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav,
object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var, a img {
    background:transparent;
	border:0 none;
	outline:none;
	vertical-align:baseline;
	padding:0;
	margin:0;    
}


/* GENERAL */

html, body {
  overflow-x: hidden;
}
body {
  position: relative
}

html {
	overflow-x:hidden;
}

body {
	background:url("../images/background-noise.webp") top center;
	text-rendering:optimizeLegibility;
	position:relative;
	overflow-x:hidden;
}

h1 {
	font:600 170px/140px "field-gothic", sans-serif;
	text-transform:uppercase;
	color:#fff;
	margin:0 0 40px 0;
}

h2 {
	font:600 90px/85px "field-gothic", sans-serif;
	text-transform:uppercase;
	color:#fff;
	margin:0 0 50px;
}

h2 span {
	padding-left:60px;
}

h3 {
	font:600 50px/50px "field-gothic", sans-serif;
	text-transform:uppercase;
	color:#fff;
	margin:0 0 30px;
}

h4 {
	font:500 16px/16px "field-gothic", sans-serif;
	text-transform:uppercase;
	letter-spacing:0.05em;
	color:#35d32f;
	margin:0 0 25px 0;
}

p {
	font:300 18px/24px "field-gothic", sans-serif;
	color:#fff;
	letter-spacing:0.05em;
	margin:0 0 40px;
}

p span {
	color:#35d32f;
}

a {
	text-decoration:none;
	color:inherit;
}

.button {
	font:400 16px/18px "field-gothic", sans-serif;
	text-transform:uppercase;
	letter-spacing:0.05em;
	background:transparent;
	color:#fff;
	border:2px solid #35d32f;
	border-radius:35px;
	padding:16px 30px 14px 30px;
	display:inline-block;
	transition:all 0.3s ease;
}

.button:hover {
	color:#fff;
	background:#35d32f;
}

.button:after {
	content:"";
	width:13px;
	height:13px;
	display:inline-block;
	margin-left:15px;
	background:url("../images/arrow-green.svg") no-repeat center center;
	transition:all 0.2s ease;
}

.button:hover:after {
	background:url("../images/arrow-white.svg") no-repeat center center;
	margin-left:25px;
}

.link {
	font:400 16px/18px "field-gothic", sans-serif;
	text-transform:uppercase;
	letter-spacing:0.05em;
	display:block;
	color:#2b3bb2;
	margin:0 0 40px 0;
}

hr {
	width:100%;
	height:1px;
	margin:60px 0 0 0;
	background:none;
	border:0;
}

.photo {
	position:relative;
}

.photo img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.container {
	width:1500px;
	margin:0 auto;
	padding:150px 0;
	position:relative;
}

.no-padding-bottom {
	padding-bottom:0;
}

.two-columns {
	display:flex;
	flex-wrap:wrap;
}

.two-columns .col {
	width:50%;
	padding:0 50px;
}

.two-columns .col:nth-child(1) {
	padding-left:0;
}

.two-columns .col:nth-child(2) {
	padding-right:0;
}

.inner-two-columns {
	display:flex;
	flex-wrap:wrap;
}

.inner-two-columns .inner-col {
	width:50%;
	padding:0 50px;
}

.three-columns {
	display:grid;
	grid-template-columns:433px 433px 433px;
    column-gap:100px;
}


/* NAVIGATION */

.logo {
	width:400px;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	z-index:1;
}

nav {
	width:100%;
	height:130px;
	display:flex;
	position:absolute;
	z-index:1;
}

nav .container {
	height:130px;
	padding:0;
}

nav ul {
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:right;
	text-align:right;
	list-style:none;
}

nav ul li {
	display:inline-block;
	margin:0 5px;
}

nav ul li a {
	font:500 16px/18px "field-gothic", sans-serif;
	text-transform:uppercase;
	letter-spacing:0.05em;
	color:#fff;
	display:block;
	padding:20px 20px;
	transition:all 0.3s ease;
}

nav ul li a:hover {
	color:#35d32f;
}

nav ul li a.button {
	background:#35d32f;
	margin-left:15px;
}

nav ul li a.button:after {
	background:url("../images/arrow-white.svg") no-repeat center center;
}


/* HEADER */

header {
	width:100%;
	height:1120px;
	background:url("../images/background-header.webp") top center no-repeat;
}

header .container {
	height:100%;
	position:relative;
	background:url("../images/homepage-header.webp") no-repeat top center;
}

.circle {
	width:820px;
	position:absolute;
	top:240px;
	left:330px;
}

.basketball-player {
	width:666px;
	position:absolute;
	top:90px;
	left:235px;
}

.headline-copy {
	position:absolute;
	top:230px;
	left:0;
	color:#fff;
}

header h1 span {
	padding-left:70px;
}

header p {
	font-size:20px;
	line-height:26px;
	margin:0 0 50px 0;
}

.quote {
	width:400px;
	position:absolute;
	top:780px;
	right:0;
}

.byline {
	width:230px;
	display:block;
	position:relative;
	float:right;
	padding-left:25px;
}

.byline:before {
	content:"—";
	display:block;
	position:absolute;
	top:0;
	left:0;
}


/* ABOUT US */

#about-us {
	background:#0e3fb5 url("../images/about-us-background.webp") no-repeat top center;
}

#about-us .container {
	padding-top:150px;
	padding-left:430px;
}

#about-us .contaienr .two-columns {
	padding-left:60px;
}


/* WHAT WE DO */

#what-we-do {
	background:url("../images/what-we-do-background.webp") no-repeat top center;
}

#what-we-do .intro {
	text-align:center;
	margin-bottom:100px;
}

#what-we-do .intro p {
	width:870px;
	font-size:20px;
	line-height:28px;
	text-align:left;
	margin:0 auto;
}


/* WHY WORK WITH US */

#why-work-with-us.container {
	padding-top:40px;
	padding-right:600px;
}

#why-work-with-us h2,
#why-work-with-us h4 {
	position:relative;
	z-index:1;
}

#why-work-with-us p {
	width:840px;
	position:relative;
	z-index:1;
	padding-left:60px;
	margin-bottom:80px;
}

.why-work-with-us-photo {
	position:absolute;
	top:-21px;
    right:-396px;
}

.highschool-player {
	width:500px;
	border-radius:15px;
	position:absolute;
	bottom:50px;
	right:0;
}


/* ACCORDION */

.accordion {
  text-align:left;
  position:relative;
  z-index:1;
  margin:0 0 40px 0;
}

.accordion-button {
	background:#2b3bb2;
	border-radius:15px;
	margin-bottom:10px;
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

.accordion-header {
	height:auto;
	display:flex;
	align-items:center;
	cursor:pointer;
	position:relative;
	padding:30px 60px 30px 120px;
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}


.accordion-button:hover {

}

.accordion-button.active {

}

.accordion-header span {
  width:60px;
  height:60px;
  display:block;
  border:2px solid #35d32f;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:30px;
  margin:-30px 0 0 0;
  -webkit-transition: 0.1s ease-out;
  -moz-transition: 0.1s ease-out;
  -o-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
}

.accordion-header span svg {
	width:25px;
	height:14px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-7px 0 0 -13px;
	display:block;

}

.active.accordion-header span {
  -webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -ms-transform:rotate(180deg);
  -o-transform:rotate(180deg);
  filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  background:#35d32f;
}

.active.accordion-header span svg {

}

.accordion-arrow {
	fill:#35d32f;
}

.active .accordion-arrow {
	fill:#fff;
}

.accordion-content {
  display:none;
}

.accordion-content.active {
  display:block;
}

.accordion-content .content {
  padding:0 60px 50px 120px;
}

#why-work-with-us .accordion-content p {
	width:auto;
	font-size:20px;
	line-height:28px;
	padding-left:0;
	margin:0;
}


/* TEAM */

#team {
	background:url("../images/team-background.webp") top center;
}

#team .container {
	padding-bottom:40px;
}

#team h2,
#team p {
	color:#000;
}

#team h2 {
	margin:0 0 15px 0;
}
#team h4 {
	color:#2b3bb2;
}

#team .two-columns {
	margin:0 0 100px 0;
}

#team .two-columns .col:nth-child(1) {
	width:515px;
}

#team .two-columns .col:nth-child(1) img {
	width:585px;
	margin-left:-100px;
	margin-top:-60px;
}

#team .two-columns .col:nth-child(2) {
	width:-webkit-calc(100% - 515px);
	width:-moz-calc(100% - 515px);
	width:calc(100% - 515px);
}

#team .inner-two-columns .inner-col:nth-child(1) {
	width:50%;
	padding-left:0;
}

#team .inner-two-columns .inner-col:nth-child(2) {
	width:50%;
	padding-right:0;
}

#team .button {
	border-color:#2b3bb2;
	color:#2b3bb2;
}

#team .button:hover {
	background:#2b3bb2;
	color:#fff;
}

#team .button:after {
	background:url("../images/arrow-blue.svg") no-repeat;
}

#team .button:hover:after {
	background:url("../images/arrow-white.svg") no-repeat;
}


/* FOOTER */

footer {
	position:relative;
	border-top:4px solid #d3eccd;
	padding-top:35px;
}

footer .social {
	position:absolute;
	top:30px;
	left:0;
}

footer img {
	width:35px;
	display:inline-block;
	margin:0 8px 0 0;
}

footer p {
	font-size:16px;
	line-height:24px;
	text-align:right;
}