button.btn {
  background-image: linear-gradient(to right top, #1f5497, #0065a0, #0074a5, #0083a8, #1891a8);
  border: 1px solid #1f5497;
}

.btn {
  display: inline-flex;
  border: 0;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 54px;
  font-size: 16px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  background-image: linear-gradient(to right top, #e62d55, #eb384a, #ee443f, #ef5033, #ef5c26);
  border: 1px solid #e62d55;
  color: #fff;
  font-weight: 400;
  box-shadow: none !important;
  opacity: 0.8;
  margin-right: 15px;
  margin-bottom: 10px;
}
.btn.small {
  height: 45px;
  width: 155px;
  font-size: 16px;
  background-image: linear-gradient(to right top, #e62d55, #eb384a, #ee443f, #ef5033, #ef5c26);
  border: 1px solid #e62d55;
}
.btn.small:hover img {
  width: 12px;
}
.btn:hover {
  color: #fff;
}
.btn img {
  margin-left: 10px;
  width: 13px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  text-align: center;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
}
header img {
  width: 250px;
}
@media (max-width: 1366px) {
  header img {
    width: 235px;
  }
}

.hero-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-container::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background: rgba(43, 4, 125, 0.8);
  z-index: 2;
  background-size: cover;
  background-position: center;
}
.hero-container::after {
  content: "";
  background-image: url(../images/shutterstock_1361802728\ [Converted].png);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: 1;
}
@media (max-width: 1366px) {
  .hero-container::after {
    height: 450px;
    top: auto;
    bottom: 0;
    opacity: 0.7;
  }
}
.hero-container .text {
  color: #fff;
  position: relative;
  z-index: 2;
  width: 90%;
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 1706px) {
  .hero-container .text {
    padding-top: 100px;
  }
}
@media (max-width: 1366px) {
  .hero-container .text {
    padding-top: 80px;
  }
}
.hero-container .text h2 {
  font-size: 92px;
  font-weight: bold;
  text-shadow: 0 0.05rem 0.05rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 1366px) {
  .hero-container .text h2 {
    font-size: 62px;
  }
}
@media (max-width: 500px) {
  .hero-container .text h2 {
    font-size: 48px;
  }
}
.hero-container .text p {
  color: #fff;
  font-size: 24px;
  font-weight: 100;
  width: 950px;
  line-height: 1.45;
  max-width: 100%;
  text-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
  margin: auto;
  margin-bottom: 20px;
}
.hero-container .text p strong {
  font-size: 38px;
  font-weight: 500;
  font-family: "Migra";
}
@media (max-width: 1400px) {
  .hero-container .text p {
    font-size: 22px;
    line-height: 1.35;
  }
}
.hero-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
}

section.register_form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: flex;
  justify-content: flex-end;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s;
}
section.register_form .bg_img {
  position: absolute;
  bottom: -10%;
  left: -5%;
  transform: rotate(45deg);
  z-index: 2;
  width: 36vw;
  opacity: 0.1;
}
section.register_form.reveal {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
section.register_form .volunteer_text {
  width: 65%;
  padding: 80px;
  position: relative;
  z-index: 3;
}
section.register_form .volunteer_text h5 {
  font-size: 48px;
  font-weight: bold;
}
section.register_form .volunteer_text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  section.register_form .volunteer_text p {
    margin-bottom: 10px;
  }
}
section.register_form .form_box {
  width: 100%;
  height: 100%;
  background: #e7e4e5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  z-index: 3;
}
section.register_form .form_box .close_btn {
  position: absolute;
  top: 0;
  right: 0px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e62d55;
  color: #fff;
  font-size: 20px;
  z-index: 5;
}
section.register_form .form_box .close_btn:hover {
  cursor: pointer;
}
section.register_form .form_box .close_btn:hover i {
  transform: rotate(135deg);
}
section.register_form .form_box .close_btn i {
  transition: 0.45s;
  transform: rotate(45deg);
}
section.register_form .form_box .content {
  width: 35%;
  padding-right: 40px;
}
@media (max-width: 500px) {
  section.register_form .form_box {
    width: 100%;
  }
  section.register_form .form_box .close_btn {
    right: 0;
    left: auto;
  }
}
section.register_form .input-card {
  margin: 15px 0;
  width: 100%;
}
section.register_form .input-card label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
section.register_form .input-card input,
section.register_form .input-card textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bcbaba;
  border-radius: 4px;
  background: #e9e8e8;
}
section.register_form .input-card textarea {
  height: 150px;
}
section.register_form .input-card .btn {
  margin-top: 20px;
}

.event_dates {
  display: flex;
  margin: 40px 0;
  justify-content: center;
}
.event_dates .date {
  display: flex;
  margin-right: 30px;
}
.event_dates .date p {
  width: auto;
  text-align: left;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1;
}
.event_dates .date .img {
  width: 56px;
  height: 50px;
  border-radius: 50%;
  background: rgba(230, 45, 85, 0.1882352941);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  margin-right: 10px;
}
.event_dates .date img {
  width: 28px;
}
@media (max-width: 500px) {
  .event_dates .date .img {
    height: 40px;
  }
  .event_dates .date .img img {
    width: 22px;
  }
}

@media (max-width: 1600px) {
  section.register_form .input-card input,
  section.register_form .input-card textarea {
    padding: 8px;
  }
  section.register_form .input-card textarea {
    height: 100px;
  }
  section.register_form .input-card {
    margin: 10px 0;
  }
  section.register_form .volunteer_text {
    padding: 60px;
  }
}
@media (max-width: 500px) {
  .hero-container .text {
    padding-top: 180px;
  }
  .btn {
    width: 232px;
    margin-bottom: 15px;
  }
  section.register_form .bg_img {
    display: none;
  }
  section.register_form .volunteer_text {
    width: 100%;
    padding: 10px;
  }
  section.register_form .form_box {
    height: 100vh;
    overflow-y: scroll;
  }
  section.register_form .form_box .content {
    padding: 20px !important;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */