@keyframes shake {
  0%, 50%, 100% {
    transform: none;
  }
  25% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(1deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: translateY(0.65rem);
  }
}
body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: 4em;
}

.content {
  overflow-y: auto;
  position: relative;
  min-height: calc(100vh - 4em);
}

.highlight {
  color: #4993C9;
}

.tooltip__icon {
  cursor: pointer;
  font-size: 1.25em;
}
.tooltip__icon:hover + .tooltip__content {
  display: block;
}
.tooltip__content {
  right: 0;
  width: 100%;
  bottom: 100%;
  display: none;
  padding: 0.5em;
  font-size: 0.75em;
  box-sizing: unset;
  text-align: center;
  position: absolute;
  color: #F9F9F9;
  border-radius: 0.5em;
  background-color: #4993C9;
}

.header {
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  padding: 0 10em;
  align-items: center;
  height: 4em;
  place-content: space-between;
  background-color: #F9F9F9;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1);
}
.header__title {
  color: #313850;
  font-size: 1.5em;
  font-weight: 700;
}
.header__nav {
  height: 100%;
  display: flex;
}
.header__nav__link {
  opacity: 0.6;
  height: 100%;
  color: #313850;
  padding: 0 2em;
  background-color: #F9F9F9;
  transition: opacity 150ms ease-in-out;
}
.header__nav__link.active {
  opacity: 1;
  color: #4993C9;
  font-weight: 700;
}
.header__nav__link:hover {
  opacity: 1;
}

