/*Ivey Green: #034638*, RGB: R3, G70, B56 */
/*Possible custom burger icons: https://codepen.io/designcouch/pen/Atyop*/
/*Finesse Menu Animations: https://www.josh.ai/*/
/*Using multiple shapes in particles.js (bitcoins, $s, dots, etc.)*/
/*Finesse Calendar Application for Calendar Tab: https://www.raymondcamden.com/2017/02/24/an-example-of-a-static-site-with-a-dynamic-calendar*/
/*Finesse a Google Calendar Integration: https://support.google.com/calendar/answer/41207?hl=en*/

/*COLOR PALETTE:

Ivey Green:			#034638 | rgb(3,70,56)
Slate Gray:			#6B6D76 | rgb(107,109,118)
Zorba Brown:		#A69888 | rgb(166,152,136)
White:				#FFFFFF | rgb(255,255,255)
Wild Blue Yonder	#6982AD | rgb(105,130,173)	

*/

body,
html {
  height: 100%;
  margin: 0;
  /*  overflow-x: hidden;
  overflow-y: visible;*/
  font-family: Roboto;
  font-weight: 400;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/consulting/Pro-Bono_Consulting\ splash.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  background-attachment: fixed;
}

#typing-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-image: transparent;
  min-height: 500px;
}

.particles-section {
  position: relative;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50%;
  background-image: linear-gradient(transparent, black);
}

/* Patch that fixes a display bug associated with background-attachment: fixed not working on mobile Safari */
@media (max-width: 991.98px) {
  @supports (-webkit-overflow-scrolling: touch) {
    body,
    html {
      background-attachment: local;
      background-color: black;
    }
  }
}

.fade-out-section {
  position: relative;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-image: linear-gradient(black, transparent);
}

/* Start of navbar styles */

#mainNavbar {
  font-size: 1.25rem;
  font-weight: 300;
  background-color: transparent;
  transition: background 0.4s ease;
}

#mainNavbar.scrolled {
  background: #000;
}

#IveyFintechMainLogo {
  height: 40px;
  margin-top: 0.2rem;
  transition: all 1s ease;
  filter: none;
  -webkit-filter: none;
}

.nav-link {
  transition: all 1s ease;
}

.dropdown-item-text-color {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  transition: all 1s ease;
}

.dropdown-item-text-color:focus,
.dropdown-item-text-color:hover {
  text-decoration: underline;
  background-color: transparent;
  color: #fff;
}

.dropdown-menu {
  -webkit-transition: background 1s ease, max-height 0.5s, opacity 0.2s 0.1s,
    visibility 0s 0.3s;
  -moz-transition: background 1s ease, max-height 0.5s, opacity 0.2s 0.1s,
    visibility 0s 0.3s;
  -ms-transition: background 1s ease, max-height 0.5s, opacity 0.2s 0.1s,
    visibility 0s 0.3s;
  -o-transition: background 1s ease, max-height 0.5s, opacity 0.2s 0.1s,
    visibility 0s 0.3s;
  transition: background 1s ease, max-height 0.5s, opacity 0.2s 0.1s,
    visibility 0s 0.3s;

  border-color: transparent;
  border-bottom-left-radius: 4px;

  /* transition: background 1s ease;
  -webkit-transition: background 1s ease;
  -moz-transition: background 1s ease;
  -ms-transition: background 1s ease;
  -o-transition: background 1s ease; */

  padding: 0;
  margin: 0;

  max-height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-color: #000;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown.show .dropdown-menu {
  -webkit-transition: background 1s ease, max-height 0.5s, opacity 0.2s,
    visibility 0s;
  -moz-transition: background 1s ease, max-height 0.5s, opacity 0.2s,
    visibility 0s;
  -ms-transition: background 1s ease, max-height 0.5s, opacity 0.2s,
    visibility 0s;
  -o-transition: background 1s ease, max-height 0.5s, opacity 0.2s,
    visibility 0s;
  transition: background 1s ease, max-height 0.5s, opacity 0.2s, visibility 0s;

  /* transition: background 1s ease;
  -webkit-transition: background 1s ease;
  -moz-transition: background 1s ease;
  -ms-transition: background 1s ease;
  -o-transition: background 1s ease; */

  max-height: 190px;
  opacity: 1;
  visibility: visible;
}

/* End of nav-bar styling */

#typing-section .content-jumbosplash #mainHeader {
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  padding-top: 100px;
}
#typing-section .content-jumbosplash #mainSubheader {
  color: #fff;
  text-align: left;
  font-weight: 400;
  font-size: 4rem;
}

