.clr1 {
  color: rgb(181, 2, 2);
}

.mini-text {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: #676767;
  position: relative;
  top: 10px;
}
.mini-text--about {
  color: #4F4F4F;
  position: relative;
  margin-top: 2em;
}
.mini-text--about::after {
  content: "";
  display: block;
  position: absolute;
  width: 7%;
  height: 2px;
  background-color: rgb(181, 2, 2);
  bottom: 0;
}
.mini-text--right {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: #676767;
  text-align: right;
  position: relative;
  text-align: left;
}
.mini-text--pricing {
  text-transform: lowercase;
  top: -28px;
}

@media only screen and (min-width: 820px) {
  .mini-text--right {
    text-align: right;
  }
  .mini-text--right::after {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: rgb(181, 2, 2);
    right: 0;
    width: 7%;
  }
  .about__main__flex--limit {
    max-width: 380px;
  }
  .about__main__flex--right {
    flex: 1;
  }
  .about__main__flex--left {
    flex: 1;
  }
}
.mini-text--about--1::after {
  width: 65px;
}
.mini-text--about--2::after {
  width: 65px;
}
.mini-text--about--3::after {
  width: 45px;
}
.mini-text--about--4::after {
  width: 45px;
}
.mini-text--about--5::after {
  width: 30px;
}

.text-deco {
  position: relative;
}
.text-deco::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 3px;
  border-radius: 12px;
  background-color: rgb(181, 2, 2);
  left: -9px;
}
.text-deco--about::before {
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 900px) {
  .mini-text {
    top: 18px;
  }
  .mini-text--pricing {
    top: -28px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::placeholder {
  opacity: 0.5;
  font-weight: 600;
}

::selection {
  background-color: rgba(181, 2, 2, 0.2);
}

html {
  font-size: 16px;
}

@media only screen and (min-width: 1024px) {
  html {
    font-size: 17px;
  }
}
html,
body {
  height: auto;
}

body {
  background-color: #FCFCFC;
  color: #121212;
  font-family: "Montserrat", sans-serif;
}

* > p {
  margin-top: 1.5em;
}

strong {
  font-weight: 600;
}

h1 {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 2.1875rem;
  letter-spacing: 0.4px;
  font-style: italic;
}

h2,
h3,
h4,
h5,
h6,
p {
  line-height: 2;
}

h2 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 5vw, 2.125rem);
}

@media only screen and (min-width: 750px) {
  h2 {
    font-size: 5vw;
    font-size: clamp(1.5rem, 5vw, 2.125rem);
  }
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}
h5 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}

p,
li {
  font-size: 1rem;
  font-weight: 300;
}

a,
button {
  font-size: 1rem;
  color: #121212;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

button {
  border: 1px solid transparent;
}

ul,
li {
  list-style: none;
}

.btn-primary {
  min-width: 140px;
  margin-top: 1.5em;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 1em 2.7em;
  border-radius: 4px;
  text-transform: uppercase;
  transition: transform 100ms, opacity 100ms, background-color 100ms;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.19);
  background-color: rgb(181, 2, 2);
  color: #FCFCFC;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  background-color: rgb(167, 6, 6);
}

.btn-primary:active {
  transform: translateY(1px) scale(1);
  background-color: rgb(119, 3, 3);
}

.btn-secondary {
  min-width: 140px;
  margin-top: 1.5em;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  padding: 1em 2.7em;
  border-radius: 4px;
  text-transform: uppercase;
  transition: transform 100ms, opacity 100ms, background-color 100ms;
  font-weight: 600;
  background-color: transparent;
  color: rgb(181, 2, 2);
  margin-top: 1.5em;
  border: 2px solid rgb(181, 2, 2);
  opacity: 0.9;
}

.btn-secondary:hover {
  transform: translateY(-1px) scale(1.005);
  opacity: 1;
}

.btn-secondary:active {
  transform: translateY(1px) scale(1);
}

.header__logo-text {
  display: none;
}

.about .header__logo-text {
  color: #121212;
}

.header__logo-wrapper {
  width: 30px;
  z-index: 10;
}

nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 8%;
  height: 100%;
  padding-bottom: 14%;
}

body.nav-open {
  overflow-y: hidden;
}

#burger {
  z-index: 10;
}

.nav-list {
  display: none;
  position: absolute;
  color: #121212;
  background-color: #FCFCFC;
  width: 100%;
  top: 0;
  bottom: 0;
  right: -100%;
  z-index: 5;
  padding-top: 3em;
}

.nav-list-item {
  color: #121212;
  list-style: none;
  padding: 1.8em 10vw;
  text-align: left;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  right: 0;
  background-color: #FCFCFC;
}

p.nav-list-item {
  margin-top: 0;
  font-weight: 600;
  color: #676767;
  font-size: 1.1rem;
  padding-bottom: 0;
  line-height: 1.3;
}

.nav-list-sub-ul {
  padding-top: 0;
}

.nav-links {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.85;
  transition: 200ms;
}

.nav-links::before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links:hover {
  opacity: 1;
}

.nav-links--sub {
  display: inline-block;
  font-size: 1rem;
  padding: 1.8em;
  position: relative;
  margin-left: 6%;
}

.nav-links--sub::before {
  width: 180%;
}

.nav-links--sub--1 {
  padding-top: 3em;
}

