@charset "UTF-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: rgba(70,95,109,1.00);
    margin: 0;
}

.page-container {
    width: 100%;
    padding: 0;
}

.logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 220px;
    height: 100%;
    padding-top: 1vh;
    padding-bottom: 2vh;
}

.circle {
    width: 80%;
    margin: auto;
    display: block;
}

.content {
    width: 90%;
    left: 5%;
    margin: 5vw;
}

.flex-content {
    display: flex;
    flex-wrap: wrap;
}

.image-1,
.image-2,
.image-3,
.image-4,
.image-7 {
    flex-grow: 1;
    width: 100%;
    margin: auto;  
}

.text-1,
.text-2,
.text-3,
.text-4,
.text-7 {
    flex-grow: 1;
    width: 100%;
    padding: 2em 0;    
    margin: auto;
}

h1 {
    font-weight: lighter;
    text-transform: uppercase;
}

h2 {
    margin: 0;
}

#backgroundVideo {
    width: 100%;
}

.buttons-box {
    margin: auto;
    width: 385px; 
    margin-bottom: 2em;
}

.next-page {
    width: 170px;
    height: 45px;
    border: none;
    background-color: rgba(210,210,210,1.00);
    border-radius: 10px;
    font-size: 1.25em;   
    color: white;
    margin: 0 10px;
}

.next-page:hover {
    background-image: none;
    background-color: rgba(247,185,213,1.00);
}

.form {
    background-color: rgba(255,182,194,0.60);
    display: flex;
    flex-wrap: wrap;
}

.input-div,
.input-div-wide {
    width: 100%;
    padding: 1em 1em 0em 1em;
    margin: 0;        
    flex-grow: 1;
}

.message {
    height: 8em;
    word-break: break-word;
}

input,
textarea {
    height: 2.5em;
    width: 100%;
    margin: 0.5em 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0;
    font-size: 110%;
}

@media (min-width: 800px) {
    .image-1,
    .image-2,
    .image-3,
    .image-4,
    .image-7 {
        flex-grow: 1;
        width: 50%;
    }
    .text-1,
    .text-3,
    .text-7 {
        flex-grow: 1;
        width: 50%;
    }    
    .text-2,
    .text-4 {
        flex-grow: 2;
        width: 100%;
    }
    .right {
        margin-left: 0;
    }

    .left {
        margin-right: 15px;
    }
    .image-1 {
        order: 1;
    }
    .text-1 {
        order: 2;
    }    
    .image-2 {
        order: 4;
    }  
    .text-2 {
        order: 3;
    }       
    .image-3 {
        order: 6;
    }
    .text-3 {
        order: 5;
    }
    .image-4 {
        order: 8;
    }
    .text-4 {
        order: 7;
    }
    .image-7 {
        order: 9;
    }
    .text-7 {
        order: 10;
    }
    .flex-content {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .logo {
        width: 280px;
    }
    .input-div {
        width: 40%;
    }    
}

@media (min-width: 1200px) {
    .content {
        width: 1150px;
        margin: auto;
    } 
    
    .buttons-box {
        padding-top: 10em;
    }
    
    .flex-content {
        margin-bottom: 3em;
    }
}


/* Nav */

    nav
    {
      margin: 0;
      padding: 0;
    }

    #menuToggle
    {
      display: block;
      position: relative;
      top: 50px;
      left: 50px;

      z-index: 1;

      -webkit-user-select: none;
      user-select: none;
    }

    #menuToggle a
    {
      text-decoration: none;
      color: #232323;

      transition: color 0.3s ease;
    }

    #menuToggle a:hover
    {
      color: lightpink;
    }


    #menuToggle input
    {
      display: block;
      width: 40px;
      height: 32px;
      position: absolute;
      top: -7px;
      left: -5px;

      cursor: pointer;

      opacity: 0; /* hide this */
      z-index: 2; /* and place it over the hamburger */

      -webkit-touch-callout: none;
    }

        /* Hamburger */
        #menuToggle span
        {
          display: block;
          width: 33px;
          height: 4px;
          margin-bottom: 5px;
          position: relative;

          background: lightpink;
          border-radius: 3px;

          z-index: 1;

          transform-origin: 4px 0px;

          transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                      background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                      opacity 0.55s ease;
        }

        #menuToggle span:first-child
        {
          transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2)
        {
          transform-origin: 0% 100%;
        }

            /* Hamburger to X transition */
            #menuToggle input:checked ~ span
            {
              opacity: 1;
              transform: rotate(45deg) translate(-2px, -1px);
              background: #232323;
            }

            /* Hide middle bar */
            #menuToggle input:checked ~ span:nth-last-child(3)
            {
              opacity: 0;
              transform: rotate(0deg) scale(0.2, 0.2);
            }

            /* Flip bottom bar */
            #menuToggle input:checked ~ span:nth-last-child(2)
            {
              transform: rotate(-45deg) translate(0, -1px);
            }

    /* Positioning */
    #menu
    {
      position: absolute;
      width: 300px;
      margin: -100px 0 0 -50px;
      padding: 50px;
      padding-top: 125px;

      background: #ededed;
      list-style-type: none;
      -webkit-font-smoothing: antialiased;
      /* to stop flickering of text in safari */

      transform-origin: 0% 0%;
      transform: translate(-100%, 0);

      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    #menu li
    {
      padding: 10px 0;
      font-size: 22px;
    }

    /* Slide */
    #menuToggle input:checked ~ ul
    {
      transform: none;
    }