@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;300;400;600;700&display=swap");

:root {
  --font-family: "Barlow", sans-serif;

  --font-size-xl: 56px;
  --font-size-lg: 50px;
  --font-size-md: 27px;
  --font-size-sm: 18px;
  --font-size-xs: 15px;
  --font-size-btn: 14px;

  --color-primary: #e10b62;
  --color-secondary: #221974;
  --color-tertiary: #3f3b38;
  --color-quaternary: #fae7f0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  color: inherit;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: 1.5em;
  color: black;
}

img,
object,
embed {
  max-width: 100%;
}

video,
img {
  vertical-align: middle;
}

img {
  height: auto;
  border: none;
}

input,
textarea,
select {
  outline-style: none;
  resize: none;
}

a {
  text-decoration: none;
}

a:hover,
label:hover,
button:hover {
  cursor: pointer;
}

/* helper classes */
/* helper classes */
/* helper classes */

.container {
  margin: 0 auto;
  max-width: 1170px;
}

.btn {
  overflow: hidden;
  position: relative;
  padding: 8px 20px;
  line-height: 1.5em;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  transition: background 0.4s;
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid currentColor;
  font-size: var(--font-size-btn);
}

span.ripple {
  position: absolute;
  border-radius: 40%;
  transform: scale(0);
  animation: ripple 0.45s linear;
  background-color: rgba(255, 255, 255, 0.9);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.article {
  margin: auto 15px;
}

.article .container {
  margin: auto;
  max-width: 700px;
  margin-top: 100px;
  margin-bottom: 140px;
}

.article h1 {
  font-size: var(--font-size-lg);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 200;
}

.article p {
  margin-bottom: 1em;
}

.article p:empty {
  display: none;
  visibility: hidden;
}

.article .gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

.article .gallery img {
  max-height: 250px;
  cursor: pointer;
  margin: auto;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.article :is(h2, h3, h4, h5, h6) {
  margin: 2em 0 0.5em 0;
}
.article :-webkit-any(h2, h3, h4, h5, h6) {
  margin: 2em 0 0.5em 0;
}
.article :-moz-any(h2, h3, h4, h5, h6) {
  margin: 2em 0 0.5em 0;
}

.article :is(ul, ol) {
  padding-left: 20px;
  margin-bottom: 1em;
}
.article :-webkit-any(ul, ol) {
  padding-left: 20px;
  margin-bottom: 1em;
}
.article :-moz-any(ul, ol) {
  padding-left: 20px;
  margin-bottom: 1em;
}

.article .lightbox {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: -1;
  padding: 20px;
  display: none;
  position: fixed;
  background-color: white;
}

.article .lightbox.open {
  z-index: 10000;
  display: flex;
}

.article .lightbox img {
  margin: auto;
  max-height: 100%;
}

.article .lightbox .prev,
.article .lightbox .next,
.article .lightbox .close {
  border: none;
  font-size: 56px;
  position: absolute;
  background-color: transparent;
}

.article .lightbox .prev,
.article .lightbox .next {
  top: 50%;
  transform: translateY(-50%);
}

.article .lightbox .prev {
  left: 10px;
}

.article .lightbox .next {
  right: 10px;
}

.article .lightbox .close {
  top: 10px;
  right: 10px;
}

/* preloader */
/* preloader */
/* preloader */
#loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: white;
}

.load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

.load hr {
  animation: spin 2s ease infinite;
  border: 0 none;
  border-radius: 50%;
  height: 20px;
  left: 25%;
  position: absolute;
  top: 25%;
  width: 20px;
  background-color: var(--color-primary);
}

.load hr:first-child {
  animation-delay: -1.5s;
}

.load hr:nth-child(2) {
  animation-delay: -1s;
}

.load hr:nth-child(3) {
  animation-delay: -0.5s;
}

.load hr:nth-child(even) {
  background-color: var(--color-secondary);
}

@keyframes spin {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(160%);
  }
  50% {
    transform: translate(160%, 160%);
  }
  75% {
    transform: translate(0, 160%);
  }
}

/* header */
/* header */
/* header */
.header {
}

.header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 0;
}

.header .logo {
  display: block;
  margin-right: auto;
  z-index: 9999;
}

.header label {
  width: 40px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.header span {
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--color-primary);
  transition: all 0.2s ease-in-out;
}

