@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@700&display=swap");
:root {
  --color-red: #e60001;
  --color-light: #fafafa;
  --color-purple: #731d52;
  --color-yellow: #ffa200;
  --color-white: #fff;
  --text-secondary: #555555;
  --text-secondary-act: #3a3a3a;
  --text-dark: #333333;
  --text-black: #141414;
  --border: #cfcfcf;
}

body {
  font-family: "DM Sans", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

.wrapperNav {
  border-bottom: 1px solid var(--border);
  background-color: var(--color-white);
  z-index: 1999;
}

.btn.btnService {
  background-color: var(--color-red);
  font-weight: 700;
  height: 48px;
  border-radius: 4px;
  color: var(--color-white);
  padding: 0 20px;
}

.btnShowAll {
  background-color: var(--color-white);
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-weight: 700;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  border-radius: 4px;
}

.btnShowAll:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}

.menuToggle button {
  background-color: transparent;
  border: none;
  outline: none;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menuToggle button .bar {
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: var(--color-red);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.menuToggle button .bar.menuOpen.bar-2 {
  margin-left: 15px;
}

.topNav {
  height: 82px;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1005;
}

.topNav .left {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.topNav .center {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.topNav .center .formSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--border);
  height: 48px;
  width: 337px;
  border-radius: 8px;
  padding: 4px;
}

.topNav .center .formSearch input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
}

.topNav .center .formSearch button {
  background-color: var(--color-red);
  border: none;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topNav .center .formSearch button i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  height: 100%;
}

.topNav .right {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}

.topNav .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

@media (max-width: 992px) {
  .topNav .right ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    background-color: var(--color-light);
    width: 100%;
    height: calc(100vh - 84px);
    right: 0;
    top: 84px;
    z-index: 9999;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .topNav .right ul.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.topNav .right ul li {
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topNav .right ul li a {
  margin-right: 20px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 700;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.topNav .right ul li a:hover {
  color: var(--text-black);
}

.topNav .right ul li a.btnSignIn {
  background-color: var(--color-red);
  color: var(--color-white);
  height: 48px;
  width: 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  margin-right: 0;
}

.mainMenu {
  background-color: var(--color-white);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1003;
}

.mainMenu .menus {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .mainMenu .menus {
    border-bottom: 1px solid var(--border);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mainMenu .menus .meniItem {
    font-size: 12px;
  }
}

.mainMenu .menus .meniItem {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 10px;
}

.mainMenu .menus .meniItem.active {
  color: var(--text-secondary-act);
  position: relative;
}

.mainMenu .menus .meniItem.active::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  height: 0px;
  width: 0px;
  border-bottom: solid 10px var(--color-red);
  border-left: solid 8px transparent;
  border-right: solid 8px transparent;
  position: absolute;
  bottom: -13px;
  left: 10px;
}

@media (max-width: 768px) {
  .mainMenu .menus .meniItem.active::after {
    bottom: -16px;
    left: 5px;
  }
}

.menuCategory {
  height: 40px;
  background-color: var(--color-red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 48px;
  z-index: 999;
}

.menuCategory a {
  color: var(--color-white);
  text-decoration: none;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .menuCategory {
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
    opacity: 0;
  }
  .menuCategory.show {
    height: 300px;
    opacity: 1;
    z-index: 99;
  }
  .menuCategory.show a {
    display: block;
    margin-bottom: 20px;
  }
}

.hero .text-hero {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 36px;
  display: block;
  margin-bottom: 44px;
  letter-spacing: -1px;
  color: var(--text-black);
}

.hero .count-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .count-box .count-number {
  font-weight: 700;
  font-size: 36px;
  color: var(--text-secondary);
}

.hero .count-box .count-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black);
}

.book-category {
  padding-bottom: 40px;
  background-color: var(--color-light);
  margin-top: 80px;
}

@media (min-width: 992px) {
  .book-category {
    padding: 80px 0 40px 0;
  }
}

.book-category .cardItem {
  height: 278px;
  background-color: var(--color-white);
  padding: 0 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
  color: var(--text-black);
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}

.book-category .cardItem:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.book-category .cardItem .cardImage {
  height: 143px;
}

.book-category .cardItem .cardImage img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.book-category .cardItem .cardBody {
  padding: 20px 0 0 0;
}

.book-category .cardItem .cardBody .title {
  font-weight: 700;
  font-size: 24px;
}

.book-category .cardItem .cardBody .title.active {
  color: var(--color-red);
}

.book-category .cardItem .cardBody .title .text {
  font-size: 13px;
  color: var(--text-black);
}

.popular-books {
  padding: 80px 0;
}

.why-ngompi {
  background-color: var(--color-light);
  padding: 80px 0;
}

.why-ngompi .whyBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.why-ngompi .whyBox img {
  margin-right: 20px;
}

.why-ngompi .whyBox .whytext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.why-ngompi .whyBox .whytext .header {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black);
}

.why-ngompi .whyBox .whytext .desc {
  color: var(--text-secondary);
  font-style: 13px;
}

.testimoni {
  padding: 80px 0 40px 0;
}

.testimoni .testimoniWrapper {
  cursor: -webkit-grab;
  cursor: grab;
}

.testimoni .testimoniWrapper .item {
  background-color: var(--color-light);
  border-radius: 4px;
  padding: 20px;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .testimoni .testimoniWrapper .item {
    margin: 0 5px;
  }
}

.testimoni .testimoniWrapper .item .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimoni .testimoniWrapper .item .heading .image {
  margin-right: 20px;
  height: 51px;
  width: 51px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  padding: 2px;
}

@media (max-width: 768px) {
  .testimoni .testimoniWrapper .item .heading .image {
    height: 35px;
    width: 35px;
  }
}

.testimoni .testimoniWrapper .item .heading .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.testimoni .testimoniWrapper .item .heading .image .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.testimoni .testimoniWrapper .item .heading .image .info .name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
}

.testimoni .testimoniWrapper .item .body {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .testimoni .testimoniWrapper .item .body {
    height: 100px;
    overflow: hidden;
  }
}

.popular-service {
  padding: 40px 0;
}

.popular-service .serviceWrapper .card {
  margin-right: 10px;
}

.banner {
  padding: 80px 0;
}

.banner .get-cource {
  background-color: var(--color-purple);
  position: relative;
  padding: 30px;
  border-radius: 4px;
}

.banner .get-cource .banner-illust {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .banner .get-cource .banner-illust {
    width: 140px;
    bottom: 0;
    top: unset;
  }
}

.banner .get-cource .header-section {
  color: var(--color-white);
}

.banner .get-cource p {
  font-size: 18px;
  color: var(--color-white);
}

.banner .get-cource a.btn-get-cource {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-purple);
  text-decoration: none;
  border: none;
  max-width: 164px;
  font-weight: 700;
}

