body {
  max-width: 2560px;
  margin: 0 auto;
}

:root {
  --swiper-theme-color: #e83e01;
  --swiper-navigation-color: #e83e01;
  --swiper-pagination-color: #e83e01;
  --bulma-modal-content-width: 60rem;
}

.section {
  --bulma-section-padding: 2rem 1rem;
}

.aspect-ratio-box {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.aspect-ratio-box.box-2by3 {
  padding-top: 133.33%;
}
.aspect-ratio-box.box-4by5 {
  padding-top: 125%;
}
.aspect-ratio-box.box-square {
  padding-top: 100%;
}
.aspect-ratio-box.box-5by4 {
  padding-top: 80%;
}
.aspect-ratio-box.box-4by3 {
  padding-top: 75%;
}
.aspect-ratio-box.box-3by2 {
  padding-top: 66.66%;
}
.aspect-ratio-box.box-5by3 {
  padding-top: 60%;
}
.aspect-ratio-box.box-16by9 {
  padding-top: 56.25%;
}
.aspect-ratio-box .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aspect-ratio-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.aspect-ratio-box:hover img {
  transform: scale(1.1);
}

.navbar-link:not(.is-arrowless)::after {
  right: 1.125rem;
}

@media screen and (max-width: 768px) {
  .button.is-responsive .iconfont,
  .button.is-responsive.is-normal .iconfont {
    font-size: calc(var(--bulma-size-small) * 0.875);
  }
}
.pagination .pagination-link.is-current,
.pagination .pagination-link.is-selected {
  background-color: #e83e01;
  border-color: #e83e01;
}
.pagination .is-disabled {
  cursor: not-allowed;
}

.swiper-button-prev,
.swiper-button-next {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.25rem;
  color: #fff;
}

.swiper-pagination {
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}

.bd-header {
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 1023px) {
  .bd-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 999;
  visibility: hidden;
  transition: all 0.3s linear;
}
.navbar-overlay.is-active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media screen and (min-width: 1024px) {
  .navbar-overlay {
    display: none !important;
  }
}

.navbar {
  transition: all 0.6s ease-in-out;
}
.navbar .navbar-brand .logo img {
  max-height: 4rem;
}
@media screen and (max-width: 1023px) {
  .navbar .navbar-brand .logo img {
    max-height: 2rem;
  }
}
.navbar .navbar-brand .navbar-burger {
  color: #e83e01;
}
.navbar .navbar-brand .navbar-burger:active, .navbar .navbar-brand .navbar-burger:hover {
  color: #e83e01;
}
@media screen and (max-width: 1023px) {
  .navbar .navbar-menu {
    animation-delay: 0s;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    animation-name: slideOutLeft;
    position: fixed;
    top: 0;
    left: -70vw;
    width: 70vw;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  }
}
.navbar .navbar-menu.is-active {
  left: 0;
}
@media screen and (max-width: 1023px) {
  .navbar .navbar-menu.is-active {
    animation-delay: 0s;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
  }
}
.navbar .navbar-menu .navbar-start {
  align-items: center;
  -webkit-margin-end: initial;
          margin-inline-end: initial;
  margin-left: auto;
}
.navbar .navbar-menu .navbar-start > .navbar-item {
  transition: all 0.3s linear;
}
.navbar .navbar-menu .navbar-start > .navbar-item.is-selected {
  background-color: #f0f2f4;
}
.navbar .navbar-menu .navbar-start > .navbar-item .navbar-dropdown .navbar-item.is-selected {
  background-color: #f0f2f4;
}
.navbar .navbar-menu .navbar-end .navbar-item .control {
  display: flex;
  align-items: center;
}
.navbar .navbar-menu .navbar-end .navbar-item .control .button {
  background-color: #e60012;
}
.navbar .navbar-menu .navbar-end .navbar-item .control span {
  color: #333333;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.banner img {
  display: block;
  transform: scale(1.2);
  filter: blur(5px);
  opacity: 0.5;
  margin: 0 auto;
  width: 100%;
  transition: all 4s ease-in-out;
}
.banner .text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
}
.banner .text h1 {
  font-size: 4rem;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  animation-delay: 0.1s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeOutDown;
}
.banner .text h1 span {
  color: #e83e01;
}
@media screen and (max-width: 1023px) {
  .banner .text h1 {
    font-size: 1.5rem;
  }
}
.banner .text p {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  animation-delay: 0.2s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeOutDown;
}
@media screen and (max-width: 1023px) {
  .banner .text p {
    font-size: 0.75rem;
    text-align: center;
  }
}
.banner .swiper-slide-active img {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}
.banner .swiper-slide-active .text h1 {
  animation-delay: 0.2s;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.banner .swiper-slide-active .text p {
  animation-delay: 0.4s;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.index-title {
  text-align: center;
}
.index-title h2 {
  color: #333;
  line-height: 1.25;
  font-size: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .index-title h2 {
    font-size: 1.5rem;
  }
}
.index-title p {
  margin-top: 0.5rem;
}

.section-1 {
  position: relative;
}
.section-1 .index-title {
  margin-top: 3rem;
}
.section-1 .pro-list .tabs ul {
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs ul {
    padding: 0 1rem;
    gap: 1rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs ul li {
    flex-shrink: 0;
  }
}
.section-1 .pro-list .tabs ul li a {
  border: none;
  background-color: transparent;
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs ul li a {
    padding: 0;
  }
}
.section-1 .pro-list .tabs-contents {
  background-color: #f5f8ff;
}
.section-1 .pro-list .tabs-contents .tabs-content {
  display: none;
}
.section-1 .pro-list .tabs-contents .tabs-content.is-active {
  display: block;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container {
  padding: 1rem 3rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs-contents .tabs-content .section .container {
    padding: 0;
    flex-direction: column;
  }
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .information {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs-contents .tabs-content .section .container .information {
    width: 100%;
  }
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .information .content .title {
  display: flex;
  align-items: center;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .information .content .title span {
  font-size: 2rem;
  margin-left: 0.5rem;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .information .content .params {
  display: flex;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .information .content .params h3 {
  color: #333;
  font-size: 1.75rem;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .information .content .desc {
  margin-top: 2rem;
  color: #7f7f7f;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .videos {
  gap: 1rem;
  display: flex;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs-contents .tabs-content .section .container .videos {
    width: 100%;
    margin-left: 0;
  }
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .videos .video-box {
  width: 16rem;
  position: relative;
  background-size: 100%;
  aspect-ratio: 1/2;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .videos .video-box .border {
  width: 98%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  background: url(../images/iPhone.png) no-repeat top center;
  background-size: 100%;
}
.section-1 .pro-list .tabs-contents .tabs-content .section .container .videos .video-box video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  -webkit-clip-path: inset(0 0 0 0 round 64px);
          clip-path: inset(0 0 0 0 round 64px);
}
@media screen and (max-width: 1023px) {
  .section-1 .pro-list .tabs-contents .tabs-content .section .container .videos .video-box video {
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    -webkit-clip-path: inset(0 0 0 0 round 40px);
            clip-path: inset(0 0 0 0 round 40px);
  }
}

.section-2 .tabs ul {
  gap: 1rem;
}
.section-2 .tabs ul li a {
  border: none;
  font-weight: bold;
  background-color: #eeeeee;
  border-radius: var(--bulma-tabs-toggle-link-radius);
}
.section-2 .tabs ul li.is-active a {
  background-image: linear-gradient(to right, #0172ff, #30abfc);
}
.section-2 .tabs-contents .tabs-content {
  display: none;
}
.section-2 .tabs-contents .tabs-content.is-active {
  display: block;
}
@media screen and (min-width: 1024px) {
  .section-2 .tabs-contents .tabs-content .fixed-grid .grid {
    gap: 2rem;
  }
}
.section-2 .tabs-contents .tabs-content .fixed-grid .grid .cell .image {
  width: 100%;
}
.section-2 .tabs-contents .tabs-content .fixed-grid .grid .cell .info {
  text-align: center;
}
.section-2 .tabs-contents .tabs-content .fixed-grid .grid .cell .info h3 {
  color: #333333;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}
.section-2 .tabs-contents .tabs-content .fixed-grid .grid .cell .info p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.section-3 {
  padding: 1.5rem 0;
  background: url(../images/pdbox_bg.jpg) no-repeat center center/cover;
}
.section-3 .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .section-3 .container {
    flex-wrap: wrap;
    padding: 0 1rem;
  }
}
.section-3 .container .text img {
  display: block;
}
.section-3 .container .form {
  gap: 1rem;
  display: flex;
  margin-left: auto;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .section-3 .container .form {
    flex-wrap: wrap;
    margin-top: 1rem;
  }
}
.section-3 .container .form .button {
  background-color: #e60012;
}
@media screen and (max-width: 1023px) {
  .section-3 .container .form .button {
    width: 100%;
  }
}

.section-4 .marketing-list .tabs ul {
  gap: 1rem;
}
.section-4 .marketing-list .tabs ul li a {
  border: none;
  font-weight: bold;
  background-color: #eeeeee;
  border-radius: var(--bulma-tabs-toggle-link-radius);
}
.section-4 .marketing-list .tabs ul li.is-active a {
  background-image: linear-gradient(to right, #0172ff, #30abfc);
}
.section-4 .marketing-list .tabs-contents .tabs-content {
  display: none;
}
.section-4 .marketing-list .tabs-contents .tabs-content.is-active {
  display: block;
}
.section-4 .marketing-list .tabs-contents .tabs-content .cont {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .section-4 .marketing-list .tabs-contents .tabs-content .cont .image {
    aspect-ratio: 16/9;
  }
  .section-4 .marketing-list .tabs-contents .tabs-content .cont .image img {
    object-fit: cover;
  }
}
.section-4 .marketing-list .tabs-contents .tabs-content .cont .info {
  position: absolute;
  left: 4rem;
  top: 4rem;
  width: 33%;
  border-radius: 0;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.77);
}
@media screen and (max-width: 1023px) {
  .section-4 .marketing-list .tabs-contents .tabs-content .cont .info {
    width: calc(100% - 2rem);
    left: 1rem;
    top: 1rem;
    padding: 1rem;
  }
}
.section-4 .marketing-list .tabs-contents .tabs-content .cont .info h3 {
  color: #333333;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .section-4 .marketing-list .tabs-contents .tabs-content .cont .info h3 {
    font-size: 1rem;
  }
}
.section-4 .marketing-list .tabs-contents .tabs-content .cont .info p {
  margin-top: 1rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .section-4 .marketing-list .tabs-contents .tabs-content .cont .info p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.section-5 .container .fixed-grid .grid .cell {
  position: relative;
}
.section-5 .container .fixed-grid .grid .cell .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section-5 .container .fixed-grid .grid .cell .text h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .section-5 .container .fixed-grid .grid .cell .text h4 {
    font-size: 1rem;
  }
}
.section-5 .container .fixed-grid .grid .cell .text p {
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .section-5 .container .fixed-grid .grid .cell .text p {
    font-size: 0.75rem;
  }
}

.footer {
  padding: 0;
  background-color: #070f22;
}
.footer .section .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .footer .section .container {
    gap: 1rem;
    flex-direction: column;
  }
}
.footer .section .container .left .foot-nav {
  width: auto;
}
.footer .section .container .left .foot-nav a {
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .footer .section .container .left .foot-nav a {
    font-size: 0.875rem;
  }
}
.footer .section .container .middle .top {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
.footer .section .container .middle .top .iconfont {
  width: 4rem;
  height: 4rem;
  color: #fff;
  line-height: 4rem;
  text-align: center;
  border-radius: 50%;
  font-size: 3.25rem;
  background-image: linear-gradient(to right, #0172ff, #30abfc);
}
.footer .section .container .middle .top .text {
  line-height: 1;
  margin-left: 1rem;
}
.footer .section .container .middle .top .text h4 {
  color: #fff;
  font-size: 1.25rem;
}
.footer .section .container .middle .top .text span {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #0172ff 0, #30abfc 33.33333%, #0172ff 66.66666%, #30abfc 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.footer .section .container .middle p {
  color: #fff;
}
.footer .section .container .middle p .iconfont {
  margin-right: 0.5rem;
}
.footer .section .container .right {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .footer .section .container .right {
    text-align: left;
  }
}
.footer .section .container .right p {
  color: #fff;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer .copyright p {
  padding: 1em 0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
}
.footer .copyright p a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.58);
}
@media screen and (max-width: 1023px) {
  .footer .copyright p a {
    display: block;
  }
}

.inner-banner {
  position: relative;
}
.inner-banner img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.inner-banner .hero-body .title {
  color: #fff;
}
.inner-banner .hero-body .subtitle {
  color: #fff;
}

.content-nav {
  padding: 1rem 0;
  background-color: hsl(221, 14%, 96%);
}
@media screen and (max-width: 1023px) {
  .content-nav {
    padding: 0.5rem;
  }
}
.content-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-nav .container .crumb {
  display: flex;
  gap: 0.5em;
  align-items: center;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .content-nav .container .crumb {
    font-size: 0.875rem;
  }
}
.content-nav .container .crumb .iconfont {
  font-size: 1.25rem;
}
.content-nav .container .crumb a {
  color: #666;
}
@media screen and (max-width: 1023px) {
  .content-nav .container .crumb a {
    font-size: 0.875rem;
  }
}
.content-nav .container .bd-nav {
  display: flex;
}
.content-nav .container .bd-nav .bd-nav-item {
  --h: var(--bulma-primary-h);
  --s: var(--bulma-primary-s);
  --l: var(--bulma-primary-l);
  align-items: center;
  border-radius: 0.5em;
  color: var(--bulma-text-strong);
  display: flex;
  gap: 0.5em;
  padding: 0.5em 0.75em;
}
.content-nav .container .bd-nav .bd-nav-item:hover {
  background-color: hsl(221, 14%, 93%);
}
.content-nav .container .bd-nav .bd-nav-item.active {
  color: #fff;
  background-color: #e83e01;
}
@media screen and (max-width: 1023px) {
  .content-nav .container .bd-nav {
    align-items: stretch;
    background-color: var(--bulma-scheme-main);
    border-color: var(--bulma-border);
    border-radius: 1em;
    border-style: solid;
    border-width: 1px;
    box-shadow: var(--bulma-shadow);
    flex-direction: column;
    opacity: 0;
    padding: 0.5em;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 1.5em;
    transform: scale(0.98) translateY(-0.5em);
    transform-origin: right top;
    transition-duration: var(--bulma-duration);
    transition-property: opacity, transform;
    visibility: hidden;
    z-index: 5;
  }
  .content-nav .container .bd-nav .bd-nav-item.active {
    color: #e83e01;
    font-weight: bold;
    background-color: transparent;
  }
  .content-nav .container .bd-nav.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
}
.content-nav .container .nav-burger .iconfont {
  font-size: 1.25rem;
}

.content-container .index-title {
  margin-bottom: 1rem;
  text-align: center;
}
.content-container .index-title h1 {
  color: #333;
  text-shadow: none;
  font-size: 1.5rem;
}
.content-container .index-title h1::before, .content-container .index-title h1::after {
  width: 0;
  height: 0;
}
.content-container .categorys .tabs ul li.is-active a {
  background-color: #e83e01;
  border-color: #e83e01;
}
@media screen and (min-width: 1024px) {
  .content-container .container .pro-list .grid {
    gap: 2rem;
  }
}
.content-container .container .pro-list .grid .cell {
  overflow: hidden;
  transition: all 0.3s linear;
  border-radius: 0.5em;
  border: 1px solid hsl(221, 14%, 86%);
}
.content-container .container .pro-list .grid .cell .aspect-ratio-box {
  background-color: hsl(221, 14%, 86%);
}
.content-container .container .pro-list .grid .cell .aspect-ratio-box img {
  object-fit: contain;
}
.content-container .container .pro-list .grid .cell .image {
  overflow: hidden;
}
.content-container .container .pro-list .grid .cell .image img {
  object-fit: contain;
  transition: all 0.3s linear;
}
.content-container .container .pro-list .grid .cell .tit {
  display: block;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5em 0.75em;
  transition: all 0.3s linear;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-break: anywhere;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1023px) {
  .content-container .container .pro-list .grid .cell .tit {
    -webkit-line-clamp: 2;
  }
}
.content-container .container .pro-list .grid .cell:hover .image img {
  transform: scale(1.1);
}
.content-container .container .pro-list .grid .cell:hover .tit {
  color: #e83e01;
}
@media screen and (min-width: 1024px) {
  .content-container .container .news-list .grid {
    gap: 2rem;
  }
}
.content-container .container .news-list .grid .cell .time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  margin-top: 1rem;
}
.content-container .container .news-list .grid .cell .time .iconfont {
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .content-container .container .news-list .grid .cell .title {
    margin: 1rem 0;
  }
}
.content-container .container .news-list .grid .cell .title a {
  font-size: 1.25rem;
  color: hsl(221, 14%, 4%);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-break: anywhere;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1023px) {
  .content-container .container .news-list .grid .cell .title a {
    font-size: 1rem;
  }
}
.content-container .container .news-list .grid .cell .title:hover a {
  color: #e83e01;
}
.content-container .container .news-list .grid .cell .desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-break: anywhere;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1023px) {
  .content-container .container .news-list .grid .cell .desc {
    font-size: 0.75rem;
  }
}
.content-container .container .page-detail .detail .title {
  text-align: center;
}
.content-container .container .page-detail .detail .subtitle {
  text-align: center;
}
.content-container .container .page-detail .form form .cus {
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .content-container .container .page-detail .form form .cus {
    flex-direction: column;
    gap: 0;
  }
}
.content-container .container .page-detail .form form .cus .field {
  width: calc(50% - 0.5rem);
}
@media screen and (max-width: 768px) {
  .content-container .container .page-detail .form form .cus .field {
    width: 100%;
  }
}
.content-container .container .page-detail .form form .texts {
  margin-top: var(--bulma-block-spacing);
}
.content-container #mymap {
  width: 100%;
  height: 500px;
}
.content-container #mymap img {
  max-width: initial;
  transition: all;
}

@media screen and (min-width: 1024px) {
  #gallery .modal-content {
    width: 64rem;
  }
}
#gallery .modal-content .photo-gallery .swiper-wrapper {
  align-items: center;
}
#gallery .modal-content .photo-gallery .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#gallery .modal-content .photo-gallery .swiper-wrapper .swiper-slide img {
  object-fit: cover;
}
#gallery .modal-content .photo-gallery .swiper-wrapper .swiper-slide h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px #000;
  color: rgba(255, 255, 255, 0.7);
}
#gallery .modal-close {
  background-color: rgba(0, 0, 0, 0.5);
}
#gallery .swiper-pagination {
  z-index: 100;
  text-shadow: 1px 1px 2px #000;
  color: rgba(255, 255, 255, 0.8);
}
#gallery .swiper-button-prev,
#gallery .swiper-button-next {
  border: none;
  transition: all 0.25s linear;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}
#gallery .swiper-button-prev::after,
#gallery .swiper-button-next::after {
  font-size: 1rem;
  font-weight: normal;
  text-shadow: 1px 1px 2px #000;
}/*# sourceMappingURL=index.css.map */