@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
* {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

body {
  margin: 0px;
}

header {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #c4c4c4bf;
  height: 100px;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
  z-index: 5;
}

html:not([data-scroll='0']) header {
  background: #c4c4c4;
}

html:not([data-scroll='0']) .logo img {
  width: 150px;
}

html:not([data-scroll='0']) .logo-bkg-short,
html:not([data-scroll='0']) .logo-bkg {
  opacity: 0;
}

@media only screen and (max-width: 1425px) {
  header {
    height: 130px;
  }
  .logo-bkg {
    display: none;
  }
  .logo-bkg-short {
    display: block !important;
  }
  html:not([data-scroll='0']) .logo img {
    width: 195px;
    margin-right: 85px;
  }
  .section1 {
    margin-top: calc(50vh - 130px) !important;
  }
}

@media only screen and (max-width: 550px) {
  .logo-bkg-short {
    display: none !important;
  }
  .logo img {
    margin-top: 20px;
    margin-left: 25px !important;
    width: 140px !important;
  }
}

header ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-decoration: none;
  list-style-type: none;
  margin-top: 45px;
  margin-right: 20px;
}

@media only screen and (max-width: 965px) {
  header > ul {
    display: none;
  }
}

header li a {
  padding: 5px 25px;
  color: #2d2d2d;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
}

header li a:hover {
  color: black;
}

.filler {
  flex: 1;
}

.logo {
  z-index: 10;
}

.logo img {
  margin-left: 25px;
  width: 280px;
  -webkit-transition: width 0.2s, margin 0.2s;
  -moz-transition: width 0.2s, margin 0.2s;
  -o-transition: width 0.2s, margin 0.2s;
  transition: width 0.2s, margin 0.2s;
}

.logo svg {
  position: absolute;
  left: 0px;
  z-index: -1;
}