.banner .daftar-freelancer {
  background-color: var(--color-yellow);
  position: relative;
  padding: 30px;
  border-radius: 4px;
}

.banner .daftar-freelancer .banner-illust {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .banner .daftar-freelancer .banner-illust {
    width: 140px;
    bottom: unset;
    top: -80px;
  }
}

.banner .daftar-freelancer .header-section {
  color: var(--color-white);
}

.banner .daftar-freelancer p {
  font-size: 18px;
  color: var(--color-white);
}

.banner .daftar-freelancer a.btn-get-cource {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  background-color: var(--color-white);
  color: var(--color-yellow);
  text-decoration: none;
  border: none;
  max-width: 260px;
  font-weight: 700;
}

.portfolio .portfolioWrapper {
  padding: 40px 0;
}

.portfolio .portfolioWrapper .portfolioItem {
  display: block;
  margin-right: 10px;
  margin-bottom: 30px;
  text-decoration: none;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border-radius: 4px;
  overflow: hidden;
}

.portfolio .portfolioWrapper .portfolioItem .pf-thumbnail {
  height: 248px;
}

.portfolio .portfolioWrapper .portfolioItem .pf-thumbnail img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio .portfolioWrapper .portfolioItem .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
}

.portfolio .portfolioWrapper .portfolioItem .info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.portfolio .portfolioWrapper .portfolioItem .info .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.portfolio .portfolioWrapper .portfolioItem .info .text .jobs {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-black);
}

