:root {
  --bgGradient: linear-gradient(90deg, #f00 10%, #ff00a6 50%, #00a6ff 90%);
  --lineGradient: linear-gradient(90deg, #f00 10%, #ff00a6 50%, #00a6ff 90%);
  --bgGray: #fafafd;
}

.bGray {
  background: var(--bgGray);
}

.scContent {
  display: flex;
  width: 100%;
}

.cGradient {
  background: var(--bgGradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: max-content;
}

body,
p,
span,
a,
td,
th {
  font-family: "better_togetherregular";
  font-weight: normal;
  font-style: normal;
}

.fBetterReg {
  font-family: "better_togetherregular" !important;
}

.fBetterB {
  font-family: "better_togetherbold" !important;
}

.fBetterLi {
  font-family: "better_togetherlight" !important;
}

.fBetterMed {
  font-family: "better_togethermedium" !important;
}

@media only screen and (min-width: 1200px) {
  .fBetterRegD {
    font-family: "better_togetherregular" !important;
  }

  .fBetterBD {
    font-family: "better_togetherbold" !important;
  }

  .fBetterLiD {
    font-family: "better_togetherlight" !important;
  }

  .fBetterMedD {
    font-family: "better_togethermedium" !important;
  }
}
body .navHeader,
body .scBannerHero {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  top: 50px;
  position: relative;
}
body.openPage .navHeader {
  opacity: 1;
  visibility: visible;
  top: 0;
}
body.openPage .scBannerHero {
  transition-delay: 0.5s;
  opacity: 1;
  visibility: visible;
  top: 0;
}
@media only screen and (max-width: 1200px) {
  body .navHeader,
  body .scBannerHero {
    transition-delay: 0s;
    opacity: 1;
    visibility: visible;
    top: 0;
  }
}

.lineGradient {
  display: flex;
  width: 30px;
  height: 1px;
  margin: 12px auto;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  background: var(--lineGradient);
}

.absoluteLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.scContent .buttonControl .btnMore {
  color: #fff;
  display: flex;
  height: 45px;
  padding: 0 44px;
  font-size: 24px;
  line-height: 40px;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  border-radius: 30px;
  background-size: 300% 100%;
  background-position: 0 0;
  background-image: linear-gradient(50deg, #f00 5%, #ff00a6 20%, #00a6ff 35%, #00a6ff 70%, #ff00a6 85%, #f00 90%);
}
.scContent .buttonControl .btnMore:hover {
  background-size: 600% 100%;
  background-position: -10% 0;
}

.btnPrimary {
  display: flex;
  max-width: max-content;
  font-size: 20px;
  font-family: "better_togetherbold";
  color: #ffffff;
  border-radius: 30px;
  height: 40px;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  background-size: 300% 100%;
  background-position: 0 0;
  background-image: linear-gradient(50deg, #f00 5%, #ff00a6 20%, #00a6ff 35%, #00a6ff 70%, #ff00a6 85%, #f00 90%);
}
.btnPrimary:hover {
  color: #ffffff;
  background-size: 600% 100%;
  background-position: -10% 0;
}

.scNews .headerTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #cccccc;
}
.scNews .listSubCat li:first-child {
  padding-left: 17px !important;
  position: relative;
}
.scNews .listSubCat li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: -webkit-gradient(linear, left bottom, left top, from(#00a6ff), color-stop(50%, #ff00a6), to(red));
  background: linear-gradient(0deg, #00a6ff 0%, #ff00a6 50%, red 100%);
}
.scNews .listSubCat li:first-child a {
  margin-right: 0;
}
.scNews .innerWrapper {
  display: flex;
  flex-direction: column;
}
.scNews .blogContent {
  display: flex;
  width: 100%;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #cccccc;
}
.scNews .blogContent .wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.scNews .blogContent .tagsWrapper {
  display: flex;
  align-items: center;
}
.scNews .blogContent .listSubCat li:first-child {
  padding-left: 17px !important;
  position: relative;
}
.scNews .blogContent .content {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
  width: calc(100% - 225px);
}
.scNews .blogContent .content a:hover {
  background: linear-gradient(90deg, red 10%, #ff00a6 50%, #00a6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.scNews .blogContent .images {
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #fafafd;
  width: 225px;
  height: 150px;
  overflow: hidden;
}
.scNews .blogContent .images a {
  display: block;
}
.scNews .blogContent .images img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.scNews .btnNav {
  display: flex;
  justify-content: center;
}
.scNews .btnNav .gap {
  display: flex;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2;
  justify-content: center;
  align-items: center;
}
.scNews .newsContainer {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.scBannerHero {
  display: flex;
  width: 100%;
  height: auto;
}
.scBannerHero .bannerHero.withCaption .owl-carousel .owl-stage-outer {
  overflow: hidden;
  border-radius: 24px;
}
.scBannerHero .bannerHero.withCaption .owl-carousel .owl-stage-outer {
  border-radius: 0;
}
.scBannerHero .bannerHero.withCaption .bannerMain {
  border-radius: 24px;
  overflow: hidden;
}

.navHeader {
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.navHeader .head {
  display: flex;
  justify-content: center;
  width: 100%;
}
.navHeader .navContainer {
  display: flex;
  width: 100%;
  justify-content: center;
}
.navHeader .navContainer ul {
  overflow: auto hidden;
  display: flex;
  align-items: baseline;
  padding: 0;
  margin: 0;
}
.navHeader .navContainer ul li {
  display: flex;
  position: relative;
  padding-right: 16px;
  margin-right: 16px;
}
.navHeader .navContainer ul li::after {
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #f00 10%, #ff00a6 50%, #00a6ff 90%);
}
.navHeader .navContainer ul li:last-child {
  margin-right: 0;
  padding-left: 0;
}
.navHeader .navContainer ul li:last-child::after {
  display: none;
}
.navHeader .navContainer .navMenu {
  display: flex;
  align-items: center;
}
.navHeader .navContainer .navMenu:hover {
  background: #ff0000;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(50%, #ff00a6), to(#00a6ff));
  background: linear-gradient(to right, red 0%, #ff00a6 50%, #00a6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navHeader .navContainer .navMenu .icons {
  display: flex;
  margin-right: 5px;
  width: 26px;
}
.navHeader .navContainer .navMenu .icons img {
  width: 100%;
}
.navHeader .navContainer .navMenu span {
  font-size: 20px;
  display: block;
}

.bannerHero .bannerMain {
  border-radius: 0;
  overflow: hidden;
  display: block;
}
.bannerHero .heroCarousel .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  border-radius: 12px;
  opacity: 0.5;
  margin: 0 6px;
  border: none !important;
}
.bannerHero .heroCarousel .owl-dots .owl-dot:focus {
  outline: 0;
}
.bannerHero .heroCarousel .owl-dots {
  margin-top: 0;
}
.bannerHero .scBannerHero picture img {
  border-radius: 0;
}
.bannerHero .heroCarousel .owl-dots .owl-dot.active {
  width: 24px;
  border: none !important;
  background: #ffffff !important;
  opacity: 1;
}

.scContent .templateWrapper {
  position: relative;
}

.scContent .buttonControl {
  margin-top: 60px;
}

.scContent .templateWrapper .contentBox {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 525px;
}

.template-2 .templateWrapper .contentBox .imageBox {
  left: auto;
  right: 0;
  top: 0;
  height: 527px;
  position: absolute;
  transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
}

.scContent .templateWrapper .contentBox .textBox {
  top: 0;
  right: 0;
  margin-top: 50px;
}

.template-2 .templateWrapper .contentBox .imageBox .image {
  position: absolute;
  top: 0;
  left: 0;
}

.template-2.flip-right .templateWrapper .contentBox {
  justify-content: flex-start;
  position: relative;
}

.template-2 .templateWrapper .contentBox .textBox .text-1 span {
  font-size: 24px;
  line-height: 170%;
}

.template-2.flip-right .templateWrapper .contentBox .imageBox {
  left: 0;
  right: 0;
  top: 0;
  height: 527px;
  position: absolute;
}

.template-2.flip-right .templateWrapper .contentBox .textBox {
  left: 0;
  bottom: 0;
}

.ani-gradient .ani-color {
  background: linear-gradient(60deg, #ff0000 10%, #ff00a6 25%, #00a6ff 45%, #00a6ff 55%, #cccccc 60%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 0 0;
  background-size: 200% auto;
  background-repeat: no-repeat;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  max-width: max-content;
  line-height: 170%;
}
.ani-gradient .ani-black {
  background: linear-gradient(90deg, #000000 50%, #ffffff 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 0 0;
  background-size: 200% auto;
  background-repeat: no-repeat;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  line-height: 170%;
}

.template-2 .templateWrapper .contentBox .textBox .tH1 {
  font-size: 60px;
  line-height: 80px;
}
.template-2 .templateWrapper .contentBox .textBox .icoQuote {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px;
}
.template-2 .templateWrapper .contentBox .textBox .icoQuote::before {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/icons/ico-dq-left.png") center center/100% no-repeat;
}
.template-2 .templateWrapper .contentBox .textBox .icoQuote::after {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../images/icons/ico-dq-right.png") center center/100% no-repeat;
}

.template-2 .templateWrapper .contentBox .textBox .text-2 .nameBox {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.firstSection .templateWrapper .contentBox .imageBox {
  height: auto;
  border-radius: 0;
}
.firstSection .templateWrapper .contentBox .imageBox .image {
  width: 100%;
  height: auto;
}
.firstSection .templateWrapper .contentBox .imageBox .image img {
  object-fit: contain;
  height: auto;
  width: 100%;
  border-radius: 24px;
}

.scReport .container > header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reportSlider .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  border-radius: 12px;
  opacity: 0.5;
  margin: 0 6px;
  border: none !important;
}
.reportSlider .owl-theme .owl-nav {
  margin: 0;
  position: absolute;
  top: calc(50% - 55px);
  left: 0;
  width: 100%;
  height: 1px;
}
.reportSlider .owl-dots .owl-dot span {
  margin: 0;
  width: 9px;
  height: 9px;
  background: var(--color-grey);
  border: none;
  transition: all 0.25s ease-in-out 0s;
}
.reportSlider .owl-theme .owl-nav [class*="owl-"] {
  position: absolute;
  top: 0;
  width: 90px;
  height: 90px;
  margin: 0;
  padding: 0;
  border: none !important;
  outline: 0 !important;
  background-color: transparent !important;
}
.reportSlider .owl-theme .owl-nav [class*="owl-"] span {
  display: flex;
  width: 100%;
  height: 100%;
  background-size: 34px auto;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: -9999999px;
}
.reportSlider .owl-dots .owl-dot.active {
  width: 24px;
  border: none !important;
  background: #ffffff !important;
  opacity: 1;
}
.reportSlider .owl-dots .owl-dot.active span {
  width: 24px;
  height: 9px;
  background: linear-gradient(90deg, #ff0000 10%, #ff00a6 50%, #00a6ff 90%) !important;
  border-radius: 100px;
}
.reportSlider .owl-theme .owl-nav .owl-prev {
  left: -90px;
}
.reportSlider .owl-theme .owl-nav .owl-prev span {
  background-image: url("../images/icons/ico-arrow-left.svg");
}
.reportSlider .owl-theme .owl-nav .owl-next {
  right: -90px;
}
.reportSlider .owl-theme .owl-nav .owl-next span {
  background-image: url("../images/icons/ico-arrow-right.svg");
}
.reportSlider .owl-theme .owl-nav .disabled {
  opacity: 0;
}

.cardReport {
  display: flex;
}
.cardReport .innerWrapper {
  display: flex;
  flex-direction: column;
  width: 300px;
}
.cardReport .innerWrapper .thumb {
  display: flex;
  width: 100%;
  height: 425px;
  overflow: hidden;
  border-radius: 24px;
}
.cardReport .innerWrapper .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cardReport .innerWrapper .text {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 12px;
}
.cardReport .innerWrapper:hover .text p {
  background: #ff0000;
  background: -webkit-gradient(linear, left top, right top, from(red), color-stop(50%, #ff00a6), to(#00a6ff));
  background: linear-gradient(to right, red 0%, #ff00a6 50%, #00a6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scSuggestions .formTheme {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.scSuggestions .formTheme .formGroup {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
}
.scSuggestions .formTheme .form-control {
  display: flex;
  border-radius: 8px;
  height: 60px;
  font-size: 20px;
  padding: 0 16px;
  box-shadow: none;
  outline: 0;
  border: 1px solid #d6d6d6;
}
.scSuggestions .formTheme .form-control:focus {
  border-color: #ff0000;
}
.scSuggestions .formTheme textarea.form-control {
  height: 290px;
  padding: 8px 16px;
  resize: none;
}
.scSuggestions .buttonControl .btnMore {
  min-width: 210px;
  max-width: max-content;
}

.scRelate .container {
  border-top: none;
}

.ani-fadeUp header {
  -webkit-transition: all 0.15s ease 0s;
  -moz-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}
.ani-fadeUp .aniWrapper {
  -webkit-transition: all 0.15s ease 0s;
  -moz-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

.relateArticle .boxRelateArticle .tMainCat {
  padding-right: 0;
}

.mainCover {
  display: flex;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.mainCover img {
  width: 100%;
}

.scTitleContent .tagsWrapper {
  padding-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.scTitleContent .tagsWrapper .listSubCat li:first-child {
  padding-left: 17px;
  position: relative;
}
.scTitleContent .tagsWrapper .listSubCat li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: -webkit-gradient(linear, left bottom, left top, from(#00a6ff), color-stop(50%, #ff00a6), to(red));
  background: linear-gradient(0deg, #00a6ff 0%, #ff00a6 50%, red 100%);
}
.scTitleContent .lineGradient {
  width: 210px;
  height: 3px;
}

.template-content .contentBox {
  display: flex;
  align-items: center;
}
.template-content .imageBox {
  display: flex;
  width: 554px;
  height: 640px;
  position: relative;
}
.template-content .imageBox .image {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}
.template-content .imageBox .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.template-content .textBox {
  display: flex;
  flex-direction: column;
  width: calc(100% - 554px);
  padding-left: 32px;
}
.template-content .textBox .icoQuote {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px;
}
.template-content .textBox .icoQuote::before {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/icons/ico-dq-left.png") center center/100% no-repeat;
}
.template-content .textBox .icoQuote::after {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../images/icons/ico-dq-right.png") center center/100% no-repeat;
}
.template-content .textBox .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.template-content .textBox .nameBox {
  display: flex;
  text-align: right;
  flex-direction: column;
}
.template-content .textBox .buttonControl {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}
.template-content.flip-right .contentBox {
  flex-direction: row-reverse;
}
.template-content.flip-right .contentBox .textBox {
  padding-left: 0;
  padding-right: 32px;
}
.template-content.flip-right .contentBox .textBox .nameBox {
  text-align: left;
}
.template-content.flip-right .contentBox .textBox .buttonControl {
  justify-content: flex-start;
}

.textLink {
  color: #007ad0;
}
.textLink:hover {
  color: #007ad0;
  text-decoration: underline;
}

.scStat .statContainer {
  display: flex;
}
.scStat .statContainer .statBox {
  display: flex;
  width: 33.33333%;
  justify-content: flex-start;
  text-align: center;
  flex-direction: column;
  padding: 16px;
  position: relative;
}
.scStat .statContainer .statBox::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  right: -1px;
  top: 0;
  background: linear-gradient(0deg, #f00 10%, #ff00a6 50%, #00a6ff 90%);
}
.scStat .statContainer .statBox:last-child::after {
  display: none;
}

.scDetail .detailBox {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.scDetail .quoteBox {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.scDetail .quoteBox .wrapper {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
  flex-direction: column;
}
.scDetail .quoteBox .wrapper::before {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: -60px;
  background: url("../images/icons/ico-dq-left.png") center center/100% no-repeat;
}
.scDetail .quoteBox .wrapper::after {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: -60px;
  background: url("../images/icons/ico-dq-right.png") center center/100% no-repeat;
}
.scDetail .quoteBox .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.scDetail .quoteBox .wrapper .buttonControl {
  margin-top: 0;
}

.downloadBox {
  display: flex;
  width: 100%;
}
.downloadBox .wrapper {
  display: flex;
  width: 100%;
  border-radius: 24px;
  background: #fafafd;
  align-items: center;
}
.downloadBox .wrapper .content {
  display: flex;
  align-items: center;
  width: calc(100% - 210px);
}
.downloadBox .wrapper .content .icons {
  display: flex;
  margin-right: 12px;
  width: 60px;
}
.downloadBox .wrapper .content .icons img {
  width: 100%;
  align-self: center;
}
.downloadBox .wrapper .buttonControl {
  margin-top: 0;
  width: 210px;
  align-items: center;
}

.bb-1 {
  border-bottom: 1px solid;
}

.bcGray {
  border-color: #cccccc;
}

.scPolicy .container > header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.scPolicy .headerTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #cccccc;
}
.scPolicy .tagsWrapper {
  display: flex;
  align-items: center;
}
.scPolicy .tagsWrapper .listSubCat li:first-child {
  padding-left: 17px !important;
  position: relative;
}
.scPolicy .tagsWrapper .listSubCat li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: -webkit-gradient(linear, left bottom, left top, from(#00a6ff), color-stop(50%, #ff00a6), to(red));
  background: linear-gradient(0deg, #00a6ff 0%, #ff00a6 50%, red 100%);
}
.scPolicy .tagsWrapper .listSubCat li a:hover {
  background: linear-gradient(90deg, red 10%, #ff00a6 50%, #00a6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.scPolicy .btnNav li .gap {
  display: flex;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2;
  justify-content: center;
  align-items: center;
}

.policyContainer .innerWrapper {
  display: flex;
  flex-direction: column;
}
.policyContainer .blogContent {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #cccccc;
}
.policyContainer .blogContent .text {
  display: flex;
  width: 100%;
}
.policyContainer .blogContent .text a {
  display: flex;
  max-width: max-content;
}
.policyContainer .blogContent .text a:hover {
  background: linear-gradient(90deg, red 10%, #ff00a6 50%, #00a6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.policyContainer .blogContent .wrapper {
  display: flex;
  width: 100%;
}
.policyContainer .blogContent .content {
  display: flex;
  width: calc(100% - 200px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.policyContainer .blogContent .buttonControl {
  display: flex;
  width: 200px;
  align-items: center;
}
.policyContainer .blogContent .buttonControl .btnLink {
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  margin-right: 24px;
}
.policyContainer .blogContent .buttonControl .btnLink .icons {
  display: flex;
  width: 12px;
  margin-right: 4px;
}
.policyContainer .blogContent .buttonControl .btnLink .icons img {
  width: 100%;
}
.policyContainer .blogContent .buttonControl .btnLink span {
  font-size: 14px;
  font-family: "better_togethermedium" !important;
}
.policyContainer .blogContent .buttonControl .btnLink:hover {
  border-color: #ff0000;
}
.policyContainer .blogContent .buttonControl .btnLink:hover span {
  background: linear-gradient(90deg, red 10%, #ff00a6 50%, #00a6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.policyContainer .blogContent .buttonControl .btnLink:last-child {
  margin-right: 0;
}

.livingContainer {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.livingContainer .colsLiving {
  display: flex;
  width: calc(33.33333% - 2.4%);
  background: #fafafd;
  border-radius: 16px;
  overflow: hidden;
  flex-direction: column;
  margin-right: 40px;
  align-self: flex-start;
}
.livingContainer .colsLiving .listLiving {
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  flex-direction: column;
}
.livingContainer .colsLiving .listLiving li {
  display: flex;
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
  padding: 12px 24px;
  border-bottom: 1px dashed #cccccc;
}
.livingContainer .colsLiving .listLiving li a {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  font-size: 18px;
}
.livingContainer .colsLiving .listLiving li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  width: 10px;
  height: 20px;
  background: url("../images/icons/ico-caret-right.svg") center center/100% auto no-repeat;
}
.livingContainer .colsLiving .listLiving li a:hover .icons::after {
  opacity: 0.5;
}
.livingContainer .colsLiving .listLiving li a:hover span {
  background: linear-gradient(90deg, red 10%, #ff00a6 50%, #00a6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.livingContainer .colsLiving .listLiving li:last-child {
  border-bottom: none;
}
.livingContainer .colsLiving .listLiving .icons {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.livingContainer .colsLiving .listLiving .icons img {
  position: relative;
  z-index: 1;
}
.livingContainer .colsLiving .listLiving .icons::after {
  content: "";
  position: absolute;
  border-radius: 50px;
  opacity: 0.4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(46deg, #f00 8.1%, #ff0043 21.1%, #ff00a6 40.51%, #00a6ff 72.91%);
}
.livingContainer .colsLiving .listLiving span {
  display: flex;
  max-width: calc(100% - 50px);
  padding-left: 10px;
  padding-right: 16px;
}
.livingContainer .colsLiving:last-child {
  margin-right: 0;
}

.lineSpacing {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  border-radius: 2px;
  position: relative;
}
.lineSpacing::before {
  content: "";
  position: relative;
  display: flex;
  width: 210px;
  height: 3px;
  background: var(--bgGradient);
}

.filterContainer {
  display: flex;
  width: 100%;
}
.filterContainer form {
  display: flex;
  width: 100%;
}
.filterContainer .select2-container .select2-selection--single {
  height: 60px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  position: relative;
}
.filterContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 20px;
}
.filterContainer .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
}
.filterContainer .select2-container--default .select2-selection--single {
  border-color: #d6d6d6;
  border-radius: 8px;
}
.filterContainer .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 24px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 16px;
  border: none;
  background: url("../images/icons/ico-caret-down.svg") center center/100% auto no-repeat;
}
.filterContainer .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
  border: none;
}
.filterContainer .selectCate {
  margin-right: 32px;
}
.filterContainer .selectSort .select2-container .select2-selection--single {
  padding-left: 60px;
}
.filterContainer .selectSort .select2-container .select2-selection--single::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: 16px;
  top: 16px;
  background: url("../images/icons/ico-filter.png") center center/100% auto no-repeat;
}
.filterContainer .selectCate,
.filterContainer .selectSort {
  display: flex;
  width: 100%;
  max-width: 240px;
}
.filterContainer .searchBox {
  display: flex;
  margin-left: auto;
}
.filterContainer .searchBox .form-control {
  border: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  width: 300px;
  height: 60px;
  display: flex;
  position: relative;
  font-size: 20px;
  color: #000000;
  top: 0;
  background-position: 0 center;
  padding-left: 28px;
}
.filterContainer .searchBox .form-control::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #000000;
}
.filterContainer .searchBox .form-control::placeholder {
  color: #000000;
}

.select2-search--dropdown {
  display: none;
}

@media only screen and (min-width: 768px) {
  .scReport .container > header {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1200px) {
  .scBannerHero .container {
    padding: 0 27px;
  }

  .navHeader .navContainer .navMenu .icons {
    width: 22px;
  }

  .navHeader .navContainer .navMenu span {
    font-size: 16px;
    white-space: nowrap;
  }

  .navHeader .navContainer ul li::after {
    height: 24px;
  }

  .scBannerHero {
    margin-top: 0;
  }

  .template-2 .templateWrapper .contentBox .imageBox {
    width: 540px;
  }

  .scBannerHero picture img {
    height: auto;
    aspect-ratio: auto;
  }

  .navHeader .navContainer {
    position: relative;
    width: auto;
    margin-right: -27px;
  }
  .navHeader .navContainer::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: white;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
  }

  .navHeader .navContainer ul li:last-child {
    margin-right: 20px;
  }

  .navHeader .navContainer ul::-webkit-scrollbar {
    display: none;
  }

  .navHeader .navContainer ul {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .livingContainer .colsLiving {
    width: calc(33.33333% - 3%);
  }

  .filterContainer .select2-container .select2-selection--single {
    height: 42px;
  }

  .filterContainer .searchBox .form-control {
    height: 42px;
    font-size: 18px;
  }

  .filterContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 18px;
  }

  .filterContainer .selectSort .select2-container .select2-selection--single::before {
    width: 24px;
    height: 24px;
    top: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .template-2 .templateWrapper .contentBox .imageBox {
    left: 0;
    right: auto;
    position: relative;
  }

  .template-2.flip-right .templateWrapper .contentBox .imageBox {
    height: auto;
    position: relative;
  }
  .template-2.flip-right .templateWrapper .contentBox .imageBox .image {
    position: relative;
  }

  .template-2.flip-right .templateWrapper .contentBox .imageBox {
    margin-bottom: 0;
  }

  .template-2 .templateWrapper .contentBox .textBox {
    margin-top: -30px;
  }

  .template-2 .templateWrapper .contentBox .imageBox {
    height: 470px;
  }

  .template-2 .templateWrapper {
    padding: 0;
  }

  .template-2 .templateWrapper .contentBox {
    flex-direction: column-reverse;
  }

  .template-2 .templateWrapper .contentBox .textBox .icoQuote::before,
  .template-2 .templateWrapper .contentBox .textBox .icoQuote::after {
    width: 30px;
    height: 30px;
  }

  .cardReport .innerWrapper {
    width: 240px;
  }

  .cardReport .innerWrapper .thumb {
    height: 335px;
  }

  .relateArticle .boxRelateArticle .linkThumbnail {
    height: 145px;
  }

  .template-2.flip-right .templateWrapper .contentBox .imageBox {
    width: 540px;
    margin-left: auto;
  }

  .template-content .contentBox {
    flex-direction: column;
  }

  .template-content .textBox {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  .scDetail .quoteBox .wrapper {
    max-width: calc(100% - 80px);
  }

  .scDetail .quoteBox .wrapper::before,
  .scDetail .quoteBox .wrapper::after {
    width: 30px;
    height: 30px;
  }

  .scDetail .quoteBox .wrapper::before {
    left: -40px;
  }

  .scDetail .quoteBox .wrapper::after {
    right: -40px;
  }

  .template-content.flip-right .contentBox {
    flex-direction: column;
  }

  .textLink {
    text-decoration: underline;
  }

  .livingContainer .colsLiving {
    margin-right: 15px;
    width: calc(33.33333% - 10px);
  }

  .livingContainer .colsLiving .listLiving .icons {
    width: 40px;
    height: 40px;
  }

  .filterContainer .selectCate {
    margin-right: 12px;
  }

  .filterContainer .selectSort .select2-container .select2-selection--single {
    padding-left: 50px;
  }

  .filterContainer .searchBox .form-control {
    width: 200px;
  }

  .filterContainer .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
  }

  .filterContainer .selectCate,
  .filterContainer .selectSort {
    max-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .template-2 .templateWrapper .contentBox .imageBox {
    height: 300px;
  }

  .template-2 .templateWrapper .contentBox .imageBox .image {
    height: 300px;
  }

  .ani-gradient .ani-color {
    background: var(--bgGradient);
    background-size: 100% auto;
    background-position: 0 0 !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ani-gradient .ani-black {
    background: #000000;
    background-size: 100% auto;
    background-position: 0 0 !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .firstSection.flip-right .templateWrapper .contentBox .imageBox,
  .firstSection.flip-right .templateWrapper .contentBox .imageBox .image {
    height: auto;
  }

  .template-2 .templateWrapper .contentBox .textBox {
    margin-top: -30px;
  }

  .template-2.flip-right .templateWrapper .contentBox .imageBox {
    margin-bottom: 0;
  }

  .template-2 .templateWrapper .contentBox .imageBox {
    margin-right: 20px;
    width: calc(100% - 20px);
  }

  .template-2.flip-right .templateWrapper .contentBox .imageBox {
    margin-left: 20px;
    width: calc(100% - 20px);
  }

  .template-2 .templateWrapper .contentBox .textBox .icoQuote {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .scNews .blogContent .content {
    width: calc(100% - 94px);
    padding-right: 8px;
  }
  .scNews .blogContent .content .title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0 !important;
  }

  .scNews .blogContent .images {
    width: 94px;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    height: 64px;
    border: 1px solid #fafafd;
  }

  .scNews .blogContent {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .scSuggestions .formTheme .form-control {
    height: 45px;
    font-size: 16px;
  }

  .scBannerHero .container {
    padding: 0;
  }

  .bannerHero .bannerMain {
    border-radius: 0;
  }

  .bannerHero .heroCarousel .owl-dots .owl-dot,
  .heroCarousel .owl-dots .owl-dot.active span {
    height: 6px;
  }

  .heroCarousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
  }

  .scBannerHero .container {
    max-width: 100%;
  }

  .bannerHero .heroCarousel .owl-dots .owl-dot {
    width: 6px;
  }

  .scContent .buttonControl .btnMore {
    font-size: 16px;
    padding: 0 24px;
  }

  .reportSlider {
    width: auto;
    margin-right: -27px;
  }

  .bannerHero .heroCarousel .owl-dots .owl-dot.active,
  .heroCarousel .owl-dots .owl-dot.active span,
  .reportSlider .owl-dots .owl-dot.active {
    width: 20px;
  }

  .reportSlider .owl-dots .owl-dot.active span {
    width: 20px;
    height: 6px;
  }

  .reportSlider .owl-dots .owl-dot,
  .reportSlider .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
  }

  .relateArticle .boxRelateArticle .linkThumbnail {
    height: 100px;
  }

  .relateArticle > [class*="col-"] {
    padding-left: 27px;
    padding-right: 27px;
  }

  .scBannerHero .owl-carousel .owl-stage-outer {
    border-radius: 0;
  }

  .footer-container .row {
    margin: 0 -16px;
  }
  .footer-container .row > [class*="col-"] {
    padding: 0 16px;
  }

  .boxRelateArticle .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 35px;
    padding-top: 2px;
    height: auto;
  }

  .template-content .textBox .icoQuote {
    padding: 35px 0;
  }

  .template-content .textBox .icoQuote::before,
  .template-content .textBox .icoQuote::after {
    width: 30px;
    height: 30px;
  }

  .template-content .imageBox {
    width: 100%;
    max-width: 400px;
    height: 400px;
  }
  .template-content .imageBox .image {
    position: relative;
  }

  .scStat .statContainer {
    flex-direction: column;
  }

  .scStat .statContainer .statBox {
    width: 100%;
    padding: 16px 0;
  }

  .scStat .statContainer .statBox::after {
    width: 100%;
    height: 3px;
    background: var(--bgGradient);
    bottom: 0;
    top: auto;
  }

  .downloadBox .wrapper {
    flex-direction: column;
  }

  .downloadBox .wrapper .content,
  .downloadBox .wrapper .buttonControl {
    width: 100%;
    justify-content: center;
  }

  .downloadBox .wrapper .content .icons {
    width: 40px;
    height: 40px;
  }
  .downloadBox .wrapper .content p {
    width: calc(100% - 40px);
  }

  .downloadBox .wrapper .buttonControl {
    display: flex;
    margin-top: 32px;
  }

  .btnPrimary {
    font-size: 16px;
  }

  .scCover .container {
    padding: 0;
  }
  .scCover .container .mainCover {
    border-radius: 0;
  }

  .template-content .textBox .buttonControl {
    margin-top: 12px;
  }

  .scBannerHero .bannerHero.withCaption .bannerMain {
    border-radius: 0;
  }

  .scBannerHero .bannerHero.withCaption .topicBox {
    padding: 0 12px;
  }

  .livingContainer .colsLiving {
    width: 100%;
    margin: 0 auto 20px;
    max-width: 340px;
  }

  .scPolicy .container > header {
    flex-direction: column;
    align-items: center;
  }

  .scBannerHero .bannerHero.withCaption {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .relateArticle .boxRelateArticle .linkThumbnail {
    height: 215px;
  }

  .policyContainer .blogContent .wrapper {
    flex-direction: column;
  }

  .policyContainer .blogContent .content,
  .policyContainer .blogContent .buttonControl {
    width: 100%;
  }

  .policyContainer .blogContent .buttonControl {
    margin-top: 8px;
  }

  .policyContainer .blogContent {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .filterContainer form {
    flex-wrap: wrap;
  }

  .filterContainer .selectCate,
  .filterContainer .selectSort {
    width: 280px;
    max-width: 100%;
    margin: 0 auto 8px;
  }

  .filterContainer .searchBox {
    width: 280px;
    max-width: 100%;
    margin: 0 auto 24px;
  }
  .filterContainer .searchBox .form-control {
    width: 100%;
    background: url(../images/icons/icoSearch.svg) 0 center/20px auto no-repeat;
  }
}