/* Cursor */
.typed-cursor {
  color: #fff;
  text-align: left;
  font-weight: 400;
  font-size: 4.5rem;
}

/* If fade out option is set */
.typed-fade-out {
  color: #fff;
  text-align: left;
  font-weight: 400;
  font-size: 4.5rem;
}

#typing-section .content-jumbosplash {
  text-align: left;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 40px rgba(0, 0, 0, 0.8),
    0px 0px 200px rgba(0, 0, 0, 1);
}

.particles-section .content-jumbosplash #mainPBHeader {
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  padding-top: 100px;
}

#club-proBono {
  background-color: black;
}

.headingSubGroup,
.headingSubGroupSpecial,
h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.headingGroup h4 {
  font-weight: 300;
  color: white;
}

.headingGroup-line {
  border-radius: 0.25px;
  border-color: black;
}

#bootstrap-overrides .missionStatement,
.border-left,
.headingGroup {
  border-width: 2px !important;
  font-weight: 300;
  line-height: 2;
}

.section-separator-dots {
  color: rgb(255, 255, 255);
  font-size: 200px;
  line-height: 0.3;
}

.company-logo {
  width: 200px;
  object-fit: cover;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.company-logo:hover {
  filter: none;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.team-icon {
  width: 125px;
  object-fit: cover;
  vertical-align: middle;
  margin: 5px;
}

.img-icon {
  width: 125px;
  height: 125px;
  object-fit: cover;
  object-position: 50% 0%;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
}

.tiny-description-wrap {
  font-size: 1rem;
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; 
}

.tiny-description {
  font-size: 1rem;
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.role-description {
  line-height: 2;
}

/*<--Responsive Media Queries-->*/

@media (max-width: 1200px) {
  #IveyFintechMainLogo {
    height: 50px;
  }
  #mainNavbar {
    background-color: #000000;
  }
}

@media (max-width: 1000px) {
  #typing-section .content-jumbosplash #mainSubheader {
    font-size: 3rem;
  }
  .typed-cursor {
    font-size: 3.5rem;
  }
  .typed-fade-out {
    font-size: 3.5rem;
  }
}

@media (max-width: 880px) {
  .missionStatement {
    font-size: 1.25rem;
  }
}

@media (max-width: 770px) {
  .particles-section .content-jumbosplash #mainPBHeader {
    font-size: 3.5rem;
  }
  #typing-section .content-jumbosplash #mainHeader {
    font-size: 3.5rem;
  }
  #typing-section .content-jumbosplash #mainSubheader {
    font-size: 2rem;
  }
  .typed-cursor {
    font-size: 2.5rem;
  }
  .typed-fade-out {
    font-size: 2.5rem;
  }
  .headingSubGroup,
  .headingSubGroupSpecial,
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-weight: 700;
    font-size: 1.5rem;
  }
}

@media (max-width: 880px) {
  .missionStatement {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .team-icon {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
}

@media (max-width: 575px) {
  #IveyFintechMainLogo {
    height: 35px;
  }
  .particles-section .content-jumbosplash #mainPBHeader {
    font-size: 2.5rem;
    margin-left: 15px;
  }
}

@media (max-width: 500px) {
  .headingGroup h1 {
    font-size: 1.75rem;
  }
  .headingGroup h4 {
    font-size: 1rem;
  }
  h2 {
    font-weight: 700;
    font-size: 1.25rem;
  }
}

@media (max-width: 470px) {
  #typing-section .content-jumbosplash #mainSubheader {
    font-size: 1.75rem;
  }
  .typed-cursor {
    font-size: 2rem;
  }
  .typed-fade-out {
    font-size: 2rem;
  }
  .headingSubGroup,
  .headingSubGroupSpecial,
  h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 470px) {
  #typing-section .content-jumbosplash #mainSubheader {
    font-size: 1.75rem;
  }
  .typed-cursor {
    font-size: 2rem;
  }
  .typed-fade-out {
    font-size: 2rem;
  }
}

@media (max-width: 440px) {
  #typing-section .content-jumbosplash #mainSubheader {
    font-size: 1.2rem;
  }
  .typed-cursor {
    font-size: 1.4rem;
  }
  .typed-fade-out {
    font-size: 1.4rem;
  }
  .headingSubGroup,
  .headingSubGroupSpecial,
  h1 {
    font-size: 1.5rem;
  }
}