.portfolio .portfolioWrapper .portfolioItem .info .text .worker {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-secondary-act);
}

.portfolio .portfolioWrapper .portfolioItem:hover {
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.portfolio .portfolioWrapper .portfolioItem:hover .text .jobs {
  color: var(--color-red);
}

.portfolio .portfolioWrapper .portfolioItem:hover .text .worker {
  text-decoration: underline;
}

.partner {
  background-color: var(--color-light);
  padding: 40px 0;
}

.partner .desc {
  font-size: 18px;
  color: var(--text-dark);
  text-align: center;
}

.partner img {
  width: 200px;
  display: block;
  margin: 0 auto;
}

.header-section {
  font-size: 24px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 32px;
}

.catalogItem {
  display: block;
  text-decoration: none;
  color: var(--text-black);
  -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  background-color: var(--color-white);
  overflow: hidden;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  margin-bottom: 20px;
}

.catalogItem:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.catalogItem .imageBox {
  height: 188px;
}

.catalogItem .imageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalogItem .body {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.catalogItem .body .title {
  font-size: 13px;
  color: var(--text-black);
}

.catalogItem .body .price {
  font-weight: 700;
  font-size: 16;
  color: #3a3a3a;
}

.catalogItem .divider {
  height: 1px;
  background-color: var(--border);
  margin: 0 12px;
}

.catalogItem .footer {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.catalogItem .footer .rating {
  color: var(--color-yellow);
}

.catalogItem .footer .rating span {
  font-weight: 700;
}

.catalogItem .footer .sold {
  color: var(--text-black);
}

a.get-more {
  color: var(--color-red) !important;
  text-decoration: none;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  font-size: 18px;
}

a.get-more:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--color-light);
  padding-top: 40px;
}

.footer .main-footer {
  padding-bottom: 40px;
}

.footer .main-footer .footer-header {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 16px;
}

.footer .main-footer .footer-item {
  color: var(--text-secondary);
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 8px;
  -webkit-transition: ease-in-out .3s;
  transition: ease-in-out .3s;
  display: block;
}

.footer .main-footer .footer-item:hover {
  color: var(--color-red);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer .main-footer .footer-header {
    font-size: 16px;
  }
  .footer .main-footer .footer-item {
    font-size: 14px;
  }
}

.footer .copy-right {
  background-color: var(--color-red);
  padding: 15px 0;
}

.footer .copy-right .text {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  margin-left: 30px;
}

.footer .copy-right .socialItem {
  text-decoration: none;
  color: var(--color-white);
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  -webkit-transition: ease-in-out .3s;
  transition: ease-in-out .3s;
  margin-left: 25px;
}

.footer .copy-right .socialItem:hover {
  background-color: #fa3548;
  border-radius: 50%;
}

@media (max-width: 575.98px) {
  .hero .text-hero {
    font-size: 26px;
  }
  .hero .btn.btnService {
    width: 100%;
  }
  .hero .count-box {
    margin: 10px 0;
  }
  .hero .count-box .count-number {
    font-size: 26px;
  }
  .hero .count-box .count-text {
    font-size: 14px;
    color: var(--text-secondary-act);
  }
  .header-section {
    text-align: center;
  }
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
}

@media (max-width: 767.98px) {
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
}

@media (max-width: 991.98px) {
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: #FFF;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 10px;
  border: none;
  outline: none;
  z-index: 90;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: #fff;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -65px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
  color: #555;
}

[dir="rtl"] .slick-prev:before {
  content: "→";
  color: #555;
}

.slick-next {
  right: -65px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
  color: #555;
}

[dir="rtl"] .slick-next:before {
  content: "←";
  color: #555;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
/*# sourceMappingURL=main.css.map */