html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", serif;
  background-color: #FFF6F1;
  color: #63556B;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

main {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 700;
  color: #64198A;
  line-height: 100%;
  font-family: "Josefin Sans", serif;
}

h2 {
  font-size: clamp(25px, 6vw, 32px);
  font-weight: 700;
  color: #64198A;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  color: #64198A;
}

p, li {
  font-size: 16px;
  line-height: 169%;
}

section {
  padding: 0;
}
section .contentWidth {
  max-width: 1250px;
}

.contentWidth {
  max-width: 1360px;
  margin: auto;
  padding: clamp(50px, 10vw, 70px) 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1360px;
  margin: auto;
}

.logo {
  z-index: 10;
}
.logo img {
  display: block;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 5px;
  z-index: 10;
}
.burger span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
  background-color: #FFA9B0;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #FFA9B0;
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}
.burger.is-active span:nth-child(3) {
  transform: translate(3px, 3.5px) rotate(-40deg);
  background-color: #FFA9B0;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(15px, 4vw, 50px);
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
  display: flex;
}
.menu li a {
  color: #63556B;
  text-decoration: none;
  color: #64198A;
  font-size: 16px;
  transition: color 0.25s;
  font-weight: 600;
}
.menu li a:hover {
  color: #FFA9B0;
}
.menu li.menuButton a {
  display: table;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  border-radius: 0;
  min-width: 150px;
  border: 1px solid #FFA9B0;
  border-radius: 7px;
  transition: background-color 0.25s;
  color: #64198A;
  background-color: transparent;
}
.menu li.menuButton a:hover {
  background-color: #FFA9B0;
}

.menu.active {
  z-index: 9;
  display: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #FFF6F1;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  padding: 150px 0;
  animation-name: animaceMenuA;
  animation-duration: 0.5s;
}
@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

footer {
  background-color: #FFFFFF;
}
footer h2, footer h3, footer p {
  color: #63556B;
}
footer .contentWidth {
  max-width: 1360px;
  padding: 40px 20px 30px;
}
footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #63556B;
}
footer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
footer .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer .contactWrapper {
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
footer .contactWrapper a {
  display: flex;
  gap: 10px;
}
footer .copy {
  border-top: 1px solid rgba(71, 44, 85, 0.25);
  padding-top: 20px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
footer .copy p, footer .copy a {
  font-size: 14px;
}

.footerMenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footerMenu li {
  list-style: none;
}

.textPage .textContent, .postContent .textContent {
  max-width: 900px;
  margin: auto;
}
.textPage .square, .postContent .square {
  padding: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 50px);
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto 0 0 0;
}
.textPage h1, .postContent h1 {
  margin-bottom: 30px;
}
.textPage h1, .textPage h2, .textPage h3, .textPage h4, .textPage h5, .textPage h6, .postContent h1, .postContent h2, .postContent h3, .postContent h4, .postContent h5, .postContent h6 {
  margin-top: 20px;
}
.textPage ul, .textPage ol, .postContent ul, .postContent ol {
  margin: 0;
  padding-left: 20px;
}
.textPage p, .textPage li, .postContent p, .postContent li {
  margin: 5px 0;
}
.textPage a, .postContent a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #63556B;
}
.textPage a:hover, .postContent a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.textImg img {
  max-width: 100%;
  display: block;
}
.textImg .text {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.textImg .content {
  display: flex;
  justify-content: space-evenly;
  gap: 40px;
}

.afterPhoto {
  display: none;
}
.afterPhoto img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}

.hpCover .contentWidth {
  padding: 40px 20px;
  height: 100%;
}
.hpCover .wrapper {
  display: flex;
}
.hpCover .wrapper:last-child {
  flex-direction: row-reverse;
}
.hpCover .content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.hpCover .content .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 50px);
  margin: auto 0;
}
.hpCover .content p {
  max-width: 450px;
}

.coverImgs {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  height: 650px;
}
.coverImgs img {
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.coverImgs img:first-child {
  z-index: 1;
  position: absolute;
  left: calc(50% - 950px);
  height: 650px;
}
.coverImgs img:nth-child(2) {
  margin-right: 0;
  margin-left: auto;
  width: 75%;
}

.dateWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #64198A;
}
.dateWrapper .badge {
  background-color: #FFD7DA;
  padding: 5px 10px;
  border-radius: 5px;
}

