/* Second-pass visual alignment: source-inspired spacing and image treatment. */
.nav-main {
  display: inline-block;
  padding: 0 15px;
  font-size: 15px;
  line-height: 60px;
  position: relative
}

.nav-main:hover,
.nav-main.active {
  background: #fff;
  color: var(--blue)
}

.page-banner {
  background-image: linear-gradient(#005b7d99, #005b7d99), url('../images/waterpark_aerial.jpg')
}

.service-bg {
  background-image: linear-gradient(#057dbdcc, #057dbdcc), url('../images/waterpark_resort.jpg')
}

.list-card {
  transition: transform .28s, box-shadow .28s
}

.list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px #0b557322
}
.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
        gap: 18px;
    margin-top: 28px;
    color: #87959c;
    font-size: 13px;
}
.new-show.new-show-no{
    display: none;
}
@media(min-width:901px) {
  .new-grid {
    margin-top: 5px
  }

  .new-show {
    min-height: 360px
  }

  /*.service-card {*/
  /*  min-height: 300px*/
  /*}*/

  .case-grid {
    gap: 10px
  }

  .case-card {
    min-height: 235px
  }
}

@media(max-width:900px) {
  .nav-main {
    display: block;
    line-height: 44px;
    color: #394b57;
    padding: 0 22px
  }

  .nav-main.active,
  .nav-main:hover {
    background: #e9f8ff;
    color: var(--blue)
  }
}

.top {
  height: 72px;
  background: linear-gradient(105deg, #0788c7, #087bb8);
  box-shadow: 0 5px 18px #075b7d2b
}

.brand {
  font-size: 22px;
  letter-spacing: 6px
}
.brand img{
    max-height: 50px;
}

.nav {
  gap: 3px
}

.nav-main {
  height: 72px;
  line-height: 72px;
  padding: 0 14px;
  font-size: 14px;
  transition: color .25s, background .25s
}

.nav-main:after {
  transition: transform .25s
}

.nav-main.has-sub:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg)
}

.nav-group:hover .nav-main,
.nav-main.active {
  background: #fff;
  color: var(--blue)
}

.nav-main.active:before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  background: #f6b23a
}

.nav-group:hover .nav-main.has-sub:after {
  transform: rotate(225deg);
  margin-bottom: 0
}

.sub {
  top: 72px;
  width: 360px;
  padding: 22px 24px;
  border-top: 3px solid #f3ae3a;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 16px 35px #064c6b2e;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s, transform .2s, visibility .2s
}

.nav-group:hover .sub {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.sub a {
  width: auto;
  padding: 10px 8px;
  border-bottom: 1px solid #e9f0f3;
  color: #566873;
  font-size: 13px;
  transition: color .2s, padding .2s
}

.sub a:hover {
  padding-left: 13px;
  color: var(--blue);
  background: #f4fbfe
}

.tools {
  gap: 8px
}

.tool {
  background: #26a9df
}

.case-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px
}

.case-card {
  min-height: 0;
  height: 100%
}

.case-card.big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0
}

.case-card:not(.big) .overlay {
  padding: 16px 13px
}

.case-card:not(.big) h3 {
  font-size: 15px
}

.news-list {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-rows: repeat(2, minmax(128px, 1fr));
  gap: 14px
}

.news-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 128px;
  padding: 22px 28px 22px 86px;
  border: 1px solid #e1edf2;
  border-top: 0;
  background: #fff;
  box-shadow: 0 8px 22px #0d638012;
  transition: transform .25s, box-shadow .25s
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px #0d638020
}

