@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

.team {
  display: block;
  float: left;
  clear: none;
  background-color: white;
  border-radius: 1em;
  position: relative;
  cursor: pointer;
}

.team2 {
  display: block;
  float: left;
  clear: none;
  background-color: white;
  border-radius: 1em;
  position: relative;
  cursor: pointer;
}

.team3 {
  display: block;
  float: left;
  clear: none;
  background-color: white;
  border-radius: 1em;
  position: relative;
  cursor: pointer;
}

.team-right {
  width: calc(100% - 3em);
  height: auto;
  display: block;
  float: left;
  clear: none;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  text-align: right;
}

.team-right p {
  float: right;
}

.team-right h4 {
  font-weight: bolder;
}

.team-left {
  width: 100%;
  height: 60%;
  display: block;
  float: left;
  clear: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  transform-origin: top center;
}

.country {
  float: right;
  width: 1.7em;
  height: 1.7em;
  background-position: center;
  background-size: cover;
  border-radius: 1.5em;
  background-color: rgba(166, 166, 166, 1);
  clear: both;
  display: block;
}

#ghana {
  background-image: url();
}

#england {
  background-image: url("../img/country-flags/england.png");
}

.team:hover {
  background-color: #e3ecec;
}

.team:hover .team-left {
  height: 62.5%;
}

/*team Popup*/

.sp-container .team-right {
  width: calc(100% - 3em);
  height: auto;
  display: block;
  float: left;
  clear: none;
  position: relative;
  top: auto;
  right: auto;
  text-align: left;
  margin: 1em auto auto;
  overflow-y: scroll;
}

.sp-container .team-right p {
  float: left;
}

.sp-container .team-right h4 {
  font-weight: bold;
}

.sp-container .team-left {
  width: 100%;
  height: 50vh;
  display: block;
  float: left;
  clear: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  z-index: 10;
  bottom: auto;
  left: auto;
  transition: all 0.3s;
  transform-origin: top center;
}

.sp-container .country {
  float: left;
}

.teamtopics {
  width: 100%;
  display: block;
  float: left;
  clear: none;
  margin: 1em auto;
}

/*team Popup*/

/*teams Page*/

.teamslist {
  width: 90%;
  height: auto;
  float: left;
  clear: both;
  margin: auto 5%;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 1em 1em;
  grid-template-areas: ". .";
}

.speak-title {
  border-radius: 1em;
  display: block;
  float: left;
  clear: none;
  background-color: #21b19c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.speak-title h2 {
  color: #fff;
  rotate: -90deg;
  width: auto;
  height: auto;
}

.teamslist .team {
  height: 65vh;
  width: 100%;
  border-radius: 1em;
  display: block;
  float: left;
  clear: none;
  margin: auto auto 1em auto;
  transition: all 0.3s;
  overflow: hidden;
  font-size: 0.9em;
}

