@font-face {
  font-family: "SFPro-Thin";
  font-weight: 400;
  src: url("fonts/SanFranciscoProDisplay/SF-Pro-Display-Thin.woff");
}
@font-face {
  font-family: "SFPro-Regular";
  src: url("fonts/SanFranciscoProDisplay/SF-Pro-Display-Regular.otf") format("opentype");
}
@font-face {
  font-family: "SFPro-Medium";
  src: url("fonts/SanFranciscoProDisplay/SF-Pro-Display-Medium.otf") format("opentype");
}
@font-face {
  font-family: "SFPro-Bold";
  src: url("fonts/SanFranciscoProDisplay/SF-Pro-Display-Bold.otf") format("opentype");
}
@font-face {
  font-family: "SFPro-Heavy";
  src: url("fonts/SanFranciscoProDisplay/SF-Pro-Display-Heavy.otf") format("opentype");
}
html {
  overflow-x: hidden;
}

body {
  background-color: #101010;
  font-size: 0.9rem;
  line-height: 1.3rem;
  font-family: "SFPro-Regular";
  font-weight: 400;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  background-image: url("./images/background.jpg?v1.0.0");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
body a, body button {
  text-decoration: none;
  transition: all 0.5s ease-in-out !important;
}
body h1, body h2, body h3, body h4, body h5, body h6, body strong, body b {
  font-family: "SFPro-Bold";
}
body img {
  -o-object-fit: cover;
     object-fit: cover;
}
body section {
  overflow-x: hidden;
}

.btn {
  cursor: pointer;
}
.btn span {
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  border: none;
  transform: scale(1.05);
}
.btn-primary span {
  color: #ffffff;
}
.btn-primary::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  border-radius: 5px;
  animation-name: pulse;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.btn-primary:hover {
  box-shadow: 0px 0px 33px 0px #F6CB45;
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-outline-white {
  background: transparent;
  border: 0.5px solid #ffffff;
}
.btn-outline-white span {
  color: #ffffff;
}
.btn-outline-white:hover {
  box-shadow: 0px 0px 33px 0px #F6CB45;
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  border-color: transparent;
  transform: scale(1.05);
}

nav.navbar {
  height: 60px;
  background: linear-gradient(90deg, #040832 0%, #0524DD 35%, #0524DD 65%, #040832 100%);
  top: 30px;
}
nav.navbar .navbar-brand {
  width: 180px;
  display: flex;
  left: -180px;
}
nav.navbar .navbar-brand img {
  top: 10px;
  width: 100%;
}
nav.navbar .navbar-toggler {
  right: 0;
  top: 37px;
  border: none;
  box-shadow: none;
  outline: none;
}
nav.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("./images/open.png?v1.0.0");
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
nav.navbar .navbar-logo {
  top: 40px;
}
nav.navbar .navbar-logo img {
  height: 40px;
}
nav.navbar .navbar-collapse {
  width: calc(100% - 150px);
}
nav.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-size: 1.2rem;
}
nav.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
}
nav.navbar .navbar-collapse .navbar-nav.language a {
  border-radius: 6px;
  border: 1px solid #F47920;
}
nav.navbar .navbar-collapse .navbar-nav.language a span {
  font-size: 1.2rem;
  color: #ffffff;
}
nav.navbar .navbar-collapse .navbar-nav.language a.active {
  background: #F47920;
}
nav.matchbar .nav-link {
  border-radius: 8px;
}
nav.matchbar .nav-link span {
  color: #ffffff;
  font-size: 1.2rem;
}
@media screen and (max-width: 575px) {
  nav.matchbar .nav-link span {
    font-size: 1rem;
  }
}
nav.matchbar .nav-link.active {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  border: none;
  transform: scale(1.05);
}
nav.matchbar .nav-link.active span {
  color: #ffffff;
}
nav.matchbar .nav-link:hover {
  box-shadow: 0px 0px 33px 0px #F6CB45;
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  border-color: transparent;
  transform: scale(1.05);
}
nav.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.4s;
}
nav.mobile-nav img.flag {
  width: 150px;
}
nav.mobile-nav .navbar-nav .nav-item .nav-link.active {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  border: none;
  border-radius: 5px;
}
nav.mobile-nav .language {
  bottom: 45px;
  left: 0;
}
nav.mobile-nav .language a {
  border-radius: 6px;
  border: 1px solid #F47920;
}
nav.mobile-nav .language a span {
  font-size: 1rem;
  color: #ffffff;
}
nav.mobile-nav .language a.active {
  background: #F47920;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .navbar-toggler .navbar-toggler-icon {
  background-image: url(./images/close.png?v1.0.0) !important;
}

.page-landing {
  padding-top: 90px;
}
.page-landing .video-container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .page-landing .video-container {
    max-height: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 575px) {
  .page-landing .video-container {
    max-height: 200px;
    height: 200px;
  }
}
.page-landing .video-container iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-landing .section-1 {
  min-height: 70vh;
}
@media screen and (max-width: 575px) {
  .page-landing .section-1 {
    min-height: 50vh;
  }
}
.page-landing .section-1 h1 {
  animation: bounce 0.3s ease infinite alternate;
}
@keyframes bounce {
  to {
    transform: translateY(-5px);
  }
}
.page-landing .section-1 .video-container {
  height: 560px;
}
.page-landing .section-2 {
  background: linear-gradient(90deg, #040832 0%, #0524DD 35%, #0524DD 65%, #040832 100%);
}
.page-landing .section-2 .swiper .swiper-wrapper .swiper-slide {
  max-width: 70%;
}
.page-landing .section-2 .step {
  border-radius: 50px;
  height: 170px;
  min-height: 170px;
}
.page-landing .section-2 .step.badge {
  background: linear-gradient(270deg, #2A2A2C 0%, #101011 100%);
}
.page-landing .section-2 .step.shuttlecock {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
}
.page-landing .section-2 .step.shuttlecock .icon {
  animation-delay: 0.2s;
}
.page-landing .section-2 .step.licence {
  background: linear-gradient(270deg, #FAFAFA 0%, #EEEEEE 100%);
}
.page-landing .section-2 .step.licence .title,
.page-landing .section-2 .step.licence .desc {
  color: #212529;
}
.page-landing .section-2 .step.licence .icon {
  animation-delay: 0.4s;
}
.page-landing .section-2 .step .icon {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  top: -45px;
  animation: float 3s ease-out infinite;
}
.page-landing .section-2 .step .title {
  font-size: 1.2rem;
  line-height: 2rem;
  top: -15px;
}
.page-landing .section-2 .step .desc {
  top: -15px;
}
@keyframes float {
  50% {
    transform: translate(0, 20px);
  }
}
.page-landing .section-2 .discover {
  background: #ffffff;
  color: #212529;
  border-radius: 15px;
}
.page-landing .section-2 .discover img {
  width: 120px;
  animation: leaves 3s ease-in-out infinite;
}
@media screen and (max-width: 575px) {
  .page-landing .section-2 .discover img {
    width: 90px;
  }
}
.page-landing .section-2 .discover .video {
  height: 320px;
}
@media screen and (max-width: 575px) {
  .page-landing .section-2 .discover .video {
    height: 200px;
  }
}
@keyframes leaves {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.page-landing .section-2 .discover h5 {
  font-family: "SFPro-Heavy";
  line-height: 1.4rem;
}
.page-landing .section-2 .discover h6 {
  font-family: "SFPro-Regular";
}
.page-landing .section-2 .discover .video {
  border-radius: 15px;
  background: #151515;
}
.page-landing .section-3 h2 {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .page-landing .section-3 h2 {
    font-size: 1.4rem;
  }
}
@keyframes bg {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 10000px;
  }
}

.page-match {
  padding-top: 60px;
}
.page-match .section-1 {
  min-height: 70vh;
}
.page-match .section-1 .predict-rate {
  background-image: url("./images/cover.png?v1.0.0");
  background-position: center;
  background-repeat: no-repeat;
  max-height: 200px;
}
@media screen and (max-width: 768px) {
  .page-match .section-1 .predict-rate {
    height: 260px;
    max-height: unset;
    background-size: cover;
    border-radius: 15px;
  }
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .predict-rate {
    height: 220px;
  }
}
.page-match .section-1 .predict-rate .slogan h5 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .page-match .section-1 .predict-rate .slogan h5 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .predict-rate .slogan h5 {
    font-size: 1.4rem;
  }
}
.page-match .section-1 .predict-rate .slogan span {
  font-size: 3.4rem;
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .predict-rate .slogan span {
    font-size: 2.8rem;
  }
}
.page-match .section-1 .predict-rate .slogan span sup {
  font-size: 1.4rem;
}
.page-match .section-1 .predict-rate .slogan span strong {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg 60s linear infinite;
}
.page-match .section-1 .predict-rate .jackywu img.title {
  right: -55px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-match .section-1 .predict-rate .jackywu img.title {
    width: 150px;
    bottom: auto;
    top: 70px;
  }
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .predict-rate .jackywu img.title {
    position: absolute !important;
    top: unset;
    bottom: 15px;
    right: 100px;
    width: 130px;
  }
}
.page-match .section-1 .predict-rate .jackywu img.avatar {
  animation: shake 3s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .page-match .section-1 .predict-rate .jackywu img.avatar {
    width: 160px;
  }
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .predict-rate .jackywu img.avatar {
    width: 140px;
    margin-left: auto;
  }
}
@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-5px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(5px, 0, 0);
  }
}
.page-match .section-1 .match-table .accordion .accordion-item {
  border: none;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-header .accordion-button {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  color: #ffffff;
  box-shadow: none;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("./images/plus.png?v1.0.0");
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("./images/minus.png?v1.0.0");
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .col-1 {
  flex: 0 0 auto;
  width: 5%;
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .match-table .accordion .accordion-item .accordion-body .col-1 {
    flex: 0 0 auto;
    width: 7%;
  }
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .head {
  background: #151515;
  color: #ffffff;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .match-table .accordion .accordion-item .accordion-body .head {
    font-size: 0.8rem;
  }
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction {
  font-size: 0.8rem;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction > div {
  border-bottom: 1px solid #e1e1e1;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .badge.badge-success {
  color: #fff;
  background-color: #0524DD;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .badge.badge-primary {
  background-color: #F47920;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .badge.badge-secondary {
  background-color: #040832;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .score-left,
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .score-right {
  width: 45%;
  font-size: 15px;
}
@media screen and (max-width: 575px) {
  .page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .score-left,
  .page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .score-right {
    font-size: 0.9rem;
  }
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .score-left img,
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .score-right img {
  margin: 0 5px;
  max-height: 32px;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .vs {
  background: #fefefe;
  border: 1px solid #e1e1e1;
  display: inline-block;
  line-height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  color: #ff4c00;
  font-size: 11px;
  margin: 10px 0 11px;
}
.page-match .section-1 .match-table .accordion .accordion-item .accordion-body .prediction .blur-text {
  filter: blur(3px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .page-match .section-1 .match-table .accordion .accordion-item .accordion-body .time {
    flex: 0 0 auto;
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .page-match .section-1 .match-table .accordion .accordion-item .accordion-body .match {
    flex: 0 0 auto;
    width: 80%;
  }
}

footer {
  background: #0524DD;
}
footer .about img {
  width: 100px;
}
footer .about img.logo-text {
  width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer h6 {
  color: #F47920;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  footer h6 {
    font-size: 1.2rem;
  }
}
footer .access a span {
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "SFPro-Thin";
}
@media screen and (max-width: 768px) {
  footer .access a span {
    font-size: 1rem;
  }
}
footer .sponsor .d-flex img {
  height: 30px;
}
footer .copyright {
  font-size: 0.8rem;
}
footer .link a span {
  color: #ffffff;
}
footer .link a:hover span {
  color: #F47920;
}
footer hr {
  border-color: #ffffff;
}

@media screen and (max-width: 575px) {
  html[lang=cn] .floating-banner {
    bottom: -510px;
  }
}

.floating-banner {
  position: fixed;
  top: 15%;
  right: -290px;
  z-index: 1000 !important;
  min-height: 150px;
  transition: all 0.5s ease-in-out !important;
  animation: float 3s ease-out infinite;
}
@media screen and (max-width: 575px) {
  .floating-banner {
    top: unset;
    bottom: -540px;
    right: unset;
    left: 0;
    animation: unset;
  }
}
.floating-banner.slideLeft {
  right: 0;
}
@media screen and (max-width: 575px) {
  .floating-banner.slideLeft {
    bottom: 0 !important;
    right: unset;
  }
}
.floating-banner.slideLeft .floating-banner--title-wrapper {
  border-bottom-right-radius: 0 !important;
}
.floating-banner .floating-banner--title-wrapper {
  position: relative;
  display: block;
  width: 52px;
  height: 150px;
  float: left;
  white-space: nowrap;
  cursor: default;
  background: #F47920;
  border-radius: 25px;
  border-top-right-radius: 0;
}
@media screen and (max-width: 575px) {
  .floating-banner .floating-banner--title-wrapper {
    height: 52px;
    width: 150px;
    left: calc(50% - 75px);
    right: calc(50% - 75px);
    border-radius: 15px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.floating-banner .floating-banner--title-wrapper:hover {
  box-shadow: 0px 0px 33px 0px #F6CB45;
}
.floating-banner .floating-banner--title-wrapper .floating-banner--icon {
  position: absolute;
  z-index: 2;
  display: block;
  width: 52px;
  height: 80px;
  line-height: 80px;
  margin: auto;
  color: #fff;
  text-align: center;
  clear: both;
}
.floating-banner .floating-banner--title-wrapper .floating-banner--title {
  transform: rotate(270deg);
  transform-origin: right top;
  margin-right: 52px;
  height: 54px;
  line-height: 52px;
  padding: 0 23px 0 20px;
  float: right;
  border-radius: 8px 8px 0 8px;
  letter-spacing: 2px;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .floating-banner .floating-banner--title-wrapper .floating-banner--title {
    transform: rotate(0deg);
    margin-right: 0;
  }
}
.floating-banner .floating-banner--items {
  display: block;
  width: 290px;
  height: 100%;
  min-height: 100%;
  float: left;
  padding: 0;
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
}
@media screen and (max-width: 575px) {
  .floating-banner .floating-banner--items {
    left: calc(50% - 145px);
    position: relative;
  }
}
.floating-banner .floating-banner--items .title label {
  text-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3019607843);
  font-size: 0.8rem;
}
.floating-banner .floating-banner--items .desc {
  background: #302F2F;
}
.floating-banner .floating-banner--items .desc h6 {
  font-size: 0.8rem;
}
.floating-banner .floating-banner--items .cta {
  background: #151515;
}
.floating-banner .floating-banner--items .cta h6 {
  font-size: 0.8rem;
}
.floating-banner .floating-banner--items .tnc {
  font-size: 0.7rem;
}

.marquee {
  height: 30px;
  overflow: hidden;
  top: 0;
  z-index: 1030;
  background: #F47920;
}
.marquee div {
  display: flex;
  width: 200%;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee 15s linear infinite;
  top: 5px;
}
.marquee div span {
  float: left;
  width: 50%;
}
@media screen and (max-width: 575px) {
  .marquee div span {
    width: 120%;
  }
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

.swal2-container .swal2-icon {
  border: none;
}
.swal2-container .swal2-confirm {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  width: 120px;
}

#popModal .modal-content {
  background: transparent;
}

#floatingIcons .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  z-index: 1000;
  animation: bot-to-top 2s ease-out;
}
@media screen and (max-width: 575px) {
  #floatingIcons .float {
    right: 20px;
    bottom: 20px;
  }
}
#floatingIcons ul {
  position: fixed;
  right: 40px;
  padding-bottom: 20px;
  bottom: 80px;
  z-index: 100;
}
@media screen and (max-width: 575px) {
  #floatingIcons ul {
    right: 20px;
    bottom: 60px;
  }
}
@media screen and (min-width: 560px) {
  #floatingIcons ul:hover {
    visibility: visible !important;
    opacity: 1 !important;
  }
}
#floatingIcons ul li {
  list-style: none;
  margin-bottom: 10px;
}
#floatingIcons ul li:hover span {
  width: 215px;
  padding-left: 30px;
  padding-right: 10px;
  opacity: 1;
}
@media screen and (max-width: 575px) {
  #floatingIcons ul li:hover span {
    opacity: 0;
  }
}
#floatingIcons ul li a {
  background: linear-gradient(270deg, #FBBA0B 0%, #F47920 100%);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  width: 60px;
  height: 60px;
  display: block;
}
#floatingIcons ul li a:hover {
  box-shadow: 0px 0px 33px 0px #F6CB45;
  transform: scale(1.1);
}
#floatingIcons ul li a:hover i {
  animation: flipInX 5s linear infinite;
}
#floatingIcons ul li a span {
  display: inline-block;
  padding: 0;
  color: #fff;
  border-radius: 50px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 0;
  overflow: hidden;
  transition: all 1s;
  background-color: #FF6A08;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  z-index: -1;
  padding-right: 60px !important;
}
#floatingIcons .my-float {
  font-size: 24px;
  margin-top: 18px;
}
#floatingIcons a#menu-share.active ul {
  visibility: visible;
}
#floatingIcons a#menu-share + ul {
  visibility: hidden;
}
#floatingIcons a#menu-share + ul {
  visibility: hidden;
}
#floatingIcons a#menu-share:hover + ul {
  visibility: visible;
  animation: scale-in 0.5s;
}
#floatingIcons a#menu-share.active + ul {
  visibility: visible;
}
#floatingIcons a#menu-share i {
  animation: rotate-in 0.5s;
}
#floatingIcons a#menu-share:hover > i {
  animation: rotate-out 0.5s;
}
@keyframes bot-to-top {
  0% {
    bottom: -40px;
  }
  50% {
    bottom: 40px;
  }
}
@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotate-in {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-out {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  [data-aos] {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
}/*# sourceMappingURL=style.css.map */