/* 全局样式 */
html {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

:root {
  --container-max-width: 1720px; /* 默认设置 */
}

@media (max-width: 1920px) {
  :root {
    --container-max-width: 1280px;
  }
}

.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: var(--container-max-width);
}


.container.full {
  max-width: none;
}

/* 头部样式 */
header {
  position: fixed;
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin: auto;
  z-index: 9999;
  background-color: transparent;
  color: white;
  transition: all 0.7s ease; /* 平滑过渡效果 */
}

header .logo img {
  filter: brightness(0) invert(1); /* 白色logo */
}


header .colum-2-2.columes2 {
  text-align: right;
  align-items: center;
}

/* 滚动后的状态：白色背景，彩色文字和logo */
header.scrolled {
  background-color: white;
  color: black;
}

header.scrolled .logo img {
  filter: none; /* 恢复原色 */
}

.full-height {
  height: 100vh;
}

.logo img {
  max-width: 130px;
  height: auto;
}

.logo-text p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.3em;
  font-style: italic;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}


.fix-btn {
  position: fixed;
  right: 0;
  top: 30%;
  width: 30px;
  height: 150px;
  background-color: #35A8E0;
  color: #ffffff;
  cursor: pointer;
  z-index: 99999;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 1px;
  writing-mode: vertical-lr; /* 设置文本从上到下垂直排列 */
  transform: rotate(180deg); /* 如需反向，请使用此行代码 */
  text-align: center; /* 确保文本在容器中居中 */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  filter: drop-shadow(2px -2px 5px #474747);
  transition: all 0.3s ease-in-out;

}

.fix-btn:hover {
  letter-spacing: 3px;
  background-color: #8fbc1f;
}


section {
  max-width: 100vw;
}

/* 内容样式 */
.content, section {
  padding: 20px 0;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex.slider {
  display: flex;
  flex-direction: column;
  align-items: center;     /* 垂直对齐到底部 */
  justify-content: center;   /* 水平居中对齐 */
  height: 100vh;             /* 容器高度设置为视窗的100% */
  text-align: center;        /* 文本中心对齐 */
}


h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
  font-weight: bold;
}

.pod-title-container {
  padding: 10px 40px;
}

.pod-title-container h4 {
  letter-spacing: 3px;
}

.pod-title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.bg-blue {
  background-color: #35A8E0 ;
}

.form {
  /* 表单样式 */
}

/* 脚注样式 */
footer {
  background-color: #f2f2f2;
  padding: 20px 0;
}

footer img {
  max-width: 100px;
  height: auto;
}

footer h1 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

footer div {
  text-align: center;
}

footer div div {
  margin-bottom: 10px;
}

/* 网格和列布局 */
.full-width {
  width: 100%;
}

.flex-container {
  display: flex;
}

header .columes2 {
  align-items: center;
}

.columes2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

header .colum-1-2, header .colum-2-2 {
  width: 47%;
}

.colum-1-2, .colum-2-2 {
  width: 50%;
}

.colum-1-2 {
  padding-right: 30px;
}

.columes3 {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}

.columes3 > div {
  margin: 5px;
}

.columes3 > div, .columes3 > img {
  width: 33.33%;
  text-align: center;
}


.logo.colum-1-2 {
  width: 20%;
}

.slogan-container {

    z-index: 999;
    position: relative;
}

/* 百分比宽度 */
.percent60 { width: 60%; }
.percent40 { width: 40%; }
.percent70 { width: 70%; }
.percent30 { width: 30%; }

/* 图片样式 */
img {
  width: 100%;
  height: auto;
}

.margin-top50px {
  margin-top: 50px;
}



#gallery img {
  height: 35vh;
  min-height: 35vh;
  object-fit: cover;
  position: relative;
}

#gallery .image-wrapper, #seeinside .image-wrapper {
  position: relative;
  padding: 5px;
}

#seeinside {
  display: block;
  position: relative;
}



#seeinside img {
  object-fit: cover;
  height: 50vh;
  min-height: 50vh;
  position: relative;
}

.hero-header {
  background-image: url(../image/hero.jpg);
  height: 40vh;
  background-position: center 50%;
}

.section-header {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 60px;
  padding: 20px 0;
}

.frame {
  width: 100%;
  display: block;
}

/* 特定样式 */
.margin-to-top {
  margin-top: -10%;
}

.box-section {
  box-shadow: 2px 2px 6px gray;
  border-radius: 25px;
  padding: 70px 20px;
  background-color: #ffffff;
}

.hidden_label { display: none; }

.half_field, .full_field {
  --wp--style--global--content-size: 823px;
  --wp--style--global--wide-size: 1080px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  font-family: inherit;
  background-color: #fff;
  border: 1px solid #bbb;
  color: #4e4e4e;
  border-radius: 5px;
  margin-bottom: 20px !important;
}

.half_field {
  display: inline-block;
  width: calc(50% - 20px);
  padding: 7px 10px !important;
  margin-right: 16px !important;
}

.full_field {
  display: block;
  width: calc(100% - 18px);
  padding: 7px 10px !important;
  margin-right: 16px !important;
}

.checkbox_txt {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}

/* .g-recaptcha > div {
  margin: 20px auto;
} */
.recaptcha-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px; /* Adjust as needed */
}

/* Optional: Center the reCAPTCHA icon if needed */
.g-recaptcha {
  display: inline-block;
}

.radio_title {
  display: inline-block;
  width: 45%;
}

.radio_txt:not(:last-child) {
  margin-right: 20px;
}

.radio_button_box {
  margin-bottom: 20px;
}

input.text, input.title, input[type=email], input[type=password], input[type=tel], input[type=text], select, textarea {
  border: 1px solid #bbb;
  background-color: #ffffff;
  color: #4e4e4e;
}

/* 表单样式 */
form {
  --wp--style--global--content-size: 823px;
  --wp--style--global--wide-size: 1080px;
  font-family: Open Sans, Arial, sans-serif;
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.3px;
  color: #555555;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: transparent;
}

/* 按钮样式 */
.head-btn a, .btn1 a, .btn2 a {
  color: #FFFFFF !important;
  border-width: 0 !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px;
}

.btn1 a {
  background-color: #35a8e0;
}

.btn2 a {
  background-color: #8fbc1f;
}

.bluetexth2 {
  color: #35a8e0;
  text-transform: uppercase;
  font-style: italic;
  font-size: 28px;
}

.green { color: #8fbc1f; }

/* 列表和功能样式 */
.features {
  padding: 0;
  list-style: none;
  background-repeat: no-repeat;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4em;
  letter-spacing: 0.5px;
}

.features li {
  list-style: none;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  margin-bottom: 20px;
}

.features li:hover {
  letter-spacing: 1px;
  transition: all 0.7s ease-in-out;
}

.text-orange {
  font-size: 40px;
  text-align: center;
  color: #ed5a24;
  font-weight: bolder;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 30px;
}

.bg-orange {
  background-color: #ed5a24;
  border-radius: 20px;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  font-weight: 700;
  line-height: 2em;
}

.bg-green {
  background-color: #8fbc1f;
}

.bg-darkblue {
  background-color: #0b1d27;
}

.font-large {
  font-size: 40px;
  font-style: italic;
  display: block;
  padding: 20px 0;
}

/* 表单标题和信息样式 */
.form-header {
  margin-bottom: 30px;
  padding: 20px 10px;
  background-color: #8fbc1f;
}

.form-header span {
  display: block;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
}

.number {
  font-size: 30px !important;
}

.content-text, .radio_button_box div, .radio_button_box span {
  font-size: 14px !important;
  font-weight: 300;
}

.submit_form {
  pointer-events: auto;
  background-color: #8fbc1f;
  color: #ffffff;
  text-align: center;
  padding: 5px 0px;
  border: none;
  width: 100%;
  height:auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ft-text {
  font-style: italic;
  text-align: center;
  width: 60%;
  margin: auto;
}

/* 布局和列样式 */
.columes5 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.columes5 > div {
  width: calc(20% - 38px);
  margin: 5px;
}

.icon-sec img {
  width: 60%;
  margin: auto;
}

.bg-gray {
  background-color: rgb(214, 214, 214);
}

.bg-gray-light {
  background-color: #f9f9f9;
}

.slogan-section {
  background-image: url(../image/bg-sunroom.jpg);
  padding: 8% 4%;
  position: relative;
}

.slogan-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8fbc1fcc;
}

.slogan-section .container {
  position: relative;
  text-align: center;
  color: #ffffff;
}

.slogan-section .section-header {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff !important;
}

.bg-ff {
  background-color: #ffffff;
  color: #8fbc1f;
}

.columes3.nopadding {
  padding-top: 0;
  margin-bottom: 30px;
}

.steps h4 {
  font-size: 18px;
  font-weight: 700;
}

.steps span {
  font-size: 50px;
  font-style: italic;
  font-weight: bold;
  color: #8fbc1f;
  padding-right: 20px;
}

.steps img {
  padding: 5px;
}

.paddingtop60 {
  padding-top: 60px;
}

.review-section {
  /* background-image: url(../image/review-bg.jpg); */
  padding: 50px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.review-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  z-index: 0
}

.review-section .container {
  z-index: 1;
  position: relative;
  text-align: center;
}

.review-unit {
  background-color: #eeeeee;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 30px;
}

.round-letter {
  background-color: purple;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  color: #ffffff;
  line-height: 50px;
  margin: auto;
}

.review-unit img {
  width: 60%;
  margin: auto;
}

/* 新增样式 (2024-09-08) */
.sec {
  padding: 5% 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.bgslider {
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.bgslider img {
  height: 100%;
  object-fit: cover;
}

.overlay::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #474747 0%, transparent 15%, transparent 50%, #dbd8cb80 60%, #dbd8cb 90%);
  z-index: 1;
}

.bg-darkblue  .overlay::before  {
  background-image: linear-gradient(180deg, #474747 0%, transparent 15%, transparent 65%, #0b1d2780 75%, #0b1d27 90%);
}

.sechero .container{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  transform: translateY(30vh);
  z-index: 99;
}

.sec.hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.77) 14%, rgba(255, 255, 255, 0) 34%, #000000 96%), url(../img/music-01.jpg);
  height: 100vh;
}

.bg-sand {
  background-color: #dbd8cb;
}

.bg-gold {
  background-color: #ffeaa1;
}

.gold {
  color: #ffeaa1;
}

.council {
  background-image: url(../img/approval.jpg);
  background-size: cover;
}

.team {
  background-image: url(../img/2024-local-business-awards-v2.jpg);
  background-size: cover;
  background-position: center 70%;
}

.white {
  color: white;
}

.sec-title {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.5em;
  letter-spacing: 1px;
  padding-top: 20px;
  padding-bottom: 30px;
  font-display: swap;
}

/* 按钮样式 */
.button {
  padding-top: 30px;
  cursor: pointer;
}

.button a.white.bg-green {
  background-color: #8fbc1f;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.button a.white.bg-green:hover {
  background-color: #ffffff;
  color: #000000;
  transition: all 0.4s ease-in-out;
}



.button a.white.bg-black {
  background-color: #000000;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.button a.white.bg-black:hover {
  background-color: #ffffff;
  color: #000000;
  padding: 15px 25px;

}

.button a.black.bg-gold {
  background-color: #ffeaa1;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.button a.black.bg-gold:hover {
  background-color: #ffffff;
  color: #000000;
  padding: 15px 25px;

}


.txt-center {
  text-align: center;
}

.black {
  color: #000000;
}

/* 典型布局样式 */
.typical {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 25px 0;
  margin-bottom: 50px;
  transition: all 0.5s ease-in-out;
}

.neo {
  background-image: url("../img/neo-side.jpg");
}

.neo:hover {
  background-image: url("../img/neo_floor.png");
}

.pro {
  background-image: url("../img/pro-font.png");
}

.pro:hover {
  background-image: url("../img/pro_floor.png");
}

.customise {
  background-image: url("../img/customise-front.png");
}

.padding-right-10per {
  padding-right: 10%;
}

.blurb-title {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: 1px;
}

.blurb-title.small {
  font-size: 16px;
  padding: 5px 10%;
}

.padding-left-30per {
  padding-left: 30%;
}

.al-center {
  text-align: center;
}

.colume-1-4, .colume-2-4, .colume-3-4, .colume-4-4 {
  width: 25%;
}


.flex {
  display: flex;
}

.grid {
  display: grid;
  min-height: 650px;
}

.grid.col-3-2 {
  grid-template-columns: 3fr 2fr;
  height: auto;
}

.grid.col-2-3 {
  grid-template-columns: 2fr 3fr;
  height: auto;
}

.grid.col-1-1 {
  grid-template-columns: 1fr 1fr;
  height: auto;
}

.grid>div {
  display: flex;
  justify-content: center; /* 水平居中 */
  height: 100%; /* 确保父容器有一个高度 */
  flex-direction: column;
}

.icon {
  width: 150px;
  height: auto;
  padding: 50px 0;
}

.width60 {
  width: 60%;
}

.margin-auto {
  margin: auto;
}

.colume {
  padding: 2.5% 0;
}

.width80 {
  width: 80%;
}

.video-container {
  /* position: relative;
  width: 100%;
  height: 0;
  overflow: hidden; */
  width: 100%; /* Full width of the parent column */
  position: relative;
  padding-bottom: 58.4%; /* 16:9 Aspect Ratio */
  height: 0;
  margin-bottom: 20px; /* Space below for mobile view */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

#myVideo2, #myVideo {
  pointer-events: none;
}

body.fullscreen-scroll {
  overflow: hidden;
}

.colum3.gallery {
  padding: 5px;
}

.colum3.gallery img {
  height: 30vh;
  min-height: 45vh;
  object-fit: cover;
}

.image-wrapper {
  position: relative;
}

.gallery .blurb-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .blurb-title {
  opacity: 1;
}

/* 其他样式 */
.section.full {
  padding: 0;
  display: flex;
}

.padding50px {
  padding: 50px 0;
}

.sec.bg-graydot {
  background-image: url("../img/bg-graydot.gif");
  background-size: inherit;
  background-repeat: repeat;
  position: relative;
  z-index: 0;
}

.sec.bg-graydot:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #dbd8cb 5%, #dbd8cb80 15%, transparent 20%, transparent 70%, #dbd8cb80 85%, #dbd8cb 95%);
  z-index: 1;
}

