body {
    margin: 0;
    padding: 0;
    position: relative;
  }

  .top-bar {
    height: 85px;
    width: 100%;
    background-color: #2d528a;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .top-bar-inner {
    height: 100%;
    width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-wrapper {
    display: flex;
    align-items: center;
  }

  .menu {
    color: #fff;
    font-size: 16px;
    margin-left: 20px;
    cursor: pointer;
  }

  .menu:hover {
    color: rgb(19, 144, 229);
  }

  .menu-wrapper select {
    margin-left: 20px;
    height: 30px;
    width: 60px;
  }

  main.content {
    z-index: 1;
    position: relative;
    min-width: 980px;
  }

  .top-bg {
    margin-top: 85px;

  }


  .content-container {
    width: 980px;
    margin: 0 auto;
    position: relative;
  }

  .banner {
    background: url(./banner.webp) no-repeat center center;
    background-size: cover;
    min-width: 980px;
    height: 535px;
    width: 100%;
  }

  .banner-title {
    padding-top: 114px;
    font-size: 60px;
    font-weight: 700;
    font-family: prompt, sans-serif;
    color: white;
    line-height: 55px;
  }

  .sub-title {
    font-size: 16px;
    line-height: 1.6em;
    color: white;
    margin-top: 20px;
  }

  .area-1 {
    height: 660px;
  }

  .top-bg .card {
    height: 523px;
    width: 890px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 0;
  }



  .card-title {
    font-size: 40px;
    font-family: prompt, sans-serif;
    letter-spacing: 0.06em;
    color: black;
    font-weight: 700;
    text-align: center;
    padding: 20px 0;
  }

  .card-content {
    width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: rgb(117, 117, 117);

  }

  .area-2 {
    background: url(./area2.png) no-repeat center center;
    background-size: auto 100%;
    height: 700px;
    width: 100%;
    min-width: 980px;
  }

  .area-3 {
    background: rgb(43, 43, 43);
    height: 321px;
    min-width: 980px;
  }


  .area-5 {
    height: 250px;
    background: #f7f7f7;
    min-width: 980px;
  }

  .area-6 {
    height: 463px;
    min-width: 980px;
    background: rgba(0, 0, 0, 0.3);
  }

  .area-7 {
    height: 362px;
    background: #fff;
    min-width: 980px;
  }

  footer {
    min-width: 980px;
    background: #212121;
    color: white;
    text-align: center;
    padding-top: 40px;
  }

  .fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    padding-top: 85px;
  }

  .fixed-bg img {

    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .content-wrapper {
    position: relative;
  }

  .card-items {

    margin-top: 40px;
  }

  .item-img {
    height: 65px;
    margin: 0 auto 20px;

  }


  .item-img svg {
    width: 65px;
    height: 65px;
    margin: 0 auto;
  }
  .image-wrapper:hover .hover-image{
    opacity: 1;
  }
  
  .hover-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:rgba(0, 0, 0, 0.4); 
    opacity: 0;
    transition: all 0.4s ease-in;
}