body.public .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
section[sharp="living_header"] {
  background: linear-gradient(to right, rgba(26,50,66,0.85), rgba(26,50,66,0.7) 50%, rgba(44,70,44,0.8)), url("/assets/images/forest.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 7rem 2rem;
  margin-bottom: 0;
  overflow: hidden;
}
section[sharp="living_header"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/images/forest.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  animation: fadeIn 1.5s ease-out;
  z-index: 1;
}
section[sharp="living_header"]:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}
section[sharp="living_header"] h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeIn 0.8s ease-out;
  position: relative;
  z-index: 2;
}
section[sharp="living_header"] h1 span {
  color: #d4a44c;
}
section[sharp="living_header"] .subtitle {
  font-size: 1.6rem;
  opacity: 0.9;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 2;
}
section[sharp="living_header"] .preserve-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
  animation: fadeIn 0.6s ease-out;
  position: relative;
  z-index: 2;
}
section[sharp="living_header"] p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}
section[sharp="living_intro"] {
  background-color: #fff;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}
section[sharp="living_intro"] .living-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  section[sharp="living_intro"] .living-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
section[sharp="living_intro"] article[sharp="living_description"] {
  animation: slideInLeft 0.8s ease-out;
}
section[sharp="living_intro"] article[sharp="living_description"] h2 {
  color: #1a3242;
  font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}
section[sharp="living_intro"] article[sharp="living_description"] h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4a44c;
  margin-top: 0.8rem;
}
section[sharp="living_intro"] article[sharp="living_description"] p {
  margin-bottom: 1.8rem;
  line-height: 1.9;
  font-size: 1.15rem;
  color: #262626;
}
section[sharp="living_intro"] article[sharp="living_description"] a.sharp__button {
  background: linear-gradient(to right, #d4a44c, #b78730);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  display: inline-block;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(183,135,48,0.3);
  border: 2px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
section[sharp="living_intro"] article[sharp="living_description"] a.sharp__button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.6s ease;
}
section[sharp="living_intro"] article[sharp="living_description"] a.sharp__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(183,135,48,0.4);
}
section[sharp="living_intro"] article[sharp="living_description"] a.sharp__button:hover:before {
  transform: skewX(-20deg) translateX(100%);
}
section[sharp="living_intro"] figure[sharp="living_image_1"] {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position: relative;
  animation: slideInRight 0.8s ease-out;
  max-width: 450px;
  max-height: 350px;
}
section[sharp="living_intro"] figure[sharp="living_image_1"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 6px solid #fff;
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}
section[sharp="living_intro"] figure[sharp="living_image_1"] img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1.2s ease;
}
section[sharp="living_intro"] figure[sharp="living_image_1"] img:hover {
  transform: scale(1.08);
}
section[sharp="living_intro"] figure[sharp="living_image_1"] figcaption {
  display: none;
}
section h2 {
  color: #1a3242;
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
}
section h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4a44c;
  margin: 1rem auto 0;
}
section[sharp="natural_attractions"] {
  background: linear-gradient(to bottom right, #f5f5f5, #f8f5f0);
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}
section[sharp="natural_attractions"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
section[sharp="natural_attractions"] h2 {
  color: #1a3242;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.8s ease-out;
}
section[sharp="natural_attractions"] p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #262626;
  animation: fadeIn 1s ease-out;
}
.sharp__feature_large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.sharp__feature_large:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .sharp__feature_large {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.sharp__feature_large:nth-child(odd) div {
  animation: slideInRight 0.8s ease-out;
}
.sharp__feature_large:nth-child(odd) figure {
  animation: slideInLeft 0.8s ease-out;
}
.sharp__feature_large:nth-child(even) {
  direction: rtl;
}
.sharp__feature_large:nth-child(even) div {
  direction: ltr;
  animation: slideInLeft 0.8s ease-out;
}
.sharp__feature_large:nth-child(even) figure {
  direction: ltr;
  animation: slideInRight 0.8s ease-out;
}
.sharp__feature_large figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  position: relative;
  max-width: 450px;
  max-height: 300px;
  width: 100%;
  height: 300px;
}
.sharp__feature_large figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 8px solid rgba(255,255,255,0.9);
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
  transition: all 0.4s ease;
}
.sharp__feature_large figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26,50,66,0.3), rgba(26,50,66,0));
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.sharp__feature_large figure:hover:before {
  border-color: rgba(212,164,76,0.4);
  border-width: 6px;
}
.sharp__feature_large figure:hover:after {
  opacity: 0.3;
}
.sharp__feature_large figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s ease;
  max-height: 300px;
}
.sharp__feature_large figure img:hover {
  transform: scale(1.08);
}
.sharp__feature_large div h3 {
  color: #1a3242;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}
.sharp__feature_large div h3:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4a44c;
  margin-top: 0.8rem;
}
.sharp__feature_large div p {
  line-height: 1.9;
  font-size: 1.15rem;
  color: #262626;
}
article[sharp="sharp_point_falls"] {
  background-color: #fff;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
article[sharp="sharp_point_falls"] figure {
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-height: 400px;
}
article[sharp="sharp_point_falls"] figure:before {
  display: none;
}
article[sharp="sharp_point_falls"] figure img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article[sharp="sharp_point_falls"] div {
  padding: 2.5rem;
  text-align: center;
}
article[sharp="sharp_point_falls"] h3 {
  color: #1a3242 !important;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  display: inline-block;
}
article[sharp="sharp_point_falls"] h3:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4a44c;
  margin: 0.8rem auto 0;
}
article[sharp="sharp_point_falls"] p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}
section[sharp="community_amenities"] {
  background-color: #3a5f3a;
  color: #fff;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}
section[sharp="community_amenities"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: #f8f5f0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
section[sharp="community_amenities"] h2 {
  color: #fff;
  margin-bottom: 4rem;
  animation: fadeIn 0.8s ease-out;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1100px;
}
.sharp__amenity {
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}
.sharp__amenity:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: rgba(212,164,76,0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 0;
}
.sharp__amenity:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(212,164,76,0.3);
}
.sharp__amenity:hover:before {
  transform: scale(6);
  opacity: 0.1;
}
.sharp__amenity h3 {
  color: #fff;
  margin-top: 0;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-left: 2.2rem;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}
.sharp__amenity h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4a44c;
  box-shadow: 0 0 0 4px rgba(212,164,76,0.2);
  transition: all 0.3s ease;
}
.sharp__amenity:hover h3:before {
  box-shadow: 0 0 0 6px rgba(212,164,76,0.2);
  background-color: #e6c275;
}
.sharp__amenity p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 1;
}
section[sharp="social_life"] {
  background: linear-gradient(to bottom right, #f5f5f5, #f8f5f0);
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}
section[sharp="social_life"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: #3a5f3a;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
section[sharp="social_life"] h2 {
  color: #1a3242;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.8s ease-out;
}
section[sharp="social_life"] p {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #262626;
  animation: fadeIn 1s ease-out;
}
div[sharp="events"] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  div[sharp="events"] {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.sharp__event {
  background-color: #fff;
  padding: 3rem;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}
.sharp__event:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #d4a44c, #e6c275);
  transition: width 0.4s ease;
}
.sharp__event:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212,164,76,0.1), transparent 70%);
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.6s ease;
  z-index: 0;
}
.sharp__event:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.sharp__event:hover:after {
  transform: scale(3);
}
.sharp__event:hover:before {
  height: 8px;
}
.sharp__event h3 {
  color: #1a3242;
  margin-top: 0;
  margin-bottom: 1.3rem;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
.sharp__event h3:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #d4a44c;
  margin-top: 0.5rem;
  transition: width 0.4s ease;
}
.sharp__event:hover h3:after {
  width: 40px;
}
.sharp__event p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.15rem;
  color: #262626;
  position: relative;
  z-index: 1;
}
section[sharp="join_community"] {
  text-align: center;
  background: linear-gradient(to right, rgba(26,50,66,0.92), rgba(39,75,99,0.85)), url("/assets/images/Richard-Harris-deer.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}
section[sharp="join_community"]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: #f8f5f0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
section[sharp="join_community"]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-image: url("/assets/images/mountain-summit-black.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 40%;
  opacity: 0.1;
  z-index: -1;
}
section[sharp="join_community"] h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease-out;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
}
section[sharp="join_community"] h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #d4a44c;
  margin: 1rem auto 0;
}
section[sharp="join_community"] p {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  font-size: 1.25rem;
  line-height: 1.9;
  animation: fadeIn 1s ease-out;
  text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}
