@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

:root {
    --background-color: white;
    --body-color: #373737;
    --primary-color: #FD8C9D;
    --placeholder-color: #8F8F8F;

    --danger-color: #e74c3c;
}

* {
    font-family: "Nunito", "sans-serif";
    color: var(--body-color);
}

html, body {
    margin: 0;
    padding: 0;
}
.navbar {
    padding: 15px 30px;
}
.navbar > .brand {
    font-weight: 900;
    font-size: 30px;
}

.hero {
    width: 100%;
    height: 350px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

    text-align: center;
}

.hero > .title {
    font-weight: 700;
    font-size: 30px;
    position: relative;
}

.hero > .title > .highlight {
    text-decoration: underline dotted;
    text-decoration-thickness: 4px;
    text-decoration-color: var(--primary-color);
   -webkit-text-decoration-line:  underline !important;
   -webkit-text-decoration-color: var(--primary-color) !important;
   -webkit-text-decoration-style: dotted !important;
   -webkit-text-decoration-thickness: 4px !important;
}

.hero > .title > .arrow {
    position: absolute;
    top: -100px;
    right: 20px;
    transform: rotate(180deg);
    width: 100px;
    height: 100px;
}

.hero > .subtitle > .highlight {
    text-decoration: underline dotted;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--primary-color);
   -webkit-text-decoration-line:  underline !important;
   -webkit-text-decoration-color: var(--primary-color) !important;
   -webkit-text-decoration-style: dotted !important;
   -webkit-text-decoration-thickness: 3px !important;
}

.hero > .title, .hero > .subtitle, .hero > .call-to-action {
    margin: 20px 5px;
}

.hero > .title {
    margin-bottom: 0;
}

input {
  all: unset;
    height: 30px;
    line-height:30px;
    border-radius: 30px;
    padding: 5px 25px;
}

input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
}
input[type="submit"]:hover {
    cursor: pointer;
}

input[type="email"] {
    background-color: white;
    box-shadow:inset 0px 0px 0px 2px  var(--primary-color);
    text-align: left;
}

.input-control > .validation-message {
    text-align: left;
    padding-left: 25px;
    padding-top: 5px;
    color: var(--danger-color);
}

.hidden {
    /*display: none;*/

}

::placeholder {
    color: var(--placeholder-color);
    opacity: 1;
}
::-ms-input-placeholder {
    color: var(--placeholder-color);
}

.hero > .call-to-action {
      display: flex;
  align-items: start;
  justify-content: center;

  gap: 10px;
}

.details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.details > .detail {
    text-align: center;
    min-width: 300px;
}

.details > .detail > object {
    width: auto;
    height: 150px;
    margin-bottom: 20px;
}

.details > .detail > .title{
    font-weight: 700;
    font-size: 18px;
}
.footer {
    height: 200px;
  display: flex;
  align-items: end;
    justify-content: center;
    padding: 15px 30px;
    color: var(--placeholder-color);
}
