@keyframes Uptpdown {
  from {
    top: -0.5rem;
  }
  25% {
    top: 0;
  }
  50% {
    top: 0.5rem;
  }
  75% {
    top: 0;
  }
  100% {
    top: -0.5rem;
  }
}
@keyframes scale-in {
  from {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.4, 1.4);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes scale-in2 {
  from {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.6, 1.6);
    opacity: 0.15;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
:root {
  --mainColor: #EA0029;
  --blackColor: #151515;
  --whiteColor: #FFFFFF;
  --borderColor: #DDDDDD;
}

@font-face {
  font-family: "FS-PFBeauSansProBlack";
  src: url("../fonts/FS PFBEAUSANSPRO-BLACK.TTF");
}
@font-face {
  font-family: "FS-PFBeauSansProBold";
  src: url("../fonts/FS PFBEAUSANSPRO-BOLD.TTF");
}
@font-face {
  font-family: "FS-PFBeauSansProSemibold";
  src: url("../fonts/FS PFBEAUSANSPRO-SEMIBOLD.TTF");
}
@font-face {
  font-family: "FS-PFBeauSansProRegular";
  src: url("../fonts/FS PFBEAUSANSPRO-REGULAR.TTF");
}
@font-face {
  font-family: "FS-PFBeauSansProLight";
  src: url("../fonts/FS PFBEAUSANSPRO-LIGHT.TTF");
}
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "FS-PFBeauSansProRegular";
  font-size: 1rem;
  box-sizing: border-box;
  color: var(--blackColor);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

button, input {
  outline: none;
  cursor: pointer;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-family: "FS-PFBeauSansProSemiBold";
}

.container-fluid {
  max-width: 100%;
  width: 100%;
  padding: 0 2.5rem;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

button {
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 12px;
  border-bottom-left-radius: 0;
}

.tabContent {
  display: none;
}
.tabContent.show {
  display: block;
}

.collapseVT {
  display: block;
}
.collapseVT .contentCollapse {
  display: none;
}
.collapseVT.active .contentCollapse {
  display: block;
}

.btnMain {
  color: var(--mainColor);
  background: var(--whiteColor);
  font-weight: bold;
  font-size: 1rem;
  border-radius: 1rem;
  border-bottom-left-radius: 0;
}
.btnMain.btnAdd {
  background: var(--mainColor);
  color: var(--whiteColor);
}
@media (max-width: 1025px) {
  .btnMain {
    font-size: 0.825rem;
    padding: 0.5rem 1rem;
  }
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem 0;
  transition: all 300ms;
}
@media (max-width: 1600px) {
  header {
    padding: 1rem 0;
  }
}
header .mainMenu {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .mainMenu ul {
  display: flex;
  align-content: center;
  gap: 2rem;
}
header .mainMenu ul li {
  position: relative;
}
header .mainMenu ul li a {
  font-size: 1.125rem;
  color: var(--whiteColor);
}
header .mainMenu ul li::after {
  height: 1px;
  content: "";
  background: var(--whiteColor);
  position: absolute;
  left: calc(50% - 1.25rem);
  top: calc(100% + 0.5rem);
  opacity: 0;
  transition: all 200ms;
  width: 0;
}
header .mainMenu ul li:hover::after, header .mainMenu ul li.active::after {
  opacity: 1;
  width: 2.5rem;
}
@media (max-width: 1600px) {
  header .mainMenu ul li a {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  header .mainMenu {
    display: none;
  }
}
header .mainCTA {
  align-items: center;
  font-size: 0.75rem;
}
header .mainCTA .btnMain {
  height: auto;
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: normal;
  border-bottom-left-radius: 0;
}
@media (max-width: 768px) {
  header .mainCTA .btnMain {
    display: none;
  }
}
header .mainCTA .menuMobilePry {
  display: none;
}
@media (max-width: 768px) {
  header .mainCTA .menuMobilePry {
    display: block;
  }
}
header.fixed {
  background: #C8002E;
  border-bottom-left-radius: 2rem;
  z-index: 22;
  padding: 1.25rem 0;
}
header.fixed .mainLogo img {
  max-height: 40px;
}

.head-slide {
  width: 100%;
  height: 100vh;
  background: url(../image/bg_banner.jpg) no-repeat center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.head-slide .textSlide {
  width: 44%;
}
@media (max-width: 768px) {
  .head-slide .textSlide {
    width: 100%;
  }
}
.head-slide .textSlide span {
  font-size: 5rem;
  font-family: "FS-PFBeauSansProBlack";
  letter-spacing: 28px;
  color: var(--mainColor);
  text-shadow: 1px 0 #FFD2D2, -1px 0 #FFD2D2, 0 1px #FFD2D2, 0 -1px #FFD2D2, 1px 1px #FFD2D2, -1px -1px #FFD2D2, 1px -1px #FFD2D2, -1px 1px #FFD2D2;
}
@media (max-width: 1600px) {
  .head-slide .textSlide span {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .head-slide .textSlide span {
    font-size: 2rem;
  }
}
.head-slide .textSlide h1 {
  font-size: 4rem;
  font-family: "FS-PFBeauSansProBold";
  color: var(--whiteColor);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
@media (max-width: 1600px) {
  .head-slide .textSlide h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .head-slide .textSlide h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .head-slide .textSlide {
    text-align: center;
  }
  .head-slide .textSlide span {
    font-family: "FS-PFBeauSansProBold";
    text-align: center;
    letter-spacing: 0;
  }
  .head-slide .textSlide h1 {
    font-family: "FS-PFBeauSansProBold";
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
}
.head-slide .imgSlide {
  width: 56%;
  text-align: center;
  position: relative;
}
.head-slide .imgSlide.desk {
  display: block;
}
.head-slide .imgSlide.desk img {
  max-height: 70vh;
  position: relative;
  animation-name: Uptpdown;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.head-slide .imgSlide.desk .startLight {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 80%;
}
.head-slide .imgSlide.desk::after {
  content: "";
  position: absolute;
  left: 5%;
  top: 100%;
  width: 100%;
  background: url(../image/bg_phone.png) no-repeat top;
  background-size: 100% auto;
  height: 200px;
}
.head-slide .imgSlide.mobile {
  display: none;
}
@media (max-width: 768px) {
  .head-slide .imgSlide {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .head-slide .imgSlide.desk {
    display: none;
  }
  .head-slide .imgSlide.mobile {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .head-slide {
    height: auto;
    padding-top: 6rem;
  }
  .head-slide .mainSlide {
    display: block !important;
  }
}

.titleH2 {
  font-size: 2.25rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media (max-width: 1025px) {
  .titleH2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .titleH2 {
    font-size: 1.125rem;
  }
}

.aboutUs {
  padding: 7.25rem 0;
}
.aboutUs .textAbout p {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .aboutUs .textAbout p {
    font-size: 0.825rem;
  }
}
.aboutUs .textAbout h4 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .aboutUs .textAbout h4 {
    font-size: 1rem;
  }
}
.aboutUs .textAbout ul {
  margin-bottom: 2.5rem;
}
.aboutUs .textAbout ul li {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .aboutUs .textAbout ul li {
    font-size: 0.825rem;
  }
  .aboutUs .textAbout ul li img {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (max-width: 767px) {
  .aboutUs .textAbout ul {
    margin-bottom: 1.5rem;
  }
}
.aboutUs .imgAbout {
  position: relative;
}
.aboutUs .imgAbout img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.aboutUs .imgAbout .circle {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border: 1px solid var(--mainColor);
  border-radius: 50%;
  top: calc((100% - 22rem) / 2);
  left: calc((100% - 22rem) / 2);
  animation-name: scale-in;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  z-index: 3;
}
.aboutUs .imgAbout .circle.circle2 {
  animation-name: scale-in2;
  animation-duration: 1200ms;
  animation-iteration-count: infinite;
  z-index: 1;
}
@media (max-width: 767px) {
  .aboutUs .imgAbout .circle {
    display: none;
  }
}
@media (max-width: 768px) {
  .aboutUs .imgAbout {
    display: none;
  }
}
@media (max-width: 768px) {
  .aboutUs {
    padding: 2.5rem 0;
  }
}

.cta-convert {
  padding: 5rem;
  border-radius: 1.5rem;
  text-align: center;
  background: url(../image/bg_banner.jpg) no-repeat center #C8002E;
  background-size: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-convert {
    padding: 2.5rem;
  }
}
.cta-convert h2 {
  color: var(--whiteColor);
}
.cta-convert .btnGroup {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .cta-convert .btnGroup {
    display: block;
  }
}
.cta-convert .btnGroup .btnMain {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .cta-convert .btnGroup .btnMain {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 767px) {
  .cta-convert .btnGroup .btnMain {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.installation-guide {
  padding: 6.25rem 0;
}
.installation-guide .container-mg-right {
  width: 100%;
  padding-right: calc((100vw - 1140px) / 2);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.installation-guide .container-mg-left {
  width: 100%;
  padding-left: calc((100vw - 1140px) / 2);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.installation-guide .textInstall {
  width: 40%;
  padding-top: 2rem;
}
.installation-guide .textInstall .tabMenu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.installation-guide .textInstall .tabMenu li {
  padding: 0.5rem 1rem;
  border: 1px solid var(--borderColor);
  cursor: pointer;
  border-radius: 0.75rem;
  border-bottom-left-radius: 0;
  font-weight: 600;
}
.installation-guide .textInstall .tabMenu li.active {
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
.installation-guide .textInstall .tabImtems {
  display: none;
}
.installation-guide .textInstall .tabImtems.show {
  display: block;
}
.installation-guide .textInstall .listContent {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .installation-guide .textInstall .listContent {
    margin-bottom: 0;
  }
}
.installation-guide .textInstall .listContent li {
  margin-bottom: 2rem;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  position: relative;
}
.installation-guide .textInstall .listContent li::after {
  width: 1px;
  content: "";
  position: absolute;
  height: 24px;
  background: var(--mainColor);
  left: 1.25rem;
  top: calc(100% + 0.25rem);
}
.installation-guide .textInstall .listContent li:last-child::after {
  display: none;
  margin-bottom: 0;
}
.installation-guide .textInstall .listContent li span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FBCFD7;
  background: var(--mainColor);
  color: var(--whiteColor);
  font-family: "FS-PFBeauSansProBlack";
  transition: all 200ms;
}
.installation-guide .textInstall .listContent li p {
  flex: 1;
  min-width: 0;
  margin: 0 !important;
  font-weight: 600;
  transition: all 200ms;
}
.installation-guide .textInstall .listContent li:hover span {
  transform: scale(1.1, 1.1);
}
.installation-guide .textInstall .listContent li:hover p {
  color: var(--mainColor);
}
.installation-guide .textInstall .listContent li.nonLineMobile::after {
  display: none;
}
@media (max-width: 768px) {
  .installation-guide .textInstall .listContent li::after {
    left: 1rem;
  }
  .installation-guide .textInstall .listContent li span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1rem;
  }
  .installation-guide .textInstall .listContent li p {
    font-size: 0.825rem;
  }
  .installation-guide .textInstall .listContent li.nonLineMobile::after {
    display: block;
  }
}
.installation-guide .imgInstall {
  width: 60%;
  overflow: hidden;
  background: url(../image/bg_imgS.png) no-repeat center left;
  background-size: auto 80%;
}
.installation-guide .imgInstall .imgList {
  width: 100%;
  display: none;
  align-items: center;
}
.installation-guide .imgInstall .imgList.show {
  display: flex;
}
.installation-guide .imgInstall .imgList .swiper-slide {
  opacity: 0.5;
  width: 42%;
}
.installation-guide .imgInstall .imgList .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.installation-guide .imgInstall .imgList .swiper-slide.swiper-slide-next {
  opacity: 0.8;
}
.installation-guide .container-mg-right .imgInstall .imgList.show {
  flex-direction: row-reverse;
}
.installation-guide .swAndroid {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .installation-guide {
    padding: 2.5rem;
  }
  .installation-guide .container-mg-left, .installation-guide .container-mg-right {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    max-width: 540px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .installation-guide .textInstall, .installation-guide .imgInstall {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .installation-guide {
    padding: 2.5rem 0;
  }
}

.dMobile {
  display: none !important;
}
@media (max-width: 768px) {
  .dMobile {
    display: flex !important;
  }
}

.sale {
  padding: 6.25rem 0;
  background: url(../image/bg_gray.jpg) no-repeat center;
  background-size: 100% 100%;
}
.sale h2 {
  text-align: center;
}
.sale .listSale {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .sale .listSale {
    margin-top: 1.5rem;
  }
}
.sale .saleItems img {
  width: 100%;
  border-radius: 12px;
}
.sale .saleItems h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
}
.sale .saleItems h3 a {
  color: var(--blackColor);
}
.sale .saleItems a.readMore {
  font-size: 1rem;
  color: var(--mainColor);
}
.sale .saleItems a.readMore img {
  width: 24px;
}
@media (max-width: 767px) {
  .sale {
    padding: 2.5rem 0;
    background: url(../image/bg_gray.jpg) no-repeat center;
    background-size: auto 100%;
  }
}

.supportDevice {
  padding: 6.25rem 0;
  background: url(../image/bg_earth.png) no-repeat bottom right;
}
.supportDevice h2 {
  text-align: center;
}
.supportDevice .tabBrand {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.supportDevice .tabBrand li {
  width: calc((100% - 5rem) / 6);
  border: 1px solid var(--borderColor);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-radius: 0.75rem;
  border-bottom-left-radius: 0;
  height: 3.75rem;
  cursor: pointer;
}
.supportDevice .tabBrand li img {
  max-height: 1.75rem;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.supportDevice .tabBrand li.active {
  border: 1px solid var(--mainColor);
}
@media (max-width: 768px) {
  .supportDevice .tabBrand {
    gap: 0.5rem;
  }
  .supportDevice .tabBrand li {
    width: calc((100% - 1rem) / 3);
  }
}
.supportDevice .frm-searchDevice h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.supportDevice .frm-searchDevice .frm {
  width: 100%;
}
.supportDevice .frm-searchDevice input {
  padding: 0.5rem 1rem;
  width: 100%;
  border: 1px solid var(--borderColor);
  font-size: 1rem;
  font-family: "FS-PFBeauSansProRegular";
  border-radius: 0.5rem;
}
.supportDevice .tabContent {
  margin-top: 1.25rem;
}
.supportDevice .tabContent .tabDevice {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.supportDevice .tabContent .tabDevice li {
  cursor: pointer;
  font-weight: 600;
}
.supportDevice .tabContent .tabDevice li.active {
  color: var(--mainColor);
}
.supportDevice .listPro {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.supportDevice .listPro li {
  width: calc((100% - 72px) / 3);
  padding: 0.75rem 0;
  padding-right: 1.5WWWWrem;
  border-bottom: 1px dashed var(--borderColor);
  background: url(../image/list.svg) no-repeat left center;
  padding-left: 1rem;
  flex: 1;
  min-width: calc((100% - 72px) / 3);
  transition: all 200ms;
}
.supportDevice .listPro li:hover {
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 768px) {
  .supportDevice .listPro li {
    width: calc((100% - 2rem) / 2);
    min-width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 768px) {
  .supportDevice {
    padding: 2.5rem 0;
  }
}

.ads img {
  border-radius: 1rem;
}

.faqs {
  padding: 6.25rem 0;
  text-align: center;
}
.faqs h2 {
  text-align: center;
}
.faqs .listFaqs {
  margin-top: 2.5rem;
  text-align: left;
}
.faqs .listFaqs .collapseVT {
  border: 1px solid var(--borderColor);
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  padding: 1rem 0;
  transition: all 200ms;
}
.faqs .listFaqs .collapseVT .mainCollapse {
  padding: 0 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faqs .listFaqs .collapseVT .mainCollapse h4 {
  font-size: 1.25rem;
  flex: 1;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .faqs .listFaqs .collapseVT .mainCollapse h4 {
    font-size: 1rem;
  }
}
.faqs .listFaqs .collapseVT .mainCollapse span.iconCol {
  display: flex;
  width: 30px;
  height: 30px;
  background: url(../image/closeIcon.svg);
}
.faqs .listFaqs .collapseVT .contentCollapse {
  padding: 0 1.5rem;
  margin-top: 1rem;
}
.faqs .listFaqs .collapseVT .contentCollapse h4 {
  margin-top: 0.5rem;
}
.faqs .listFaqs .collapseVT .contentCollapse p {
  margin: 0;
  line-height: 140%;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .faqs .listFaqs .collapseVT .contentCollapse p {
    font-size: 1rem;
  }
}
.faqs .listFaqs .collapseVT:hover {
  border: 1px solid var(--mainColor);
}
.faqs .listFaqs .collapseVT.active {
  border: 1px solid var(--mainColor);
}
.faqs .listFaqs .collapseVT.active span.iconCol {
  display: flex;
  width: 30px;
  height: 30px;
  background: url(../image/openIcon.svg);
}
@media (max-width: 768px) {
  .faqs .listFaqs {
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .faqs {
    padding: 2.5rem 0;
  }
  .faqs h2 {
    margin-bottom: 0 !important;
  }
}
.faqs .showMore {
  margin: 0 auto;
  margin-top: 2.5rem;
  padding: 0.75rem 2.25rem;
  display: inline-block;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  background: none;
}

#forAndroid .textInstall {
  order: 2;
}
#forAndroid .imgInstall {
  order: 1;
}
@media (max-width: 767px) {
  #forAndroid {
    display: none !important;
  }
}

footer {
  border-top: 1px solid var(--mainColor);
  padding: 5rem 0;
}
footer ul {
  margin-top: 1rem;
}
footer ul li {
  margin-top: 0.75rem;
  font-size: 1.125rem;
}
footer p {
  font-size: 1rem;
  margin-top: 1rem;
}
footer .iconSocial {
  text-align: right;
}
footer .text-right p {
  font-size: 1rem;
  text-align: right;
}
@media (max-width: 768px) {
  footer .text-right p {
    text-align: left;
  }
}

#menuMobile {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../image/bg_banner.jpg) center top;
  z-index: 999;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 300ms;
}
#menuMobile .topMobileMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
#menuMobile .topMobileMenu img {
  max-height: 2.5rem;
}
#menuMobile .btnMobileMenu {
  position: fixed;
  z-index: 2;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
}
#menuMobile .mainMenu {
  width: 100%;
  height: calc(100vh - 4rem);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#menuMobile .mainMenu ul {
  text-align: center;
}
#menuMobile .mainMenu ul li {
  margin: 1.25rem 0;
}
#menuMobile .mainMenu ul li a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--whiteColor);
}
#menuMobile.showMenu {
  left: 0;
  opacity: 1;
}

.backToTop {
  position: fixed;
  z-index: 21;
  bottom: 2rem;
  right: 2rem;
}/*# sourceMappingURL=style.css.map */