@media only screen and (min-width: 530px) {
  .nav-links--sub {
    margin-left: 10%;
  }
}
@media only screen and (min-width: 900px) {
  .header--logo-container {
    display: flex;
    align-items: center;
  }
  .header__logo-wrapper {
    width: 45px;
    z-index: 10;
  }
  .header__logo-text {
    display: block;
    color: #FCFCFC;
    margin-left: 1em;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  #burger {
    display: none;
  }
  nav {
    display: flex;
    padding: 35px 8% 0;
    max-height: 50px;
    margin-top: 1.5em;
  }
  .nav-list {
    display: flex;
    position: static;
    flex-flow: row nowrap;
    padding: 0;
    width: auto;
    background-color: transparent;
    margin-top: -0.3em;
  }
  .nav-sub-list-container {
    position: relative;
  }
  .nav-sub-item {
    transition: transform 300ms;
  }
  .nav-sub-item:hover {
    transform: translateY(-2px);
  }
  .nav-list-sub-ul {
    display: none;
    color: #FCFCFC;
    background-color: #121212;
    position: absolute;
    top: 35px;
    right: 0;
    width: 350px;
    text-align: center;
    padding: 0.3em 2em 0.3em 0;
    border-radius: 12px;
  }
  .nav-links--sub--1 {
    padding-top: 1.8em;
  }
  .nav-links--sub {
    color: #FCFCFC;
    margin-left: 0;
    padding-left: 0;
  }
  .nav-links--sub::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #FCFCFC;
    bottom: 0;
  }
  .nav-links--sub--3::after {
    display: none;
  }
  .nav-sub-list-container:hover .nav-list-sub-ul {
    display: block;
  }
  .nav-list-item {
    display: block;
    position: static;
    padding: 0;
    margin-left: 6.2vw;
    background-color: transparent;
  }
  p.nav-list-item {
    color: #FCFCFC;
    opacity: 0.85;
  }
  .nav-sub-list-container:hover p.nav-list-item {
    opacity: 1;
  }
  p.nav-list-item::before {
    content: "";
    display: block;
    position: absolute;
    width: 95%;
    height: 50px;
    left: 15%;
  }
  .nav-list-item > a {
    color: #FCFCFC;
  }
  .about .nav-list-item > a {
    color: #121212;
  }
  .about p.nav-list-item {
    color: #121212;
  }
}
.burger {
  height: 3em;
  width: 3em;
  position: relative;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
  -webkit-tap-highlight-color: transparent;
}

.burger .burger-lines:after {
  left: 0;
  top: -1em;
}

.burger .burger-lines:before {
  left: 1em;
  top: 1em;
}

.burger:after {
  content: "";
  display: block;
  position: absolute;
  height: 150%;
  width: 150%;
  top: -25%;
  left: -25%;
}

.burger .burger-lines {
  top: 50%;
  margin-top: -0.125em;
}

.burger .burger-lines,
.burger .burger-lines:after,
.burger .burger-lines:before {
  pointer-events: none;
  display: block;
  content: "";
  width: 100%;
  border-radius: 0.25em;
  background-color: #FCFCFC;
  height: 0.25em;
  position: absolute;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.burger .burger-lines:after {
  left: 0;
  top: -1em;
}

.burger .burger-lines:before {
  left: 1em;
  top: 1em;
}

.burger.burger-squeeze .burger-lines,
.burger.burger-squeeze .burger-lines:after,
.burger.burger-squeeze .burger-lines:before {
  -webkit-transition: 0.2s top 0.2s, 0.1s left, 0.2s transform, 0.4s background-color 0.2s;
  -o-transition: 0.2s top 0.2s, 0.1s left, 0.2s transform, 0.4s background-color 0.2s;
  transition: 0.2s top 0.2s, 0.1s left, 0.2s transform, 0.4s background-color 0.2s;
}

.burger.burger-squeeze .burger-lines:after,
.burger.burger-squeeze .burger-lines:before {
  width: 2em;
}

.burger.burger-squeeze.open .burger-lines,
.burger.burger-squeeze.open .burger-lines:after,
.burger.burger-squeeze.open .burger-lines:before {
  -webkit-transition: 0.2s background-color, 0.2s top, 0.2s left, 0.2s transform 0.15s;
  -o-transition: 0.2s background-color, 0.2s top, 0.2s left, 0.2s transform 0.15s;
  transition: 0.2s background-color, 0.2s top, 0.2s left, 0.2s transform 0.15s;
}

.burger.burger-squeeze.open .burger-lines {
  background-color: transparent;
}

.burger.burger-squeeze.open .burger-lines:before,
.burger.burger-squeeze.open .burger-lines:after {
  left: 0.5em;
  top: 0px;
  background-color: rgb(181, 2, 2);
}

.burger.burger-squeeze.open .burger-lines:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger.burger-squeeze.open .burger-lines:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger .burger-lines,
.burger .burger-lines:after,
.burger .burger-lines:before {
  background-color: #FCFCFC;
}

.about .burger .burger-lines,
.about .burger .burger-lines:after,
.about .burger .burger-lines:before {
  background-color: #121212;
}

.img-deco--static {
  position: relative;
}
.img-deco--static::before {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 90%;
  background-color: rgb(181, 2, 2);
  border-radius: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.3s;
}
.img-deco--static--right::before {
  right: -6px;
}
.img-deco--static--left::before {
  left: -6px;
}
.img-deco--static--top::before {
  width: 90%;
  top: 71px;
}

.img-deco {
  position: relative;
}
.img-deco > picture {
  filter: saturate(0%);
  transition: 200ms;
}
.img-deco::before {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 90%;
  background-color: rgb(181, 2, 2);
  border-radius: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.3s;
}
.img-deco--right::before {
  right: -6px;
}
.img-deco--left::before {
  left: -6px;
}
.img-deco--top::before {
  width: 90%;
  top: 71px;
}

.img-deco:hover > picture {
  filter: saturate(70%);
}

.img-deco--left:hover::before {
  left: 0;
  transform: scale(1.05) translateY(-50%);
  opacity: 0;
}

.img-deco--right:hover::before {
  right: 0;
  transform: scale(1.05) translateY(-50%);
  opacity: 0;
}

.img-deco--top:hover::before {
  top: 68px;
  transform: scale(1.05) translateY(-50%);
  opacity: 0;
}

.contact__text {
  margin-top: 1em;
}

.contact-form {
  margin-top: 1em;
  max-width: 450px;
}
.contact-form input, .contact-form textarea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1em 1.2em;
  margin-top: 1em;
  font-size: 0.75rem;
}
.contact-form .contact-form__message {
  resize: none;
}
.contact-form__button {
  width: 35vw;
  max-width: 200px;
}
.contact-form__status {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
}

@media only screen and (min-width: 600px) {
  .contact-form input, .contact-form textarea {
    font-size: 0.85rem;
  }
}
.about__main__card-container {
  margin-top: 2em;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #FCFCFC;
}
.about__main__card-container--credentials {
  min-width: 320px;
}
.about__main__card-container--credentials .about__main__card-wrapper {
  display: flex;
  flex-flow: column;
}
.about__main__card-container--honors {
  display: none;
}
.about__main__card-title {
  font-size: 1.1rem;
  position: absolute;
  align-self: center;
  justify-self: center;
  text-transform: uppercase;
  font-weight: 600;
  top: 50%;
  transform: translateY(-50%);
  transition: 400ms;
}
.about__main__card-text {
  font-weight: 600;
  margin-bottom: 1.5em;
  font-size: 0.86rem;
  opacity: 0;
  transition: 400ms;
}
.about__main__card-text--sub {
  color: #676767;
  margin-top: -1.5em;
}
.about__main__card-container:hover .about__main__card-title {
  opacity: 0;
}
.about__main__card-container:hover .about__main__card-text {
  opacity: 1;
}

@media only screen and (min-width: 440px) {
  .about__main__card-container {
    flex-flow: row nowrap;
    justify-content: space-around;
  }
}
@media only screen and (min-width: 550px) {
  .about__main__card-container--credentials .about__main__card-wrapper {
    width: 100%;
    flex-flow: row;
    justify-content: space-around;
  }
}
@media only screen and (min-width: 820px) {
  .about__main__card-container--honors {
    display: flex;
    text-align: center;
    margin-top: 4em;
  }
  .about__main__card-container--teachers {
    width: 49%;
  }
  .about__main__card-container--masterclasses {
    width: 49%;
  }
  .about__main__card-container--credentials .about__main__card-wrapper {
    width: 100%;
    flex-flow: column;
    align-items: center;
    height: calc(700px - 30vw);
  }
}
@media only screen and (min-width: 950px) {
  .about__main__card-container {
    padding: 2em 4vw;
  }
  .about__main__card-wrapper--left {
    margin-right: 3vw;
  }
}
@media only screen and (min-width: 1100px) {
  .about__main__card-container {
    padding: 2em 2.2em;
  }
  .about__main__card-container--left {
    margin-right: 1em;
  }
  .about__main__card-wrapper--left {
    margin-right: 4em;
  }
}
@media only screen and (min-width: 1300px) {
  .about__main__card-container {
    padding: 2em 4em;
  }
}
.tagline {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  max-width: 733px;
  margin-left: auto;
  margin-right: auto;
}
.tagline__main {
  font-size: 1.3rem;
  font-size: clamp(1.3rem, 6vw, 2rem);
  font-weight: 600;
  margin-top: 0;
}
.tagline__main--placeholder {
  font-size: 1.4rem;
}
.tagline__sub {
  margin-top: 0;
  font-size: 1rem;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  align-self: flex-end;
  position: relative;
  top: -0.5em;
  font-weight: 600;
}
.tagline__sub--placeholder {
  font-size: 1rem;
  align-self: flex-start;
}

@media only screen and (min-width: 500px) {
  .tagline__main {
    margin-top: 1em;
  }
  .tagline__main {
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .tagline__sub {
    font-size: 1.1rem;
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  }
}
@media only screen and (min-width: 750px) {
  .tagline__text {
    text-align: center;
  }
  .tagline__main {
    font-size: 1.8rem;
    font-size: clamp(1.8rem, 6vw, 2rem);
  }
  .tagline__sub {
    font-size: 1.2rem;
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }
  .music-theory .tagline__wrapper {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  .music-theory .tagline__main {
    position: relative;
    right: 2.25em;
  }
  .music-theory .tagline__sub {
    position: relative;
    right: -2.25em;
  }
  .piano-lessons .tagline__wrapper {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  .piano-lessons .tagline__main {
    position: relative;
    right: 1.9em;
  }
  .piano-lessons .tagline__sub {
    position: relative;
    right: -1.9em;
  }
}
@media only screen and (min-width: 1024px) {
  .tagline {
    max-width: 777px;
  }
  .tagline__main {
    font-size: 2rem;
    margin-top: 1.5em;
  }
  .tagline__sub {
    font-size: 1.4rem;
  }
}
.border-card__container {
  max-width: 370px;
}
.border-card__wrapper {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.19);
  margin-top: 0;
  padding: 1.5em 0.5em 1.5em 1.5em;
  position: relative;
  border-radius: 4px;
}
.border-card__wrapper--1 {
  margin-top: 2em;
}
.border-card__wrapper::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 3px;
  top: 0;
  left: 0;
  border-radius: 4px 0 0 4px;
}
.border-card__wrapper--1::before {
  background-color: rgba(181, 2, 2, 0.2);
}
.border-card__wrapper--2::before {
  background-color: rgba(181, 2, 2, 0.43);
}
.border-card__wrapper--3::before {
  background-color: rgba(181, 2, 2, 0.65);
}
.border-card__wrapper--4::before {
  background-color: rgb(181, 2, 2);
}
.border-card__header {
  font-weight: 600;
  margin-top: 0;
}
.border-card__detail {
  margin-top: 0;
}
.border-card__arrow {
  display: block;
  margin: 1.3em 0;
  width: 37px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='28.114' height='14.915' viewBox='0 0 28.114 14.915'%3e%3cg id='Group_1981' data-name='Group 1981' transform='translate(-868.943 -211.642)'%3e%3cg id='Group_1979' data-name='Group 1979' transform='translate(186.5 65)'%3e%3cline id='Line_182' data-name='Line 182' x2='13' y2='11' transform='translate(683.5 149.5)' fill='none' stroke='%23b50202' stroke-linecap='round' stroke-width='1.5'/%3e%3cline id='Line_183' data-name='Line 183' y1='11' x2='13' transform='translate(696.5 149.5)' fill='none' stroke='%23b50202' stroke-linecap='round' stroke-width='1.5'/%3e%3c/g%3e%3cg id='Group_1980' data-name='Group 1980' transform='translate(191.5 63.199)'%3e%3cline id='Line_182-2' data-name='Line 182' x2='8.037' y2='6.801' transform='translate(683.5 149.5)' fill='none' stroke='%23b50202' stroke-linecap='round' stroke-width='1.5'/%3e%3cline id='Line_183-2' data-name='Line 183' y1='6.801' x2='8.037' transform='translate(691.537 149.5)' fill='none' stroke='%23b50202' stroke-linecap='round' stroke-width='1.5'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
}

.why .border-card__wrapper {
  box-shadow: none;
}

.why .border-card__wrapper::before {
  height: 80%;
  border-radius: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin: 4em auto 4em;
}
.carousel__body {
  width: 100%;
  position: relative;
}
.carousel__text-container {
  max-width: 72ch;
  display: none;
}
.carousel__text {
  position: relative;
  margin-top: 0;
}
.carousel__text-container--visible {
  display: block;
}
.carousel__dots-container {
  margin: 1em auto;
  display: flex;
}
.carousel__dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FCFCFC;
  border: 1px solid rgb(181, 2, 2);
  opacity: 0.5;
  margin-right: 1.5em;
  transition: opacity 250ms;
  cursor: pointer;
}
.carousel__dot:hover {
  background-color: rgb(181, 2, 2);
  opacity: 1;
}
.carousel__dot:last-child {
  margin-right: 0;
}
.carousel__dot--active {
  background-color: rgb(181, 2, 2);
  opacity: 0.8;
}

@media only screen and (min-width: 750px) {
  .carousel__header {
    text-align: center;
  }
  .carousel__text-container {
    max-width: 72ch;
    text-align: center;
  }
  .carousel__dots-container {
    justify-content: center;
  }
}
@media only screen and (min-width: 900px) {
  .carousel {
    margin: 6em auto 4em;
  }
  .carousel__button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    width: auto;
    height: 120px;
    background-repeat: no-repeat;
    opacity: 0.5;
    top: 28%;
    transform: translateY(-50%);
    padding: 2.5em;
    transition: opacity 250ms;
  }
  .carousel__button--next {
    display: block;
    background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 260'%3e%3cstyle type='text/css'%3e .carousel__next__svg %7b fill: rgba(181, 2, 2, 1);%7d %3c/style%3e%3cpath class='carousel__next__svg' d='M61.3 129.2c-2 4.2-3.9 8.5-5.9 12.7 -4.7 10.1-9.4 20.2-14.1 30.3 -5.7 12.2-11.4 24.4-17.1 36.7 -4.9 10.6-9.9 21.2-14.8 31.8 -2.4 5.1-4.8 10.3-7.2 15.4 0 0.1-0.1 0.1-0.1 0.2 -0.8 1.7 1.8 3.3 2.6 1.5 2-4.2 4-8.5 5.9-12.7 4.7-10.1 9.4-20.2 14.1-30.3 5.7-12.2 11.4-24.4 17.1-36.6 4.9-10.6 9.9-21.2 14.8-31.8 2.4-5.1 4.8-10.3 7.2-15.4 0-0.1 0.1-0.1 0.1-0.2C64.7 129 62.1 127.4 61.3 129.2L61.3 129.2z' /%3e%3cpath class='carousel__next__svg' d='M2.1 3.7c2 4.2 4 8.5 5.9 12.7 4.7 10.1 9.4 20.2 14.1 30.3 5.7 12.2 11.4 24.4 17.1 36.7 4.9 10.6 9.9 21.2 14.8 31.8 1.6 3.5 3.3 7 4.9 10.5 0.8 1.6 1.4 3.4 2.3 4.9 0 0.1 0.1 0.1 0.1 0.2 0.8 1.8 3.4 0.2 2.6-1.5 -2-4.2-3.9-8.5-5.9-12.7 -4.7-10.1-9.4-20.2-14.1-30.3C38.2 74 32.5 61.8 26.8 49.6 21.9 39 16.9 28.4 12 17.8c-1.6-3.5-3.2-7-4.9-10.5 -0.8-1.6-1.4-3.3-2.3-4.9 0-0.1-0.1-0.1-0.1-0.2C3.9 0.4 1.3 2 2.1 3.7L2.1 3.7z' /%3e%3c/svg%3e");
    right: -2.5em;
  }
  .carousel__button--prev {
    display: block;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 66 260'%3e%3cstyle type='text/css'%3e .carousel__prev__svg %7b fill: rgba(181, 2, 2, 1);%7d %3c/style%3e%3cpath class='carousel__prev__svg' d='M4.7 130.8c2-4.2 4-8.5 5.9-12.7 4.7-10.1 9.4-20.2 14.1-30.3 5.7-12.2 11.4-24.4 17.1-36.6 4.9-10.6 9.9-21.2 14.8-31.8 2.4-5.1 4.8-10.3 7.2-15.4 0-0.1 0.1-0.1 0.1-0.2 0.8-1.7-1.8-3.3-2.6-1.5 -2 4.2-3.9 8.5-5.9 12.7 -4.7 10.1-9.4 20.2-14.1 30.3 -5.7 12.2-11.4 24.4-17.1 36.7 -4.9 10.6-9.9 21.2-14.8 31.8 -2.4 5.1-4.8 10.3-7.2 15.4 0 0.1-0.1 0.1-0.1 0.2C1.3 131.1 3.9 132.6 4.7 130.8L4.7 130.8z' /%3e%3cpath class='carousel__prev__svg' d='M63.9 256.3c-2-4.2-3.9-8.5-5.9-12.7 -4.7-10.1-9.4-20.2-14.1-30.3 -5.7-12.2-11.4-24.4-17.1-36.6 -4.9-10.6-9.9-21.2-14.8-31.8 -1.6-3.5-3.2-7-4.9-10.5 -0.8-1.6-1.4-3.3-2.3-4.9 0-0.1-0.1-0.1-0.1-0.2 -0.8-1.7-3.4-0.2-2.6 1.5 2 4.2 4 8.5 5.9 12.7 4.7 10.1 9.4 20.2 14.1 30.3 5.7 12.2 11.4 24.4 17.1 36.7 4.9 10.6 9.9 21.2 14.8 31.8 1.6 3.5 3.3 7 4.9 10.5 0.8 1.6 1.4 3.4 2.3 4.9 0 0.1 0.1 0.1 0.1 0.2C62.1 259.6 64.7 258.1 63.9 256.3L63.9 256.3z' /%3e%3c/svg%3e");
    left: 0;
  }
  .carousel__button--next:hover {
    opacity: 1;
  }
  .carousel__button--prev:hover {
    opacity: 1;
  }
  .carousel__header {
    text-align: center;
  }
  .carousel__text-container {
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5em;
    padding-right: 5em;
  }
  .carousel__text {
    position: relative;
    margin-top: 1.5em;
  }
  .carousel__dots-container {
    margin-top: 3em;
    justify-content: center;
  }
}
.accordion__item {
  cursor: pointer;
  position: relative;
}
.accordion__question {
  font-weight: 600;
}
.accordion__answer {
  max-height: 0;
  overflow: hidden;
  cursor: auto;
}

.accordion__answer > ul > li {
  font-size: 0.92rem;
  margin-bottom: 0.5em;
}

.accordion__answer--ul {
  margin-top: 1em;
}

.accordion__answer--list--sub {
  font-size: 0.92rem;
  margin-bottom: 0.5em;
  margin-left: 2em;
  list-style-type: circle;
}

.accordion__answer--ol {
  margin-top: 0.5em;
}

.accordion__inner-paragraph {
  margin-top: 0;
  font-size: 0.92rem;
}

.accordion__answer > p {
  font-size: 0.92rem;
  margin-top: 0.5em;
}

.accordion__answer > p:first-child {
  font-size: 0.92rem;
  margin-top: 0;
}

.accordion__item.accordion__item--open::before {
  opacity: 0;
}

@media only screen and (min-width: 600px) {
  .accordion__item::before {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: #121212;
    right: calc(10% + 7px);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
  }
  .accordion__item::after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #121212;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
  }
  .accordion__question {
    max-width: 80%;
  }
  .accordion__answer {
    max-width: 80%;
  }
}
#consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em 2em 1.5em;
  background-color: rgba(253, 253, 253, 0.97);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  z-index: 50;
}

.consent-text {
  color: var(--black);
  font-family: var(--ff2-ss);
  font-weight: 400;
  font-size: 0.9rem;
  margin: 0.5em 0;
  max-width: 100ch;
}

.policy-link,
.consent-link {
  color: var(--black);
  font-family: var(--ff2-ss);
  font-weight: 700;
  text-decoration: underline;
}

.policy-link {
  font-size: 0.9rem;
}

.consent-link {
  display: inline-block;
  text-transform: uppercase;
  padding: 1em 2em;
  margin: 0.5em 0;
  opacity: 0.8;
  border: 1px solid var(--black);
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}

.consent-link:hover {
  opacity: 1;
}

@media only screen and (min-width: 900px) {
  #consent-popup {
    padding: 1.5em 2em 0.8em;
  }
}
.Upcoming {
  max-width: 80%;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 4.5em;
}
.Upcoming b {
  font-weight: 700;
}
.Upcoming__hr {
  margin-top: 2em;
  margin-bottom: 3em;
  border-top-color: black;
  opacity: 0.2;
}
.Upcoming__hr.bottom {
  margin-top: 0;
  margin-bottom: 4em;
}
.Upcoming .title {
  font-size: 2em;
  font-family: var(--ff1-ss);
}
.Upcoming .superTitle {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
  opacity: 0.5;
}
.Upcoming .mainTitle {
  margin-top: 0;
  margin-bottom: 0.25em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
}
.Upcoming .mainTitle .instruments {
  font-size: 0.75em;
  opacity: 0.5;
}
.Upcoming .description {
  margin-top: 0;
  line-height: 1.4;
  max-width: 300px;
  margin-inline: auto;
}
.Upcoming .detailWrapper {
  margin-top: 1em;
}
.Upcoming .detailWrapper > * {
  margin-top: 0;
  margin-bottom: 0;
}
.Upcoming .buttonWrapper {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
}
.Upcoming .button {
  font-family: var(--ff2-ss);
  font-size: 0.95em;
  padding: 0.8em 1.25em;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
  height: fit-content;
}
.Upcoming .button:focus {
  outline: 2px rgb(4, 149, 222) solid;
  outline-offset: 2px;
}
.Upcoming .button.tickets {
  font-weight: 700;
  background-color: rgb(181, 2, 2);
  border: 2px rgb(181, 2, 2) solid;
  color: white;
}
.Upcoming .button.tickets:hover {
  background-color: rgb(119, 3, 3);
}
.Upcoming .button.detail {
  font-weight: 700;
  color: rgb(181, 2, 2);
  border: 2px rgb(181, 2, 2) solid;
  background: white;
}
.Upcoming .button.detail:hover {
  background: #f2f2f2;
  border-color: rgba(181, 2, 2, 0.65);
}

@media screen and (min-width: 1024px) {
  .Upcoming {
    text-align: left;
    max-width: 750px;
    margin-inline: auto;
    margin-bottom: 4em;
  }
  .Upcoming .container {
    display: grid;
    grid-template: "main details" auto "main buttons" auto/1fr 1fr;
    place-content: center;
  }
  .Upcoming .description {
    margin-inline: unset;
  }
  .Upcoming .mainWrapper {
    grid-area: main;
  }
  .Upcoming .detailWrapper {
    margin-top: 0;
    grid-area: details;
    align-self: flex-end;
  }
  .Upcoming .buttonWrapper {
    grid-area: buttons;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: max-content;
  }
}
section, article, footer {
  margin-top: 3em;
}

main, footer {
  padding: 0 6%;
}

@media only screen and (min-width: 900px) {
  section, article {
    margin-top: 3em;
  }
  main, footer {
    padding: 0 10%;
  }
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-container {
  height: 550px;
  position: relative;
  background-color: rgb(181, 2, 2);
}
.hero-img-container::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.hero-img-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.hero-img-container--home::after {
  background: linear-gradient(14deg, rgb(28, 11, 11) 0%, rgba(108, 84, 84, 0.27) 31%, rgba(138, 111, 111, 0) 52%, rgba(255, 255, 255, 0) 100%);
}
.hero-img--home::after {
  content: "";
  display: block;
  position: absolute;
}
.hero-img-container--about::after {
  background: linear-gradient(6deg, rgba(77, 43, 4, 0.71) 0%, rgba(185, 185, 185, 0) 35%, rgba(0, 0, 0, 0) 100%);
}
.hero-img--about::after {
  content: "";
  display: block;
  position: absolute;
}

.header-wrapper--mobile {
  color: #FCFCFC;
  margin-left: 6%;
  z-index: 2;
  position: absolute;
  bottom: 10%;
}
.header__container--desktop {
  display: none;
}

.header__text--about {
  font-size: 1rem;
  max-width: 90%;
}

.music-theory .hero-img-container::before {
  background: linear-gradient(27deg, rgba(57, 41, 13, 0.17) 25%, rgba(88, 57, 10, 0.11) 46%, rgba(128, 128, 128, 0) 100%);
}

.piano-lessons .hero-img-container::before {
  background: linear-gradient(11deg, rgb(18, 18, 18) 22%, rgba(67, 67, 67, 0) 80%);
  opacity: 0.42;
}

@media only screen and (min-width: 900px) {
  .hero-img-container {
    height: 100vh;
    overflow: hidden;
  }
  .hero-img-container--home::after {
    background: linear-gradient(146deg, rgba(49, 5, 5, 0.83) 0%, rgba(123, 98, 98, 0) 31%, rgba(137, 126, 126, 0) 46%, rgba(123, 98, 98, 0) 58%, rgba(74, 0, 0, 0.5) 100%);
    background-clip: padding-box;
  }
  .hero-img-container::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    background-clip: padding-box;
  }
  .hero-img-container--home::before {
    background: linear-gradient(50deg, rgba(167, 0, 0, 0.73) 0%, rgba(137, 126, 126, 0) 31%, rgba(190, 190, 190, 0) 46%, rgba(175, 19, 19, 0.42) 100%);
    opacity: 0.7;
  }
  .header {
    width: auto;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .header-wrapper--mobile {
    display: none;
  }
  .header-wrapper--desktop--2 {
    text-align: right;
    overflow: hidden;
  }
  .header-wrapper--desktop--2--about {
    opacity: 0;
    position: absolute;
  }
  .header-wrapper--desktop--about--1 {
    position: absolute;
  }
  .header__container--desktop {
    width: 100%;
    color: #FCFCFC;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 8%;
  }
  .header__container--desktop--about {
    display: block;
    padding: 0 8% 5%;
  }
  .header__title--2--about {
    text-align: left;
  }
  .header__text {
    max-width: 26ch;
    font-weight: 300;
    font-size: 1rem;
  }
  .header__text--about {
    text-align: left;
  }
  .hero-img-container--about::after {
    background: linear-gradient(180deg, rgb(255, 250, 240) 0%, rgba(255, 250, 240, 0.27) 22%, rgba(255, 250, 240, 0.13) 36%, rgba(128, 128, 128, 0) 100%);
    background-clip: padding-box;
  }
  .hero-img-container--about::before {
    background: linear-gradient(0deg, rgba(77, 43, 4, 0.71) 0%, rgba(185, 185, 185, 0) 35%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.7;
  }
  .header__title--about {
    font-size: 2.1rem;
  }
  .header__text--about {
    max-width: 100%;
    font-weight: 600;
  }
}
@media only screen and (min-width: 900px) and (orientation: portrait) {
  .hero-img-container {
    height: 768px;
  }
  .header {
    height: auto;
  }
}
.hero-img-container--services {
  height: 430px;
}

.header-wrapper--services {
  margin: 2em 6%;
  color: #121212;
  position: static;
}
.header__text--services {
  font-size: 1rem;
}

@media only screen and (min-width: 900px) {
  .hero-img-container--services {
    height: 100vh;
  }
  .piano-accompaniment .hero-img-container::before {
    background: linear-gradient(100deg, rgb(18, 18, 18) 45%, rgba(252, 252, 252, 0) 51%);
    opacity: 0.55;
  }
  .music-theory .hero-img-container::before {
    background: linear-gradient(18deg, rgba(47, 33, 10, 0.52) 22%, rgba(88, 57, 10, 0.41) 46%, rgba(128, 128, 128, 0) 100%);
    opacity: 0.7;
  }
  .piano-lessons .hero-img-container::before {
    background: linear-gradient(11deg, rgb(18, 18, 18) 22%, rgba(67, 67, 67, 0) 80%);
    opacity: 0.42;
  }
  .piano-lessons .hero-img-container::after {
    background: linear-gradient(180deg, rgb(18, 18, 18) 0%, rgba(67, 67, 67, 0) 30%);
    opacity: 0.75;
  }
  .header {
    width: auto;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .header-wrapper--services {
    margin: 2em 6%;
    color: #FCFCFC;
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__text--services {
    font-size: 1rem;
    max-width: 100%;
    font-weight: 600;
  }
}
@media only screen and (min-width: 900px) and (orientation: portrait) {
  .hero-img-container--services {
    height: 768px;
  }
  .header {
    height: auto;
  }
}
.mini-about__container--1 {
  display: none;
}
.mini-about__img-wrapper {
  margin-top: 2em;
}
.mini-about__img {
  width: 100%;
  border-radius: 4px;
}

@media only screen and (min-width: 900px) {
  .mini-about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    grid-gap: 4em;
  }
  .mini-about__title-wrapper {
    order: 2;
    justify-self: end;
  }
  .mini-about__title {
    font-size: 4rem;
    text-align: right;
  }
  .mini-about__tagline {
    font-size: 1.4rem;
    text-align: right;
  }
  .mini-about__img-wrapper {
    margin-top: 3em;
    max-width: 476px;
  }
  .mini-about__img-wrapper--2 {
    justify-self: end;
  }
}
.home-services__container {
  display: grid;
  grid-row-gap: 2.5em;
  padding-top: 2%;
}
.home-services__wrapper--placeholder {
  display: none;
}
.home-services__title {
  font-weight: 600;
}
.home-services__li {
  line-height: 2.2;
}

@media only screen and (min-width: 750px) {
  .home-services__container {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 3.5em;
    grid-column-gap: 2.5em;
  }
  .home-services__wrapper--placeholder {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 376.3 474.6'%3e%3cstyle type='text/css'%3e .st0%7bopacity:0.45;fill:%23EDC5C4;%7d %3c/style%3e%3cpath class='st0' d='M4.1 293.3l310.9 179.5c3 1.7 6.8 0.7 8.5-2.3l24.9-43.1c12.7-21.9 25-44.8 26.8-70.6 1.8-26.6-10.3-49-21.9-72 -7.9-15.7-15-31.8-21.3-48.2 -10.5-27.6-18.9-56.2-23.2-85.5 -5.2-35.9 3.7-79.4-18.4-110.7 -20.9-29.6-58.1-44.6-93.6-37.6 -12.9 2.5-25.7 8.2-36.2 16.6 -11.2 9.1-17.9 21.6-25 33.9 -10.5 18.2-21 36.5-31.6 54.7C80 149.4 56 191 32 232.6L1.8 284.8C0.1 287.8 1.1 291.6 4.1 293.3z'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .home-services__placeholder {
    width: 40%;
  }
}
@media only screen and (min-width: 1200px) {
  .home-services__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-services__wrapper--placeholder {
    display: none;
  }
}
.video__header {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
}
.video__wrapper {
  margin-top: 1em;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video__text {
  max-width: 50ch;
}

@media only screen and (min-width: 750px) {
  .video {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .video__wrapper {
    margin-top: 2em;
  }
  .video__text {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 900px) {
  .video__wrapper {
    position: static;
    padding: 0;
    width: 720px;
    height: 405px;
    margin-left: auto;
    margin-right: auto;
  }
  .video__iframe {
    position: static;
  }
}
.contact {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.contact__text {
  max-width: 35ch;
}
.contact__fill-wrapper {
  display: none;
}

@media only screen and (min-width: 750px) {
  .contact {
    text-align: center;
  }
  .contact__text {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-form {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .contact {
    display: grid;
    text-align: left;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 3em;
  }
  .contact__text {
    margin-left: 0;
  }
  .contact-form {
    margin-left: 0;
  }
  .contact .contact__fill-wrapper {
    display: block;
    position: relative;
    margin-left: 3em;
  }
  .contact .contact__fill-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 296.8 374.2'%3e%3cstyle type='text/css'%3e .st0%7bopacity:0.45;fill:%23EDC5C4;%7d %3c/style%3e%3cpath class='st0' d='M3.4 231.2l244.8 141.4c2.3 1.4 5.3 0.6 6.7-1.8l19.6-34c10-17.3 19.7-35.3 21.1-55.6 1.5-21-8.1-38.6-17.2-56.7 -6.2-12.4-11.8-25-16.8-38 -8.3-21.8-14.9-44.3-18.2-67.4 -4.1-28.3 2.9-62.5-14.5-87.2 -16.4-23.3-45.7-35.1-73.7-29.6 -10.1 2-20.3 6.4-28.5 13.1 -8.8 7.1-14.1 17-19.7 26.7 -8.3 14.4-16.6 28.7-24.9 43.1 -18.9 32.8-37.8 65.5-56.7 98.3L1.7 224.5C0.3 226.9 1.1 229.8 3.4 231.2z'/%3e%3c/svg%3e");
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
  }
  .contact .contact__fill-svg {
    width: 100%;
  }
}
.footer--desktop {
  display: none;
}
.footer--mobile__social-text {
  font-size: 1.12rem;
}
.footer--mobile__social-container {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
  max-width: 230px;
}
.footer--mobile__social-wrapper {
  width: 30px;
}
.footer--mobile__social__anchor {
  display: block;
  position: relative;
}
.footer--mobile__social__anchor::before {
  content: "";
  display: block;
  position: absolute;
  width: 200%;
  height: 150%;
  top: -30%;
  left: -45%;
  opacity: 0.3;
}
.footer--mobile__link-wrapper {
  margin-top: 2em;
}
.footer--mobile__links {
  display: block;
  position: relative;
  margin-top: 2em;
  font-weight: 600;
}
.footer--mobile__links::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  padding: 2em;
}
.footer--mobile__divider {
  display: block;
  height: 2px;
  width: 100%;
  background-color: rgb(181, 2, 2);
  margin-top: 3em;
}
.footer--mobile__svg-wrapper {
  width: 50px;
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
}
.footer--mobile__logo-text {
  text-align: center;
  margin-top: 0.3em;
}

.copyright {
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1em;
}

@media only screen and (min-width: 750px) {
  .footer--mobile {
    display: none;
  }
  .footer--desktop {
    padding-top: 2em;
    padding-bottom: 5em;
    display: grid;
    grid-gap: 1em;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    position: relative;
  }
  .footer--desktop__link-wrapper--4 {
    text-align: center;
    margin-top: 6em;
    grid-column: 2/3;
    justify-self: stretch;
    padding-left: 1em;
    padding-right: 1em;
    position: relative;
  }
  .footer--desktop__link-wrapper--4::before {
    content: "";
    display: block;
    position: absolute;
    width: 320%;
    height: 3px;
    background-color: rgb(181, 2, 2);
    left: 50%;
    transform: translateX(-50%);
    top: -3.5em;
  }
  .footer--desktop__link--main {
    display: flex;
    flex-flow: column;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    padding: 0;
  }
  .footer--desktop__link--sub {
    text-transform: none;
    margin-top: 1em;
  }
  .footer--desktop__social-container {
    display: flex;
    justify-content: space-between;
  }
  .footer--desktop__social-wrapper {
    margin-top: 1em;
    width: 30px;
  }
  .footer--desktop__svg-wrapper {
    width: 50px;
    margin-top: 4em;
    margin-left: auto;
    margin-right: auto;
  }
  .footer--desktop__logo-text {
    text-align: center;
    margin-top: 0.3em;
    font-size: 2rem;
  }
  .copyright {
    position: absolute;
    font-size: 1rem;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 1150px) {
  footer {
    padding-bottom: 1.5em;
  }
  .footer--desktop {
    grid-gap: 2em;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    padding-bottom: 0;
  }
  .footer--desktop__link-wrapper--4 {
    margin-top: 0;
    grid-column: 4/-1;
  }
  .footer--desktop__link-wrapper--4::before {
    display: none;
  }
  .footer--desktop__svg-wrapper {
    margin-top: 6em;
  }
  .copyright {
    position: absolute;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 0;
    bottom: 0;
    right: auto;
  }
}
.btn--about {
  margin-bottom: 1.5em;
}

.about__opening-text {
  margin-top: 2em;
  max-width: 900px;
}

.about__main__flex {
  margin-top: 2em;
}
.about__main__img-wrapper {
  border-radius: 4px;
  margin-top: 2em;
}
.about__main__img {
  width: 100%;
  border-radius: 4px;
}

@media only screen and (min-width: 820px) {
  .about__opening {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
  .about__opening-text {
    margin-top: 2em;
    text-align: center;
  }
  .about__main__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .about__main__flex--reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .about__main__flex--left {
    margin-right: 4em;
  }
  .about__main__text-right {
    text-align: right;
  }
}
.btn--how--desktop, .btn--why--desktop {
  display: none;
}

.btn--how--mobile, .btn--why--mobile {
  margin-top: 3em;
}

.how__title, .why__title {
  font-size: 24px;
  font-size: clamp(24px, 5vw, 34px);
}
.how__text, .why__text {
  margin-top: 1em;
  max-width: 45ch;
}

.how__note__container {
  margin-top: 3em;
}
.how__note__anchor {
  text-decoration: underline;
}

.why .border-card__wrapper {
  margin-top: 3em;
}

@media only screen and (min-width: 750px) {
  .how, .why {
    text-align: center;
  }
  .how__text, .why__text {
    margin-left: auto;
    margin-right: auto;
  }
  .border-card__container {
    margin-left: auto;
    margin-right: auto;
  }
  .border-card__arrow {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 900px) {
  .btn--how--mobile, .btn--why--mobile {
    display: none;
  }
  .btn--how--desktop, .btn--why--desktop {
    display: inline-block;
  }
  .how, .why {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .how__text, .why__text {
    max-width: 48ch;
    margin-left: 0;
  }
  .how__main-container {
    flex: 1;
    margin-right: 5em;
  }
  .why {
    flex-direction: row-reverse;
  }
  .why__main-container {
    flex: 1;
    margin-left: 5em;
    text-align: right;
  }
  .why .border-card__container {
    max-width: none;
  }
  .border-card__container {
    flex: 1;
  }
  .border-card__arrow {
    margin-left: 0;
  }
  .how__note__container {
    margin-top: 2em;
  }
}
.testimonial {
  max-width: 850px;
}

@media only screen and (min-width: 750px) {
  .testimonial {
    margin-top: 5em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing {
  margin-top: 4em;
}
.pricing__container {
  display: grid;
  grid-row-gap: 3.5em;
  padding-top: 2%;
  margin-top: 1em;
}
.pricing__title {
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.pricing__price {
  font-size: 2.5em;
  margin-top: -0.5em;
}
.pricing__desc {
  margin-top: -1em;
  margin-bottom: 1em;
}
.pricing__li {
  line-height: 2.2;
}

@media only screen and (min-width: 750px) {
  .pricing {
    margin-top: 5em;
  }
  .pricing__container {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 3.5em;
    grid-column-gap: 2.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing {
    margin-top: 6em;
  }
  .pricing__container {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: calc(20% - 160px);
  }
}
.faqs {
  margin-top: 4em;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.faqs__subheader {
  font-size: 1.3rem;
  text-align: left;
}
.faqs__item {
  text-align: left;
  margin-top: 0.1em;
  border-top: 1px solid #e6e6e6;
  padding: 1em 0 1em;
}
.faqs__item:first-child {
  margin-top: 0.7em;
  border: none;
}
.faqs__question {
  font-size: 0.95rem;
  padding: 0.7em 1em 0.6em;
  line-height: 1.6;
}
.faqs__answer {
  font-size: 0.92rem;
  padding: 0 1em;
  margin-top: 0;
}
.faqs a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline;
}

@media only screen and (min-width: 750px) {
  .faqs {
    margin-top: 5em;
  }
}
@media only screen and (min-width: 900px) {
  .faqs {
    margin-top: 6em;
  }
}
.cookies header {
  height: auto;
  margin-bottom: 6em;
}

.cookies h2 {
  margin-top: 1.5em;
}

#cookie-policy {
  max-width: 800px;
}
#cookie-policy li {
  list-style-type: circle;
  margin-left: 2em;
  margin-top: 0.5em;
}
#cookie-policy a {
  font-weight: 600;
  text-decoration: underline;
}

.cookies h3 {
  margin-top: 1.5em;
}

.cookie-header {
  color: rgb(181, 2, 2);
}

h2.cookie-subheader--1 {
  margin-top: 0.5em;
}

@media only screen and (min-width: 500px) {
  .cookies header {
    height: auto;
    margin-bottom: 8em;
  }
}

/*# sourceMappingURL=style.css.map */
