:root {
  --color-bg: #5AC2E7;
  --color-white: #ffffff;
  --color-white-light: rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-white);
  /* text-align: center; */
  line-height: 1.5;
}

header,.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 55px;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

nav a {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 720px) {
  nav a {
    font-size: 15px;
    white-space: nowrap;
  }
}
nav a.act::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background-color: #fff;
}

.top-bg {
  position: relative;
  width: 1005;
}

.top-bg .top-bg-wrap {
  width: 100%;
  height: 377px;
}
.top-bg .top-bg-wrap img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-block {
  position: relative;
  width: 100%;
  padding: 80px 40px;
}

.content-block .content-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}
.content-block .content-wrap .title {
  font-size: 36px;
  margin-bottom: 32px;
}
.content-block .content-wrap .desc {
  font-size: 17.6px;
}


.cc-block {
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cc-block .penguin {
  width: 14vw;
  max-width: 114px;
  height: auto;
}

.cc-block .squeak {
  font-size: 30px;
  margin: 30px 0;
  color: var(--color-white);
}

.cc-block .business {
  color: var(--color-white-light);
  text-align: center;
}

.cc-block .business .desc1 {
  font-size: 16px;
  font-weight: bold;
  max-width: 892px;
}

.cc-block .business .p {
  font-size: 13px;
}

.cc-block .business a {
  color: var(--color-white);
  text-decoration: underline;
}