.articleBox {
  padding: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 50px);
  border-radius: 20px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto 0 0 0;
}
.articleBox a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #64198A;
}
.articleBox a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.team {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 0 30px;
}
.team .wrapper {
  text-align: center;
  padding: 25px 0;
}
.team .wrapper img, .team .wrapper .button {
  margin: auto;
}
.team .wrapper img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
}
.team .wrapper h3 {
  margin: 20px 0;
}

.about {
  overflow: hidden;
}
.about .contentWidth {
  padding: 40px 20px;
}
.about .content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.about .content .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 50px);
  margin: auto 0;
}
.about .content p {
  max-width: 550px;
}
.about .content p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #63556B;
}
.about .content p a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.about .wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
}

.aboutImgs {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  height: 500px;
}
.aboutImgs img {
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutImgs img:first-child {
  margin-left: 0;
  margin-right: auto;
  width: 55%;
}
.aboutImgs img:nth-child(2) {
  z-index: 1;
  position: absolute;
  right: calc(50% - 160px);
  height: 500px;
}

.contact {
  background-color: #472C55;
  color: #FFFFFF;
}
.contact h2, .contact h3 {
  color: #FFFFFF;
}
.contact p {
  color: #D9D9D9;
}
.contact p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #D9D9D9;
}
.contact p a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.contact .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact iframe {
  border-radius: 10px;
  max-width: 100%;
}

.contactWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.infoWrapper a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #D9D9D9;
  color: #D9D9D9;
  line-height: 169%;
}
.infoWrapper a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.contactButton {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 15px 20px;
  transition: background-color 0.25s;
}
.contactButton:hover {
  background: rgba(255, 169, 176, 0.1);
}

.openingHours p {
  display: flex;
  gap: 15px;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(71, 44, 85, 0.89);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  position: relative;
  max-width: 600px;
  width: 90%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.popup-content img {
  border-radius: 50%;
}
.popup-content .popupContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}
.popup-content .text {
  color: #472C55;
}
.popup-content strong {
  position: relative;
}
.popup-content strong::before {
  content: url(../images/icons/srdce.svg);
  position: absolute;
  left: -15px;
}

.universal-popup-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.universal-popup-body span {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
}
.universal-popup-body img {
  border-radius: 0;
}
.universal-popup-body a:not(.button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #63556B;
}
.universal-popup-body a:not(.button):hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 40px;
  line-height: 30px;
  font-weight: 300;
  color: #64198A;
  transition: color 0.25s;
}
.popup-close:hover {
  color: #FFA9B0;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.page-button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  padding: 10px;
  height: 40px;
  font-size: 22px;
  font-weight: 500;
  color: #64198A;
  background-color: transparent;
  border: 1px solid #FFA9B0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.25s;
}

.page-button.current {
  border-color: transparent !important;
  color: #64198A !important;
  cursor: default;
}

.page-button:hover {
  color: #64198A;
  background-color: #FFA9B0;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: #64198A;
}

#show-more {
  display: none;
  color: #64198A;
  cursor: pointer;
  background-color: transparent;
}

#show-more span {
  font-size: 14px;
  margin-left: 5px;
}

.formContainer {
  max-width: 550px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  width: 100%;
}
form .inputWrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
form input:not([type=submit], [type=checkbox], [type=radio], [type=file]), form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #63556B;
  background-color: #FFA9B0;
}
form input:not([type=submit], [type=checkbox], [type=radio], [type=file]):focus, form textarea:focus {
  border-color: #63556B;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
form textarea {
  width: 100%;
  max-height: 200px;
  display: block;
}
form .ceckboxWrapper {
  max-width: -moz-max-content;
  max-width: max-content;
}
form .ceckboxWrapper label {
  flex-direction: row;
  align-items: center;
}
form .ceckboxWrapper span {
  margin: 0;
}
form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin: 0;
  padding: 0;
  background-color: #FFA9B0;
  color: #63556B;
}
form input[type=checkbox]::before {
  cursor: pointer;
  font-size: 0;
}
form input[type=checkbox]:checked::before {
  content: url(../images/icons/checkedCross.svg);
}
form .fileWrapper {
  max-width: -moz-max-content;
  max-width: max-content;
}
form .fileWrapper h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
form .fileWrapper small {
  font-size: 14px;
  font-weight: 400;
}
form .fileWrapper input::file-selector-button {
  color: #63556B;
  border: none;
  background-color: #FFA9B0;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 15px;
  margin: 0 10px 0 0;
  transition: color 0.25s, background-color 0.25s;
}
form .fileWrapper input::file-selector-button:hover, form .fileWrapper input::file-selector-button:active {
  color: #FFA9B0;
  background-color: #63556B;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-text-fill-color: #64198A;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  color: red;
  font-size: 14px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background-color: red;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: green;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 15px 10px;
  font-size: 14px;
  border: none;
  text-align: center;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-arrow.slick-prev {
  z-index: 1;
  left: 100px;
}
.slick-arrow.slick-next {
  right: 100px;
}

.slick-dots {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 20px;
}
.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 15px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FFFFFF;
}

