*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 50%;
}
@media only screen and (min-width: 46.875em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (min-width: 68.75em) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (min-width: 100em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  min-width: 300px;
  max-width: 1920px;
  background-color: whitesmoke;
}

.container {
  background-color: white;
  width: 100%;
  padding: 0 2rem;
  padding-top: 2rem;
  margin: 0 auto;
}
@media only screen and (min-width: 46.875em) {
  .container {
    padding: 0 8rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 68.75em) {
  .container {
    padding: 0 16rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 100em) {
  .container {
    padding: 0 20rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.heading-large {
  font-size: 3rem;
  font-weight: 600;
}
@media only screen and (min-width: 100em) {
  .heading-large {
    font-size: 2.6rem;
  }
}
.heading-large--white {
  color: white;
}

.heading-medium {
  font-size: 3.2rem;
  font-weight: 600;
}
@media only screen and (min-width: 68.75em) {
  .heading-medium {
    font-size: 2rem;
  }
}

.paragraph-large {
  font-size: 2rem;
}

.paragraph-medium {
  font-size: 1.6rem;
}

.active-link {
  color: #a5a4f0;
}

.instagram-heading {
  text-align: center;
  padding-top: 8rem;
  font-size: 4rem;
  font-weight: 600;
  color: #413c69;
  margin-top: 0 !important;
}
@media only screen and (min-width: 68.75em) {
  .instagram-heading {
    font-size: 4.8rem;
    text-align: left;
  }
}

.instagram-subheading {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 4rem;
  color: grey;
}
@media only screen and (min-width: 68.75em) {
  .instagram-subheading {
    text-align: left;
  }
}

.instagram-card {
  flex: 1;
  max-width: 40rem;
  margin: 0 auto;
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}
@media only screen and (min-width: 68.75em) {
  .instagram-card:not(:last-child) {
    margin-right: 4rem;
  }
}
.instagram-card__image {
  width: 100%;
  height: 35rem;
  object-fit: cover;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.instagram-card__bottom {
  width: 100%;
}
.instagram-card__details {
  width: 60%;
  display: inline-block;
  margin-bottom: -1rem;
}
.instagram-card__title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: -1rem;
}
.instagram-card__date {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.instagram-card__link {
  width: 10rem;
  margin-left: auto;
  display: block;
  text-align: center;
  text-transform: uppercase;
  background-color: #413c69;
  border-radius: 1.4rem;
  border: solid 0.5rem #413c69;
  padding: 1rem 2rem;
  transition: all 0.4s;
}
.instagram-card__link:link,
.instagram-card__link:visited {
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}
.instagram-card__link:hover,
.instagram-card__link:active {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  background-color: #ffffff;
  color: #413c69;
}

.icon-ring {
  width: 8rem;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: solid 2px #ffffff;
}
@media only screen and (min-width: 68.75em) {
  .icon-ring {
    width: 6rem;
    height: 6rem;
  }
}
.icon-ring:hover {
  background-color: #ffffff2c;
}
.icon-ring > img {
  height: 50%;
  width: 50%;
}

.icon-ring:not(:last-child) {
  margin-right: 2rem;
}

.iframe {
  width: 100%;
  height: 24rem;
}

.big-iframe {
  width: 100%;
  height: 100%;
}

.big-map {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}

.big-canvas {
  width: 100%;
  height: 40rem;
  max-width: 80rem;
  overflow: hidden;
  background: none !important;
}

.mapouter {
  position: relative;
  width: 280px;
  max-width: 40rem;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
}

.footer {
  padding: 6rem 2rem 1rem 2rem;
  color: #ffffff;
  background-color: #191a1f;
}
.footer__columns {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 68.75em) {
  .footer__columns {
    flex-direction: row;
  }
}
.footer__columns > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
}
.footer__columns > div > h3 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 68.75em) {
  .footer__columns > div > h3 {
    margin-bottom: 3.2rem;
  }
}
.footer__link {
  font-size: 2rem;
}
.footer__link:link,
.footer__link:visited {
  text-decoration: none;
  color: white;
}
.footer__link:active,
.footer__link:hover {
  text-decoration: none;
  color: #a5a4f0;
}
.footer__link:not(:last-child) {
  margin-bottom: 2rem;
}
.footer__icon-container {
  display: flex;
}
.footer__bottom > p.paragraph-copyright {
  margin-top: 20px;
  margin-bottom: 1rem;
  text-align: center;
  color: #eeeeee;
  font-size: 1.6rem;
}
@media only screen and (min-width: 100em) {
  .footer__bottom > p.paragraph-copyright {
    font-size: 1.4rem;
  }
}
.footer__bottom > p.developer-plug {
  text-align: center;
  color: #afafaf;
  font-size: 1.2rem;
}
.footer__bottom > p.developer-plug > a:link,
.footer__bottom > p.developer-plug > a:visited {
  color: #eeeeee;
  text-decoration: none;
}
.footer__bottom > p.developer-plug > a:hover,
.footer__bottom > p.developer-plug > a:active {
  color: #ffffff;
  text-decoration: none;
}

#big-banner-home {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../models.jpg");
}
@media only screen and (min-width: 46.875em) {
  #big-banner-home {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url("../models.jpg");
  }
}

.big-banner {
  height: 50vh;
  min-height: 350px;
  max-height: 450px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: #191a1f;
}
@media only screen and (min-width: 46.875em) {
  .big-banner {
    height: 60vh;
  }
}
@media only screen and (min-width: 68.75em) {
  .big-banner {
    height: 90vh;
    max-height: 900px;
  }
}
.big-banner__top {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 68.75em) {
  .big-banner__top {
    align-items: flex-start;
  }
}
.big-banner__company-info {
  flex: 1;
  text-align: center;
}
.big-banner__company-info > h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (min-width: 46.875em) {
  .big-banner__company-info > h1 {
    font-size: 3.2rem;
  }
}
.big-banner__company-info > p {
  font-size: 1.4rem;
  color: #eeeeee;
}
@media only screen and (min-width: 68.75em) {
  .big-banner__company-info > p {
    font-size: 2rem;
  }
}
.big-banner__contact {
  flex-basis: 25%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 46.875em) {
  .big-banner__contact > button {
    display: none;
  }
}
.big-banner__contact > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  padding: 10px;
  background-color: #ffffff;
  transition: all 0.4s;
  cursor: pointer;
}
.big-banner__contact > a:hover,
.big-banner__contact > a:active {
  transform: scale(1.1);
}
.big-banner__contact > a > img {
  width: 100%;
}
.big-banner__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 46.875em) {
  .big-banner__content {
    align-items: flex-start;
    justify-content: center;
    padding-left: 3rem;
  }
}
.big-banner__content > h1 {
  margin-bottom: 1rem;
  text-align: center;
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 600;
}
@media only screen and (min-width: 46.875em) {
  .big-banner__content > h1 {
    font-size: 4rem;
    text-align: left;
  }
}
@media only screen and (min-width: 68.75em) {
  .big-banner__content > h1 {
    font-size: 4.8rem;
  }
}

.cta__subheading {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
  color: #eeeeee;
}
@media only screen and (min-width: 68.75em) {
  .cta__subheading {
    font-size: 2rem;
    font-weight: 300;
    color: #eeeeee;
  }
}

#small-banner-contact {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../salon.jpg");
}
#small-banner-services {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../pedicure.jpg");
}
#small-banner-shop {
  background-color: #191a1f;
}

.small-banner {
  height: 50vh;
  min-height: 350px;
  max-height: 450px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: #191a1f;
}

.small-banner--legal {
  height: 25vh !important;
}
@media only screen and (min-width: 46.875em) {
  .small-banner {
    height: 60vh;
  }
}
@media only screen and (min-width: 68.75em) {
  .small-banner {
    height: 75vh;
    max-height: 900px;
  }
}
.small-banner__top {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 68.75em) {
  .small-banner__top {
    align-items: flex-start;
  }
}
.small-banner__company-info {
  flex: 1;
  text-align: center;
}
.small-banner__company-info > h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (min-width: 46.875em) {
  .small-banner__company-info > h1 {
    font-size: 3.2rem;
  }
}
.small-banner__company-info > p {
  font-size: 1.4rem;
  color: #eeeeee;
}
@media only screen and (min-width: 68.75em) {
  .small-banner__company-info > p {
    font-size: 2rem;
  }
}
.small-banner__contact {
  flex-basis: 25%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 46.875em) {
  .small-banner__contact > button {
    display: none;
  }
}
.small-banner__contact > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  padding: 10px;
  background-color: #ffffff;
  transition: all 0.4s;
  cursor: pointer;
}
.small-banner__contact > a:hover,
.small-banner__contact > a:active {
  transform: scale(1.1);
}
.small-banner__contact > a > img {
  width: 100%;
}
.small-banner__content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.small-banner__content > h1 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 600;
}
@media only screen and (min-width: 46.875em) {
  .small-banner__content > h1 {
    font-size: 4.8rem;
  }
}

