*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "MySemiBold" !important;
  width: 100vw;
  position: relative;
}

body,
html {
  overflow-x: hidden !important;
  width: 100vw;
  margin: 0;
  padding: 0;
  color: #00297c;
}

.myNavBar {
  margin-bottom: 20px;
  position: relative;
  z-index: 99;
}

.myNavContainer {
  max-width: 1320px !important;
  margin: auto;
  padding: 0px 0px;
  padding-bottom: 10px;
  margin-bottom: 0px;
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
}

.myContainer {
  max-width: 1320px !important;
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 0px;
  z-index: 99;
  display: flex;
  flex-wrap: wrap;

  padding-left: 13px;
  padding-right: 13px;
}

.registerDiv {
  margin-left: 15px;
}

#brand {
  content: url("/images/navbar/logoDark.svg");
  width: 200px;
  margin-top: 23px;
  display: inline-block;
}

.navList {
  float: left;
  padding: 24px 0px 0px 39px;
}

a {
  text-decoration: none;
  color: inherit;
}

.myNavLink {
  font-family: MyMed;
  cursor: pointer;

  --border-color: #00297c;
  --border-width: 2px;
  --bottom-distance: 0px;
  margin-right: 26px;
  display: inline-block;
  background-image: linear-gradient(var(--border-color), var(--border-color));
  background-size: 0% var(--border-width);
  background-repeat: no-repeat;
  transition: background-size 0.3s;
  background-position: 50% calc(100% - var(--bottom-distance));
  padding: 8px;
}

.myNavLink:hover,
.activeLink {
  color: #00297c;
  background-size: 100% var(--border-width);
}

.activeLink {
  font-family: MyBold;
}

.loginList {
  float: right;
  margin-left: auto;
  display: flex;
  padding-top: 20px;
  padding-right: 15px;
}

.myButtonLight {
  background-color: transparent;
  color: #00297c;
  padding: 10px 18px;
  border-radius: 8px;

  border: 2px solid #4ac3cd;
  font-family: MyBold;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s ease;
}

.myButtonLight:hover {
  background-color: #00297c;
  border-color: #00297c;
  color: white;
}

.blue {
  background-color: #4ac3cd;
  color: white;
}

.whiteNavbarWide {
  padding-bottom: 0px;
  background-color: white;
  border-bottom: 4px solid #e5eff5;
  box-shadow: 3px 0px 10px 5px rgb(0, 0, 0, 0.05);
}

.mobile {
  display: none;
}

#toggleButton {
  display: none;
  background-image: url("/images/navbar/toggleLight.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
  height: 18px;
  width: 18px;
  display: none;
}

.slideDown1 {
  animation: slideDown 1s ease-in-out 0s forwards;
}

.slideDown2 {
  animation: slideDown 1.5s ease-in-out 0s forwards;
}

.slideDown3 {
  animation: slideDown 2s ease-in-out 0s forwards;
}

.footerWrapper {
  background-color: #00297c;

  margin-top: 150px;
}

.footerContainer {
  color: white;
  padding-left: 20px;
  padding-right: 110px;
  height: 100%;
}

.footerBrand {
  padding-top: 60px;
  width: 100%;
  height: 125px;
}

.footerBrandImg {
  width: 270px;
}

.lowerPartWrapper {
  width: 100%;
  padding-top: 35px;
}

.footerBottom {
  border-top: 3px solid #4ac3cd;
  color: #4ac3cd;
  text-align: center;
  height: 60px;
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 20px;
  font-family: MyMed;
}

.footerLeft {
  float: left;
}

.footerRight {
  float: right;
}

.footerRow {
  width: 100%;
  position: relative;
  height: 180px;
}

.footerLeft1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 100%;
}

.footerLeft2 {
  position: absolute;
  top: 0;
  left: 350px;
  width: 20%;
  height: 100%;
}

.footerLeft3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
}

.footerNav {
  font-family: MyMed;
  margin-bottom: 10px;
}

