.bg-video {
  height: 100vh;
}

.bg-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-video .bg-mask {
  position: absolute;
  inset: 0;
  display: flex;
  background: rgba(0, 0, 0, .5);
}

.bg-video .bg-content {
  margin: auto 0 auto 20vw;
  color: #fff;
}

.bg-video .bg-content p {
  margin: 0 0 110px;
  font-size: 48px;
  line-height: 62px;
}

.bg-video .bg-content a {
  color: #fff;
  text-decoration: none;
}

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

.brief-intro-of-cofund {
  padding: 80px 0;
}

.brief-intro-of-cofund>p {
  margin: 10px 0 0;
}

.investment-solutions>p {
  margin: 10px 0 0;
}

.investment-solutions .card {
  position: relative;
  width: 380px;
  padding-top: 25px;
  margin-top: 20px;
  color: #333;
  background: #F1F2F5 url(../assets/svgs/icon-1.svg) top right no-repeat;
}

.investment-solutions .card:hover {
  transition: .3s;
  box-shadow: 0 3px 15px rgba(0, 0, 0, .4);
}

.investment-solutions .card:not(:last-child) {
  margin-right: 20px;
}

.investment-solutions .card:nth-child(2) {
  background-image: url(../assets/svgs/icon-2.svg);
}

.investment-solutions .card:last-child {
  background-image: url(../assets/svgs/icon-3.svg);
}

.investment-solutions .card .name {
  margin: 0 0 0 10px;
}

.investment-solutions .card .type {
  margin: 10px 0 20px 10px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}

.investment-solutions .card .return {
  padding-left: 10px;
  font-size: 14px;
  line-height: 50px;
  color: #fff;
}

.investment-solutions .card .yield {
  padding-left: 10px;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
}

.investment-solutions .card .intro {
  padding: 0 10px;
  margin: 15px 0 30px;
}

.investment-solutions .card .risk,
.investment-solutions .card .distribution {
  padding: 15px 0 15px 10px;
  color: #666;
  background: #E2E3E5;
}

.investment-solutions .card .risk {
  margin-right: 1px;
}

.investment-solutions .card:first-child .return {
  background: #417A9B;
}

.investment-solutions .card:first-child .yield {
  background: #245D7D;
}

.investment-solutions .card:nth-child(2) .return {
  background: #3981B5;
}

.investment-solutions .card:nth-child(2) .yield {
  background: #1E6CA5;
}

.investment-solutions .card:last-child .return {
  background: #3A60A8;
}

.investment-solutions .card:last-child .yield {
  background: #264F9F;
}

.why-invest-width-cofund {
  padding: 80px 0;
}

.why-invest-width-cofund>p {
  margin: 10px 0 20px;
}

.why-invest-width-cofund img {
  width: 560px;
  height: 434px;
  object-fit: cover;
}

.why-invest-width-cofund ul {
  padding: 0;
  margin: 0 0 0 15px;
}

.why-invest-width-cofund ul li {
  list-style: none;
  padding: 15px 0 15px 10px;
}

.why-invest-width-cofund ul li:not(.active) {
  background: #F1F2F5;
}

.why-invest-width-cofund ul li.active {
  transition: background-color .3s;
  background: #fff;
}

.why-invest-width-cofund ul li+li {
  margin-top: 1px;
}

.why-invest-width-cofund ul li h5 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}

.questions {
  padding: 50px 0;
  background: #EEEFF2;
}

.questions p {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 16px;
}

.slogan-fade-in {
  animation: sloganFadeIn ease 1s forwards;
}

.slogan-fade-out {
  animation: sloganFadeOut ease 1s forwards;
}

@keyframes sloganFadeIn {
  from {
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes sloganFadeOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
}