.navigation {
  flex-basis: 25%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.navigation__mobile-button {
  width: 40px;
  align-self: center;
  cursor: pointer;
}
@media only screen and (min-width: 68.75em) {
  .navigation__mobile-button {
    display: none;
  }
}
.navigation__mobile-button > img {
  width: 100%;
}
.navigation > button {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  padding: 1.5rem;
  border-radius: 100%;
  background-color: #ffffff;
  cursor: pointer;
}
.navigation > button > img {
  width: 100%;
}
@media only screen and (min-width: 46.875em) {
  .navigation > button {
    display: none;
  }
}
.navigation__list {
  display: none;
  list-style: none;
}
@media only screen and (min-width: 68.75em) {
  .navigation__list {
    display: flex;
  }
}
.navigation__list > li:not(:last-child) {
  margin-right: 3rem;
}
.navigation__list > li > a {
  text-decoration: none;
  font-size: 2rem;
}
.navigation__list > li > a.active-link {
  color: #ad62aa !important;
}
.navigation__list > li > a:link,
.navigation__list > li a:visited {
  color: white;
  transition: color 0.4s;
}
.navigation__list > li > a:active,
.navigation__list > li a:hover {
  color: #ad62aa;
}

#mobile-menu {
  z-index: 100;
  width: 100%;
  padding: 4rem 0;
  background-color: #ad62aa;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mobile-menu-close {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: absolute;
  top: 20px;
  left: 15px;
  cursor: pointer;
}
#mobile-menu-close > img {
  width: 40px;
}
#mobile-menu > nav > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}
#mobile-menu > nav > ul > li > a:link,
#mobile-menu > nav > ul > li > a:visited {
  font-size: 3rem;
  text-decoration: none;
  color: white;
}

.section-contact {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 46.875em) {
  .section-contact {
    flex-direction: row;
  }
}

.contact-information {
  flex: 1;
}
.contact-information__label {
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #4c4aaa;
  text-decoration: underline;
}
.contact-information__availability {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 3rem;
}
.contact-information__days {
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-information__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-information__item:last-child {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 46.875em) {
  .contact-information__item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 46.875em) {
  .contact-information__item {
    align-items: flex-start;
  }
}
.contact-information__phone:link,
.contact-information__phone:visited {
  text-decoration: none;
  font-size: 2rem;
  color: #000000;
}
.contact-information__email:link,
.contact-information__email:visited {
  text-decoration: none;
  font-size: 2rem;
  color: #000000;
}

.day {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.closure-container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 46.875em) {
  .closure-container {
    padding: 0;
  }
}

.closure-notice {
  margin-bottom: 6rem;
  padding: 3rem 3rem;
  border-radius: 1rem;
  background-color: #f8d7da;
  color: #721c24;
}
.closure-notice > h1 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
.closure-notice > p {
  font-size: 1.6rem;
}

.instagram {
  background-color: #eeeeee;
}
.instagram__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 68.75em) {
  .instagram__cards {
    flex-direction: row;
  }
}

.section-about {
  background: linear-gradient(to right bottom, #413c69, #4a47a3);
  padding: 10rem 4rem 20rem 4rem;
}
@media only screen and (min-width: 68.75em) {
  .section-about {
    padding: 10rem 4rem;
  }
}

.big-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  padding: 3rem 3rem 20rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 2rem 1.6rem #00000093;
}
@media only screen and (min-width: 68.75em) {
  .big-card {
    width: 70%;
    padding: 6rem;
  }
}
.big-card__title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  color: #413c69;
}
@media only screen and (min-width: 46.875em) {
  .big-card__title {
    font-size: 3.6rem;
  }
}
@media only screen and (min-width: 68.75em) {
  .big-card__title {
    text-align: left;
    font-size: 4rem;
  }
}
.big-card__text {
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
@media only screen and (min-width: 68.75em) {
  .big-card__text {
    width: 80%;
  }
}
.big-card__link-container {
  display: flex;
  justify-content: center;
}
.big-card__link:link,
.big-card__link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  background-color: #413c69;
  border-radius: 1.4rem;
  border: solid 0.5rem #413c69;
  padding: 1rem 2rem;
  transition: all 0.4s;
}
.big-card__link:hover,
.big-card__link:active {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  background-color: #ffffff;
  color: #413c69;
}
.big-card__image {
  display: block;
  border-radius: 300%;
  border-width: 0;
  border-style: none;
  width: 25rem;
  height: 25rem;
}
@media only screen and (min-width: 100em) {
  .big-card__image {
    width: 30rem;
    height: 30rem;
  }
}
.big-card__image-border {
  position: absolute;
  right: 50%;
  top: 100%;
  transform: translate(50%, -50%);
  border-radius: 300%;
  border-color: rgba(173, 98, 170, 0.5);
  border-style: solid;
  border-width: 1.5rem;
}
@media only screen and (min-width: 68.75em) {
  .big-card__image-border {
    right: 0%;
    top: 50%;
  }
}

.section-services {
  padding: 6rem 0;
  text-align: center;
}
.section-services > h1 {
  margin-bottom: 2rem;
}
.section-services > p > a:link,
.section-services > p > a:visited {
  text-decoration: underline;
  color: #8785f1;
}

table {
  margin: 0 auto;
  border-collapse: collapse;
}

th {
  font-size: 2.4rem;
}

td {
  font-size: 1.6rem;
}

th,
td {
  text-align: left;
  padding-right: 16px;
}

tr:nth-child(even) {
  background: rgb(230, 230, 230);
}

@media only screen and (min-width: 46.875em) {
  td {
    padding-right: 60px;
    font-size: 2rem;
  }
}

.legal-link:link,
.legal-link:visited {
  display: block;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
}

.legal-link:active,
.legal-link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
