

p {
  font-size: 15px;
  line-height: 25px;
  color: rgb(145, 144, 144); /* 更强的对比度 */
}

section {
  padding: 25px 0 35px;
  background: #fff;
}

body { 
  position: relative; /* we need this for the scrollspy */ 
  font-size: 14px;
}

a { color: #3CC; }

a:hover { color: #FF0; }

/*----------
  NAV

----------*/



/* 固定导航栏样式 */
.gtco-nav {
  position: fixed; /* 固定导航栏位置 */
  top: 0; /* 顶部位置 */
  left: 0; /* 左侧位置 */
  width: 100%; /* 宽度100% */
  padding: 5px 0; /* 上下内边距 */
  /* background-color: rgb(255, 255, 255); 透明背景 */
  background-color: rgba(37, 128, 202, 0.062); 
  z-index: 1000; /* 确保导航栏层级较高 */
  font-family: "Raleway", Arial, sans-serif; /* 字体 */
  color: #ff8903; /* 字体颜色 */
  font-size: 5vh;  /* 动态调整字体大小，适应屏幕 */
}

/* 容器样式 */
.gtco-container {
  max-width: 1140px; /* 最大宽度 */
  margin: 0 auto; /* 居中对齐 */
  padding: 0 15px; /* 内边距 */
  display: flex; /* 使用flex布局 */
  justify-content: space-between; /* 内容两端对齐 */
  align-items: center; /* 垂直居中 */
  text-align: right; /* 文字居中 */
}

/* Logo样式 */
/* 修改Logo的样式 */
.gtco-logo {
  font-size: 5vh;  /* 动态调整字体大小，适应屏幕 */
  font-weight: bold;  /* 设置加粗 */
  color: #ff8903;  /* 设置文字颜色 */
  text-transform: uppercase;  /* 转为大写字母 */
  font-family: 'Arial', sans-serif; /* 字体 */
  text-decoration: none;  /* 去掉默认的下划线 */
}

.gtco-logo a {
  color: inherit;  /* 保持和父元素一致的字体颜色 */
  text-decoration: none;  /* 保证链接没有下划线 */
  transition: color 0.3s ease;  /* 增加平滑过渡效果 */
  font-family: 'Arial', sans-serif; /* 字体 */
  font-size: clamp(15px, 2vw, 25px);  /* 动态调整字体大小，适应屏幕 */
  white-space: nowrap;  /* 防止文字换行 */
  
}

.gtco-logo a:hover {
  color: #fa0000;  /* 鼠标悬停时的颜色变换 */
  text-decoration: none;  /* 鼠标悬停时显示下划线 */
}



/* 导航菜单列表样式 */
.menu-1 ul {
  display: flex; /* 使用flex布局 */
  margin: 0; /* 去掉外边距 */
  padding: 0; /* 去掉内边距 */
  list-style-type: none; /* 去掉列表项样式 */
}

/* 每个导航项样式 */
.menu-1 li {
  margin: 0 15px; /* 每个项的左右间距 */
}

.menu-1 a{
  color: inherit;  /* 保持和父元素一致的字体颜色 */
  text-decoration: none;  /* 保证链接没有下划线 */
  transition: color 0.3s ease;  /* 增加平滑过渡效果 */
  font-family: 'Arial', sans-serif; /* 字体 */
  font-size: clamp(15px, 2vw, 25px);  /* 动态调整字体大小，适应屏幕 */
  white-space: nowrap;  /* 防止文字换行 */
}














.intro-text.p {
  font-size: 16px; /* 修改字体大小 */
  line-height: 1.6; /* 设置行高 */
  color: #fcfcfc; /* 修改字体颜色 */
  font-weight: 400; /* 字体粗细 */
  text-shadow: 1px 1px 3px rgba(182, 180, 180, 0.6); /* 设置文字阴影 */
  padding: 10px; /* 增加内边距 */
  border-radius: 5px; /* 设置圆角 */
  font-family: "Raleway", Arial, sans-serif; /* 字体 */
}





.fixed-side-navbar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99999;
  margin-top: -100px;
  text-align: right;
  padding: 30px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.fixed-side-navbar:hover {
  background: transparent;
}
.fixed-side-navbar:hover .nav > li > a > span {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 15px;
}
.fixed-side-navbar .nav > li a.active {
  background-color: transparent;
  color: black;
}
.fixed-side-navbar .nav > li a.active:after {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.fixed-side-navbar .nav > li a.active:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
}
.nav>li {
  position: relative;
  display: block;
}
.fixed-side-navbar .nav > li a {
  color: #fff;
  min-height: 32px;
  background: transparent;
  padding: 5px 45px 5px 25px;
  border-right: none;
}
.fixed-side-navbar .nav > li a span {
  display: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.fixed-side-navbar .nav > li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(250, 250, 250, 0.75);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
.fixed-side-navbar .nav > li a:hover {
  background-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: black;
  boder-right: 0;
}
.fixed-side-navbar .nav > li a:hover > span {
  color: black;
  display: block;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}


.primary-button a {
  background-color: #ff7d27; /* 按钮背景颜色 */
  padding: 15px 24px; /* 内边距，确保按钮内容不紧凑 */
  border-radius: 10px; /* 稍微圆角，使按钮更现代 */
  text-transform: uppercase; /* 大写字母 */
  font-size: 15px; /* 增加字体大小，提升可读性 */
  color: #fff; /* 字体颜色 */
  font-weight: 700; /* 加粗字体 */
  text-align: center; /* 确保文本居中对齐 */
  font-family: "Raleway", Arial, sans-serif; /* 字体 */
}



.parallax-content {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
}


.baner-content {
  padding-top: 20vh;
  text-align: center;
  background-image: url(../img/1st-section.webP);
}

.baner-content h1 {
  margin-top: 0px;
  font-size: 88px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.baner-content em {
  color: #ff7d27;
  font-weight: 600;
  font-style: normal;
}

.baner-content span {
  display: inline-block;
  margin-top: -20px;
  font-weight: 300;
  font-size: 48px;
  color: #fff;
}

.baner-content .primary-button {
  margin-top: 15px;
}


/* Mobile optimization */
@media only screen and (max-width: 768px) {
  .baner-content {
    padding-top: 10vh; /* Adjust padding to fit mobile screen */
  }

  .baner-content h1 {
    font-size: 48px; /* Reduce font size for mobile */
  }

  .baner-content span {
    font-size: 24px; /* Reduce font size for mobile */
    margin-top: 0; /* Remove the negative margin */
  }

  .baner-content .intro-text.p {
    font-size: 16px; /* Reduce font size for mobile */
    margin: 10px auto;
    line-height: 1.4;
  }


}

/* For very small screens (e.g., small phones), move content up */
@media only screen and (max-width: 480px) {
  .baner-content {
    padding-top: 5vh; /* Reduce padding for small screens */
  }

  .baner-content h1 {
    font-size: 36px; /* Further reduce font size */
  }

  .baner-content span {
    font-size: 18px; /* Smaller font size for very small screens */
  }

  .baner-content .intro-text.p {
    font-size: 14px; /* Smaller text for very small screens */
  }



  /* Apply negative margin to move the entire content upwards */
  .baner-content .first-content {
    margin-top: -10vh; /* Negative margin to shift content upwards */
  }
}
















.service-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15vh;
  background-image: url(../img/2nd-section.webP);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

.service-content .left-text h4 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

h4, .h4 {
  font-size: 18px;
}

.service-content .left-text .line-dec {
  width: 45px;
  height: 3px;
  background-color: #ff7d27;
  margin: 20px 0px 20px 0px;
}

.service-content .left-text p {
  color: #fff;
}

.service-content .left-text ul {
  padding: 0;
  margin-top: 30px;
  list-style: none;
}

.service-content .left-text ul li {
  margin: 15px 0px;
  font-weight: 600;
  color: #fff;
}

.service-content .left-text .primary-button {
  margin: 30px 0px;
}

.service-content .service-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.service-content .service-item .line-dec {
  width: 45px;
  height: 3px;
  background-color: #ff7d27;
  margin: 20px auto 15px auto;
}



.projects-content {
  padding-top: 5vh;
  background-image: url(../img/3rd-section.webP);
}

.projects-content .item img {
  width: 100%;
}

.projects-content .item {
  margin: 10px;
}

.projects-content .item .text-content {
  background-color: #fff;
  text-align: center;
  padding: 20px;
}

.projects-content .item .text-content h4 {
  margin-top: 0px;
  font-size: 19px;
  font-weight: 600;
}

.projects-content .item .text-content span {
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
  color: #ff7d27;
}

.owl-pagination {
  margin-top: 40px;
  opacity: 1;
  display: inline-block;
}

.owl-page span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #fff;
}


.tabs-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8vh;
  background-image: url(../img/4th-section.webP);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
}

section {
  background-color: transparent;
  padding-bottom: 15px;
}

.wrapper {
  text-align: center;
}

.tabs {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.tabs li {
  display: inline-block;
  text-align: center;
  margin: 10px;
}

.tabs a {
  display:block;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;
  color:#fff;
  font-size: 14px;
  font-weight: 700;
  padding:10px 15px;
  border:4px solid #fff;
}

.tabs a:hover {
  color: #ff7d27;
}

.tabs .active {
  border:4px solid #ff7d27;
}

.tabgroup div  {

}

.tabgroup p {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 25px;
}

.clearfix:after {
  content:"";
  display:table;
  clear:both;
}





footer {
  text-align: center;
  background-color: #282b2f;
  padding: 70px 0px;
}

footer .primary-button {
  margin-bottom: 30px;
}

footer ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

footer ul li {
  display: inline-block;
  margin: 0px 4px;
}

footer ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: #ff7d27;
  color: #282b2f;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 17px;
}

footer ul li a:hover {
  color: #282b2f;
  background-color: #ff8e43;
}

footer p {
  font-size: 12px;
  color: #fff;
  margin-top: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}

footer em {
  color: #ff8e43;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 767px){
  
  .baner-content {
    padding-top: 30vh;
  }

 

  .baner-content em {
  }

  .baner-content span {
    font-size: 24px;
  }

  .baner-content .primary-button {
    margin-top: 15px;
  }

  .service-content {
    padding-top: 5vh;
    text-align: center;
  }

  .service-content .left-text .line-dec {
    width: 45px;
    height: 3px;
    background-color: #ff7d27;
    margin: 20px auto 20px auto;
  }

  .service-content .left-text ul {
    text-align: left;
  }

  .service-content .service-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px 30px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
  }

}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* LIGHT BOX */

body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}










/* Match Form */
.match-form-wrapper {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: flex-end; /* 让 Match Form 靠右 */
  align-items: center;
  background: #000000; /* 背景色做渐变保护 */

}
.match-form-bg {
  position: absolute;
  width: 100vh;
  background: url('image/your-form-background.webP') center/cover no-repeat;
  opacity: 0.35;
  height: 100vh;
  z-index: 1;
}

.cont {
  display: flex;
  flex-direction: column;
  gap: 0px;
  max-width: 30vh;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #03f7ff;
  border-radius: 30px;
  /* box-shadow: 0 0 20px rgb(1, 253, 211); */
  padding-top: 20px; /* 内部内容距离顶部20px */
  padding-left: 30px; /* 内部内容距离左侧30px */
}

.cont > div {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

label {
  font-weight: bold;
  margin-bottom: 1px;
  color: #030303;
}



/* Styling the select wrapper and input fields */
.select_component {
  display: flex;
  flex-direction: column;
  position: relative;
}


/* Styling the select dropdown */
select {
  padding: 2px;  /* Increase padding for better text visibility */
  border: 1px solid #cac8c8;
  border-radius: 13px;
  font-size: 2vh;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  max-width: 50vh;  /* Ensure enough width */
  height: 40px;  /* Set a fixed height */
  text-overflow: ellipsis;  /* Add ellipsis for overflow */
  white-space: nowrap;  /* Prevent text wrapping */
}

/* Styling for the age section */
.age_select {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Text and span between "From" and "To" */
.age_select span {
  font-size: 14px;
  color: #666;
}

/* Button Styles */
.btn {
  background-color: #02fdfd;
  color: rgb(0, 0, 0);
  padding: 10px;
  text-align: center;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s;
  text-decoration: none;
}