.footerNav:hover {
  color: #4ac3cd;
}

.acitiveFooterNav {
  color: #4ac3cd;
}

.followUsDiv {
  font-size: 23px;
  font-family: MyMed;
}

.socialWrapper {
  display: flex;
  padding-top: 15px;
}

.socialLink {
  height: 47px;
  width: 47px;

  margin-right: 27px;

  background-image: url("/images/navbar/youtube.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@keyframes slideDown {
  0% {
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translateY(-0px);
    visibility: visible;
    opacity: 1;
  }
}

#navTrigger {
  position: absolute;
  top: 500px;
  opacity: 0;
}

@media (max-width: 1000px) {
  #registerButton {
    margin-left: 15px;
  }

  .myContainer {
    padding-left: 25px;
    padding-right: 25px;
  }

  .myNavContainer {
    padding: 20px 50px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  #brand {
    height: 25px;
    width: 120px;
    margin-top: 0;
  }

  #toggleButton {
    display: block;
    margin-left: auto;
  }

  .navList {
    display: none;
    padding: 0;
  }

  .displayNavList {
    display: block;
    width: 100vw;
  }

  .myNavLink {
    display: block;
    width: fit-content;
    color: white;
    font-family: MyMed;
    padding: 9px 0px;
    font-size: 15px;
    margin-top: 17px;
  }

  .expanded {
    background-color: #00297c;
    padding-bottom: 100vh;
  }

  .expanded #brand {
    content: url("/images/navbar/logoLight.png");
  }

  .expanded #toggleButton {
    background-image: url("/images/navbar/toggleDark.png");
  }

  .expanded .activeLink {
    --border-color: white;
  }

  #homeLink {
    margin-top: 50px;
  }

  .loginList {
    display: none;
  }

  .expanded .loginList {
    display: flex;

    width: 100%;
    padding-top: 40px;
  }

  .expanded .blue {
    border-radius: 3px;
    font-family: MySemiBold;
    background-color: #4ac3cd;
    color: white;
    border-color: #4ac3cd;
    padding: 10px 6vw;
  }

  .myButtonLight {
    background-color: #e5eff5;
    border-color: #e5eff5;
    border-radius: 3px;
    font-size: 15px;
    font-family: MySemiBold;
    padding: 10px 10vw;
  }

  .mnavSignUp {
    margin-right: auto;
  }

  @keyframes slideDown {
    0% {
      transform: translateY(-20px);
      visibility: hidden;
      opacity: 0;
    }

    100% {
      transform: translateY(-0px);
      visibility: visible;
      opacity: 1;
    }
  }

  .whiteNavbarWide {
    padding-bottom: 0px;
    margin-bottom: 0;
    background-color: white;
    border-bottom: none;
    box-shadow: none;
  }

  .footerLeft1,
  .footerLeft2 {
    display: none !important;
  }

  .footerLeft3 {
    position: relative;
    display: block;
    margin: auto;
  }

  .socialLink {
    margin: 10px 10px;
  }

  .followUsDiv {
    text-align: center;
  }

  .socialWrapper {
    justify-content: center;
  }

  .footerContainer {
    margin-bottom: 0;
  }

  .footerWrapper {
    margin-top: 20px;
  }

  .footerBrand {
    padding-top: 10px;
    height: 50px;
  }

  .footerBrandImg {
    width: 170px;
    margin: auto;
    display: block;
  }

  .lowerPartWrapper {
    padding-top: 0;
  }

  .followUsDiv {
    display: none;
  }

  .footerRow {
    height: 100px;
  }

  .footerBottom {
    /* height: 20px;
    padding-top: 5px;
    border-top: #4ac3cd solid 1px;
    font-size: 16px; */
    display: none;
  }
}

div.blue.disabledButton {
  background-color: rgb(211, 211, 211);
  pointer-events: none;
  color: #9ea2aa;
  border-color: rgb(211, 211, 211);
}