.slick-dots li button:before {
  color: #FFFFFF;
}

.slick-arrow.slick-prev:before {
  content: url(../images/icons/slickArrowL.svg);
}
.slick-arrow.slick-next:before {
  content: url(../images/icons/slickArrowR.svg);
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #63556B;
}
.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.button {
  display: table;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  border-radius: 0;
  min-width: 160px;
  border: 1px solid #FFA9B0;
  border-radius: 7px;
  transition: background-color 0.25s;
  text-decoration: none !important;
  cursor: pointer;
}
.button.secondary {
  color: #64198A;
  background-color: #FFA9B0;
}
.button.secondary:hover {
  background-color: transparent;
}
.button.transparent {
  color: #64198A;
  background-color: transparent;
}
.button.transparent:hover {
  background-color: #FFA9B0;
}

.font-p {
  font-family: "Lato", serif !important;
}

.font-s {
  font-family: "Josefin Sans", serif !important;
}

.f-22 {
  font-size: clamp(18px, 6vw, 22px);
}

.f-18 {
  font-size: 18px;
}

.f-12 {
  font-size: 12px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-j {
  text-align: justify !important;
}

.w-100 {
  width: 100% !important;
}

.mw-100 {
  max-width: 100%;
}

.mw-430 {
  max-width: 430px;
}

.h-100 {
  height: 100vh;
}

.h-100p {
  height: 100%;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.wrap {
  flex-wrap: wrap;
}

.d-column {
  flex-direction: column;
}

.j-start {
  justify-content: flex-start;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around;
}

.j-center {
  justify-content: center !important;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.gap-50 {
  gap: 50px;
}

.gap-40 {
  gap: 40px;
}

.gap-30 {
  gap: 30px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-grid {
  display: grid;
}

.gtp-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gtp-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gtp-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gtp-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #64198A !important;
}

.c-secondary {
  color: #FFA9B0 !important;
}

.c-ternary {
  color: #FFF6F1 !important;
}

.c-light {
  color: #FFFFFF !important;
}

.c-dark {
  color: #63556B !important;
}

.bg-primary {
  background: #64198A !important;
}

.bg-secondary {
  background: #FFA9B0 !important;
}

.bg-ternary {
  background: #FFF6F1 !important;
}

.bg-light {
  background: #FFFFFF !important;
}

.bg-dark {
  background: #63556B !important;
}

/* MEDIA */
@media (max-width: 1050px) {
  .contact .wrapper {
    width: 100%;
  }
  .contact .content {
    flex-direction: column;
  }
  .contact iframe {
    height: 250px;
    width: 100%;
  }
  footer .content {
    flex-direction: column;
  }
  .team .wrapper {
    text-align: center;
    padding: 25px 0;
    min-width: 250px;
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .hpCover .afterPhoto, .about .afterPhoto {
    display: block;
  }
  .hpCover .content, .about .content {
    grid-template-columns: 1fr;
    height: auto;
    position: unset;
    gap: 20px;
    transform: none;
  }
  .hpCover .content p, .about .content p {
    max-width: 100%;
  }
  .hpCover .wrapper, .about .wrapper {
    justify-content: center;
  }
  .about .aboutImgs, .about .space {
    display: none;
  }
  .hpCover .coverImgs {
    display: none;
  }
  footer .copy {
    display: grid;
    justify-content: center;
    justify-items: center;
  }
  footer .copy :nth-child(2) {
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .team .wrapper.hidden-member {
    display: none;
  }
  #show-more {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */