<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***********************************

    This is the main style file of home page

***********************************/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto|Abril+Fatface");
/*main rules*/
body {
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}

h1, h2, h3, h4 {
  font-family: "Open Sans", sans-serif;
}

section {
  padding: 70px 0;
}
section h2 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 70px;
}

/*nav*/
@media (min-width: 992px) {
  nav {
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 17px !important;
    padding-bottom: 17px !important;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  nav a {
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    padding: 5px 20px !important;
  }
}
@media (max-width: 991px) {
  nav {
    background-color: #32353b;
  }
}
@media (max-width: 991px) {
  nav .collapse {
    display: none;
  }
}
nav button.navbar-toggler {
  margin-top: 10px;
}
nav button.navbar-toggler span.toggler {
  display: block;
  width: 50px;
  height: 2px;
  margin-bottom: 10px;
  background-color: #fff;
}
nav.action {
  top: -100px;
}

@media (min-width: 992px) {
  .mini-screen {
    display: none;
  }
}
@media (max-width: 991px) {
  .mini-screen {
    display: block;
    background-color: #32353b;
    padding: 80px 0;
    position: fixed;
    width: 400px;
    max-width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    right: -400px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mini-screen ul li a {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 17px;
    padding: 8px 0;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .mini-screen.active-mini {
    right: 0;
    top: 0;
  }
  .mini-screen .close-mark {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  .mini-screen .close-mark span {
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 0px);
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .mini-screen .close-mark span.acute {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .mini-screen .close-mark span.obtuse {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/*div side menu*/
.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  max-width: 100%;
  height: 100%;
  background-color: #32353b;
  z-index: 1031;
  padding: 50px 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.side-menu.side-active {
  left: 0;
}
.side-menu .left {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 0 10px;
  font-size: 30px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.side-menu h3 {
  color: #fff;
  text-transform: uppercase;
}
.side-menu .figure {
  padding: 20px 0;
}
.side-menu .figure img {
  display: block;
}
.side-menu ul {
  overflow: hidden;
  margin: 0;
}
.side-menu ul li {
  padding: 6px;
}
.side-menu ul li a {
  display: inline-block;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.side-menu form {
  padding: 20px 10px;
}
.side-menu form input[type="submit"] {
  padding: 8px 20px;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.side-menu form input[type="submit"]:hover {
  background-color: #fff;
}
.side-menu .icon {
  position: absolute;
  top: 100px;
  right: -50px;
  width: 50px;
  height: 50px;
  font-size: 35px;
  color: #fff;
  background-color: #32353b;
  line-height: 50px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.side-menu .icon:hover {
  background-color: #fff;
}

/*header*/
header {
  background: url(../../images/header/header.jpeg) no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  min-height: 100vh;
}
header .blur {
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
header .blur .container, header .blur .row {
  min-height: 100vh;
}
header .blur h1 {
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  -moz-text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  margin-bottom: 20px;
}
header .blur p {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  margin: 0;
  -webkit-text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  -moz-text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
}
header .blur p span {
  font-family: 'Abril Fatface', cursive;
}

/*section about*/
.about .carousel-item {
  padding: 20px;
}
.about .carousel-indicators {
  bottom: -50px;
}
.about .carousel-indicators li {
  background-color: #777;
}
.about .row {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 15px;
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.about img {
  display: block;
  border-radius: 20px;
}
.about h3 {
  text-transform: uppercase;
  font-size: 22px;
}
@media (max-width: 767px) {
  .about h3 {
    margin-top: 30px;
  }
}
.about p.f-header {
  font-size: 16px;
  color: #777;
  margin-bottom: 45px;
}
.about p.desc {
  color: #333;
  font-size: 17px;
  margin-bottom: 10px;
}

/*section players*/
.players, .teams {
  padding: 200px 0;
  position: relative;
}
.players span.triangle, .teams span.triangle {
  background-color: #fff;
  display: block;
  height: 200px;
}
.players span.triangle.top, .teams span.triangle.top {
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}
.players span.triangle.bottom, .teams span.triangle.bottom {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  margin-top: 70px;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.players h2, .teams h2 {
  color: #fff;
}
.players .slider, .teams .slider {
  margin-bottom: 70px;
}
.players .slider .item, .teams .slider .item {
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  margin-right: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.players .slider .item .item-figure, .teams .slider .item .item-figure {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 35px;
}
.players .slider .item .item-figure img, .teams .slider .item .item-figure img {
  border-radius: 20px;
  position: absolute;
  z-index: 2;
}
.players .slider .item .item-figure .background, .teams .slider .item .item-figure .background {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}
.players .slider .item ul, .teams .slider .item ul {
  margin-bottom: 35px;
  overflow: hidden;
}
.players .slider .item ul li, .teams .slider .item ul li {
  color: #777;
  font-size: 17px;
  padding: 2px;
}
.players .slider .item ul li span, .teams .slider .item ul li span {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #333;
}
.players .slider .item ul li a, .teams .slider .item ul li a {
  text-decoration: none;
}
.players .slider .item .item-icon, .teams .slider .item .item-icon {
  width: 40px;
  height: 40px;
  position: relative;
}
.players .slider .item .item-icon i, .teams .slider .item .item-icon i {
  font-size: 25px;
  color: #fff;
  position: absolute;
  z-index: 2;
  top: calc(50% - 12.5px);
  left: calc(50% - 12.5px);
}
.players .slider .item .item-icon .icon-back, .teams .slider .item .item-icon .icon-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0.7;
}
@media (min-width: 992px) {
  .players .slider .item.slick-current, .teams .slider .item.slick-current {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
    transform: scale(1) !important;
  }
  .players .slider .item.slick-active, .teams .slider .item.slick-active {
    opacity: 0.8;
    -webkit-transform: scale(0.99);
    -moz-transform: scale(0.99);
    -ms-transform: scale(0.99);
    -o-transform: scale(0.99);
    transform: scale(0.99);
  }
}
@media (max-width: 767px) {
  .players .slider .item, .teams .slider .item {
    margin-right: 10px;
  }
}
.players .slick-prev, .teams .slick-prev, .players .slick-next, .teams .slick-next {
  top: 108%;
  width: 35px;
  height: 39px;
}
.players .slick-prev:before, .teams .slick-prev:before, .players .slick-next:before, .teams .slick-next:before {
  font-size: 35px;
}
.players .slick-prev, .teams .slick-prev {
  left: calc(50% - 38px);
}
.players .slick-next, .teams .slick-next {
  right: calc(50% - 38px);
}

/*section teams*/
.teams {
  position: relative;
  padding: 200px 0 90px;
}
.teams h2 {
  color: #212529 !important;
}
.teams .player-show {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-46%);
  -moz-transform: translateY(-46%);
  -ms-transform: translateY(-46%);
  -o-transform: translateY(-46%);
  transform: translateY(-46%);
}
.teams .slider .item {
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  margin-top: 5px;
  margin-bottom: 5px;
}
.teams .slick-prev:before, .teams .slick-next:before {
  color: #000 !important;
}

/*section blogs*/
.blogs {
  padding: 0;
  background: url(../../images/blogs/blogs.jpeg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
.blogs .blur {
  padding: 200px 0 70px;
  position: relative;
  overflow: hidden;
}
.blogs .blur span.triangle-top {
  background-color: #fff;
  display: block;
  height: 200px;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}
.blogs .blur h2 {
  color: #fff;
}
.blogs .blur .blog-item {
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 45px;
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.blogs .blur .blog-item img {
  border-radius: 20px;
}
.blogs .blur .blog-item h3 {
  font-size: 22px;
  margin: 20px 0;
}
.blogs .blur .blog-item h3 a {
  text-decoration: none;
}
.blogs .blur .blog-item .date {
  line-height: 1.4;
}
.blogs .blur .blog-item span {
  display: block;
}
.blogs .blur .blog-item span.day {
  font-weight: bold;
  font-size: 22px;
  margin-top: 10px;
}
.blogs .blur .blog-item span.month {
  text-transform: uppercase;
  font-size: 15px;
}
.blogs .blur .blog-item p {
  font-size: 17px;
  color: #777;
  margin-top: 20px;
  word-wrap: break-word;
}

/*div supporter*/
div.supporter {
  padding: 70px 0;
}
div.supporter button.slick-prev, div.supporter button.slick-next {
  display: none !important;
}

/*section market*/
.market {
  background: url(../../images/market/market.jpeg) no-repeat center center;
  padding: 0;
}
.market .blur {
  padding: 70px 0 200px;
  position: relative;
}
.market .blur h2 {
  color: #fff;
}
.market .blur .item {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  margin-right: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .market .blur .item {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .market .blur .item {
    margin-right: 2px;
    margin-left: 2px;
  }
}
.market .blur .item .product-figure {
  position: relative;
}
.market .blur .item .product-figure img {
  border-radius: 20px;
  margin-bottom: 25px;
}
.market .blur .item .product-figure .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.market .blur .item .product-figure .hover:hover {
  opacity: 1;
}
.market .blur .item .product-figure .hover a {
  display: inline-block;
  font-size: 30px;
  text-transform: uppercase;
  padding: 10px 22px;
  background-color: #fff;
  text-decoration: none;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.2 ease-in-out;
  -moz-transition: all 0.2 ease-in-out;
  -o-transition: all 0.2 ease-in-out;
  transition: all 0.2 ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.market .blur .item .product-figure .hover a:hover {
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.market .blur .item h3 {
  text-transform: uppercase;
  font-size: 22px;
}
.market .blur .item p.store {
  font-size: 17px;
  color: #777;
  margin-bottom: 15px;
}
.market .blur .item p.store a {
  text-decoration: none;
}
.market .blur .item p.desc {
  margin-bottom: 15px;
  color: #333;
}
.market .blur .item span.price {
  display: inline-block;
  font-size: 40px;
  position: relative;
  margin-bottom: 15px;
}
.market .blur .item span.price i {
  font-size: 14px;
  position: absolute;
  top: 5px;
  left: -10px;
}
.market .blur .item a.option {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.market .blur .item a.option:first-of-type {
  margin-bottom: 20px;
}
.market .blur .item a.option:hover {
  background-color: #fff;
}
.market .slick-dots li button {
  margin-top: 20px;
  border-radius: 50%;
  background-color: #fff;
}
.market .slick-dots li.slick-active button {
  background-color: #777;
}
.market span.triangle {
  background-color: #fff;
  display: block;
  height: 200px;
}
.market span.triangle.bottom {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  margin-top: 70px;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

/*section sign*/
.sign .plan {
  padding: 30px;
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  margin-bottom: 45px;
}
.sign .plan h3 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
}
.sign .plan img {
  margin-top: 35px;
  border-radius: 15px;
}
.sign .plan div.description {
  margin: 55px 0;
}
.sign .plan p.desc {
  font-size: 17px;
  color: #777;
  text-transform: capitalize;
}
.sign .plan a {
  display: block;
  padding: 8px 20px;
  font-size: 17px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
}
.sign .plan a:hover {
  background-color: #fff;
}

/*footer*/
footer {
  padding: 70px 0;
  color: #fff;
  background-color: #32353b;
}
footer p {
  color: #fff;
}
footer p a {
  text-decoration: none;
}

/*overlay*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1034;
  overflow-y: scroll;
  display: none;
}
.overlay .container, .overlay .row, .overlay div[class*="col-"] {
  min-height: 100vh;
  position: relative;
}
.overlay .show {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 100%;
}
.overlay .close-mark {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.overlay .close-mark span {
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 0px);
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.overlay .close-mark span.acute {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.overlay .close-mark span.obtuse {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*div loading*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

.loading .load-content {
  position: absolute;
  width: 200px;
  height: 80px;
  top: calc(50% - 40px);
  left: calc(50% - 100px);
}

.loading .center-element {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  animation: rotate 2s linear 0.1s infinite;
}

.loading .center-element .ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}

.loading .center-element .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #000;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}

.loading .center-element .circle span {
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #000;
  left: calc(50% - 3.5px);
}

.loading .center-element .circle span.top {
  top: -4.5px;
}

.loading .center-element .circle span.bottom {
  bottom: -4.5px;
}

.loading .center-element .circle span.right {
  right: -4.5px;
  top: calc(50% - 3.5px);
  left: auto;
}

.loading .center-element .circle span.left {
  left: -4.5px;
  top: calc(50% - 3.5px);
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading p {
  text-transform: uppercase;
  letter-spacing: 9px;
  color: #999;
  margin-top: 80px;
  margin-left: 12px;
}

/*scroll top*/
.scroll-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  -weblit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: none;
}
.scroll-top i {
  font-size: 25px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  line-height: 54px;
}
.scroll-top:hover i {
  color: #fff;
}

/*# sourceMappingURL=home-style.css.map */
</pre></body></html>