.hero {
  z-index: 2;
  display: flex;
  grid-gap: 1em;
  position: relative;
  align-items: center;
  place-content: center;
  flex-direction: column;
  height: calc(100vh - 4em);
}
.hero::before, .hero::after {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero::before {
  background-color: #313850;
}
.hero::after {
  opacity: 0.3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../assets/images/im1.webp");
}
.hero__title {
  font-size: 4em;
  font-weight: 900;
  color: #F9F9F9;
  text-transform: uppercase;
}
.hero__subtitle {
  font-size: 3em;
  font-weight: 700;
  color: #F9F9F9;
}
.hero__scroller {
  left: 50%;
  bottom: 3em;
  display: flex;
  grid-gap: 0.5em;
  color: #F9F9F9;
  position: absolute;
  align-items: center;
  place-content: center;
  flex-direction: column;
  transform: translateX(-50%);
}
.hero__scroller__icon {
  font-size: 2em;
  animation: bounce 1000ms ease-in-out infinite;
}

.bio {
  display: flex;
  grid-gap: 3em;
  padding: 10em 15em;
  align-items: center;
  place-content: center;
}
.bio__bro {
  max-width: 15em;
  border-radius: 0.5em;
  border: 0.5em solid #F9F9F9;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1);
}
.bio__txt {
  display: flex;
  grid-gap: 1em;
  flex-direction: column;
}
.bio__txt__title {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
}
.bio__txt__desc {
  max-width: 70em;
  margin-left: 1em;
}

.critic {
  display: flex;
  grid-gap: 3em;
  padding: 8em 15em;
  align-items: center;
  background-color: #357FB5;
}
.critic__video {
  width: 45em;
  height: 25em;
  flex: 0 0 auto;
  border-radius: 1em;
}
.critic__txt {
  display: flex;
  grid-gap: 3em;
  color: #F9F9F9;
  align-items: flex-end;
  flex-direction: column;
}
.critic__txt__content {
  font-size: 1.5em;
  color: #F9F9F9;
}
.critic__txt__mark {
  opacity: 0.6;
  display: flex;
  grid-gap: 0.5em;
  align-items: center;
}

.gallery {
  display: flex;
  grid-gap: 3em;
  padding: 10em 15em;
  align-items: center;
  flex-direction: column;
}
.gallery__show {
  display: grid;
  grid-gap: 4em;
  grid-template-columns: repeat(3, 15em);
}
.gallery__show__item {
  width: 15em;
  height: 25em;
  display: flex;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 0.5em;
  align-items: center;
  place-content: center;
  transition: transform 350ms ease, box-shadow 350ms ease-in-out;
}
.gallery__show__item__img {
  max-height: 100%;
}
.gallery__show__item:hover {
  transform: translate(-0.5em, -0.5em);
  box-shadow: 1em 1em 0 0 rgba(110, 178, 227, 0.3);
  color: #6eb2e3;
}
.gallery__show__item__cc {
  left: 0;
  bottom: 0;
  opacity: 0.5;
  font-size: 1.5em;
  font-weight: 800;
  position: absolute;
  color: #F9F9F9;
  padding: 0.5rem 1rem;
  background-color: #000000;
  border-top-right-radius: 1rem;
}
.gallery__mix {
  font-weight: 600;
  padding: 1em 5em;
  color: #F9F9F9;
  border-radius: 0.5rem;
  text-transform: uppercase;
  background-color: #4993C9;
}
.gallery__mix:hover {
  animation: shake 250ms linear 3;
}

.expo {
  display: flex;
  grid-gap: 3em;
  padding: 8em 15em;
  align-items: center;
  background-color: #357FB5;
}
.expo__desc {
  color: #F9F9F9;
}

.plan {
  width: 100%;
  display: flex;
  padding: 10em 15em;
  align-items: center;
}
.plan__pricing {
  height: 75vh;
  flex: 0 0 25%;
  display: flex;
  padding: 2em 2.5em 1em;
  flex-direction: column;
  background-color: #f0f0f0;
  place-content: space-between;
}
.plan__pricing__table {
  width: 100%;
  display: flex;
  grid-gap: 0.5em;
  align-items: center;
  flex-direction: column;
}
.plan__pricing__table__title {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
}
.plan__pricing__table__title:not(:first-child) {
  margin-top: 1.5rem;
}
.plan__pricing__table__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.plan__pricing__table__list__item {
  width: 100%;
  display: flex;
  align-items: center;
}
.plan__pricing__table__list__item:nth-of-type(2n) {
  background-color: rgba(0, 0, 0, 0.1);
}
.plan__pricing__table__list__item > span {
  padding: 1em;
  height: 100%;
  flex: 0 0 50%;
  display: flex;
  grid-gap: 1em;
  position: relative;
  align-items: center;
}
.plan__pricing__table__list__item > span:nth-child(1) {
  padding-right: 0.5em;
}
.plan__pricing__table__list__item > span:nth-child(2) {
  padding-left: 0.5em;
}
.plan__pricing__more {
  opacity: 0.6;
  color: #313850;
  align-self: flex-end;
  transition: opacity 150ms ease, transform 150ms ease;
}
.plan__pricing__more:hover {
  opacity: 1;
  transform: translateX(-1em);
}
.plan__map {
  border: none;
  height: 75vh;
  flex: 0 0 75%;
  background-color: #f0f0f0;
}

.contact {
  display: flex;
  padding: 8em 15em;
  align-items: center;
  background-color: #4993C9;
  place-content: space-between;
}
.contact__title {
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  color: #F9F9F9;
}
.contact__info {
  margin-top: 1em;
  margin-left: 3em;
  line-height: 2em;
  font-size: 1.25em;
  color: #F9F9F9;
}
.contact__info__tel {
  opacity: 0.7;
  color: #F9F9F9;
  transition: opacity 150ms ease;
}
.contact__info__tel:hover {
  opacity: 1;
}
.contact > img {
  height: 15em;
}

.footer {
  width: 100%;
  display: flex;
  padding: 1em 10em;
  align-items: center;
  place-content: space-between;
  background-color: #F9F9F9;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1);
}
.footer__links {
  display: flex;
  grid-gap: 1em;
  align-items: center;
}
.footer__links__item {
  width: max-content;
  background-size: cover;
  transform-origin: center bottom;
  transition: transform 250ms ease;
  background-position: center center;
  background-image: url("../assets/images/pearl.webp");
}
.footer__links__item:hover {
  transform: rotate(10deg);
}
.footer__links__item__link {
  height: 3em;
  width: 2.5em;
  display: flex;
  padding: 0.35em;
  color: #F9F9F9;
  align-items: flex-end;
  place-content: center;
}
.footer__links__item__link > ion-icon {
  font-size: 1.35em;
}

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