.header {
  color: rgba(51, 51, 51, 1);
  background-color: #fff;
}

.header .logo {
  background: url("../../img/support/logo.png");
  background-size: 100% 100%;
  width: 3.75rem;
  height: 0.75rem;
}

.header .right .and {
  background-color: rgba(51, 51, 51, 1);
}

.header .nav li a {
  color: rgba(51, 51, 51, 1);
}

.container {
  position: relative;
  background: rgba(240, 242, 245, 1);
  min-height: 100vh;
}

.container .home {
  display: flex;
  flex-direction: column;
  padding: 5.125rem 0 20.975rem 4rem;
  overflow: hidden;
}

.container .home .content {
  display: flex;
  text-align: center;
  justify-content: center;
  overflow: hidden;
}

.container .home .content .info {
  text-align: start;
  flex: 1;
}

.container .home .content .info h1 {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}

.container .home .content .info p {
  font-size: .45rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  margin-top: .625rem;
}

.container .home .content .info .search {
  margin-top: 1.375rem;
  width: 10.125rem;
  height: 1.5rem;
  border-radius: .75rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .25rem 0 .5rem;
}

.container .home .content .info .search input {
  width: 3.15rem;
  height: .525rem;
  border: 0.0625rem solid transparent;
}

.container .home .content .info .search img {
  width: 1rem;
  height: 1rem;
}

.container .home .content .info .search input:focus {
  outline: none;
}

.container .home .content .info .search img:hover {
  cursor: pointer;
}

.container .home .content .info .search input::placeholder {
  font-size: .45rem;
  font-weight: 300;
  color: rgba(51, 51, 51, 1);
}

.container .home .content .info .search input:focus::placeholder {
  color: transparent;
}

.container .home .main {
  display: flex;
  flex-direction: column;
  margin: 1.25rem;
  position: absolute;
  width: 40rem;
  top: 17.2rem;
}

.container .home .main .question_list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.container .home .main .question_item {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: .9rem;
  padding: 1.325rem 1.8rem 1.2485rem 1.8rem;
  background: #fff;
  border-radius: .35rem;
}

.container .home .main .question_item.question_bg {
  background: url("../../img/faq/question_bg.png");
  background-position-x: center;
  background-position-y: center;
  background-origin: content-box;
}

.container .home .main .question_item .question_item_top {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.container .home .main .question_item .question_item_top .question {
  font-size: .5rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}

.container .home .main .question_item .question_item_top .question_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: .8515rem;
  height: .8515rem;
  border-radius: .125rem;
  background-color: rgba(4, 38, 161, .03);
  color: rgba(0, 89, 255, 1);
  font-size: .45rem;
  font-weight: 500;
}

.container .home .main .question_item .question_item_bottom {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.container .home .main .question_item .question_item_bottom.close {
  display: none;
}

.container .home .main .question_item .question_item_bottom .answer {
  font-size: .4rem;
  font-weight: 400;
  line-height: .85rem;
  color: rgba(79, 96, 109, 1);
}

.container .home .main .question_item .question_item_bottom .answer_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: .8515rem;
  height: .8515rem;
  border-radius: .125rem;
  background-color: rgba(4, 38, 161, .03);
  color: rgba(231, 0, 17, 1);
  font-size: .45rem;
  font-weight: 500;
}

.container .home .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 2.775rem;
}

.container .home .pagination .page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: #fff;
  color: rgba(51, 51, 51, 1);
  font-size: .4rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.container .home .pagination .page-item.active {
  background: linear-gradient(90deg, #0059FF 0%, #0038B1 100%);
  color: #fff;

}

.container .home .pagination .next_page img {
  width: 1.125rem;
  height: 1.125rem;
}

.container .home .banner {
  flex: 1;
  width: 31.75rem;
  height: 27.25rem;

}