@import url('https://rsms.me/inter/inter.css');
@import url('https://fonts.googleapis.com/css?family=EB+Garamond&display=swap');

html,body{
    overflow-x: hidden;
}
body{
  background-color: #fff;
  color: #1d1d1d;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  margin: 0;
}

.Garamond{
  font-family: 'EB Garamond', serif;
}

a, a:visited{
    color: #f44336;
    text-decoration: none;
}

.headerWrapper a{
  color: #1d1d1d;
  padding: 0 1em;
}

.headerWrapper a:hover{
  color: #1d1d1d;
  text-decoration: underline;
}

a:hover{
  color: #f44336;
  text-decoration: underline;
}

.headerShadow a:hover{
  color: #f44336;
  text-decoration: none;
}

.headerWrapper{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
}

#header{
  width: calc(100% - 2em);
  padding: 1.5em 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.15s ease;
}

.mobilecontents{
  display: none;
  padding: 12px;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
  margin-bottom: -1px;
}

.mobilecontents a{
  line-height: 2em;
  font-size: 0.6em;
}

.mobileBars{
  display: none;
}

.headerShadow{
  box-shadow: 0 1px 1px rgba(0,0,0,.15);
  background-color: white;
}

.titleName{
  font-weight: bold;
  font-size: 1.5em;
  color: #f44336;
}







.titleSplash{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5em 0 2em 0;
  padding: 0 10vw;
  font-size: 2em;
  text-align: center;
  position: relative;
}




.blob{
  position: absolute;
  z-index: -1;
}

.blob1{
  top: -2em;
  left: -4em;
}

.blob2{
  top: 0;
  right: -10em;
}

.blob3{
  top: -10em;
  right: 0em;
}

.blob4{
  display: none;
}

.quote{
  margin: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;

}
.quote p{
  padding: 0 6em 0 4em;
  line-height: 1.6em;
}

.quote p::before{
  font-size: 5em;
  content: '“';
  color: #f44336;
  font-family: 'EB Garamond', Serif;
  margin: 0em 0 0 -0.5em;
  display: block;
  position: absolute;
}

.quote .after{
  font-size: 5em;
  content: '”';
  color: #f44336;
  font-family: 'EB Garamond', Serif;
  display: inline-block;
  margin-top: 0.3em;
  position: absolute;
}

.quote .quoteimg{
  width: 100px;
  border-radius: 100%;
}




section{
  margin: 0em 4em;
  line-height: 1.5;
}

section h2{
  padding-top: 2.5em;
  font-size: 2.5em;
}

section .emph{
  font-size: 1.1em;
  font-weight: bold;
  padding: 2em 0;
  color: #f44336;
}

section .smlemph{
  font-size: 0.7em;
  font-style: italic;
}




section ul{
  margin: 3em 2em;
  line-height: 2;
}


.team{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}

.teamWrap{
  display: flex;
  flex-direction: column;
  width: 275px;
  align-items: center;
  margin: 2em;
}

.teamWrap .name{
  font-weight: 600;
  margin: 0.5em 0;
}

.teamWrap .about{
  color: #555;
  text-align: left;
}


.team .teamMember{
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

.faq{
  margin: 2em 13vw;
  line-height: 2em;
}

.faq h2{
  padding-top: 3em;
  text-align: center;
  margin-bottom: 2em;
}

.question{
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}

.answer{
  margin-bottom: 3em;
}


footer{
  display: flex;
  margin-top: 7em;
  border-top: 1px solid #0002;
  color: #454545;
  height: 5em;
  padding: 1em 2em;
  width: calc(100% - 4em);
  justify-content: space-between;
  align-items: center;
}





.pricePlan{
  display: flex;
  justify-content: space-around;
}

.plan{
  width: 80vw;
  box-shadow: 0 5px 20px 0 rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.4s ease;
}

.plan:hover{
  box-shadow: 0 0 2rem rgba(0,0,0,.17);
}

.pricing{
  padding-top: 2em;
}

.pricing h2, .pricing h3{
  margin: 0;
  padding: 0;
  text-align: center;
}

.pricing h2{
  font-size: 2em;
}

.aboutprice{
  padding: 1.5em;
  justify-content: center;
  font-size: 0.9em;
}

.icon{
  padding: 0.5em;
  font-size: 3em;
  text-align: center;
  color: #f44336;
}



@media screen and (max-width: 600px) {

a:hover{
  color: #f44336;
  text-decoration: none;
}


.titleName{
  color: #1d1d1d;
  font-size: 1.2em;
}

.headerShadow .titleName{
  color: #f44336;
}

.headerSections{
  display: none;
}

.mobileBars{
  display: block;
  padding-right: 1em;
  font-size: 1.2em;
}

.mobilecontents{
  display: none;
  background-color: #fff;
}


.blob{
  transform: scale(0.6);
}

.blob1{
  top: -5em;
  left: -2em;
}

.blob2{
  top: -15em;
  right: -10em;
}

.blob3{
  top: -13em;
  right: 0em;
}

.blob4{
  display: block;
  top: 1.5em;
  right: -2em;
}

.titleSplash{
  padding: 0;
}

.titleSplash h1{
  font-size: 14vw;
}

section{
  margin: 0 12px;
  text-align: left;
}

section ul{
  margin: 3em 2em 0 0;
  line-height: 2;
  text-align: left;
}

section li{
  margin-bottom: 1.5em;
}

.pricePlan{
  flex-direction: column;
  align-items: center;
}

.plan{
  width: 100vw;
  margin-bottom: 3em;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq{
  margin: 12px;
  line-height: 2em;
}

.faq h2{
  padding-top: 3em;
  margin-top: 0;

}

.quote{
  flex-direction: column;
}
.quote p {
    padding: 0;
}

}
