/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding:0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  /*colors*/
  --dark-blue:#24053E;
  --eucalyptus:#44FFA1;
  --grey:#584D62;
  --light-white:#FCF8FF;
  --white:#FFF;
  /*typography*/
  --body-font-family:'Manrope', serif;
  --body-font-size:1.125rem;
  --body-font-weight:400;
  --body-line-height:1.77;
  --Heading-L-font-family: 'Fraunces', serif;
  --Heading-L-font-size: 5rem;
  --Heading-L-font-weight: 600;
  --Heading-L-line-height: 1;
  --Heading-M-font-family: 'Fraunces', serif;
  --Heading-M-font-size: 3.5rem;
  --Heading-M-font-weight: 600;
  --Heading-M-line-height: 1.14;
  --Heading-S-font-family: 'Fraunces', serif;
  --Heading-S-font-size: 2rem;
  --Heading-S-font-weight: 600;
  --Heading-S-line-height: 1.25;

}
body{
  font-family: 'Manrope', serif;
  font-size: 1rem;
  line-height: 1.75;
}

.wrapper{
  background-color: white;
  position: relative;
}

.header {
  background-color: #24053E;
  display: flex;
  justify-content: space-between;
  padding: 2rem 1rem 4rem 1rem;
}

.primary__button {
  color:var(--white);
  font-weight: bold;
  text-decoration: underline #44FFA1 3px;
  text-underline-offset: 8px;
}

.hero__section {
  align-items: center;
  background-color: #24053E;
  /* border-bottom-left-radius: 40% 10%;
  border-bottom-right-radius: 40% 10%; */
  display: flex;
  flex-direction: column;
  padding: 0 1rem 10.54rem 1rem;
  text-align: center;
}

.title {
  color:var(--white);
  font-family: 'Fraunces', serif;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1;
}

.tailored {
  text-decoration: underline #44FFA1 3px;
  text-underline-offset: 8px;
}

.secondary__button {
  background-color: var(--eucalyptus);
  color: var(--dark-blue);
  display: inline-block;
  font-weight: bold;
  margin-block-start: 2.5rem;
  max-width: 100%;
  padding:0.6875rem 1.5rem;
}

.hero__picture {
  max-width: 320px;
  position: absolute;
  top:400px;
}

.number {
  border-radius: 50%;
  border: var(--grey) solid 1px;
  color: var(--dark-blue);
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  min-height: 46px;
  padding-top: 5px;
  text-align: center;
  min-width:48px;
}

/* 
THIS WAS MY OLD SOLUTION FOR THE REASONS SECTION
.summary__reasons__title {
  color: var(--dark-blue);
  font-size: 1.75rem;
  margin-block-end: 1rem;
  margin-block-start: 1.5rem;
  text-align: center;
}

.summary__reasons__parapgraph {
  margin-block-end: 2.5rem;
  text-align: center;
} */

.reasons__section {
  background-color: var(--light-white);
  /* border-bottom-left-radius: 20% 5%;
  border-bottom-right-radius: 20% 5%; */
  padding:9.6875rem 1rem 2rem 1rem;

}

.reasons__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap:2rem;
  justify-content: center;

}

.reason__list__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

 .flex__container {
  align-self: center;
}


.flex__container {
  display: flex;
  flex-direction: column;
  gap:1rem;
}

.flex__container h2 {
  align-self: center;
}

.flex__container p {
 text-align: center; /*note: WHY HAS ALIGN-SELF:CENTER NOT THE SAME EFFECT AS TEXT-ALIGN?*/
}

.founder__center {
  max-width: 343px;
  margin: 0 auto;

}

.founder__section {
  position: relative;

}

.zindex__founder__section {
  background-color: #24053E;
  position: relative;
  z-index: 1;
  padding:2rem;
  text-align: center;
  margin-block-start: 20.5rem;
  margin-block-end: 74px;

}

.founder__image {
  position: absolute;
  max-width: 281px;
  top:-230px;
  left:25px;
}

.title__founder__section{
  color:var(--white);
  font-family:'Fraunces', serif;
}

.text__founder__section{
  color:var(--white);
  line-height: 1.75;
  margin-block-end: 1.5rem ;
  margin-block-start: 1rem ;
}

.tertiary__button{
  background-color: var(--eucalyptus);
  color: var(--dark-blue);
  font-weight: bold;
  margin: 0 auto;
  min-width: 8.3125rem;
  padding:0.6875rem 1.5rem;
}

footer{
  align-items: center;
  display: flex;
  flex-direction: column;
  gap:4rem;
}

.flex__footer__socials {
  display: flex;
  gap:1.5rem;
  justify-content: center;
  margin-block-end: 4rem;
}


/*TABLET VERSION*/

@media screen and (min-width:768px) {
  .header {
    padding: 2rem 2.5rem 3.5rem 2.5rem;
  }

  .hero__section {
    background-image: url(/assets/images/bg-pattern-1.svg), url(/assets/images/bg-pattern-2.svg);
    background-position: -230px -40px, 680px 80px;
    background-repeat: no-repeat;
    padding: 0 6rem 12.6875rem 6rem;
  }

  .title {
    color:var(--white);
    font-family: 'Fraunces', serif;
    font-size: 3.75rem;
  }
  
  .hero__picture {
    max-width: 470px;
    position: absolute;
    top:400px;
  }

  /*reasons section*/

  
.reasons__section {
  /* border-bottom-left-radius: 20% 5%;
  border-bottom-right-radius: 20% 5%; */
  padding:9.6875rem 6rem 2rem 6rem;
}



.reason__list__item {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
}

.flex__container {
  display: flex;
  flex-direction: column;
  gap:1rem;
}

.flex__container h2 {
  align-self: flex-start;
}

.flex__container p {
 text-align: start; /*note: WHY HAS ALIGN-SELF:CENTER NOT THE SAME EFFECT AS TEXT-ALIGN?*/
}

/*founder section*/



/* .founder__image {
  margin-block-start: 6.25rem;
  margin-left: 2.4375rem;
  max-width: 281px;
}

.founder__section {
  margin-block-start: -130px;
  margin-left: 214px;
  max-width: 514px;
  padding-bottom: 56px;
  padding-top:48px;
  position: relative;
  text-align: start;
  z-index: 1;
}

.title__founder__section{
  color:var(--white);
  font-family:'Fraunces', serif;
  font-size: 48px;
  line-height: 56px;
}

.text__founder__section{
  color:var(--white);
  line-height: 1.75;
  margin-block-end: 1.5rem ;
  margin-block-start: 1.5rem ;
} 
  
} */


.founder__center {
  max-width: 689px;
  margin: 0 auto;

}

.founder__section {
  position: relative;

}

.zindex__founder__section {
  background-color: #24053E;
  position: relative;
  z-index: 1;
  padding-left: 56px;
  padding-top: 48px;
  padding-bottom: 56px;
  text-align: start;
  margin-block-start: 20.5rem;
  margin-block-end: 74px;
  margin-left: auto;
  max-width: 514px;
}

.founder__image {
  position: absolute;
  max-width: 281px;
  top:-160px;
  left:5px;
}

.title__founder__section{
  color:var(--white);
  font-family:'Fraunces', serif;
  font-size: 48px;
}

.text__founder__section{
  color:var(--white);
  line-height: 1.75;
  margin-block-end: 1.5rem ;
  margin-block-start: 1rem ;
}


/*DESKTOP VERSION*/

@media screen and (min-width:1024px) {

  .header {
    padding: 55px 165px;
  }

  .hero__section {
    background-image: url(/assets/images/bg-pattern-1.svg), url(/assets/images/bg-pattern-2.svg);
    background-position: -230px -40px, 103% 80px;
    background-repeat: no-repeat;
    padding: 0 25,1875rem 20.375rem 25,1875rem; 
  }

  .title {
    color:var(--white);
    font-family: var(--Heading-L-font-family);
    font-size: var(--Heading-L-font-size);
    line-height: var(--Heading-L-line-height);
    font-weight: var(--Heading-L-font-weight);
  }
  
  .hero__picture {
    max-width: 767px;
    position: absolute;
    top:200px;
  }

  
.reasons__section {
  /* border-bottom-left-radius: 20% 5%;
  border-bottom-right-radius: 20% 5%;  */
  /* padding:9.6875rem 6rem 2rem 6rem; */
}

.reasons__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.reason__list__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.flex__container {
  display: flex;
  flex-direction: column;
  gap:1rem;
}

.flex__container h2 {
  align-self: center;
}

.flex__container p {
 text-align: center; /*note: WHY HAS ALIGN-SELF:CENTER NOT THE SAME EFFECT AS TEXT-ALIGN?*/
}

.founder__center {
  /* max-width: 689px; */
  margin: 0 auto;

}

.founder__section {
  position: relative;
}

.zindex__founder__section {
  background-color: #24053E;
  position: relative;
  z-index: 1;
  padding-left: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: start;
  margin-block-start: 20.5rem;
  margin-block-end: 74px;
  margin-left: auto;
  max-width: 730px;
  left:150px;
}

.founder__image {
  position: absolute;
  max-width: 477px;
  top:-160px;
  left:-230px;
}

.title__founder__section{
  color:var(--white);
  font-family:'Fraunces', serif;
  font-size: 48px;
}

.text__founder__section{
  color:var(--white);
  line-height: 1.75;
  margin-block-end: 1.5rem ;
  margin-block-start: 1rem ;
}




 



























  
}










}