@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
/* CSS RESET  */
/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin and padding reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

/* List reset */
ul,
ol {
  list-style: none;
}

/* Typography reset */
body,
button,
input,
select,
textarea {
  font-family: inherit;
}

/* Reset anchor styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Heading reset */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Reset form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* Reset images */
img {
  max-width: 100%;
  height: auto;
}


/* ////////////////////// */

body {
    font-family: 'Montserrat', sans-serif;
}


.header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1em;
}

.logo-wrapper p {
    color: orangered;
    font-size: 1.1rem;
    margin: 1em 0;

    @media screen and (max-width: 1024px) {
        text-align: center;
    }
}

.main {
    position: relative;
    background-image: url('/images/hhvh1-image-banner.jpg');
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    display: block;
    width: 94%;
    max-width: 84em;
    text-align: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;

    @media screen and (max-width: 1024px) {
        grid-template-columns: 1fr;
        margin: 1em 0;
    }
}

.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.65); /* Adjust the color and opacity as needed */

}

.content {
    position: relative;
    background: rgba(0,0,0,0.65);
    padding: 4em 5em;

    @media screen and (max-width: 1024px) {
        padding: 2em;
    }
}

.content h1 {
    color: #FFF;
    font-size: 2rem;
    text-align: left;
    line-height: 1.2;
}

.content p {
    color: #FFF;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.5;
}

.content .paragraph-group {
    text-align: left;
    margin-top: 2em;
}


.content .paragraph-group a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
}

.paragraph-group-two {
    margin-top: 2em;
}

.form-container {
    background: rgba(0,0,0,0.65);
    padding: 4em 5em;
    position: relative;
    z-index: 10;

    @media screen and (max-width: 1024px) {
        padding: 2em;
    }
  }

  .form-content h2 {
    color: #FFF;
    font-size: 2rem;
    text-align: left;
    line-height: 1.2;
  }

  .form-content p {
    color: #FFF;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.4;
    margin: 1.5em 0;
  }

  .form-row {
    display: flex;
    justify-content: space-between; /* Align items to the right */
    margin-bottom: 15px;
  }

  .form-column {
    flex: 1;
    margin-right: 50px;

  }
  
  .form-column input {
    width: 100%;
    height: 1.8rem;
    padding: 0 1em;
  }

  .form-column:last-child {
    margin-right: 0;
  }

  .form-textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    padding: 0 1em;
  }

  .form-submit {
    display: block;
    background-color: #fff;
    color: black;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    margin-left: auto;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .form-submit:hover {
    background-color: orangered;
  }

  @media screen and (max-width: 1024px) {
    .form-row {
      flex-direction: column;
    }

    .form-column {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }