*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background: #FFF1F1;
  color: #101c27;
}
body h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  color: #101c27;
}
body h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: #101c27;
}
body h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  margin: 8px 0 16px;
}
body h3 i {
  color: #C1C0BA;
}
body strong {
  font-weight: bold;
}
body p {
  font-size: 16px;
  font-weight: normal;
  line-height: 23px;
  color: #101c27;
  margin: 0 0 16px;
}
body a {
  line-height: 22px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
body a.button,
body button {
  font-family: "Outfit", sans-serif;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #C1C0BA;
  color: #fff;
  border-radius: 12px;
  border: 2px solid #a9a79f;
  padding: 8px 24px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  height: 60px;
  text-align: center;
}
body a.button:hover,
body button:hover {
  outline: 4px solid white;
  background: #a9a79f;
}
body a.button:active,
body button:active {
  background: #848377;
}
body a.button:focus,
body button:focus {
  outline: 4px solid white;
}
body img {
  width: 100%;
}
body .mobile-overlay {
  z-index: 101;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(193, 192, 186, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
}
body .mobile-overlay.open {
  transition: all 0.2s ease-in-out;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  body h1 {
    font-size: 26px;
  }
  body h3 {
    margin: 32px 0 16px;
  }
}
@media screen and (min-width: 1024px) {
  body h1 {
    font-size: 35px;
  }
}

header {
  margin: 0 0 56px;
}
header > .container {
  min-height: 320px;
  position: relative;
  max-width: 100%;
}
header > .container .bg-img {
  background-image: url("../img/2025-piano.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
  height: 100%;
  width: 100%;
  position: absolute;
}
header > .container .bg-img.lessons-fees {
  background-image: url("../img/2025-hero2-desktop.webp");
  background-position-x: -100px;
  transform: scaleX(-1);
}
header > .container .bg-img.exams-shows {
  background-image: url("../img/hero3-desktop.webp");
  background-position-x: -100px;
}
header > .container .overlay {
  z-index: 100;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  padding: 120px 16px 0;
}
header > .container .overlay h1 {
  margin: 16px 0 8px;
  color: #fff;
  width: 80%;
}
header > .container .overlay span {
  color: #fff;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  header {
    margin: 0 0 40px;
  }
  header > .container {
    min-height: 320px;
  }
  header > .container .bg-img {
    background-position-y: -99px;
    background-position-x: 0;
  }
  header > .container .bg-img.lessons-fees {
    background-position-y: -50px;
    background-position-x: 0;
  }
  header > .container .bg-img.exams-shows {
    background-position-x: 0;
  }
  header > .container .overlay {
    padding: 160px 16px 0;
  }
}
@media screen and (min-width: 1024px) {
  header {
    display: flex;
    justify-content: center;
    min-height: 400px;
  }
  header > .container .bg-img {
    background-position-y: -110px;
  }
  header > .container .bg-img.lessons-fees {
    background-position-y: -50px;
  }
  header > .container .bg-img.exams-shows {
    background-position-y: -200px;
  }
  header > .container .overlay {
    padding: 200px 0;
  }
  header > .container .overlay h1 {
    width: 900px;
    margin: 0 auto 6px;
  }
  header > .container .overlay span {
    display: block;
    width: 900px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  header {
    display: flex;
    justify-content: center;
    min-height: 450px;
  }
  header > .container .bg-img {
    background-position-y: -150px;
  }
  header > .container .bg-img.lessons-fees {
    background-position-y: -290px;
  }
  header > .container .overlay h1 {
    width: 1140px;
    margin: 0 auto 6px;
  }
  header > .container .overlay span {
    display: block;
    width: 1140px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1400px) {
  header > .container .bg-img {
    background-position-y: -460px;
  }
}
header .card.get-in-touch {
  z-index: 100;
  box-shadow: 0px 14px 24px rgba(157, 157, 157, 0.2);
  background: #fff;
  border-radius: 12px;
  margin: 0 16px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
header .card.get-in-touch .icons {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
}
header .card.get-in-touch .icon {
  font-size: 22px;
  color: #fff;
}
@keyframes updown {
  0% {
    transform: translateY(0%) scale(1.1) rotate(inherit);
  }
  50% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%) scale(1.1) rotate(inherit);
  }
}
header .card.get-in-touch .icon.icon-1 {
  animation: updown 3s ease-in-out 0.5s infinite;
  top: -30px;
  left: 5%;
  transform: rotate(15deg);
}
header .card.get-in-touch .icon.icon-2 {
  animation: updown 3s ease-in-out 0.7s infinite;
  top: -34px;
  left: 17%;
}
header .card.get-in-touch .icon.icon-3 {
  animation: updown 3s ease-in-out 0.5s infinite;
  top: -35px;
  left: 52%;
  transform: rotate(-20deg);
}
header .card.get-in-touch .icon.icon-4 {
  animation: updown 3s ease-in-out 1s infinite;
  top: -27px;
  left: 42%;
  transform: rotate(10deg);
}
header .card.get-in-touch .icon.icon-5 {
  animation: updown 3s ease-in-out 0.3s infinite;
  top: -31px;
  left: 29%;
  transform: rotate(-20deg);
}
header .card.get-in-touch .icon.icon-6 {
  animation: updown 3s ease-in-out 1s infinite;
  top: -39px;
  left: 65%;
  transform: rotate(20deg);
}
header .card.get-in-touch .icon.icon-7 {
  animation: updown 3s ease-in-out 0.5s infinite;
  top: -29px;
  left: 77%;
  transform: rotate(20deg);
}
header .card.get-in-touch .icon.icon-8 {
  animation: updown 3s ease-in-out 0.8s infinite;
  top: -30px;
  left: 88%;
  transform: rotate(-10deg);
}
header .card.get-in-touch h2 {
  display: flex;
  flex: 1;
  font-weight: normal;
  align-items: center;
  padding: 0 6px 0 0;
}
header .card.get-in-touch h2 i {
  color: #C1C0BA;
  font-size: 24px;
  margin: 0 8px 0 0;
}
header .card.get-in-touch a.button {
  height: 50px;
}
@media screen and (min-width: 768px) {
  header .card.get-in-touch {
    margin: 0 auto 6px;
    max-width: 400px;
  }
  header .card.get-in-touch .icon {
    font-size: 28px;
  }
  header .card.get-in-touch h2 {
    padding: 0;
  }
  header .card.get-in-touch h2 i {
    font-size: 30px;
    margin: 0 16px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  header .card.get-in-touch {
    margin: 0 auto 6px;
    max-width: 500px;
  }
}

nav {
  position: absolute;
  top: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  width: 100%;
}
nav a {
  z-index: 101;
}
nav a .logo {
  z-index: 101;
  display: flex;
}
nav a .logo img {
  width: 150px;
  height: 82px;
}
nav .navigation {
  z-index: 101;
}
nav .navigation .burger {
  background: rgba(255, 255, 255, 0.8);
  padding: 8px;
  border-radius: 12px;
}
nav .navigation .burger i {
  font-size: 2rem;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  nav .navigation .burger {
    display: none;
  }
}
nav .navigation .nav-list {
  z-index: 101;
  position: fixed;
  bottom: -100%;
  left: 0;
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
nav .navigation .nav-list.open {
  box-shadow: 0px -10px 24px rgba(16, 28, 39, 0.1);
  bottom: 0;
  transition: all 0.3s ease-out;
}
nav .navigation .nav-list .close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 24px;
  color: #C1C0BA;
}
nav .navigation .nav-list a {
  color: #1f364b;
  margin: 16px 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
}
nav .navigation .nav-list a:active, nav .navigation .nav-list a:focus, nav .navigation .nav-list a:hover {
  color: #9d9b92;
}
@media screen and (min-width: 768px) {
  nav a .logo img {
    width: 180px;
    height: 99px;
  }
}
@media screen and (min-width: 1024px) {
  nav {
    padding: 16px 0;
    max-width: 900px;
    margin: 0 auto;
  }
  nav a .logo img {
    width: 220px;
    height: 121px;
  }
  nav .navigation {
    width: 500px;
  }
  nav .navigation .nav-list {
    background: transparent;
    flex-direction: row;
    position: relative;
    padding: 0;
    justify-content: space-between;
    transition: none;
  }
  nav .navigation .nav-list a {
    color: #fff;
    margin: 0;
    font-size: 18px;
    width: unset;
  }
  nav .navigation .nav-list a:active, nav .navigation .nav-list a:focus, nav .navigation .nav-list a:hover {
    color: rgba(255, 255, 255, 0.5);
  }
  nav .navigation .close {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  nav {
    max-width: 1140px;
    margin: 0 auto;
  }
}

main {
  position: relative;
}

.container {
  padding: 0 16px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 900px;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.card {
  box-shadow: 0px 14px 24px rgba(157, 157, 157, 0.2);
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex: 1;
  padding: 16px 8px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}
.card .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 24px 0 16px;
}
.card .buttons .button {
  margin: 0 4px;
}
.card.profile {
  flex-direction: column;
  align-items: center;
  padding: 24px 24px;
}
.card.profile .profile-img {
  display: flex;
  justify-content: center;
  border: 4px solid #C1C0BA;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 0 16px;
}
.card.profile .profile-img img {
  width: 250px;
  height: 250px;
}
.card.profile .img {
  margin: 16px 0 24px;
}
.card.form {
  position: relative;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  margin: -120px 0 0;
  width: 100%;
}
.card.form .form-response {
  margin: 40px 0 0;
  align-items: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  transition: all 1s ease;
  opacity: 0;
  top: 56px;
}
.card.form .form-response.show {
  opacity: 1;
}
.card.form .form-response h2 {
  font-size: 26px;
  margin: 0 0 8px;
}
.card.form .form-response i {
  margin: 0 0 16px;
  color: #C1C0BA;
}
.card .icon {
  position: absolute;
  color: rgba(193, 192, 186, 0.2);
}
.card .icon.icon-1 {
  top: 238px;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .card.profile {
    margin: 20px 0;
  }
  .card.profile .profile-img img {
    width: 200px;
    height: 200px;
  }
  .card.form {
    z-index: 100;
    margin: -120px 0 0;
    width: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .card.profile {
    flex-direction: row;
    justify-content: space-between;
  }
  .card.profile .profile-img img {
    width: 225px;
    height: 225px;
  }
  .card.profile .profile-text {
    flex: 3;
    margin: 0 0 0 24px;
  }
  .card.form {
    z-index: 100;
    margin: -120px 0 0;
    width: 600px;
  }
  .card .buttons {
    justify-content: flex-start;
  }
  .card .buttons .button {
    margin: 0 16px 0 0;
  }
}

footer {
  background: #101c27;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 56px;
  margin: 48px 0 0;
  text-align: center;
}
footer .logo {
  margin: 0 0 24px;
}
footer .logo img {
  width: 163px;
  height: 90px;
}
footer a {
  display: block;
  color: #fff;
  line-height: 28px;
  margin: 0 0 16px;
  transition: all 0.3s ease-in-out;
}
footer a:hover {
  color: #C1C0BA;
}
footer a i {
  padding: 0 8px 0 0;
}
footer p {
  color: #fff;
  width: 70%;
}
footer p i {
  padding: 0 8px 0 0;
}

form {
  width: 100%;
  padding: 0 16px 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 240px;
  transition: all 0.3s, opacity linear;
}
form.hide {
  transition: all 0.3s, opacity linear;
  opacity: 0;
  height: 200px;
  z-index: -1;
}
form fieldset {
  display: flex;
  flex-direction: column;
  margin: 0 0 24px;
}
form fieldset span {
  display: block;
  margin: 6px 0 0 4px;
  font-size: 16px;
  color: red;
  font-weight: bold;
  display: none;
}
form fieldset label {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #C1C0BA;
}
form fieldset input,
form fieldset select,
form fieldset textarea {
  height: 50px;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 16px;
  border: 1px solid #d3d3d3;
}
form fieldset input:active, form fieldset input:focus,
form fieldset select:active,
form fieldset select:focus,
form fieldset textarea:active,
form fieldset textarea:focus {
  border: 1px solid #C1C0BA;
}
form fieldset input:focus-visible,
form fieldset select:focus-visible,
form fieldset textarea:focus-visible {
  outline: 1px solid #C1C0BA;
  box-shadow: 0px 14px 24px rgba(255, 99, 99, 0.2);
}
form fieldset textarea {
  font-family: "Outfit", sans-serif;
  padding: 16px;
  height: 150px;
  width: 100%;
}

iframe {
  padding: 0 16px;
}

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