.sec.bg-graydot.bg-darkblue:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #0b1d27 5%, #0b1d2780 15%, transparent 20%, transparent 70%, #0b1d2780 85%, #0b1d27 95%);
  z-index: 1;
}

.sec.bg-graydot .container {
  z-index: 99;
  padding-bottom: 5vh;
}


.paddingtop0 {
  padding-top: 0;
}

.function-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.icon-box {
  flex: 1 0 20%;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: flex;
    flex-direction: column;
    color: #474747;
    transition: all 0.7s ease-in-out;
}

.icon-box.gold {
  color: #ffeaa1;
}

.icon-box:hover {
  color: #8fbc1f;
}

.icon-box i {
  font-size: 50px;
  margin-bottom: 20px;
}



.table-container {
  width: 80%;
  margin: auto;
  padding: 20px;
}

.row {
  display: flex;
  padding: 8px 0;
  text-align: left;
}

.col1 {
  flex: 1;
  font-weight: bold;
  text-align: right;
  padding-right: 20px;
}

.col2 {
  flex: 2;
  padding-left: 20px;
}

.block {
  display: block;
  padding: 5px 0;
}

.nopadding {
  padding: 0;
}

.global {
  background-image: url("../img/worldwide.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.padding-5percent {
  padding: 5%;
}

.padding-10percent {
  padding: 0 10%;
}

.pad-right-20 {
  padding-right: 20%;
}

.pad-left-20 {
  padding-left: 20%;
}

.padding-15-0 {
  padding: 15% 0;
}

.pad-top-down-5percent {
  padding: 5% 0;
}

.pad-top-5percent {
  padding-top: 5%;
}@

.bg-light-gray {
  background-color: #f9f9f9;
}

.bg-gradient-gray {
  background-image: linear-gradient(0deg, #eeeeee 0%, #ffffff 100%);
}

.margin-10px-0 {
  margin: 10px 0;
}

.margin-10vh-0 {
  margin: 10vh 0;
}

.margin-15vh-0 {
  margin: 15vh 0;
}

.margin-top0 {
  margin-top: 0;
}

.blurb-content {
  width: 90%;
  margin: auto;
  padding-top: 20px;
  line-height: 1.3em;
  letter-spacing: 0.5px;
}

.round-right {
  border-top-right-radius: 325px;
  border-bottom-right-radius: 325px;
  filter: drop-shadow(10px 10px 20px black);
}

.round-left {
  border-top-left-radius: 325px;
  border-bottom-left-radius: 325px;
  filter: drop-shadow(-10px 10px 20px black);
}

.gif-container {
  position: relative;
  display: block;
}

.dot {
  position: absolute;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background-color: #000000;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  transition: all 0.7s ease-in-out;
  opacity: 0;
}

#dot1 {
  bottom: 10%;
  left: 40%;
}

#dot2 {
  bottom: 40%;
  left: 20%;
}

#dot3 {
  top: 10%;
  right: 10%;
}

#dot4 {
  top: 50%;
  right: 10%;
}

.fixed-image {
  position: fixed; /* 固定定位，使图片不随滚动条移动 */
  top: 50px; /* 根据需要调整图片的垂直位置 */
  left: 50px; /* 根据需要调整图片的水平位置 */
  z-index: -1; /* 设置层级，根据需要调整 */
}


.fixed-image-01 {
  background-image: url(../img/casual.jpg);
  background-size: cover; /* 覆盖整个区域 */
  background-position: center; /* 图片居中显示 */
  background-attachment: fixed; /* 固定背景图，使其不随滚动条移动 */
  min-height: 50vh;
  width: 100%;

}

.padding-bottom-30px {
  padding-bottom: 30px;
}

.button-group {
  display: inline-flex;
  justify-content: center; /* 居中显示按钮组 */
  margin-bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
  padding: 5px;
  gap: 50px;
}

.toggle-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #000000;
  border: none;
  color: #ffffff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s; /* 过渡效果 */
}

.toggle-button.active, .toggle-button:hover {
  border-radius: 30px;
  background-color: white; /* 激活或悬停的背景色 */
  color: #000000;
}


.neo-container,
.pro-container {
    display: none; /* 默认隐藏所有容器 */
}

.active {
    display: flex !important; /* 显示激活的容器，确保覆盖任何其他样式 */
}

.modern-table {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  width: 100%;
  margin: auto
}

.border-bottom {
  padding-bottom: 10px;
  border-bottom: 1px solid #474747;
}


.modern-table>div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  background-color: #ffffff;
  border-radius: 8px
}

.modern-table div.space {
  background-color: #efefef;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.modern-table div.space:hover {
  background-color: #8fbc1f;
  letter-spacing: 1px;
  font-weight: 600;
}

.price {
  font-weight: 600;
}

.space.featured:hover {
  background-color: #35A8E0
}

.space.featured:hover a {
  color: white
}

.cell-container {
  display: block !important;
  position: relative;
  background-image: linear-gradient(30deg, #ffffff 50%, #f4f4f4 50%, #f4f4f4 100%);
}

.diagonal-split {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 防止影响点击 */
}

.cell-label1, .cell-label2 {
  position: absolute;
  width: 50%; /* 调整为所需的宽度比例 */
  height: 100%;
  display: flex;
 
  justify-content: center;
  font-size: 0.9em; /* 字体大小可调 */
}

.cell-label1 { /* Length */
  align-items: flex-end;
  bottom: 0;
  left: 0;
  padding-bottom: 5px;
}

.cell-label2 { /* Width */
  align-items: flex-start;
  top: 0;
  right: 0;
  padding-top: 5px;
}

.faq-section {
  margin-bottom: 10px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #474747;
  margin-bottom: 20px;
}

.faq-answer {
  padding: 20px;
  background-color: #f1f1f1;
}


#backToTopBtn {
  padding: 10px 15px;
  background-color: #474747; /* Green */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

#backToTopBtn:hover {
  opacity: 1; /* Fully opaque on hover */
}

.bg-flatpack {
  background-image: url("../img/flatpack-Classic2.webp");
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: 100vw;
  background-position: 50% 40%;
  position: relative;
  min-height: 40vh;
}

.black-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #00000055;
  z-index: 0;
  height: 100%;
}

.deliver-flat {
  filter: brightness(1.2);
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.feature-box {
  width: 20%;
  padding: 10px;
  text-align: center;
  margin: 10px;
}

.feature-box i {
  font-size: 50px;
  margin-bottom: 20 px;
  color: #474747;
}

.feature-box p {
  font-size: 16px;
  /* color: #474747; */
}

.feature-box:hover {
  color: #8fbc1f;
}

@media (min-width: 981px) {
  .mobile {
    display: none;
  }
}

@media (max-width: 980px) {

  section {
    overflow-x: hidden;
  }

  header {
    width: 100vw;
  }

  body {
    font-size: 14px;
  }

  .blurb-title.small {
    font-size: 14px;
  }

  .sec01::before {
    display: none;
  }

.sec01 {
  background-color: #2d2d2d;
  background-size: auto 50vh;
  background-position: 20% top;
}

  /* .colum-1-2 {
    height: 50vh; 
  } */

  .neo-container .colum-1-2, .pro-container .colum-1-2{
    height: auto;
    padding-bottom: 30px;
  }

  .colume {
    flex-direction: column;
  }

  .colume>div {
    width: 100%;
    padding-bottom: 30px;
  }

  .columes2 {
    flex-direction: column;
  }

  header .columes2 {
    flex-direction: row;
  }


  header .container>.columes2>.colum-1-2{
    width: 60%;
    padding-right: 0;
  }

  header .container>.columes2>.colum-2-2{
    width: 40%;
  }


  .colum-1-2, .colum-2-2 {
    width: 100%;
    padding-right: 0;
  } 

  header .colum-1-2, header .colum-2-2 {
    height: auto;
  }

  header .colum-2-2 {
    width: 100%;
  }

  .head-btn.btn1 {
    display: none;
  }

 .logo.colum-1-2 {
  width: 40%;
  padding: 0 5px;
  padding-left: 10px;
 }

 .logo-text p {
  font-size: 12px;
 }

 .btn2 {
  padding-right: 10px;
 }

 .btn2 a {
  font-size: 12px;
  padding: 5px 10px;
 }

 .gif-text {
  margin-top: 20px;
 }

  .grid.col-1-1, .grid.col-1-1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  /* .grid.col-1-1>div:last-child{
    grid-row: 1;
  } */

  .grid > div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid.col-1-1>div:last-child, .grid.col-1-1>div:first-child {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .sec-title {
    font-size: 25px;
  }

  .button a {
    font-size: 12px;
    padding: 5px 10px !important;
    letter-spacing: 0 !important;
  }

  .features {
    width: 80%;
    font-size: 14px;
  }

  .icon-box {
    flex: 1 0 50%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

  .global {
    min-height: 25vh;
    margin-right: 20px;
  }

  .council {
    min-height: 25vh;
    margin-left: 20px;
    background-position: right bottom;
    grid-row: 1;
  } 


  .round-right {
    border-top-right-radius: 325px;
    border-bottom-right-radius: 325px;
    filter: drop-shadow(5px 10px 5px #474747);
  }
  
  .round-left {
    border-top-left-radius: 325px;
    border-bottom-left-radius: 325px;
    filter: drop-shadow(-5px 10px 5px #474747);
  }

  .modern-table {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  
 /* 调整单元格的顺序和位置 */
 .cell:nth-child(1) { grid-area: 1 / 1; } /* 第一个单元格在第一行第一列 */
 .cell:nth-child(2) { grid-area: 2 / 1; } /* 第二个单元格在第二行第一列 */
 .cell:nth-child(3) { grid-area: 3 / 1; } /* 第三个单元格在第三行第一列 */
 .cell:nth-child(4) { grid-area: 4 / 1; } /* 第四个单元格在第四行第一列 */
 .cell:nth-child(5) { grid-area: 5 / 1; } /* 第五个单元格在第五行第一列 */
 .cell:nth-child(6) { grid-area: 1 / 2; } /* 第六个单元格在第六行第一列 */
 .cell:nth-child(7) { grid-area: 2 / 2; } /* 第七个单元格在第七行第一列 */
 .cell:nth-child(8) { grid-area: 3 / 2; } /* 第八个单元格在第一行第二列 */
 .cell:nth-child(9) { grid-area: 4 / 2; } /* 第九个单元格在第二行第二列 */
 .cell:nth-child(10) { grid-area: 5 / 2; } /* 第十个单元格在第三行第二列 */
 .cell:nth-child(11) { grid-area: 1 / 3; } /* 第十一个单元格在第四行第二列 */
 .cell:nth-child(12) { grid-area: 2 / 3; } /* 第十二个单元格在第五行第二列 */
 .cell:nth-child(13) { grid-area: 3 / 3; } /* 第十三个单元格在第六行第二列 */
 .cell:nth-child(14) { grid-area: 4 / 3; } /* 第十四个单元格在第七行第二列 */
 .cell:nth-child(15) { grid-area: 5 / 3; } /* 第十五个单元格在第一行第三列 */
 .cell:nth-child(16) { grid-area: 1 / 4; } /* 第十六个单元格在第二行第三列 */
 .cell:nth-child(17) { grid-area: 2 / 4; } /* 第十七个单元格在第三行第三列 */
 .cell:nth-child(18) { grid-area: 3 / 4; } /* 第十八个单元格在第四行第三列 */
 .cell:nth-child(19) { grid-area: 4 / 4; } /* 第十九个单元格在第五行第三列 */
 .cell:nth-child(20) { grid-area: 5 / 4; } /* 第二十个单元格在第六行第三列 */

  .width60.table {
    width: 100% !important;
  }

  .video-container {
    width: 100%;
    height: auto; 
    /* aspect-ratio: 1280 / 749;  */
    padding-bottom: 58.4%;
  }
  .video-container iframe {
    width: 100%;
    height: 100%;
  }

  .bgslider {
    height: 80vh;
  }
  
  .bgslider img {
    height: 100%;
    object-fit: cover;
  }

  .slogan-container {
    transform: translateY(-50px);
  }

  #gallery, 
  #seeinside {
    transform: translateY(-20px); /* Retain your original transformation */
  }

  
  #seeinside .slick-slide img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
  }

  .function-container {
    transform: translateY(0px);
  }

  .sechero .container {
    transform: translateY(15vh);
  }

  .review-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .team {
    margin-right: 20px;
  }

  .sec {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pod-title {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .pod-title-container h4 {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .gif-container {
    transform: scale(1.2) translateX(-30px);
  }

  .dot {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }

  /* .bg-flatpack {
    background-size: cover;
  } */
  
  .bg-flatpack {
    background-size: contain; /* Ensure full image is visible */
    min-height: 20vh; /* Reduce the minimum height */
    background-position: center; /* Center the image */
    background-size: cover;
  }
  .padding50px {
    padding: 0px 0; /* Reduce padding on mobile */
  }

  .colume.columes5 {
    flex-direction: row;
  }

  .colume.columes5>div {
    width: 48%;
    margin: 0;
    padding-bottom: 10px;
  }

  .icon {
    width: 50%;
    padding: 10px 0;
  }

  .desktop {
    display: none;
  }

  .columes3 {
    flex-direction: column;
  }

  .columes3>div {
    width: 100%;
    margin: 0;
  }

  .sec.mobile-full {
    padding-left: 0;
    padding-right: 0;
  }

  .width60 {
    width: 100% !important;
  }

  .faq-question {
    font-size: 14px;
  }

  .feature-box {
    width: 40%;
  }

}


/* added by russell */
.popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup content styles */
.popup-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 80%;
  max-height: 90%;
  /* overflow-y: auto;  */
}