.header span:nth-child(1) {
  width: 34px;
}
.header span:nth-child(3) {
  width: 24px;
}

.header label:hover span {
  width: 100%;
}

.header input {
  display: none;
}

.header input:checked ~ label span:nth-child(1) {
  width: 100%;
  transform: translateY(12.5px) rotate(45deg);
}

.header input:checked ~ label span:nth-child(2) {
  width: 0;
}

.header input:checked ~ label span:nth-child(3) {
  width: 100%;
  transform: translateY(-12.5px) rotate(-45deg);
}

.header ul {
  display: flex;
  list-style-type: none;
}

.header li {
  padding: 5px;
}

.header li:not(:last-child) {
  margin: 0 10px 0 0;
}

.header li a {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s linear;
  font-size: var(--font-size-xs);
  color: var(--color-secondary);
}

.header li a:hover,
.header li a.active {
  color: var(--color-primary);
}

/* slider */
/* slider */
/* slider */
.slider {
}

.slider .container {
  position: relative;
  max-width: 1410px;
  overflow: hidden;
}

.slider button {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 50px;
  padding: 10px 5px;
  line-height: 1em;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}

.slider button:hover {
  background-color: rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 1);
}

.slider .left {
  left: 10px;
}

.slider .right {
  right: 10px;
}

.slide {
  display: none;
  color: white;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
}

.slide:first-of-type {
  display: grid;
}

.slide > * {
  grid-row: 1 / -1;
  grid-column: 1 / -1;
}

.slide img {
  height: 100%;
  object-fit: cover;
}

.slide div {
  padding: 89px 120px 0 120px;
}

.slide p {
  max-width: 700px;
}

.slide .title {
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}

.slide .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}

.slider .pagination {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 10px;
}

.slider .pagination span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.slider .pagination span:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 1);
}

.slider .pagination span.active {
  background-color: var(--color-primary);
}

/* sec00 */
/* sec00 */
/* sec00 */
.sec00 {
}

.sec00 .container {
  padding: 100px 0;
}

.box0000 {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}

.box0000 > div {
  grid-row: 1 / span 1;
}

.box0000 p,
.box0000 :is(h1, h2, h3, h4, h5, h6),
.box0001 p {
  margin-bottom: 1em;
}

.box0000 .title,
.box0001 .title {
  font-weight: 100;
  line-height: 1.1em;
  font-size: var(--font-size-lg);
}

.box0000 .subtitle,
.box0001 .subtitle {
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
}

.box0000 .image {
  width: 585px;
  display: flex;
  justify-content: end;
}

.box0000 .desc {
  margin: 0 135px 0 0;
}

.box0000 .bg {
  width: 500px;
  background: linear-gradient(45deg, #221974 16%, #e10b62 88%);
}

.box0000 img {
  transform: translate(-60px, -60px);
  border: 1px solid var(--color-quaternary);
}

.box0000:nth-child(even) > div:first-child {
  grid-column: 2 / span 1;
}

.box0000:nth-child(even) .desc {
  margin: 0 0 0 135px;
}

.box0000:not(:last-child),
.box0001:not(:last-child) {
  margin-bottom: 140px;
}

.box0001 .desc {
  max-width: 700px;
}

.box0001 .desc {
}

.box0001:nth-child(even) .desc {
  margin-left: auto;
}

/* map00 map01 */
/* map00 map01 */
/* map00 map01 */

.map00 {
  background: linear-gradient(
    -90deg,
    #fff 50%,
    var(--color-secondary) 50%,
    var(--color-primary) 88%
  );
}
.map01 {
  background: linear-gradient(
    90deg,
    #fff 50%,
    var(--color-secondary) 50%,
    var(--color-primary) 88%
  );
}

.map00 .container,
.map01 .container {
  margin-top: 200px;
  margin-bottom: 200px;
  display: grid;
  height: 375px;
  grid-template-columns: repeat(2, 1fr);
}

.map00 .container > div,
.map01 .container > div {
  grid-row: 1 / span 1;
}

.map00 .title,
.map01 .title {
  font-weight: 100;
  margin-bottom: 1em;
  color: var(--color-tertiary);
  font-size: var(--font-size-lg);
}

.map00 .subtitle,
.map01 .subtitle {
  margin-bottom: 1em;
  font-weight: 600;
  color: var(--color-primary);
}

.map00 #map,
.map01 #map {
  margin-top: -70px;
  width: min-content;
}

