/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

:root {
    --primary-color: hsl(232, 54%, 37%);
    --secondary-color: hsl(196, 100%, 47%);
    --secondary-color-400: hsl(196, 100%, 80%);
    --accent-color: hsl(162, 39%, 58%);
    --accent-color-200: hsl(162, 50%, 95%);
    --accent-color-500: hsl(162, 43%, 76%);
    --color-green-dark: hsl(152, 100%, 20%);
    --color-green-light: hsl(85, 54%, 51%);
    --neutral-100: hsl(100, 0%, 100%);
    --neutral-200: hsl(100, 0%, 95%);
    --neutral-300: hsl(100, 0%, 75%);
    --neutral-900: hsl(100, 0%, 5%);

    --gradient: linear-gradient(var(--secondary-color-400), var(--accent-color-200));
    /* --primary-color: lightblue; */
    /* --secondary-color: limegreen; */

    --gap: 1rem;

    --radius: 0.5em;

    --testimonial-height: 14rem;
}

html {
  scroll-snap-type: y proximity;
}

h2 {
  display: block;
  scroll-snap-align: start;
}

ol, ul {
  list-style: none;
  margin-bottom: 1rem;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: var(--accent-color);
  margin: 1rem;
  padding: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 300;
  line-height: 120%;
  display: grid;
  place-content: center;
  background-image: url("/images/gw-background-0.jpg");
  background-position-x: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-green-dark);
}

.container {
  background-color: var(--accent-color-200);
  max-width: calc(65ch - 4rem);
  border-radius: .5rem;
  padding: 2rem;
  margin-bottom: 1rem;
  /* display: grid; */
  /* justify-content: center; */
  /* justify-self: center; */
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

header {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  height: 170px;
  /* border-top: 4px var(--accent-color) solid; */
  /* border-bottom: 4px var(--accent-color) solid; */
}

header .background {
  /* background-image: url("/images/background-42.jpg"); */
  background-size: cover;
  /* width: 25vw; */
  mask-image: linear-gradient(to left, transparent 20%, black 95%);
}

header img {
  padding-right: calc(50% - 20rem);
}

.footer {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px var(--color-green-dark) solid ;
  text-align: center;
}

.hands {
  /* background-color: red; */
  display: grid;
  /* align-self: center; */
  place-content: center;
  justify-content: center;
  align-content: end;
  height: 80vh;
  max-width: 100vw;
  margin-bottom: 1rem;
  /* aspect-ratio: 1 / 1; */
  /* background-image: url("/images/gw-hands-0.png"); */
  background-repeat: no-repeat;
  background-position-x: center;
  background-attachment: fixed;
  /* z-index: 100; */
  animation: pageLoad ease 3s;
  animation-delay: 2.1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes pageLoad {
  0% {
    height: 80vh;
  }
  100% {
    height: 0;
  }
}

.hands img {
  width: auto;
  height: 80vh;
  animation: pageLoadImage ease 3s;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes pageLoadImage {
  0% {
    opacity: 100%;
    height: 80vh;
  }
  100% {
    opacity: 0%;
    height: 1vh;
  }
}

.scroll-snap {
  scroll-snap-type: both mandatory;
}

.testimonial-box {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 81%;
  gap: var(--gap);
  padding-bottom: .5rem;
  padding-left: .25rem;
  padding-right: var(--gap);
  overflow-x: scroll;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
}

.testimonial-box:focus-visible {
  outline: none;
}

.testimonial-card {
  max-height: var(--testimonial-height);
  background: var(--gradient);
  padding: clamp(1rem, 3vw, 2rem) clamp(.5rem, 4vw, 2rem);
  margin: 1rem 0;
  border-radius: .5rem;
  box-shadow: 4px 4px 12px hsl(0, 0%, 80%);
  align-content: center;
}

.testimonial {
    max-height: calc(var(--testimonial-height) - 2rem);
    overflow-y: scroll;
    text-wrap: pretty;
}

.snaps-inline {
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: var(--gap);
}

.snaps-inline > * {
  scroll-snap-align: center;
}

.attribution {
  font-weight: 400;
  color: var(--secondary-color);
}

.title {
  font-weight: 400;
  color: var(--secondary-color);
}

section {
  display: grid;
  scroll-snap-align: start;
}

.section {
  text-align: left;
}

h1 {
  color: var(--color-green-dark);
  font-weight: 300;
  font-size: clamp(1.8em, 8vw, 2.2em);
  line-height: 3rem;
}

h2 {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: clamp(1em, 5vw, 1.5em);
  line-height: 2.0rem;
}

h3 {
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.8rem;
  margin-bottom: 1rem;
}

#logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  padding-right: 10vw;
}

#asset-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
}

#asset-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  opacity: 80%;
}

.inset {
  padding: 50px 5vw;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.inset::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.25;
  z-index: -1;
  background-image: url("/images/background-42.jpg");
}

