@charset "UTF-8";
body {
  font-family: "Cairo";
  background-color: #f6f6f6;
}

header .navbar-brand {
  --bs-navbar-brand-font-size: 3rem;
}
header #mainNav {
  justify-content: flex-end;
}

.green {
  color: #81c688;
}

body {
  font-family: "Cairo", sans-serif;
  color: #454545;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

a {
  color: #335134;
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

img {
  max-width: 100%;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  padding: 20px 0 10px;
  background-color: white;
  width: 100%;
  z-index: 1;
  box-shadow: 1px 1px 4px 0 #eeeeee;
}
header a, header a:hover {
  color: black;
}
header .navbar-brand {
  max-width: 70%;
}
header .logo {
  width: 220px;
  max-width: 100%;
}
header .nav-link {
  font-size: 16px;
  font-size: 1rem;
  color: #454545;
  font-weight: 600;
  padding: 20px 0 2px !important;
  margin: 0 10px 0 20px;
}
header .nav-link:hover, header .nav-link:active, header .nav-link:focus {
  color: black;
}
header .navbar-toggler {
  border: 0;
}
header .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}

footer {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  background-color: white;
  padding: 12px 0 18px;
}
footer a {
  color: inherit;
}
footer nav {
  margin-top: 10px;
}
footer nav a {
  margin-right: 16px;
}

input,
textarea {
  font-size: 16px;
  font-size: 1rem;
  padding: 4px 2px;
}
input:active, input:focus,
textarea:active,
textarea:focus {
  outline: none;
}

button,
.btn {
  font-size: 16px;
  font-size: 1rem;
  color: #454545;
  font-weight: 500;
  background-color: inherit;
  border: 1px solid #d5d5d5;
  padding: 6px 16px;
}
button:hover,
.btn:hover {
  color: black;
}

.btn-green {
  border: 1px solid #81c688;
}
.btn-green:hover {
  font-weight: 600;
  outline: 1px solid #81c688;
}

.hover-underline {
  position: relative;
}
.hover-underline::after {
  content: "";
  background-color: #81c688;
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hover-underline:hover::after {
  width: 100%;
  transition: width 200ms;
}

.hover-enclosed {
  position: relative;
  margin-left: 10px;
  margin-right: 16px;
}
.hover-enclosed::before {
  content: "<";
  opacity: 0;
  color: #81c688;
  position: absolute;
  left: -10px;
}
.hover-enclosed::after {
  content: "/>";
  opacity: 0;
  color: #81c688;
  position: absolute;
  right: -20px;
}
.hover-enclosed:hover::before {
  opacity: 1;
  transition: opacity 200ms;
}
.hover-enclosed:hover::after {
  opacity: 1;
  transition: opacity 200ms;
}

.main-container {
  min-height: 100vh;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-container > * {
  margin-bottom: 40px;
}

.form-group {
  margin-top: 16px;
}
.form-group input,
.form-group textarea {
  border: 1px solid #d5d5d5;
}
.form-group input:not([type=checkbox]).error,
.form-group textarea:not([type=checkbox]).error {
  border-color: #ee2727;
}
.form-group input,
.form-group select {
  width: 100%;
}
@media (min-width: 768px) {
  .form-group input,
  .form-group select {
    width: 300px;
  }
}
.form-group label {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #454545;
  display: block;
  margin-bottom: 2px;
}
.form-group label.error {
  font-size: 14px;
  font-size: 0.875rem;
  color: #ee2727;
}
.form-group.required > label:first-of-type::after {
  content: "*";
  position: relative;
  left: 4px;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #ee2727;
}

.checkbox-group label {
  display: inline;
}
.checkbox-group label.error {
  display: block;
  flex-grow: 1;
}

textarea {
  display: block;
  width: 100%;
}

.info-container {
  font-size: 16px;
  font-size: 1rem;
  padding: 20px 0;
  text-align: center;
  background-color: #f6f6f6;
}

.checkbox-group {
  display: flex;
}
.checkbox-group > label {
  margin-left: 6px;
  cursor: pointer;
}
.checkbox-group > input {
  position: relative;
  height: 18px;
  width: 18px;
  min-width: 18px;
  border: 1px solid #d5d5d5;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
  transition-duration: 0.3s;
  cursor: pointer;
}
.checkbox-group > input:checked {
  border: 1px solid #81c688;
}
.checkbox-group > input:checked::before {
  content: "✓";
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-align: center;
  color: #81c688;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.contact-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-main {
  padding-top: 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-main .contact-info-wrapper {
  order: 2;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
}
.contact-main .contact-info-wrapper .contact-info {
  height: auto;
  width: auto;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 0;
}
.contact-main .profile-wrapper {
  order: 1;
}
.contact-main .profile-wrapper img {
  border-radius: 50%;
  box-shadow: 5px 5px 18px -3px #454545;
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 576px) {
  .contact-main {
    width: 500px;
    display: block;
  }
  .contact-main .contact-info-wrapper .contact-info {
    border-radius: 50%;
    box-shadow: 5px 5px 18px -3px #454545;
    min-width: 360px;
    min-height: 360px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .contact-main .contact-info-wrapper .contact-info p {
    padding-left: 15%;
  }
  .contact-main .contact-info-wrapper span {
    color: #81c688;
  }
  .contact-main .profile-wrapper {
    display: flex;
    align-content: center;
    position: relative;
    top: -30px;
  }
  .contact-main .third-bubble-wrapper {
    display: flex;
    justify-content: center;
  }
  .contact-main .third-bubble-wrapper .third-bubble {
    font-size: 20px;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    border-radius: 50%;
    box-shadow: 5px 5px 18px -3px #454545;
    min-width: 80px;
    min-height: 80px;
    aspect-ratio: 1;
    position: relative;
    top: -50px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #81c688;
  }
}

.apps-row {
  justify-content: center;
  align-items: stretch;
  padding: 20px 0 30px;
}
.apps-row > div {
  margin-bottom: 20px;
}

.app-card {
  font-size: 16px;
  font-size: 1rem;
  color: inherit;
  font-weight: inherit;
  box-shadow: 2px 2px 10px 0 lightgray;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  background-color: #ffffff;
}
.app-card:hover {
  box-shadow: 2px 2px 10px 0 gray;
}
.app-card:hover .btn-green {
  font-weight: 600;
  outline: 1px solid #81c688;
}
.app-card .short-desc {
  text-align: center;
}
.app-card .application-deadline {
  font-size: 17px;
  font-size: 1.0625rem;
  color: white;
  font-weight: 600;
  text-align: center;
  background-color: #81c688;
  padding: 6px 0;
  margin-bottom: 20px;
}
.app-card.disabled {
  position: relative;
}
.app-card.disabled:hover:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background-color: #454545;
}
.app-card.disabled:hover .disabled-msg {
  display: block;
}
.app-card .disabled-msg {
  display: none;
  font-size: 18px;
  font-size: 1.125rem;
  color: white;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app-standalone .app {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.app {
  padding: 30px 20px;
}
.app h3 {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.app section {
  padding: 10px 0 0 0;
}
.app ul {
  list-style: none;
  padding-left: 0;
}
.app ul li::before {
  content: "> ";
  font-size: 18px;
  font-size: 1.125rem;
  color: #81c688;
  font-weight: 600;
}
.app .logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 0 30px;
}
.app .logos img {
  max-width: 200px;
  max-height: 70px;
}
.app .more {
  text-align: center;
}
.app .more .more-btn {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #454545;
  font-weight: bold;
}

.app h6,
h6.underline {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.app h6::after,
h6.underline::after {
  content: "";
  background-color: #81c688;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

[data-toggle=tooltip] {
  cursor: default;
}

.tooltip {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Cairo", sans-serif;
}

.sponsors {
  padding: 20px;
  text-align: center;
}

.banner {
  text-align: center;
  margin-bottom: 20px;
}
.banner img {
  opacity: 0.7;
  max-height: 420px;
  width: 100%;
  max-width: 2000px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.banner .full-size img {
  max-height: none;
}

.app-banner {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(#9dd3a4, white);
}
.app-banner img {
  width: 300px;
  max-width: 70%;
}
@media (min-width: 992px) {
  .app-banner img {
    width: 350px;
  }
}

.introduction {
  font-size: 17px;
  font-size: 1.0625rem;
  padding: 20px 0 30px 0;
  text-align: center;
}

.landing-page-container {
  padding: 50px 0;
}
.landing-page-container.success {
  font-size: 18px;
  font-size: 1.125rem;
  color: #507854;
}
.landing-page-container.fail {
  font-size: 18px;
  font-size: 1.125rem;
  color: #ee2727;
}

strong,
.highlight {
  text-decoration: none;
  font-weight: bold;
}

.app-type-info {
  padding: 20px 0 10px;
  padding-bottom: 0;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-style: italic;
}

.error-page-container {
  padding-top: 30px;
}
.error-page-container h1 {
  font-size: 42px;
  font-size: 2.625rem;
  color: black;
}

.thumb {
  max-height: 300px;
  overflow-y: scroll;
}

.mobile-thumb {
  max-height: 300px;
  overflow-y: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */