/* 全局重置 & 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

/* 汉堡菜单样式 - 移动端新增 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

nav {
  min-height: 80px;
  background: #F7FCFF;
  color: #333;
  padding: 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-logo {
  width: 74px;
  height: 30px;
  margin-right: 40px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-links a {
  color: #333;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 4px 0;
  max-width: 130px;
  border-bottom: 2px solid transparent;
  text-align: center;
  word-break: break-all;
}

.nav-links a:hover {
  color: #348AF2;
}

.nav-links a.active {
  color: #095BBF;
  font-weight: bold;
  border-bottom: 2px solid #007bff;
}

.nav-contact {
  width: 80px;
  height: 32px;
  background: #0E6ADA;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #ffffff !important;
}

.nav-contact:hover {
  background: #348AF2;
}

.nav-lang {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #999999;
  position: relative;
}

.nav-lang-flex {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.icon-lang {
  width: 16px;
  height: 16px;
  background: url('https://resource.hpti.net/hpt-foreign-website/images/language-icon.png') no-repeat center;
  background-size: contain;
}

.icon-down {
  width: 16px;
  height: 16px;
  background: url('https://resource.hpti.net/hpt-foreign-website/images/down.png') no-repeat center;
  background-size: contain;
}

#languageId:hover>div:nth-child(1) {
  background-image: url('https://resource.hpti.net/hpt-foreign-website/images/language-icon-hover.png');
}

#languageId:hover>div:nth-child(3) {
  background-image: url('https://resource.hpti.net/hpt-foreign-website/images/down-hover.png');
}

#languageId:hover>div:nth-child(2) {
  color: #333333;
}

.water-drop {
  width: 50px;
  height: 38px;
  position: absolute;
  right: 50px;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #ffffff;
  padding: 12px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  display: none;
  z-index: 999;
  text-align: center;
}

.lang-option {
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #999999;
}

.lang-option:hover {
  color: #333333;
}

/* Banner区域 */
.banner {
  height: 760px;
  position: relative;
}

.swiper {
  width: 100%;
  height: 760px;
}

.banner-item-box1 {
  width: 100%;
  height: 100%;
  background-image: url("https://resource.hpti.net/hpt-foreign-website/images/swiper-img1.png");
  background-size: cover;
  background-position: center;
  padding: 202px 8vw 0;
  color: #ffffff;
}

.banner-item-box1 h1 {
  font-size: 48px;
  line-height: 58px;
  font-weight: bold;
  width: 70%;
}

.banner-flex1 {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 59px;
}

.banner-flex1-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}

.banner-flex1-item p {
  font-size: 44px;
  font-weight: bold;
  background-image: -webkit-linear-gradient(0deg, #89E7FF 0%, #FFFFFF 52%, #89E7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-flex1-item img {
  width: 80%;
  margin-top: 4px;
  margin-bottom: 12px;
}

.banner-flex1-item span {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.79);
}