.teamslist .team-left {
  background-position: top center;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
  .team {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team2 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team3 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team-right {
    width: calc(100% - 3em);
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    text-align: right;
  }

  .team-right p {
    float: right;
  }

  .team-right h4 {
    font-weight: bold;
  }

  .team-left {
    width: 100%;
    height: 60%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .country {
    float: right;
    width: 2.5em;
    height: 2.5em;
    background-position: center;
    background-size: cover;
    border-radius: 1.5em;
    background-color: rgba(166, 166, 166, 1);
    clear: both;
    display: block;
  }

  #ghana {
    background-image: url();
  }

  #england {
    background-image: url("../img/country-flags/england.png");
  }

  .team:hover {
    background-color: #e3ecec;
  }

  .team:hover .team-left {
    height: 62.5%;
  }

  /*team Popup*/

  .sp-container .team-right {
    width: calc(100% - 3em);
    height: calc(100% - 5em);
    display: block;
    float: left;
    clear: none;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    margin: 5em auto auto;
    overflow-y: scroll;
  }

  .sp-container .team-right p {
    float: left;
  }

  .sp-container .team-right h4 {
    font-weight: bold;
  }

  .sp-container .team-left {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 10;
    bottom: auto;
    left: auto;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .sp-container .country {
    float: left;
  }

  .teamtopics {
    width: 100%;
    display: block;
    float: left;
    clear: none;
    margin: 1em auto;
  }

  /*team Popup*/

  /*teams Page*/

  .teamslist {
    width: 90%;
    height: auto;
    float: left;
    clear: both;
    margin: auto 5%;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". .";
  }

  .speak-title {
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    background-color: #21b19c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .speak-title h2 {
    color: #fff;
    rotate: -90deg;
    width: auto;
    height: auto;
  }

  .teamslist .team {
    height: 65vh;
    width: 100%;
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    margin: auto auto 1em auto;
    transition: all 0.3s;
    overflow: hidden;
    font-size: 0.9em;
  }

  .teamslist .team-left {
    background-position: top center;
  }
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  .team {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team2 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team3 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team-right {
    width: calc(100% - 3em);
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    text-align: right;
  }

  .team-right p {
    float: right;
  }

  .team-right h4 {
    font-weight: bold;
  }

  .team-left {
    width: 100%;
    height: 60%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .country {
    float: right;
    width: 2.5em;
    height: 2.5em;
    background-position: center;
    background-size: cover;
    border-radius: 1.5em;
    background-color: rgba(166, 166, 166, 1);
    clear: both;
    display: block;
  }

  #ghana {
    background-image: url();
  }

  #england {
    background-image: url("../img/country-flags/england.png");
  }

  .team:hover {
    background-color: #e3ecec;
  }

  .team:hover .team-left {
    height: 62.5%;
  }

  /*team Popup*/

  .sp-container .team-right {
    width: calc(100% - 3em);
    height: calc(100% - 5em);
    display: block;
    float: left;
    clear: none;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    margin: 5em auto auto;
    overflow-y: scroll;
  }

  .sp-container .team-right p {
    float: left;
  }

  .sp-container .team-right h4 {
    font-weight: bold;
  }

  .sp-container .team-left {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 10;
    bottom: auto;
    left: auto;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .sp-container .country {
    float: left;
  }

  .teamtopics {
    width: 100%;
    display: block;
    float: left;
    clear: none;
    margin: 1em auto;
  }

  /*team Popup*/

  /*teams Page*/

  .teamslist {
    width: 90%;
    height: auto;
    float: left;
    clear: both;
    margin: auto 5%;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . .";
  }

  .speak-title {
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    background-color: #21b19c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .speak-title h2 {
    color: #fff;
    rotate: -90deg;
    width: auto;
    height: auto;
  }

  .teamslist .team {
    height: 65vh;
    width: 100%;
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    margin: auto auto 1em auto;
    transition: all 0.3s;
    overflow: hidden;
    font-size: 0.9em;
  }

  .teamslist .team-left {
    background-position: top center;
  }
}

/* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
  .team {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team2 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team3 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team-right {
    width: calc(100% - 3em);
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    text-align: right;
  }

  .team-right p {
    float: right;
  }

  .team-right h4 {
    font-weight: bold;
  }

  .team-left {
    width: 100%;
    height: 60%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .country {
    float: right;
    width: 2.5em;
    height: 2.5em;
    background-position: center;
    background-size: cover;
    border-radius: 1.5em;
    background-color: rgba(166, 166, 166, 1);
    clear: both;
    display: block;
  }

  #ghana {
    background-image: url();
  }

  #england {
    background-image: url("../img/country-flags/england.png");
  }

  .team:hover {
    background-color: #e3ecec;
  }

  .team:hover .team-left {
    height: 62.5%;
  }

  /*team Popup*/

  .sp-container .team-right {
    width: calc(100% - 3em);
    height: calc(100% - 5em);
    display: block;
    float: left;
    clear: none;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    margin: 5em auto auto;
    overflow-y: scroll;
  }

  .sp-container .team-right p {
    float: left;
  }

  .sp-container .team-right h4 {
    font-weight: bold;
  }

  .sp-container .team-left {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 10;
    bottom: auto;
    left: auto;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .sp-container .country {
    float: left;
  }

  .teamtopics {
    width: 100%;
    display: block;
    float: left;
    clear: none;
    margin: 1em auto;
  }

  /*team Popup*/

  /*teams Page*/

  .teamslist {
    width: 90%;
    height: auto;
    float: left;
    clear: both;
    margin: auto 5%;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . .";
  }

  .speak-title {
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    background-color: #21b19c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .speak-title h2 {
    color: #fff;
    rotate: -90deg;
    width: auto;
    height: auto;
  }

  .teamslist .team {
    height: 65vh;
    width: 100%;
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    margin: auto auto 1em auto;
    transition: all 0.3s;
    overflow: hidden;
    font-size: 0.9em;
  }

  .teamslist .team-left {
    background-position: top center;
  }
}

/* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {
  .team {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team2 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team3 {
    display: block;
    float: left;
    clear: none;
    background-color: white;
    border-radius: 1em;
    position: relative;
    cursor: pointer;
  }

  .team-right {
    width: calc(100% - 3em);
    height: auto;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    text-align: right;
  }

  .team-right p {
    float: right;
  }

  .team-right h4 {
    font-weight: bold;
  }

  .team-left {
    width: 100%;
    height: 60%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .country {
    float: right;
    width: 2.5em;
    height: 2.5em;
    background-position: center;
    background-size: cover;
    border-radius: 1.5em;
    background-color: rgba(166, 166, 166, 1);
    clear: both;
    display: block;
  }

  #ghana {
    background-image: url();
  }

  #england {
    background-image: url("../img/country-flags/england.png");
  }

  .team:hover {
    background-color: #e3ecec;
  }

  .team:hover .team-left {
    height: 62.5%;
  }

  /*team Popup*/

  .sp-container .team-right {
    width: calc(100% - 3em);
    height: calc(100% - 5em);
    display: block;
    float: left;
    clear: none;
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    margin: 5em auto auto;
    overflow-y: scroll;
  }

  .sp-container .team-right p {
    float: left;
  }

  .sp-container .team-right h4 {
    font-weight: bold;
  }

  .sp-container .team-left {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
    clear: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    z-index: 10;
    bottom: auto;
    left: auto;
    transition: all 0.3s;
    transform-origin: top center;
  }

  .sp-container .country {
    float: left;
  }

  .teamtopics {
    width: 100%;
    display: block;
    float: left;
    clear: none;
    margin: 1em auto;
  }

  /*team Popup*/

  /*teams Page*/

  .teamslist {
    width: 85%;
    height: auto;
    float: left;
    clear: both;
    margin: auto 7.5%;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 1em 1em;
    grid-template-areas: ". . . . .";
  }

  .speak-title {
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    background-color: #21b19c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .speak-title h2 {
    color: #fff;
    rotate: -90deg;
    width: auto;
    height: auto;
  }

  .teamslist .team {
    height: 65vh;
    width: 100%;
    border-radius: 1em;
    display: block;
    float: left;
    clear: none;
    margin: auto auto 1em auto;
    transition: all 0.3s;
    overflow: hidden;
    font-size: 0.9em;
  }

  .teamslist .team-left {
    background-position: top center;
  }
}

/* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
}
/* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
}