.logo-bkg {
  top: 100px;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.logo-bkg-short {
  display: none;
  top: 130px;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.hero img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50vh;
  z-index: -1;
  object-fit: cover;
  object-position: bottom;
  -webkit-transition: opacity 600ms ease-out;
  -moz-transition: opacity 600ms ease-out;
  -o-transition: opacity 600ms ease-out;
  transition: opacity 600ms ease-out;
}

.section1 > .mt-leaders-container {
  position: relative;
  width: 40%;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 100%;
}

.mt-leaders-pic {
  position: absolute;
  max-width: 85%;
  bottom: 0;
  z-index: -100;
  max-height: 100%;
  -webkit-transition: opacity 600ms ease-out;
  -moz-transition: opacity 600ms ease-out;
  -o-transition: opacity 600ms ease-out;
  transition: opacity 600ms ease-out;
}

.home-page-alert {
  position: absolute;
  top: calc(50vh);
  margin: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  z-index: 4;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.home-page-alert .container {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  color: white;
  background: #f24747;
}

.home-page-alert img {
  width: 1.1rem;
  margin-right: 0.5rem;
}

.home-page-alert a {
  color: white;
}

.section1 {
  height: 50vh;
  margin-top: calc(50vh - 100px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.section1 > div {
  padding: 50px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section1 h1 span {
  font-weight: bold;
  color: black;
}

@media only screen and (max-width: 1559px) {
  .section1 {
    height: unset !important;
  }
  .section1 > .mt-leaders-container {
    height: 250px;
    margin-top: -50px;
  }

  .mt-leaders-pic {
    width: unset;
    max-width: 100%;
  }
}

@media only screen and (max-width: 870px) {
  .section1 > .mt-leaders-container {
    width: 70%;
  }
}

h2 {
  font-weight: normal;
  font-size: 30px;
  color: #2d2d2d;
  margin: 15px;
  text-align: center;
}

h1 {
  font-weight: normal;
  font-size: 55px;
  color: #2d2d2d;
  margin: 15px;
  text-align: center;
}

@media only screen and (max-width: 842px) {
  h1 {
    font-size: 45px;
    margin: 12px 10px;
  }
  h2 {
    font-size: 25px;
    margin: 12px 10px;
  }
  button {
    margin-top: 20px !important;
    font-size: 22px !important;
  }
  .section3 {
    padding: 4em 10% !important;
  }
  .circle {
    max-height: 463px !important;
  }
}

@media only screen and (max-width: 487px) {
  h1 {
    font-size: 34px;
    margin: 12px 10px;
  }
  h2 {
    font-size: 18px;
    margin: 12px 10px;
  }
  button {
    margin-top: 20px !important;
    font-size: 20px !important;
    padding: 10px 35px !important;
    background: #eb9002;
  }
  .bubble {
    padding: 25px;
  }
  .bubble p {
    font-size: 1em !important;
  }
  .bubble img {
    width: 90px !important;
    top: -45px !important;
  }
  .circle {
    max-height: 270px !important;
  }
}

@media only screen and (max-width: 400px) {
  .bubble {
    padding: 20px;
    min-width: 180px !important;
  }
  .bubble:last-of-type {
    margin-top: 50px !important;
  }
  .bubble p {
    font-size: 1em !important;
    margin-top: 1.5em !important;
  }
  .bubble img {
    width: 80px !important;
    top: -40px !important;
  }
  .section2 {
    padding: 30px !important;
  }
}

button {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background: #eb9002;
  border: none;
  cursor: pointer;
  margin-top: 25px;
  font-size: 28px;
  border-radius: 15px;
  padding: 11px 45px;
  color: white;
  border: 2px solid #eb9002;
  -webkit-transition: transform 0.3s, color 0.3s, background 0.3s;
  -moz-transition: transform 0.3s, color 0.3s, background 0.3s;
  -o-transition: transform 0.3s, color 0.3s, background 0.3s;
  transition: transform 0.3s, color 0.3s, background 0.3s;
}

button:hover {
  color: #eb9002;
  background: white;
}

.section2 {
  background: #8ec552;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 70px;
  z-index: 100;
}

.bubble {
  flex: 1;
  position: relative;
  max-width: 450px;
  min-width: 280px;
  background: linear-gradient(#fffdfd, #ebebeb);
  margin: 40px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px rgb(0, 0, 0, 25%);
}

@media only screen and (max-width: 1038px) {
  .bubble:last-of-type {
    margin-top: 90px;
  }
}

.bubble p {
  font-size: 1.5em;
  color: #0a0a0a;
  margin-top: 1.5em;
  margin-bottom: 0px;
}

.bubble img {
  position: absolute;
  top: -55px;
  width: 110px;
}

.section3 {
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding: 110px 10%;
  z-index: 100000;
}

.circle {
  max-width: 1000px;
  width: 100%;
  overflow: visible;
  height: auto;
}

.hoverable1:hover ~ .circle1 {
  transform: scale(1.1) translate(-19px, -12px);
}

.hoverable2:hover ~ .circle2 {
  transform: scale(1.1) translate(-65px, -5px);
}

.hoverable3:hover ~ .circle3 {
  transform: scale(1.1) translate(-74px, -39px);
}

.hoverable4:hover ~ .circle4 {
  transform: scale(1.1) translate(-28px, -50px);
}

.circle1,
.circle2,
.circle3,
.circle4 {
  -webkit-transition: filter 300ms ease, transform 100ms linear;
  -moz-transition: filter 300ms ease, transform 100ms linear;
  -o-transition: filter 300ms ease, transform 100ms linear;
  transition: filter 300ms ease, transform 100ms linear;
}

.section4 {
  background: #f6f6f6;
  padding: 70px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 541px) {
  .actions div svg {
    width: 90px !important;
  }
  .actions div p {
    width: 100px !important;
  }
  .actions > div {
    margin: 20px 25px !important;
  }
}

.actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin-top: 30px;
}

.actions div {
  margin: 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.actions div svg {
  cursor: pointer;
  width: 110px;
  margin: 0 auto;
  overflow: visible;
}

.actions div svg:hover circle {
  fill: #fff8f3;
  -webkit-transition: fill 0.3s;
  -moz-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
  stroke: #eb9002;
  stroke-width: 2px;
}

.actions div .green-svg:hover circle {
  stroke: #8ec552;
}

.actions div svg:hover path:not(.no-change) {
  fill: #eb9002;
  -webkit-transition: fill 0.3s;
  -moz-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.actions div .green-svg:hover path:not(.no-change) {
  fill: #8ec552;
}

.actions div svg:hover path.no-change {
  fill: #fff8f3;
  -webkit-transition: fill 0.3s;
  -moz-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.actions div p {
  cursor: pointer;
  text-align: center;
  width: 110px;
}

.actions div p a {
  text-decoration: none;
  color: #2d2d2d;
}

.actions div p a:hover {
  text-decoration: underline;
}

.actions div a:hover ~ p > a {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #d1d1d1;
  padding: 1em 4em;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  flex-wrap: wrap;
}

.footer-container p {
  font-size: 0.9em;
}

.legal {
  text-decoration: underline;
  cursor: pointer;
}

.facebook {
  width: 50px;
  cursor: pointer;
}

/* Hamburger Menu */

.hamburger {
  display: none;
  margin-right: 45px;
}

@media only screen and (max-width: 965px) {
  .hamburger {
    display: initial;
  }
}

#nav-icon {
  width: 60px;
  height: 45px;
  position: relative;
  padding: 0;
  margin: 40px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 100;
}

#nav-icon span {
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  height: 9px;
  width: 100%;
  background: #2d2d2d;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 18px;
}

#nav-icon span:nth-child(4) {
  top: 36px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 1px;
  height: 1px;
  z-index: 50;
  background: #c4c4c4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: width 400ms ease, height 400ms ease;
  -moz-transition: width 400ms ease, height 400ms ease;
  -o-transition: width 400ms ease, height 400ms ease;
  transition: width 400ms ease, height 400ms ease;
}

#menu.open {
  width: 100%;
  height: 100%;
}

#menu ul {
  flex-direction: column;
  text-align: center;
  display: flex;
  padding: 0px;
  margin: 0px;
  opacity: 0;
  z-index: -50;
  -webkit-transition: opacity 200ms;
  -moz-transition: opacity 200ms;
  -o-transition: opacity 200ms;
  transition: opacity 200ms;
  pointer-events: none;
}

#menu.open ul {
  -webkit-transition: opacity 500ms 400ms;
  -moz-transition: opacity 500ms 400ms;
  -o-transition: opacity 500ms 400ms;
  transition: opacity 500ms 400ms;
  opacity: 1;
  z-index: 50;
  pointer-events: all;
}

#menu ul li a {
  display: block;
  font-size: 30px;
  padding: 17px;
}

#signInPopup {
  display: none;
  position: fixed;
  width: 35rem;
  max-width: 95%;
  top: 30%;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  background: white linear-gradient(#a1a1a1, #a1a1a1) no-repeat center/1px 67%;
  border-radius: 0.8rem;
  box-shadow: 0px 4px 26px 1px rgba(0, 0, 0, 0.25);
  flex-direction: row;
  z-index: 100;
}

#signInPopup > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 2rem;
}

#signInPopup p {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0;
}

#signInPopup img {
  max-width: 100%;
  margin: 1rem 0;
}

#signInPopup div:first-child img {
  margin: 0 2.5rem;
}

#signInPopup button {
  font-size: 1.2rem;
  padding-left: 20px;
  padding-right: 20px;
  align-self: center;
}

@media only screen and (max-width: 454px) {
  #signInPopup button {
    font-size: 1rem !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #signInPopup div:first-child img {
    margin: 0 1.5rem;
  }
}
