html,
body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}

body {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c6e5dd;
  padding-top: 5rem;
}

.graphic-holder {
  background: url(../images/official_design.svg);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: visible;
}

footer {
  position: relative;
  bottom: 0;
  margin-bottom: 0;
  width: 100%;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  background-color: #24bca4;
  /* border-top: 2px solid #212529; */
}
.img-thumbnail {
  background: transparent;
  padding: 0;
}
.navbar {
  background-color: #24bca4;
  /* border-bottom: solid 2px #212529; */
  margin-bottom: 10px;
}

.nav-link {
  color: white;
  white-space: nowrap;
  font-size: 1.05rem;
  font-family: "Montserrat", sans-serif;
}

.nav-link:hover {
  background-color: white;
  color: #212529;
}

.navbar-brand {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}

.navbar-brand:hover .fa-lightbulb {
  color: #ffc107;
}

.navbar-brand:hover .bi-kanban {
  color: darksalmon;
}

.navbar-toggler {
  border: none;
  background: none;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: white 2px solid;
}

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

.text-card {
  margin-right: 1vw;
  display: flex;
  justify-content: baseline;
}

div {
  z-index: 1;
}

#signup {
  margin-left: 12vw;
}
#landing-content {
  position: relative;
  left: 10%;
}
#landing-description {
  font-size: 1.2rem;
  color: #212529;
  padding-top: 20%;
}
/* Changed Positioning of description div and landing image */
div > #landing-description {
  padding-right: 1.5rem;
}
.landing-image {
  position: relative;
  height: 100% !important;
  width: 100% !important;
}

#countdown-timer {
  font-size: 3.5rem;
  color: #212529;
  background: none;
  display: inline-block;
  transition: margin-left 0.3s cubic-bezier(0, 1, 0, 1);
}

#countdown-signup-timer {
  font-size: 2.3rem;
  color: #212529;
  background: none;
  display: inline-block;
}

canvas {
  width: 100%;
  height: 100%;
  display: flexbox;
  left: 0;
  position: absolute;
  top: 0;
}

.signup-button {
  min-width: 300px;
  min-height: 60px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
}

.signup-button::before {
  content: "";
  border-radius: 1000px;
  min-width: calc(300px + 4px);
  min-height: calc(60px + 4px);
  border: 2px solid #343a40;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.signup-button:hover,
.signup-button:focus {
  color: #343a40;
  transform: translateY(-6px);
}

.signup-button:hover::before,
.signup-button:focus::before {
  opacity: 1;
}

.signup-button::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #ffc107;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.signup-button:hover::after,
.signup-button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }

  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
.btn {
  background-color: #24bca4;
}
.btn-link {
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

.collaborators-title-text {
  color: #212529;
}

#sign-up-form {
  z-index: 1;
  border: #212529 solid 2px;
}

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 40%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#main-navigation {
  margin-left: 3rem;
}

.card-img-top {
  object-fit: contain;
}

.card-body {
  margin-top: 1.5em;
}

.accordion-body i {
  color: #ffc107;
}

.accordion-header i {
  color: #0dcaf0;
}

#whatisdopm {
  padding-right: 2em;
}

.cbtn {
  background-color: gold;
}

@media only screen and (max-width: 992px) {
  .map-container {
    padding-top: 95%;
  }
  .landing-image {
    display: none;
  }
  #landing-description {
    padding-top: 0%;
  }
  #landing-description > p {
    padding-right: 15%;
  }
  #main-navigation {
    margin-left: 0;
  }

  #signup {
    margin-left: 0;
  }

  #whatisdopm {
    font-size: 1.5rem;
    text-align: center;
    padding: 12px;
  }
  .graphic-holder {
    background: transparent;
  }
  #landing-content {
    position: relative;
    left: 0%;
    padding-left: 15%;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 0.7rem;
  }
  .form-cont {
    height: 50rem;
  }
  #countdown-signup-timer {
    font-size: 1.5rem;
  }

  #countdown-timer {
    font-size: 2rem;
  }

  #landing-description {
    font-size: 1.5rem;
    text-align: center;
    padding-top: 0px;
  }

  .form-cont {
    height: 50rem;
  }

  .card {
    height: 30rem !important;
  }

  .card-body {
    max-height: 25%;
  }

  .card-img-top {
    height: 100%;
  }

  #whatisdopm > * {
    font-size: 1.5rem;
    text-align: center;
    padding: 0px;
  }

  .card-img-top {
    padding: 20px;
    object-fit: contain;
  }

  .card-title {
    white-space: nowrap;
  }
  .graphic-holder {
    background: transparent;
  }

  .card-title {
    white-space: nowrap;
  }
  #whatisdopm > * {
    font-size: 1.5rem;
    text-align: center;
    padding: 0%;
  }
  #landing-content {
    position: relative;
    left: 0%;
    padding-left: 20%;
  }
}
/* Small  */
@media only screen and (max-width: 576px) {
  #whatisdopm > * {
    font-size: 1.5rem;
    text-align: center;
    padding: 0px;
  }
  #landing-content {
    position: relative;
    left: 0%;
    padding-left: 20%;
  }

  #countdown-signup-timer {
    font-size: 1rem;
  }
  #landing-description > p {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 576px) {
  #whatisdopm > * {
    font-size: 1.5rem;
    text-align: center;
    padding: 0px;
  }
}

strong {
  font-weight: bolder;
  color: #24bca4;
}

.contact-info {
  font-size: 1.1rem;
}
.contact-info a {
  font-size: 0.9rem;
  color: lightsalmon;
}
.contact-info div {
  font-size: 1.1rem;
}