.news-item:first-child {
  grid-row: span 2;
  padding: 34px 36px;
  background: linear-gradient(145deg, #087fbe, #0aa7d9);
  border: 0;
  color: #fff
}

.news-item:first-child h3 {
  font-size: 23px;
  line-height: 1.5;
  margin: 16px 0 14px
}

.news-item:first-child p {
  color: #dff5fd;
  font-size: 14px
}

.news-item:first-child .more {
  color: #fff;
  border-color: #ffffff88
}

.news-item:before {
  content: attr(data-index);
  position: absolute;
  left: 26px;
  top: 24px;
  color: #c5d8df;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px
}

.news-item:first-child:before {
  left: auto;
  right: 32px;
  top: 30px;
  color: #ffffff80;
  font-size: 34px
}

.news-item time {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #81929c;
  font-size: 11px;
  line-height: 1
}

.news-item time b {
  font-size: 32px;
  color: var(--blue);
  line-height: .9
}

.news-item time span {
  padding-bottom: 2px;
  letter-spacing: 1px
}

.news-item:first-child time b,
.news-item:first-child time span {
  color: #fff
}

.news-item h3 {
  font-size: 16px;
  margin: 10px 0 6px;
  line-height: 1.4
}

.news-item p {
  font-size: 13px;
  line-height: 1.65;
  color: #75858e;
  margin: 0
}

.news-item .more {
  justify-content: space-between;
  margin-top: 14px;
  /*width: 100%;*/
  padding-top: 12px;
  border-top: 1px solid #e2edf1;
  font-size: 12px
}

.news-item .more b {
  font-size: 18px;
  font-weight: 400
}

.news-item:first-child .more {
  border-color: #ffffff66
}

.about-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f8fb, #fff);
  padding: 92px 0
}

.about-grid {
  position: relative;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center
}

.about-grid:before {
  content: "";
  position: absolute;
  left: -8%;
  top: 12%;
  width: 42%;
  height: 78%;
  background: #dff2f8;
  z-index: 0
}

.about-grid>img {
  position: relative;
  z-index: 1;
  height: 430px;
  box-shadow: 18px 18px 0 #fff, 28px 28px 0 #b9e5f1;
  object-fit: cover
}

.about-grid>div {
  position: relative;
  z-index: 1
}

.about-grid .section-head {
  text-align: left;
  margin: 0 0 20px
}

.about-grid .section-head .cn {
  font-size: 34px;
  font-weight: 700;
  color: #243d4c;
  letter-spacing: 1px
}

.about-grid .section-head .cn:before {
  content: "ABOUT US";
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700
}

.about-grid p {
  max-width: 560px;
  margin: 0;
  color: #697984;
  line-height: 2;
  font-size: 14px
}

.about-grid .more {
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--blue);
  font-weight: 700
}

.stats {
  gap: 14px;
  margin-top: 34px
}

.stat {
  min-width: 150px;
  padding: 15px 18px;
  background: #fff;
  border-left: 3px solid var(--blue);
  box-shadow: 0 8px 20px #0a628b12
}

.stat b {
  font-size: 26px
}

.about-visual-label {
  position: absolute;
  z-index: 2;
  left: calc(46% - 72px);
  bottom: 28px;
  padding: 12px 18px;
  background: #f5ad3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 8px 18px #9f631e3d
}

.page-banner {
  height: 280px;
  position: relative
}

.page-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #003f5c88, transparent 65%);
  pointer-events: none
}

.page-banner>div {
  position: relative;
  z-index: 1;
  text-align: left;
  width: 1200px;
  max-width: 92%;
  padding-left: 70px
}

.page-banner h1 {
  font-size: 42px;
  letter-spacing: 2px
}

.crumb {
  padding: 14px 0
}

.inner {
  padding: 62px 0 96px
}

.inner-layout {
  grid-template-columns: 210px 1fr;
  gap: 58px
}

.side {
  position: relative;
  padding-right: 28px
}

.side:before {
  content: "SECTION";
  display: block;
  margin-bottom: 10px;
  color: #a8bac3;
  font-size: 10px;
  letter-spacing: 2px
}

.side a {
  padding: 14px 16px;
  border-bottom: 1px solid #e4edf1;
  transition: padding .2s, background .2s
}

.side a.active,
.side a:hover {
  padding-left: 22px;
  background: linear-gradient(90deg, var(--blue), #29addd);
  color: #fff
}

.content {
  min-width: 0
}

.content h2 {
  font-size: 34px;
  letter-spacing: 1px
}

.content .lead {
  font-size: 17px;
  color: #526b78
}

.content img {
  max-height: 450px
}

.page-culture .page-banner {
  background-image: linear-gradient(#285c6b99, #285c6b99), url('../images/waterpark_resort.jpg')
}

.page-culture .content {
  padding: 40px 46px;
  background: #f5fafc;
  border-top: 4px solid #f1ab3b
}

.page-culture .content img {
  height: 360px;
  object-fit: cover
}

.page-culture .content:before {
  content: "VALUES / TEAM / GROWTH";
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px
}

.page-environment .page-banner {
  background-image: linear-gradient(#27566b99, #27566b99), url('../images/waterpark_aerial.jpg')
}

.page-environment .content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  column-gap: 46px;
  align-items: start
}

.page-environment .content h2,
.page-environment .content .lead,
.page-environment .content p {
  grid-column: 1
}

.page-environment .content img {
  grid-column: 2;
  grid-row: 1 / span 4;
  height: 430px;
  max-height: none;
  margin: 0;
  object-fit: cover
}

.page-honor .page-banner {
  background-image: linear-gradient(#35565f99, #35565f99), url('../images/waterpark_blue.jpg')
}

.page-honor .content {
  padding: 42px;
  background: #f5fafc;
  text-align: center
}

.page-honor .content h2 {
  margin-bottom: 8px
}

.page-honor .content .lead {
  max-width: 620px;
  margin: 0 auto
}

.page-honor .content img {
  height: 350px;
  margin: 28px auto 0;
  object-fit: cover
}

.page-service .page-banner {
  background-image: linear-gradient(#05648799, #05648799), url('../images/waterpark_resort.jpg')
}

.page-service .content h2 {
  display: none
}

.page-service .list-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.page-service .list-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 150px
}

.page-service .list-card img {
  height: 100%;
  min-height: 150px
}

.page-service .list-card .body {
  padding: 22px
}

.page-install .page-banner {
  background-image: linear-gradient(#355b6d99, #355b6d99), url('../images/waterpark_twist.jpg');
  background-size: 100% auto;
}

.page-install .content {
  padding-left: 18px;
  border-left: 4px solid #f1ab3b
}

.page-install .content img {
  height: 390px
}

.page-contact .page-banner {
  background-image: linear-gradient(#275d6d99, #275d6d99), url('../images/waterpark_sky.jpg');
  background-size: 100% auto;
  
}

.page-contact .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 42px;
  align-items: center;
  padding: 30px 0
}

.page-contact .content h2,
.page-contact .content .lead {
  grid-column: 1
}

.page-contact .content img {
  grid-column: 2;
  grid-row: 1 / span 2;
  height: 300px;
  margin: 0;
  object-fit: cover
}
.page-banner{
      background-size: 100% auto;
}
.page-about .page-banner {
  background-image: linear-gradient(#20576b99, #20576b99), url('../images/waterpark_aerial.jpg');

}

.page-about .content {
  padding-top: 10px
}

.page-about .content img {
  height: 360px;
  object-fit: cover
}

.page-about .content:before {
  content: "OUR STORY";
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700
}

@media(min-width:901px) {
  .page-home .case-grid {
    grid-template-rows: repeat(2, 260px)
  }
}

@media(max-width:900px) {
  .top {
    height: 60px
  }

  .nav {
    gap: 0
  }

  .nav-group .sub {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    position: static;
    width: 100%;
    padding: 0 22px;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: #f5fafc;
    grid-template-columns: 1fr
  }

  .nav-group.open .sub {
    display: grid
  }

  .nav-main {
    height: 44px;
    line-height: 44px
  }

  .nav-main.active:before {
    display: none
  }

  .nav-main.has-sub:after {
    float: right;
    margin-top: 16px
  }

  .page-banner {
    height: 220px
  }

  .page-banner>div {
    padding-left: 0
  }

  .page-banner h1 {
    font-size: 32px
  }

  .inner {
    padding: 42px 0 72px
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 210px)
  }

  .case-card.big {
    grid-column: span 2;
    grid-row: span 1
  }

  .news-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .news-item:first-child {
    grid-row: auto;
    min-height: 260px
  }

  .about-strip {
    padding: 65px 0
  }

  .about-grid {
    gap: 48px
  }

  .about-grid:before {
    left: -15%;
    top: 3%;
    width: 80%;
    height: 47%
  }

  .about-grid>img {
    height: 300px;
    box-shadow: 12px 12px 0 #fff, 19px 19px 0 #b9e5f1
  }

  .about-visual-label {
    left: auto;
    right: 5%;
    bottom: auto;
    top: 275px
  }

  .page-environment .content,
  .page-contact .content {
    display: block
  }

  .page-environment .content img,
  .page-contact .content img {
    height: 300px;
    margin: 24px 0
  }

  .page-service .list-grid {
    grid-template-columns: 1fr
  }

  .page-service .list-card {
    grid-template-columns: 100px 1fr
  }

  .page-culture .content {
    padding: 28px 24px
  }

  .page-honor .content {
    padding: 28px 20px
  }
}

@media(max-width:560px) {
  .case-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none
  }

  .case-card,
  .case-card.big {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
    height: 240px
  }

  .news-item {
    padding-left: 76px
  }

  .news-item:first-child {
    padding: 28px
  }

  .about-grid>img {
    height: 250px
  }

  .about-grid .section-head .cn {
    font-size: 28px
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .stat {
    min-width: 0
  }

  .page-contact .content {
    padding: 0
  }
}

.top {
  background-image: linear-gradient(90deg, #063b597a 0%, #076c8d55 48%, #087ea933 100%), url('../images/waterpark_hero.jpg') !important;
  background-position: center 54% !important;
  background-size: cover !important
}

.top:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #032b4424, transparent 70%);
  pointer-events: none
}

.top .wrap {
  position: relative;
  z-index: 1
}

.top {
  background-image: linear-gradient(90deg, #ffffffed 0%, #ffffffc7 52%, #ffffffe0 100%), url('../images/waterpark_hero.jpg') !important;
  background-position: center 54% !important;
  background-size: cover !important;
  color: #1d566b
}

.top:after {
  background: linear-gradient(180deg, #ffffff55, transparent 75%)
}

.top .brand,
.top .nav-main {
  color: #1d566b
}

.top .brand-mark {
  background: #eaf8fc;
  color: #087fbe;
  border-color: #54c2e5
}

.top .nav-main:hover,
.top .nav-main.active,
.top .nav-group:hover .nav-main {
  background: #0798da;
  color: #fff
}

.top .nav-group:not(:last-child):after {
  background: #16728b44
}

.top .tool {
  background: #0798da;
  color: #fff
}

.page-banner:after {
  background: none !important
}

.page-banner {
  background-image: url('../images/waterpark_aerial.jpg') !important;
  background-color: transparent
}

.page-about .page-banner {
  background-image: url('../images/waterpark_aerial.jpg') !important
}

.page-culture .page-banner {
  background-image: url('../images/waterpark_resort.jpg') !important
}

.page-environment .page-banner {
  background-image: url('../images/waterpark_aerial.jpg') !important
}

.page-honor .page-banner {
  background-image: url('../images/waterpark_blue.jpg') !important
}

.page-service .page-banner {
  background-image: url('../images/waterpark_resort.jpg') !important
}

.page-install .page-banner,
.content-install .page-banner {
  background-image: url('../images/waterpark_twist.jpg') !important
}

.page-contact .page-banner {
  background-image: url('../images/waterpark_sky.jpg') !important
}

.page-detail-product .page-banner {
  background-image: url('../images/waterpark_twist.jpg') !important
}

.page-detail-case .page-banner {
  background-image: url('../images/waterpark_resort.jpg') !important
}

.page-detail-news .page-banner {
  background-image: url('../images/waterpark_sky.jpg') !important
}

.page-detail-service .page-banner {
  background-image: url('../images/waterpark_aerial.jpg') !important
}

.page-detail-design .page-banner {
  background-image: url('../images/waterpark_green.jpg') !important
}

.news-item:hover,
.news-item:first-child:hover {
  background: linear-gradient(145deg, #087fbe, #10a7d8) !important;
  color: #fff;
  box-shadow: 0 16px 30px #05628755
}

.news-item:hover h3,
.news-item:hover p,
.news-item:hover time b,
.news-item:hover time span,
.news-item:hover .more {
  color: #fff !important
}

.news-item:hover .more {
  border-color: #ffffff88 !important
}

.news-item:hover .news-feature-image {
  filter: saturate(1.12) brightness(1.03)
}

.news-item:before,
.news-item .more b,
.case-slide-info small {
  display: none !important
}

.news-item .more {
  justify-content: flex-start
}

.products {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px
}

.product-card {
  height: 270px;
  border: 0 !important;
  box-shadow: 0 8px 22px #0a5e7d18 !important;
  overflow: hidden;
  background: #d8eef4
}

.product-card img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .6s, filter .6s
}

.product-card .txt {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 118px;
  padding: 24px 20px 18px;
  background: linear-gradient(transparent, #073b59e8);
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .3s, transform .3s
}

.product-card .txt h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff
}

.product-card .txt small {
  color: #d7f4fb;
  letter-spacing: 2px
}

.product-card:after {
  content: "查看产品";
  left: 20px;
  right: auto;
  bottom: 20px;
  width: 92px;
  padding: 8px 10px;
  background: #0798da;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(.88)
}

.product-card:hover .txt,
.product-card:focus-visible .txt,
.product-card:hover:after,
.product-card:focus-visible:after {
  opacity: 1;
  transform: translateY(0)
}

.news-item:not(:first-child) {
  padding-left: 28px
}

.products {
  gap: 28px;
  padding: 0 8px
}

.product-card {
  height: 330px
}

.product-card .txt {
  min-height: 142px;
  padding: 28px 22px 20px
}

.product-card .txt h3 {
  font-size: 22px
}

.product-card .txt small {
  display: block;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0
}

@media(min-width:901px) {
  .products {
    width: calc(100% + 160px);
    margin-left: -80px
  }
}

.product-card .txt {
  opacity: 1;
  transform: translateY(0)
}

.product-card:after {
  opacity: 0 !important;
  transform: translateY(10px)
}

.product-card:hover .txt,
.product-card:focus-visible .txt {
  opacity: 0;
  transform: translateY(18px)
}

.product-card:hover:after,
.product-card:focus-visible:after {
  opacity: 0 !important;
  transform: translateY(10px)
}

.product-card:hover img,
.product-card:focus-visible img {
  filter: saturate(1.08) brightness(1);
  transform: scale(1.06)
}

.new-product-section {
  padding: 96px 0
}

.new-product-section .new-grid {
  min-height: 600px
}

.new-product-section .new-menu {
  padding-left: 38px
}

.new-product-section .new-menu h3 {
  font-size: 32px;
  letter-spacing: 1px
}

.new-product-section .new-menu h4 {
  font-size: 24px;
  margin: 8px 0 22px
}

.new-product-section .new-list li {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px
}

.new-product-section .new-show {
  min-height: 600px
}

.new-product-section .new-card {
  padding: 42px 48px;
  width: 84%;
  margin-bottom: 36px
}

.new-product-section .new-card h3 {
  font-size: 36px;
  letter-spacing: 6px
}

.new-product-section .new-card p {
  font-size: 15px;
  line-height: 2.1
}

@media(max-width:900px) {
  .new-product-section {
    padding: 64px 0
  }

  .new-product-section .new-grid {
    min-height: 0
  }

  .new-product-section .new-menu {
    padding-left: 24px
  }

  .new-product-section .new-menu h3 {
    font-size: 27px
  }

  .new-product-section .new-menu h4 {
    font-size: 21px
  }

  .new-product-section .new-show {
    min-height: 400px
  }

  .new-product-section .new-card {
    padding: 28px 30px;
    width: 94%;
    margin-bottom: 0
  }

  .new-product-section .new-card h3 {
    font-size: 28px;
    letter-spacing: 4px
  }
}

@media(max-width:560px) {
  .new-product-section {
    padding: 52px 0
  }

  .new-product-section .new-show {
    min-height: 360px
  }

  .new-product-section .new-card {
    padding: 22px 24px
  }

  .new-product-section .new-card h3 {
    font-size: 24px;
    letter-spacing: 2px
  }
}

@media(max-width:900px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0
  }

  .product-card {
    height: 300px
  }
}

@media(max-width:560px) {
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .product-card {
    height: 260px
  }

  .product-card .txt {
    min-height: 108px;
    padding: 18px 14px 14px
  }

  .product-card .txt h3 {
    font-size: 17px
  }

  .product-card:after {
    left: 14px;
    bottom: 14px
  }
}

@media(min-width:901px) {
  .new-product-section>.wrap {
    width: 86%;
    max-width: 1640px
  }

  .new-product-section {
    padding: 84px 0
  }

  .new-product-section .new-grid {
    grid-template-columns: 37% 63%;
    min-height: 580px
  }

  .new-product-section .new-menu {
    padding-left: 0
  }

  .new-product-section .new-show {
    min-height: 580px;
    margin-left: 0
  }

  .new-product-section .new-card {
    left: 50px;
    bottom: -90px;
    width: 76%;
    padding: 30px 48px;
    margin-bottom: 0
  }

  .products {
    width: calc(100% + 32px);
    margin-left: -16px;
    gap: 20px;
    padding: 0
  }

  .product-card {
    height: 290px
  }

  .product-card .txt {
    min-height: 128px;
    padding: 24px 20px 18px
  }

  .product-card .txt h3 {
    font-size: 20px
  }
}

@media(max-width:900px) {
  .new-product-section {
    padding: 64px 0
  }

  .new-product-section .new-grid {
    min-height: 0
  }

  .new-product-section .new-show {
    min-height: 400px
  }

  .products {
    width: 100%;
    margin-left: 0
  }

  .product-card {
    height: 300px
  }
}

@media(max-width:560px) {
  .new-product-section {
    padding: 52px 0
  }

  .new-product-section .new-show {
    min-height: 360px
  }

  .product-card {
    height: 260px
  }
}

@media(min-width:901px) {
  .new-product-section {
    padding-bottom: 130px
  }

  .home-page>.section:not(.new-product-section)>.wrap,
  .home-page>.about-strip>.wrap {
    width: 86%;
    max-width: 1640px
  }

  .home-page .products {
    width: 100%;
    margin-left: 0
  }
}

@media(max-width:900px) {
  .new-product-section {
    padding-bottom: 64px
  }

  .home-page>.section>.wrap,
  .home-page>.about-strip>.wrap {
    width: 92%;
    max-width: 1200px
  }

  .home-page .products {
    width: 100%;
    margin-left: 0
  }
}

@media(min-width:901px) {
  .news-item:first-child {
    padding: 0 0 28px
  }

  .news-item:first-child .news-feature-image {
    width: 100%;
    height: 250px;
    margin: 0;
    display: block;
    object-fit: cover
  }

  .news-item:first-child>time,
  .news-item:first-child>h3,
  .news-item:first-child>p,
  .news-item:first-child>.more {
    margin-left: 36px;
    margin-right: 36px
  }

  .home-page .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px
  }

  .home-page .product-card {
    height: 360px
  }

  .home-page .product-card .txt {
    min-height: 146px;
    padding: 28px 24px 20px
  }

  .home-page .product-card .txt h3 {
    font-size: 22px
  }
}

@media(max-width:900px) {
  .news-item:first-child {
    padding: 0 0 26px
  }

  .news-item:first-child .news-feature-image {
    width: 100%;
    height: 210px;
    margin: 0;
    display: block;
    object-fit: cover
  }

  .news-item:first-child>time,
  .news-item:first-child>h3,
  .news-item:first-child>p,
  .news-item:first-child>.more {
    margin-left: 28px;
    margin-right: 28px
  }
}

/* Homepage news: featured left, 2x2 cards right */
.home-page .news-list {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.18fr);
  grid-template-rows: none;
  gap: 20px;
  align-items: stretch
}

.home-page .news-item {
  min-width: 0;
  overflow: hidden
}

.home-page .news-feature,
.home-page .news-list>.news-item:first-child {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 0 0 24px;
  background: #fff !important;
  background-image: none !important;
  color: var(--ink) !important
}

.home-page .news-feature .news-feature-image,
.home-page .news-list>.news-item:first-child .news-feature-image {
  width: 100%;
  height: 250px;
  margin: 0;
  display: block;
  object-fit: cover;
  mix-blend-mode: normal;
  opacity: 1;
  flex: none
}

.home-page .news-feature>time,
.home-page .news-feature>h3,
.home-page .news-feature>p,
.home-page .news-feature>.more,
.home-page .news-list>.news-item:first-child>time,
.home-page .news-list>.news-item:first-child>h3,
.home-page .news-list>.news-item:first-child>p,
.home-page .news-list>.news-item:first-child>.more {
  margin-left: 28px;
  margin-right: 28px
}

.home-page .news-feature>h3,
.home-page .news-list>.news-item:first-child>h3 {
  font-size: 22px;
  color: var(--ink) !important
}

.home-page .news-feature>p,
.home-page .news-list>.news-item:first-child>p {
  color: #75858e !important
}

.home-page .news-feature>.more,
.home-page .news-list>.news-item:first-child>.more {
  color: var(--blue) !important;
  border-color: #e2edf1 !important
}

.home-page .news-feature time b,
.home-page .news-list>.news-item:first-child time b {
  color: var(--blue) !important
}

.home-page .news-feature time span,
.home-page .news-list>.news-item:first-child time span {
  color: #81929c !important
}

.home-page .news-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0
}

.home-page .news-cards .news-item,
.home-page .news-cards .news-item:first-child {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 0 0 14px;
  background: #fff !important;
  background-image: none !important;
  color: var(--ink) !important
}

.home-page .news-cards .news-item:first-child h3,
.home-page .news-cards .news-item:first-child p,
.home-page .news-cards .news-item:first-child time b,
.home-page .news-cards .news-item:first-child time span {
  color: inherit !important
}

.home-page .news-cards .news-item:first-child time b {
  color: var(--blue) !important
}

.home-page .news-cards .news-thumb {
  width: 100%;
  height: 132px;
  margin: 0;
  display: block;
  object-fit: cover;
  mix-blend-mode: normal;
  opacity: 1;
  flex: none;
  transition: transform .45s, filter .45s
}

.home-page .news-cards .news-item:hover .news-thumb {
  transform: scale(1.06);
  filter: saturate(1.08)
}

.home-page .news-cards .news-item>time {
  margin: 12px 16px 0
}

.home-page .news-cards .news-item>h3 {
  margin: 8px 16px 0;
  font-size: 16px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.home-page .news-cards .news-item>p {
  display: none
}

.home-page .news-cards .news-item time b {
  font-size: 24px
}

.home-page .news-item:hover,
.home-page .news-item:first-child:hover {
  background: #f2fbfd !important;
  color: var(--ink) !important
}

.home-page .news-item:hover h3,
.home-page .news-item:first-child:hover h3 {
  color: var(--ink) !important
}

.home-page .news-item:hover p,
.home-page .news-item:first-child:hover p {
  color: #75858e !important
}

.home-page .news-item:hover time b,
.home-page .news-item:first-child:hover time b {
  color: var(--blue) !important
}

.home-page .news-item:hover time span,
.home-page .news-item:first-child:hover time span {
  color: #81929c !important
}

.home-page .news-item:hover .more,
.home-page .news-item:first-child:hover .more {
  color: var(--blue) !important;
  border-color: #e2edf1 !important
}

.home-page .product-card .txt {
  min-height: 82px;
  padding: 16px 18px 14px
}

.home-page .product-card .txt h3,
.home-page .product-card .txt small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.home-page .product-card .txt h3 {
  margin: 0 0 4px;
  line-height: 1.35
}

.home-page .product-card .txt small {
  line-height: 1.45
}

@media(min-width:901px) {

  .home-page .news-feature>time,
  .home-page .news-feature>h3,
  .home-page .news-feature>p,
  .home-page .news-feature>.more,
  .home-page .news-list>.news-item:first-child>time,
  .home-page .news-list>.news-item:first-child>h3,
  .home-page .news-list>.news-item:first-child>p,
  .home-page .news-list>.news-item:first-child>.more {
    margin-left: 28px;
    margin-right: 28px
  }

  .home-page .news-cards .news-item>time,
  .home-page .news-cards .news-item>h3,
.home-page .news-cards .news-item>.more{
    margin-left: 16px;
    margin-right: 16px
  }

  .home-page .product-card .txt {
    min-height: 82px;
    padding: 16px 18px 14px
  }

  .home-page .product-card .txt h3 {
    font-size: 20px
  }
}

@media(max-width:900px) {
  .home-page .news-list {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .home-page .news-cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .home-page .news-item:first-child {
    grid-column: auto;
    grid-row: auto
  }

  .home-page .news-item {
    padding-left: 0
  }

  .home-page .news-feature .news-feature-image {
    height: 210px
  }

  .home-page .product-card .txt {
    min-height: 78px;
    padding: 14px 14px 12px
  }

  .home-page .about-grid {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .home-page .about-grid>img {
    width: 100%;
    height: 300px
  }

  .home-page .about-grid>div {
    width: 100%
  }
}

@media(max-width:560px) {
  .home-page .news-list {
    grid-template-columns: 1fr
  }

  .home-page .news-cards {
    grid-template-columns: 1fr
  }

  .home-page .news-item {
    padding-left: 0
  }

  .home-page .news-cards .news-thumb {
    height: 170px
  }

  .home-page .about-grid {
    gap: 28px
  }

  .home-page .about-grid>img {
    height: 250px
  }
}

/* Contact form layout */
.page-contact .inner-layout {
  grid-template-columns: 1fr;
  gap: 0
}

.page-contact .side {
  display: none
}

.page-contact .content {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  gap: 0 34px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0
}

.page-contact .content h2 {
  grid-column: 1 / -1;
  font-size: 36px;
  margin-bottom: 14px
}

.page-contact .content .lead {
  grid-column: 1;
  align-self: start;
  padding: 22px;
  margin: 0;
  background: #f4fafc;
  border-left: 3px solid var(--blue);
  font-size: 16px;
  line-height: 2.15;
  color: #536d79
}

.page-contact .content img {
  grid-column: 2;
  grid-row: 1 / span 3;
  height: 300px;
  margin: 0;
  object-fit: cover
}

.page-contact .contact-form {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin: 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #dcebef;
  border-top: 3px solid var(--blue);
  box-shadow: 0 14px 34px #0a607512
}

.page-contact .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.page-contact .contact-form label {
  display: block;
  color: #5b707b;
  font-size: 13px;
  line-height: 1.5
}

.page-contact .contact-form input,
.page-contact .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #d7e5ea;
  border-radius: 2px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0
}

.page-contact .contact-form textarea {
  resize: vertical;
  min-height: 110px
}

.page-contact .contact-form input:focus,
.page-contact .contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #0798da18
}

.page-contact .contact-form>label {
  margin-top: 14px
}

.page-contact .contact-form button {
  margin-top: 16px;
  border: 0;
  padding: 11px 20px;
  background: linear-gradient(135deg, #078fc8, #19addb);
  color: #fff;
  font: inherit;
  cursor: pointer
}

.page-contact .contact-form button span {
  margin-left: 8px;
  font-size: 18px
}

.page-contact .contact-form-note {
  margin: 10px 0 0 !important;
  color: #8a9aa2 !important;
  font-size: 12px !important;
  line-height: 1.5 !important
}

@media(max-width:901px) {
  .page-contact .content {
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    gap: 0 48px;
    max-width: 1080px
  }

  .page-contact .content .lead {
    padding: 30px 28px;
    font-size: 18px;
    line-height: 2.25;
    min-height: 220px
  }
}

@media(max-width:900px) {
  .page-contact .inner-layout {
    display: block;
    grid-template-columns: 1fr;
    gap: 0
  }

  .page-contact .side {
    margin-bottom: 24px
  }

  .page-contact .content {
    display: block;
    width: 100%
  }

  .page-contact .content img {
    height: 300px;
    margin: 24px 0
  }

  .page-contact .contact-form {
    margin-top: 24px
  }
}

@media(max-width:560px) {
  .page-contact .contact-form {
    padding: 20px 16px
  }

  .page-contact .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .page-contact .content img {
    height: 220px
  }
}