.map00 #map {
  margin-right: auto;
}

.map01 #map {
  margin-left: auto;
}

.map00 iframe,
.map01 iframe {
  width: 526px;
  height: 515px;
}

.map00 a,
.map01 a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.map00 .container > div:first-child {
  grid-column: 2 / span 1;
}

/* footer */
/* footer */
/* footer */
.footer {
  background: linear-gradient(
    45deg,
    var(--color-secondary) 76%,
    var(--color-primary) 88%
  );
}

.footer .container {
  padding: 13px 0;
}

.footer p {
  color: white;
  font-size: 14px;
  font-weight: 300;
}

.footer a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.breadcrumbs {
  margin: 20px 0;
  font-size: var(--font-size-xs);
}

.breadcrumbs a {
  color: var(--color-secondary);
}

.breadcrumbs a:hover {
  cursor: pointer;
  text-decoration: underline;
  color: var(--color-primary);
}

.banner .container {
  height: 90px;
  max-width: 1410px;
}

@media only screen and (max-width: 1200px) {
  .sec00 .container {
    padding: 70px 0;
  }
  .box0000 {
    grid-template-columns: 1fr max-content;
  }

  .box0000:nth-child(even) {
    grid-template-columns: max-content 1fr;
  }

  .box0000 .image {
    width: auto;
  }

  .box0000 img {
    transform: translate(15px, -15px);
  }

  .box0000:nth-child(even) img {
    transform: translate(-15px, -15px);
  }

  .box0000 .desc {
    margin: 0 15px 0 0;
  }

  .box0000:nth-child(even) .desc {
    margin: 0 0 0 15px;
  }
}

@media only screen and (max-width: 1170px) {
  .container {
    margin: 0 15px;
  }

  .slider .container,
  .banner .container {
    margin: 0;
  }
}

@media only screen and (max-width: 992px) {
  .slider .container {
    height: 350px;
  }

  .slide div {
    padding: 50px 0 0 70px;
  }

  .slide p {
    max-width: 500px;
  }

  .slide .title {
    font-size: 46px;
  }

  .box0000 {
    grid-template-columns: 1fr !important;
    place-items: center;
    max-width: 500px;
    margin: auto;
    padding: 0;
  }

  .box0000 > div {
    grid-column: 1 / span 1 !important;
  }

  .box0000 > .desc {
    grid-row: 2 / span 1 !important;
  }

  .box0000 > .image {
    grid-row: 1 / span 1 !important;
  }

  .map00,
  .map01 {
    margin: auto;
    max-width: 500px;
    background: none;
  }

  .map00 .container,
  .map01 .container {
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    grid-template-columns: 1fr;
  }

  .map00 .container > div:last-child,
  .map01 .container > div:last-child {
    grid-row: 2 / span 1;
  }

  .map00 #map,
  .map01 #map {
    margin: 50px 0 0 0;
    width: 100%;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .box0000 .desc {
    margin: 0 !important;
  }

  .article .container {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

@media only screen and (max-width: 768px) {
  .header label {
    display: flex;
    z-index: 9999;
  }

  .header input:checked + nav {
    z-index: 999;
    display: block;
  }

  .header nav {
    top: 0;
    left: 0;
    width: 100vw;
    display: none;
    z-index: -1;
    height: 100vh;
    position: absolute;
    background-color: var(--color-secondary);
  }

  .header ul {
    margin: auto;
    align-items: center;
    flex-direction: column;
    padding-top: 95px;
  }

  .header li:not(:last-child) {
    margin: 10px 0;
  }

  .header li a {
    color: white;
  }

  .slide div {
    padding: 50px 0 0 50px;
  }

  .slide .title {
    font-size: 34px;
  }

  .article .container {
    margin-top: 50px;
    margin-bottom: 50px;
  }

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

@media only screen and (max-width: 576px) {
  .slide div {
    padding: 30px;
  }

  .slide p {
    max-width: 350px;
  }

  .box0000 {
    max-width: auto;
  }

  .box0000 .bg {
    width: 100%;
  }

  .map00 iframe,
  .map01 iframe {
    width: 100%;
  }

  .box0000 img {
    transform: none !important;
  }

  .box0000 .bg {
    background: none;
  }

  .slider button {
    display: none;
  }

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

  .text-danger {
    color: red !important;
  }
}