.banner-item-box2 {
  width: 100%;
  height: 100%;
  background-image: url("https://resource.hpti.net/hpt-foreign-website/images/swiper-img2.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: 260px;
}

.banner-item-box2 .banner-item-title2 {
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  text-align: center;
}

.banner-item-box2 .banner-item-text2 {
  font-size: 24px;
  color: #FFFFFF;
  text-align: center;
}

.banner-item-box2 .banner-flex2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.banner-item-box2 .banner-btn {
  width: 180px;
  height: 48px;
  background: #0E6ADA;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
}

.banner-item-box2 .banner-btn:hover {
  background: #0056b3;
}

.banner-item-box3 {
  width: 100%;
  height: 100%;
  background-image: url("https://resource.hpti.net/hpt-foreign-website/images/swiper-img3.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: 100px;
}

.banner-item-box3 .banner-item-title3 {
  font-weight: bold;
  font-size: 44px;
  background: linear-gradient(0deg, #89E7FF 0%, #FFFFFF 52%, #89E7FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.banner-item-box3 .banner-item-text3 {
  font-size: 24px;
  color: #FFFFFF;
  text-align: center;
}

.banner-item3-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.banner-item3-img img {
  width: 1040px;
  max-width: 90%;
  height: auto;
}

/* 研发团队 */
.rnd-team {
  padding: 100px 2.5vw 60px 2.5vw;
  text-align: center;
  background: #F8FEF9;
}

.rnd-title {
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  margin-bottom: 20px;
}

.rnd-text {
  font-size: 24px;
  color: #999999;
}

.rnd-imgs {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.rnd-imgs img {
  width: 486px;
  height: 320px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-size: cover;
}

/* 核心竞争力 */
.core-competence {
  width: 100%;
  height: auto;
  background-image: url("https://resource.hpti.net/hpt-foreign-website/images/core-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 120px 60px 120px;
}

.core-competence .core-title {
  font-weight: bold;
  font-size: 36px;
  color: #FFFFFF;
}

.core-competence .core-text {
  font-size: 24px;
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 60px;
}

.core-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto;
  /* max-width: 1200px; */
}

.core-item {
  width: 300px;
  max-width: 90%;
  padding: 20px 15px;
}

.core-item .icon {
  width: 60px;
  height: 60px;
}

.core-item .core-item-title {
  font-size: 24px;
  color: #FFFFFF;
  margin: 20px 0;
}

.core-item .core-item-text {
  font-size: 16px;
  color: #FFFFFF;
}

/* 物联网售水机 */
.iot-water {
  padding: 100px 0 300px 0;
  background: #F2F6FC;
  position: relative;
  overflow: hidden;
}

.iot-water .iot-title {
  font-weight: bold;
  font-size: 36px;
  color: #333333;
  text-align: center;
}

.iot-water .iot-text {
  font-size: 24px;
  color: #999999;
  text-align: center;
}

.iot-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5vw;
}

.iot-section.reverse {
  flex-direction: row-reverse;
}

.iot-img {
  width: 384px;
  max-width: 90%;
  height: auto;
}

.iot-content .iot-item-title {
  font-weight: bold;
  font-size: 36px;
  color: #0E6ADA;
  margin-bottom: 20px;
}

.iot-content .iot-item-sub {
  font-weight: bold;
  font-size: 24px;
  color: #506F94;
  margin-bottom: 20px;
}

.iot-content .iot-item-text {
  font-size: 16px;
  color: #506F94;
}

.iot-line {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  max-height: 583px;
}

/* 投资合作横幅 */
.carousel-container {
  width: 100%;
  height: 560px;
  position: relative;
  overflow: hidden;
}

.carousel-card {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-card img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-item {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  z-index: 99;
  text-align: center;
}

.carousel-title {
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
}

.carousel-text {
  font-size: 36px;
  color: #FFFFFF;
  margin-top: 20px;
}

/* 联系区域 */
.contact {
  padding: 40px 120px;
  background-image: url("https://resource.hpti.net/hpt-foreign-website/images/chat-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 100%;
}

.contact-info .contact-info-title {
  font-weight: bold;
  font-size: 48px;
  color: #333333;
  margin-bottom: 20px;
}

.contact-info .contact-info-text {
  font-size: 24px;
  color: #999999;
}

.contact-info .email,
.contact-info .phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info .email img,
.contact-info .phone img {
  width: 32px;
  height: 32px;
}

.contact-info .email .cell-text,
.contact-info .phone .cell-text {
  font-size: 24px;
  color: #333333;
}

.handshake {
  display: flex;
  justify-content: center;
  align-items: center;
}

.handshake img {
  width: 225px;
  max-width: 90%;
  height: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 380px;
  max-width: 90%;
}

.contact-form-title {
  font-weight: bold;
  font-size: 20px;
  color: #333333;
}

.contact-form .contact-form-input {
  width: 100%;
  padding: 16px;
  background: #F0F3F6;
  border: 1px solid #F0F3F6;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form .contact-form-input:focus {
  outline: none;
  border-color: #007bff;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666666;
}

.form-check input {
  width: 24px;
  height: 24px;
}

.form-check .agree {
  font-size: 16px;
  color: #3D3D3D;
}

.form-check .agree-blue {
  color: #0E6ADA;
  text-decoration: underline;
  cursor: pointer;
}

.form-btn {
  width: 120px;
  height: 48px;
  background: #0E6ADA;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.form-btn:hover {
  background: #0056b3;
}

/* 页脚 */
footer {
  background: #022045;
  color: #ffffff;
  padding: 40px 120px 20px 120px;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #808FA2;
  padding-bottom: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  width: 74px;
  height: 30px;
}

.footer-brand {
  width: 20%;
  min-width: 250px;
}

.footer-brand .footer-introduce {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 2;
}

.footer-links-column {
  width: 20%;
  min-width: 200px;
}

.footer-links-column .footer-links-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.footer-links-column ul {
  list-style: none;
}

.footer-links-column li {
  margin-bottom: 16px;
}

.footer-links-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links-column a:hover {
  color: #ffffff;
}

.footer-contact {
  width: 15%;
  min-width: 150px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social img {
  width: 37px;
  height: 37px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-social img[src$="linkedin.png"]:hover {
  content: url('https://resource.hpti.net/hpt-foreign-website/images/linkedin-hover.png');
}

.footer-social img[src$="facebook.png"]:hover {
  content: url('https://resource.hpti.net/hpt-foreign-website/images/facebook-hover.png');
}

.footer-social img[src$="youtube.png"]:hover {
  content: url('https://resource.hpti.net/hpt-foreign-website/images/youtube-hover.png');
}

.footer-social img[src$="Twitter.png"]:hover {
  content: url('https://resource.hpti.net/hpt-foreign-website/images/Twitter-hover.png');
}

.fil {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.reserved {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  text-align: center;
}

/* Cookie提示 */
.cookie-notice {
  background: #333333;
  padding: 20px 120px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-notice .cookie-title {
  width: 70%;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
}

.cookie-notice button {
  width: 148px;
  height: 48px;
  background: #0E6ADA;
  border-radius: 12px;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
}

.cookie-notice button:hover {
  background: #0056b3;
}

.cookie-notice .cookie-blue {
  color: #0E6ADA;
  text-decoration: underline;
  cursor: pointer;
}

/* 侧边联系/返回顶部 */
.relation-box {
  position: fixed;
  right: 20px;
  top: 40%;
  width: 68px;
  background: #0E6ADA;
  box-shadow: 0px 0px 4px 2px rgba(87, 147, 220, 0.5);
  border-radius: 8px;
  z-index: 1000;
  text-align: center;
  /* padding: 10px 0; */
  cursor: pointer;
  word-break: break-all;
}

.relation-item {
  padding: 10px 0;
}

.relation-item:hover,
.goup-box:hover {
  background: #348AF2;
}

.relation-box img {
  width: 32px;
  height: 32px;
}

.relation-box .relation-line {
  width: 100%;
  height: 1px;
  background: #4C98F5;
}

.relation-box .relation-text {
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 7px;
}

.goup-box {
  padding: 18px;
  position: fixed;
  right: 20px;
  top: 60%;
  text-align: center;
  cursor: pointer;
  background: #0E6ADA;
  box-shadow: 0px 0px 4px 2px rgba(87, 147, 220, 0.5);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.goup-box img {
  width: 32px;
  height: 32px;
}

/* ====================================== */
/* 响应式布局 - 大屏平板 (1200px以下) */
/* ====================================== */
@media (max-width: 1200px) {
  nav {
    padding: 20px 60px;
  }

  .banner-item-box1 h1 {
    width: 90%;
    font-size: 40px;
    line-height: 50px;
  }

  .core-competence {
    padding: 80px 60px 60px;
  }

  .iot-section {
    gap: 50px;
  }

  .contact {
    padding: 40px 60px;
  }

  footer {
    padding: 40px 60px 20px;
  }

  .cookie-notice {
    padding: 20px 60px;
  }
}

/* ====================================== */
/* 响应式布局 - 平板/手机（768px以下） */
/* ====================================== */
@media (max-width: 768px) {

  /* 导航栏重构 - 汉堡菜单 */
  .hamburger {
    display: flex;
  }

  nav {
    flex-direction: row;
    padding: 15px 5vw;
    min-height: 70px;
  }

  .nav-logo {
    margin-right: 0;
    margin-bottom: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #F7FCFF;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 20px;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
    max-width: 100%;
    padding: 10px 0;
    justify-content: center;
  }

  .water-drop {
    display: none;
  }

  .nav-lang {
    margin-top: 0;
    margin-left: 15px;
  }

  .lang-dropdown {
    width: 100px;
    top: -28vh;
  }

  /* Banner适配 */
  .banner {
    height: 500px;
  }

  .swiper {
    height: 500px;
  }

  .banner-item-box1 {
    padding: 40px 5vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .banner-item-box1 h1 {
    font-size: 28px;
    line-height: 38px;
    width: 100%;
    text-align: center;
  }

  .banner-flex1 {
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
  }

  .banner-flex1-item {
    margin-right: 0;
    margin-left: 0;
  }

  .banner-flex1-item p {
    font-size: 28px;
  }

  .banner-flex1-item span {
    font-size: 16px;
  }

  .banner-item-box2 {
    padding-top: 120px;
  }

  .banner-item-box2 .banner-item-title2 {
    font-size: 28px;
  }

  .banner-item-box2 .banner-item-text2 {
    font-size: 18px;
  }

  .banner-item-box2 .banner-btn {
    width: 150px;
    height: 40px;
    font-size: 18px;
  }

  .banner-item-box3 .banner-item-title3 {
    font-size: 28px;
  }

  .banner-item-box3 .banner-item-text3 {
    font-size: 18px;
  }

  /* 研发团队适配 */
  .rnd-team {
    padding: 60px 5vw 40px;
  }

  .rnd-title {
    font-size: 28px;
  }

  .rnd-text {
    font-size: 18px;
  }

  .rnd-imgs {
    gap: 20px;
  }

  .rnd-imgs img {
    width: 90%;
    height: 200px;
  }

  /* 核心竞争力适配 */
  .core-competence {
    padding: 60px 5vw 40px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://resource.hpti.net/hpt-foreign-website/images/core-img.png");
  }

  .core-title {
    font-size: 28px;
    text-align: center;
  }

  .core-text {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
  }

  .core-grid {
    gap: 30px;
    justify-content: center;
  }

  .core-item {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .core-item .icon {
    margin: 0 auto;
  }

  .core-item-title {
    font-size: 22px !important;
  }

  /* 物联网售水机适配 */
  .iot-water {
    padding: 60px 5vw 100px;
  }

  .iot-title {
    font-size: 28px !important;
  }

  .iot-text {
    font-size: 18px !important;
  }

  .iot-section {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .iot-section.reverse {
    flex-direction: column;
  }

  .iot-content {
    text-align: center;
  }

  .iot-item-title {
    font-size: 28px !important;
  }

  .iot-item-sub {
    font-size: 20px !important;
  }

  .iot-line {
    display: none;
  }

  /* 投资合作横幅适配 */
  .carousel-container {
    height: 300px;
  }

  .carousel-item {
    top: 15%;
    width: 90%;
  }

  .carousel-title {
    font-size: 22px;
    line-height: 32px;
  }

  .carousel-text {
    margin-top: 10px;
    font-size: 18px;
  }

  /* 联系区域适配 */
  .contact {
    padding: 40px 5vw;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info-title {
    font-size: 32px !important;
  }

  .contact-info-text {
    font-size: 18px !important;
  }

  .email,
  .phone {
    justify-content: center;
  }

  .cell-text {
    font-size: 18px !important;
  }

  .contact-form {
    width: 100%;
  }

  .form-btn {
    width: 100%;
  }

  /* 页脚适配 */
  footer {
    padding: 40px 5vw 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links-column,
  .footer-contact {
    width: 100%;
    min-width: auto;
  }

  .footer-social {
    justify-content: center;
  }

  /* Cookie提示适配 */
  .cookie-notice {
    padding: 15px 5vw;
    flex-direction: column;
    align-items: center;
  }

  .cookie-notice .cookie-title {
    width: 100%;
    font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
  }

  .cookie-notice button {
    width: 100%;
    height: 40px;
    font-size: 16px;
  }

  /* 侧边栏适配 */
  .relation-box {
    width: 60px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .relation-box img {
    width: 24px;
    height: 24px;
  }

  .relation-text {
    font-size: 12px !important;
  }

  .goup-box {
    width: 60px;
    height: 60px;
    padding: 8px;
    right: 10px;
    top: calc(50% + 100px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .goup-box img {
    width: 24px;
    height: 24px;
  }
}

/* ====================================== */
/* 小屏手机额外适配（480px以下） */
/* ====================================== */
@media (max-width: 480px) {
  .banner {
    height: 400px;
  }

  .swiper {
    height: 400px;
  }

  .banner-item-box1 h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .banner-flex1-item p {
    font-size: 24px;
  }

  .carousel-container {
    height: 250px;
  }

  .carousel-title {
    font-size: 18px;
    line-height: 28px;
  }

  .carousel-text {
    font-size: 16px;
  }

  .contact-info-title {
    font-size: 28px !important;
  }
}