* {
  font-family: Rubik;
}

p {
  font-size: 18px;
}

h1.mid-heading {
  font-weight: 900;
  font-size: 64px;
  color: var(--heading);
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  h1.mid-heading {
    padding: 0 15px;
    font-size: 36px;
  }
}

.info-box h1 {
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .info-box h1 {
    padding: 0;
  }
}
.info-box p {
  margin-bottom: 2rem;
}
.info-box .tagline {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #192e3e;
}

section {
  margin-bottom: 140px;
}

.mid-speakers .mid-speaker {
  margin-bottom: 30px;
}
.mid-speakers .mid-speaker .speaker-name {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mid-speakers .mid-speaker .speaker-name strong {
  font-weight: 900;
}
.mid-speakers .mid-speaker .speaker-title {
  font-size: 16px;
  color: #000000;
}

.btn.btn-primary {
  --color: #8fc066;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 30px;
  background-color: var(--color);
  border: 1px solid var(--color);
  padding: 7px 30px;
}
.btn.btn-primary.warning {
  --color: #e58927;
  pointer-events: none;
}
.btn.btn-primary.error {
  --color: #e45a5a;
  pointer-events: none;
}
.btn.btn-primary.inactive {
  pointer-events: none;
}
.btn.btn-primary.success {
  --color: #3a8fcd;
  pointer-events: none;
}
.btn.btn-primary:focus, .btn.btn-primary:active {
  background-color: var(--color) !important;
  border-color: var(--color) !important;
  box-shadow: none !important;
}
.btn.btn-primary:hover {
  background: #fff;
  color: var(--color);
  border-color: var(--color);
}

.mid-expectations {
  margin-bottom: 50px;
}
.mid-expectations .mid-expectation {
  padding-top: 10px;
  margin-bottom: 24px;
}
.mid-expectations .mid-expectation:nth-child(1n) h1:before {
  background-color: #e58927;
}
.mid-expectations .mid-expectation:nth-child(2n) h1:before {
  background-color: #7fc258;
}
.mid-expectations .mid-expectation:nth-child(3n) h1:before {
  background-color: #e45a5a;
}
.mid-expectations .mid-expectation:nth-child(4n) h1:before {
  background-color: #3c8fcd;
}
.mid-expectations .mid-expectation h1.expectation-title {
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.2;
  padding-top: 10px;
}
.mid-expectations .mid-expectation h1.expectation-title:before {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 25%;
  height: 8px;
}
.form {
  margin: 0 auto;
}
.form .cta {
  color: #1b76ba;
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.form .btn {
  margin-top: 2rem;
  width: 100%;
}
.form .mid-input {
  padding-top: 15px;
  position: relative;
}
.form .mid-input label {
  font-size: 14px;
  color: #1b76ba;
  position: absolute;
  top: 17px;
  transition: top 400ms ease-in-out 0s;
  pointer-events: none;
}
.form .mid-input.active label {
  top: 0px;
}
.form .mid-input input {
  border: none;
  width: 100%;
  border-bottom: 1px solid #1b76ba;
  margin-bottom: 15px;
  background: transparent;
}
.form .mid-input input:focus {
  outline: none;
}

.mid-head {
  padding: 30px 50px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .mid-head {
    justify-content: center;
    margin-bottom: 30px;
  }
}
.mid-head .brand img {
  height: 80px;
  width: auto;
}
.mid-head .mid-menu {
  display: flex;
  align-items: center;
}
.mid-head .mid-menu ul {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
  margin-right: 25px;
}
.mid-head .mid-menu ul li {
  padding: 0 12.5px;
}
.mid-head .mid-menu ul li a {
  font-size: 14px;
  color: #1b76ba;
  text-transform: uppercase;
}
.mid-head .mid-menu ul li a:hover {
  text-decoration: none;
}

#partners {
  margin: 0;
  padding-bottom: 140px;
  position: relative;
  padding-top: 15%;
  overflow: hidden;
}
#partners .container:before {
  background: #3a8fcd;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  display: block;
  transform: translateY(10%);
  position: absolute;
}
@media screen and (max-width: 390px) {
  #partners .container:before {
    transform: translateY(7%);
  }
}
#partners .partners-backdrop {
  position: absolute;
  bottom: calc(100% - 44vw);
}

.mid-partners > div {
  text-align: center;
}
.mid-partners > div img {
  max-height: 140px;
  margin-bottom: 30px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 100%;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 100%;
  }
}
#register {
  position: relative;
  margin-top: 20px;
}
#register img.head-image {
  opacity: 0;
  -webkit-animation: 500ms ease-in 1000ms 1 forwards fadeIn;
          animation: 500ms ease-in 1000ms 1 forwards fadeIn;
}
#register .backdrop {
  left: -25%;
  height: 103%;
  z-index: -1;
  position: absolute;
  bottom: 0;
  -webkit-animation: 1s ease-in 100ms 1 forwards slideIn;
          animation: 1s ease-in 100ms 1 forwards slideIn;
}

.form-backdrop {
  position: absolute;
  top: -10%;
  width: 40%;
  z-index: -1;
  left: 50%;
}

#organization {
  margin-bottom: 50px;
}

.cta-ctn {
  position: fixed;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: 0.3s ease-in-out 0s;
}
.cta-ctn.active {
  transform: translateY(0%);
}
.cta-ctn .btn {
  width: 100%;
  border-radius: 0px;
}