li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 1rem;
  line-height: 150%;
}

li::before {
  content: '';
  height: 1.4em;
  width: 1.2em;
  position: absolute;
  background-image: url("/images/asset_6.svg");
  background-size: cover;
  left: 0;
  top: 0;
}

.btn {
  display: inline-block;
  padding: .5rem 1.5rem;
  /* background-color: #2bace2; */
  background-color: var(--secondary-color);
  color: white;
  border-radius: .5rem;
  text-decoration: none;
  font-family: inherit;
  font-size: calc(14px + .5em);
  outline: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #1b9cd2;
  -webkit-transform: scale(0.99, 0.98);
          transform: scale(0.99, 0.98);
}

.btn:focus {
  background-color: #3D65CC;
}

.quote {
  font-style: italic;
}

.quote::before,
.quote::after {
  font-size: 2em;
  color: #666666;
  vertical-align: -50%;
}

.quote::before {
  content: '\201c';
  margin-left: -0.6rem;
}

.quote::after {
  content: '\201d';
}

.feedback p {
  margin-bottom: 1rem;
}

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

.inline-image {
  width: clamp(40px, 10vw, 100px);
  vertical-align: -2vw;
}

.header-tag-one {
  font-size: 16px;
  text-align: center;
  position: relative;
  top: -30px;
  left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 160px;
  height: 160px;
  background-image: url("/images/asset_1.svg");
  background-repeat: no-repeat;
}

.header-tag-two {
  text-align: center;
  font-size: 16px;
  position: relative;
  bottom: 100px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 160px;
  height: 160px;
  background-image: url("/images/asset_2.svg");
  background-repeat: no-repeat;
}

.header-tags {
  overflow: hidden;
  width: 240px;
}

/* Contact Styles */
#contact {
  /* background: #2bace2; */
  background-color: var(--secondary-color);
  border-radius: .5rem;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.contact-main-section {
  align-items: center;
}

.call-to-action {
  align-items: center;
  padding: 0 1rem;
  max-width: calc(65ch - 4rem);
}

.contact-text {
  font-size: 3.5em;
  font-weight: bold;
  margin: 0;
}

.accent-text {
  color: #661133;
}

.contact-form {
  /* background-color: #e0e0e0; */
  background-color: var(--neutral-200);
  width: clamp(240px, 60%, 520px);
  padding: 1rem 2rem;
  border-radius: 20px;
}

.input-group {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.input-group:last-child {
  margin-bottom: 0;
}

.input-group label {
  font-weight: 200;
  margin-bottom: .5rem;
}

.input-group input {
  outline: none;
  background: white;
  border: 1px solid #2e3852;
  font-size: 1em;
  padding: .5rem;
  color: black;
  border-radius: 5px;
  font-family: inherit;
}

.input-group input:focus {
  border-color: #596da0;
}

.input-group textarea {
  border-radius: 5px;
  padding: .5rem;
  font-size: 1em;
  font-family: inherit;
  height: 6rem;
}

@media (max-width: 900px) {
  .header-tag-one,
  .header-tag-two {
    display: none;
  }
  #logo {
    padding-right: 0;
    padding-left: 16vw;
  }
  .contact-main-section {
    flex-direction: column;
    justify-content: center;
  }
  .call-to-action {
    align-items: center;
    margin: 1rem 0 0 0;
  }
  .contact-form {
    margin: 1rem 0;
    padding: 1rem 2rem;
  }
  .contact-main-section .title {
    text-align: center;
  }
}

.contact-page-item-1 {
  position: absolute;
  overflow: hidden;
  width: 40vw;
  height: 40vw;
  bottom: 5vw;
  left: 0;
  z-index: -1;
}

.contact-page-item-1::before {
  content: '';
  -webkit-transform: translate(-20%, 40%);
          transform: translate(-20%, 40%);
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(188, 58, 128, 0.1);
}

.contact-page-item-2 {
  position: absolute;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  background-color: rgba(52, 87, 178, 0.1);
  top: 15vh;
  left: 30vw;
  z-index: -1;
}

.contact-page-item-3 {
  position: absolute;
  overflow: hidden;
  width: 45vw;
  height: 45vw;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.contact-page-item-3::before {
  content: '';
  -webkit-transform: translate(40%, 40%);
          transform: translate(40%, 40%);
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: rgba(52, 87, 178, 0.1);
}

.notes {
  font-size: .7em;
  line-height: 1.3em;
  padding-top: 1rem;
  border-top: 1px var(--neutral-300) solid;
}

.links-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
  margin: .5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--neutral-300);
}

.link {
  background-color: var(--accent-color-500);
  padding: 1em;
  border-radius: var(--radius);
  /* max-width: calc(65ch - 6rem); */
  width: clamp(20em, 30vw, 40em);
}