section[sharp="join_community"] a.sharp__button {
  background: linear-gradient(to right, #d4a44c, #b78730);
  color: #fff;
  text-decoration: none;
  padding: 1.3rem 3rem;
  display: inline-block;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeIn 1.2s ease-out;
  border: 2px solid rgba(255,255,255,0.1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
section[sharp="join_community"] a.sharp__button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.6s ease;
}
section[sharp="join_community"] a.sharp__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
section[sharp="join_community"] a.sharp__button:hover:before {
  transform: skewX(-20deg) translateX(100%);
}
.footer-content {
  background-color: #1a3242;
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem;
  text-align: center;
  font-size: 1rem;
  position: relative;
  background-image: linear-gradient(to bottom, #274b63, #1a3242);
  border-top: 1px solid rgba(212,164,76,0.1);
}
.footer-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, rgba(212,164,76,0.3), rgba(212,164,76,0.1), rgba(212,164,76,0.3));
}
.footer-content p {
  margin: 0.8rem 0;
  letter-spacing: 0.3px;
  font-size: 1.05rem;
}
.footer-content a {
  color: #d4a44c;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding: 0 0.2rem;
}
.footer-content a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #e6c275;
  transition: width 0.3s ease;
}
.footer-content a:hover {
  color: #e6c275;
}
.footer-content a:hover:after {
  width: 100%;
}
.legacy-nav,
.legacy-footer-nav {
  display: none;
}
@media (max-width: 768px) {
  section[sharp="living_header"] {
    padding: 5rem 1.5rem;
  }
  section[sharp="living_header"] h1 {
    font-size: 2.8rem;
  }
  section[sharp="living_header"] .subtitle {
    font-size: 1.3rem;
  }
  section[sharp="living_header"] .preserve-logo {
    max-width: 250px;
  }
  section {
    padding: 4rem 1.5rem !important;
  }
  section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .sharp__feature_large {
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  .sharp__feature_large div h3 {
    font-size: 1.8rem;
  }
  .sharp__feature_large figure {
    max-width: 100%;
    height: 250px;
    margin: 0 auto;
  }
  article[sharp="sharp_point_falls"] figure {
    height: auto;
    max-height: 300px;
  }
  .sharp__amenity {
    padding: 2.5rem 2rem;
  }
  .sharp__amenity h3 {
    font-size: 1.5rem;
    padding-left: 1.8rem;
  }
  .sharp__amenity h3:before {
    width: 10px;
    height: 10px;
  }
  .sharp__event {
    padding: 2.5rem;
  }
  .sharp__event h3 {
    font-size: 1.5rem;
  }
  section[sharp="join_community"] {
    padding: 6rem 1.5rem;
  }
  section[sharp="join_community"] h2 {
    font-size: 2.5rem;
  }
  section[sharp="join_community"] p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
  }
  section[sharp="join_community"] a.sharp__button {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-o-keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-moz-keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-o-keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
