/* 
https://serp.co/tools/css-reset/
<link rel="stylesheet" href="https://css.serp.co/css-reset/reset.css/">
*/

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;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  min-height: 100vh;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

:root {
  --font-main: 'Inter', sans-serif;
  --color-text: #121212;
  --pink-light: #e8e5e5;
  --gray-light:#d7d6d6;
  --gray: #acadad;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 300;
  background-color: var(--pink-light);
  color: var(--color-text);
}


section {
  padding-top: clamp(2rem, 2vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 5rem);
}


.container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.flex {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.row-flex {
  display: flex;
  justify-content: space-between;
  margin: 0 -1rem;
  align-items: center;
}

.row-flex.end-align {
  justify-content: flex-end;
}

.col-50 {
  padding: 0 1rem;
  width: 50%;
}

.col-33 {
  padding: 0 1rem;
  width: 33.3%;
}

.grayed {
  background-color: var(--gray-light);
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.parallax-wrapper img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: auto;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
  .parallax-wrapper {
    height: auto;
  }

  .parallax-wrapper img {
    position: static;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .flex {
    display: block;
  }
}

@media (max-width: 430px) {
    .row-flex  {
      display: block;
    }
    .col-50 {
      width: auto;
      padding: 1rem;
    }
    .col-33 {
      width: auto;
      padding: 1rem;
    }
}