:root {
  --main-color: #2598d6;
  --gray--color: #f1f2f2;
}

.banner-container form {
  margin-top: 30px;
  width: 600px;
  height: 54px;
  background-color: #fff;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}
.banner-container form input {
  width: 520px;
  height: 100%;
  border: none;
  padding-left: 20px;
  box-sizing: border-box;
  font-size: 22px;
}
.banner-container form input::placeholder {
  font-size: 22px;
}
.banner-container form button {
  width: 80px;
  height: 100%;
  border: none;
  background-color: #2598d6;
  cursor: pointer;
}

.title-module {
  border-bottom: 4px solid var(--main-color);
}
.title-module .tab-list .tab-item {
  width: 160px;
  height: 56px;
  font-size: 22px;
  background-color: var(--gray--color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-module .tab-list .tab-item.active {
  background-color: var(--main-color);
  color: #fff;
}

.title-module {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
.title-module .tab-list {
  align-items: flex-end;
  display: flex;
}
.title-module .tab-list .tab-item {
  cursor: pointer;
  vertical-align: middle;

  font-weight: bold;
  color: #333;
}
.title-module .tab-list .tab-item.active {
  font-weight: bold;
  position: relative;
}

.title-module .more {
  font-size: 24px;
  display: none;
}
.title-module-new {
  height: 140px;
  width: 100%;
  text-align: center;
  color: var(--main-color);
  background-color: var(--gray--color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}
.title-module-new .subtitle {
  font-size: 22px;
  text-transform: uppercase;
}
.title-module-new .title {
  margin-top: 10px;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
}
.title-module-new .title span {
  position: relative;
}
.title-module-new .title span::before,
.title-module-new .title span::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 4px;
  background-color: var(--main-color);
  top: 50%;
}
.title-module-new .title span::before {
  left: -30px;
  transform: translate(-100%, -50%);
}
.title-module-new .title span::after {
  right: -30px;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 768px) {
  .banner-container form {
    margin-top: 20px;
    width: 90%;
    height: 48px;
    background-color: #fff;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
  }
  .banner-container form input {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 10px;
    box-sizing: border-box;
    font-size: 22px;
  }
  .banner-container form input::placeholder {
    font-size: 18px;
  }
  .banner-container form button {
    width: 60px;
    height: 100%;
    border: none;
    background-color: #2598d6;
    cursor: pointer;
  }

  .title-module {
    border-bottom: 4px solid var(--main-color);
  }
  .title-module .tab-list .tab-item {
    width: 100px;
    height: 44px;
    font-size: 18px;
    background-color: var(--gray--color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .title-module .tab-list .tab-item.active {
    background-color: var(--main-color);
    color: #fff;
  }

  .title-module {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
  }
  .title-module .tab-list {
    align-items: flex-end;
    display: flex;
  }
  .title-module .tab-list .tab-item {
    cursor: pointer;
    vertical-align: middle;

    font-weight: bold;
    color: #333;
  }
  .title-module .tab-list .tab-item.active {
    font-weight: bold;
    position: relative;
  }

  .title-module .more {
    font-size: 16px;
    display: none;
  }
  .title-module-new {
    height: 120px;
    width: 100%;

    margin-bottom: 20px;
  }
  .title-module-new .subtitle {
    font-size: 18px;
    text-transform: uppercase;
  }
  .title-module-new .title {
    margin-top: 10px;
    font-size: 26px;
    line-height: 1;
    font-weight: bold;
  }
  .title-module-new .title span {
    position: relative;
  }
  .title-module-new .title span::before,
  .title-module-new .title span::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 2px;
    background-color: var(--main-color);
    top: 50%;
  }
  .title-module-new .title span::before {
    left: -15px;
    transform: translate(-100%, -50%);
  }
  .title-module-new .title span::after {
    right: -15px;
    transform: translate(100%, -50%);
  }
  .mobile_logo_area {
    position: fixed;
    top: 0;
    width:100%;
    background-color:rgba(0,0,0,0.6);
    z-index: 999;
  }
  .icofont-navigation-menu{
    color:#fff;
  }
  .title-module{
    flex-wrap: wrap-reverse;
  }
}
