<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  list-style: none;
}

  html, body {
    scroll-behavior: smooth;
    height: 100%;
    min-width: 320px;
  }

    body {
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 500;
      overflow-x: hidden;
      margin: 0;
      line-height: 1.6;
    }

      body.white-theme {
        background: #F2F4F8;
      }

      body.dark {
        background: #131313;
      }

      @media (max-width: 991.98px) {
        body.no-scroll {
          overflow-y: hidden;
        }
      }

      button, select {
        text-transform: none;
        background-color: transparent;
        border: none;
        padding: 0;
      }

      .wrapper {
        transition: padding .3s;
        position: relative;
        display: table;
        height: 100%;
        width: 100%;
        table-layout: fixed;
        overflow: hidden;
      }

        .wrapper.active-burger {
          padding-left: 316px;
        }

          @media (max-width: 991.98px) {
            .wrapper.active-burger {
              padding-left: 0;
            }
          }

        header {
          position: relative;
        }

        @media (max-width: 991.98px) {
          header {
            position: fixed;
            width: 100%;
            z-index: 20;
          }
        }

          .header-wrapper {
            position: relative;
          }

            .header-inner {
              padding: 18px 0;
            }

              body.white-theme .header-inner {
                background: #DADFE9;
              }

              body.dark .header-inner {
                background: #222428;
              }

              .header-inner .container {
                margin: 0 auto;
                padding: 0 30px;
                max-width: 1540px;
                width: 100%;
              }

                @media (max-width: 991.98px) {
                  .header-inner .container {
                    padding: 0 10px;
                  }
                }

                .header-wrap {
                  display: flex;
                  align-items: center;
                  position: relative;
                }

                  .burger-btn {
                    margin-right: 30px;
                    cursor: pointer;
                  }

                    .icon {
                      display: inline-block;
                      height: 20px;
                      width: 29px;
                      position: relative;
                    }

                      .ico-bar {
                        height: 4px;
                        width: 100%;
                        position: absolute;
                        transition: 0.1s ease-in-out;
                        left: 0;
                        border-radius: 5px;
                      }

                      body.white-theme .wrapper.active-burger .ico-bar {
                        background: #000;
                      }

                      body.dark .wrapper.active-burger .ico-bar {
                        background: #fff;
                      }

                        .ico-bar:first-child {
                          top: 0;
                        }

                          .wrapper.active-burger .ico-bar:first-child {
                            top: 12px;
                            transform: rotate(-45deg);
                            height: 2px;
                          }

                        .ico-bar:nth-child(2) {
                          top: 10px;
                        }

                          .wrapper.active-burger .ico-bar:nth-child(2) {
                            display: none;
                          }

                        .ico-bar:nth-child(3) {
                          top: 20px;
                        }

                          .wrapper.active-burger .ico-bar:nth-child(3) {
                            top: 12px;
                            transform: rotate(45deg);
                            height: 2px;
                          }

                  .logo {
                    flex-grow: 1;
                    flex-shrink: 1;
                    margin-right: 10px;
                  }

                    .logo a {
                      text-decoration: none;
                      display: flex;
                      background-position: center center;
                      background-repeat: no-repeat;
                      background-size: 100%;
                      width: 230px;
                      height: 42px;
                      font-weight: 600;
                      font-size: 24px;
                      line-height: 1.4;
                      text-transform: none;
                    }

                    body.white-theme .logo a:hover {
                      color: #000;
                    }

                    body.dark .logo a:hover {
                      color: #fff;
                    }

                      @media (max-width: 991.98px) {
                        .logo a {
                          width: 160px;
                        }
                      }

                  .search-wrap {
                    max-width: 580px;
                    flex-grow: 1;
                    flex-shrink: 1;
                    /* margin-right: 60px; */
                    position: relative;
                    z-index: 50;
                  }

                    @media (max-width: 991.98px) {
                      .search-wrap {
                        margin: 0 -20px;
                        flex-grow: 0;
                        flex-shrink: 0;
                        position: absolute;
                        max-width: none;
                        left: 0;
                        right: 0;
                        background-color: #222428;
                        padding: 20px 60px 20px 20px;
                        display: none;
                      }
                    }

                    .wrapper.active-search .search-wrap {
                      display: block;
                    }

                      body.white-theme .wrapper.active-search .search-wrap {
                        background: #DADFE9;
                      }

                      body.dark .wrapper.active-search .search-wrap {
                        background: #222428;
                      }

                      @media (max-width: 991.98px) {
                        .wrapper.active-search .search-wrap {
                          background: #DADFE9;
                        }
                      }

                    .search-wrap form {
                      width: 100%;
                    }

                      .search-wrap form input {
                        width: 100%;
                        border-radius: 10px;
                        border: none;
                        padding: 10px 50px 10px 20px;
                      }

                      .search-wrap form input:focus-visible {
                        outline: none;
                      }

                      body.white-theme .search-wrap form input {
                        background-color: #fff;
                        color: #000;
                      }

                      body.dark .search-wrap form input {
                        background-color: #000;
                        color: #fff;
                      }

                      .search-btn {
                        position: absolute;
                        right: 16px;
                        top: 10px;
                        cursor: pointer;
                      }

                        @media (max-width: 991.98px) {
                          .search-btn {
                            right: 80px;
                            top: 30px;
                          }
                        }

                        .icon-search {
                          color: #0968F7;
                          font-size: 24px;
                          display: inline-block;
                          width: 1em;
                          height: 1em;
                          fill: currentColor;
                        }

                        body.white-theme .search-btn:hover {
                          color: #000000;
                        }

                        body.dark .search-btn:hover {
                          color: #ffffff;
                        }

                    .close-search {
                      display: none;
                    }

                    body.white-theme .close-search {
                      color: #000;
                    }

                    body.dark .close-search {
                      color: #fff;
                    }

                      @media (max-width: 991.98px) {
                        .close-search {
                          display: block;
                          position: absolute;
                          right: 22px;
                          top: 28px;
                        }
                      }

                      .icon-close {
                        color: white;
                        font-size: 24px;
                        display: inline-block;
                        width: 1em;
                        height: 1em;
                        fill: currentColor;
                      }

                  .search-btn-mobile {
                    display: none;
                    cursor: pointer;
                  }

                    @media (max-width: 991.98px) {
                      .search-btn-mobile {
                        display: flex;
                      }
                    }

        main {
          position: relative;
        }

        body.white-theme main {
          background-color: #F2F4F8;
        }

        body.dark main {
          background-color: #131313;
        }

        /*
        @media (max-width: 991.98px) {
          main {
            margin-top: 70px;
          }
        }
        */

          /*
          nav {
            margin-bottom: 20px
          }
          */

          body.white-theme nav {
            background-color: #fff;
          }

          body.dark nav {
            background-color: #000;
          }

          @media (max-width: 991.98px) {
            main nav {
              display: none;
            }
          }

          main nav .container {
            margin: 0 auto;
            padding: 0 30px;
            max-width: 1540px;
            width: 100%;
          }

            @media (max-width: 991.98px) {
              main nav .container {
                padding: 0 10px;
              }
            }

            nav ul {
              display: flex;
              justify-content: center;
              padding-inline-start: 0;
              margin: 0;
            }

              nav ul li a {
                padding: 13px 10px;
                font-weight: 600;
                /* border-bottom: 2px solid transparent; */
                transition: all 0.3s ease;
                text-decoration: none;
                display: block;
                background-color: transparent;
                cursor: pointer;
              }

                body.white-theme nav ul li a {
                  color: #000;
                }

                body.dark nav ul li a {
                  color: #fff;
                }

          .ad {
            margin-top: 0;
            padding: 15px 10px;
            color: #fff;
            text-align: center;
            font-size: 15px;
            /* margin-bottom: 15px; */
          }

            @media (max-width: 991.98px) {
              .ad {
                margin-top: 78px;
              }
            }

          .burger-wrap {
            transition: transform .3s;
            width: 316px;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            padding: 20px;
            z-index: 230;
            overflow-y: auto;
            transform: translate(-100%, 0px);
          }

            body.white-theme .burger-wrap {
              background-color: #fff;
            }

            body.dark .burger-wrap {
              background-color: #000;
            }

            .wrapper.active-burger .burger-wrap {
              display: block;
              transform: translate(0, 0);
            }

            @media (max-width: 991.98px) {
              .burger-wrap {
                height: 100vh;
              }
            }

              .burger-wrap .close-burger {
                cursor: pointer;
                height: 38px;
              }

                body.white-theme .burger-wrap .close-burger {
                  color: #000;
                }

                body.dark .burger-wrap .close-burger {
                  color: #fff;
                }

              .burger-wrap nav {
                display: none;
                border-bottom: 1px solid #222428;
                margin: 20px 0 0 0;
              }

                @media (max-width: 991.98px) {
                  .burger-wrap nav {
                    display: block;
                  }
                }

                  .navigation-burger {
                    flex-direction: column;
                    display: none;
                  }

                  @media (max-width: 991.98px) {
                    .navigation-burger {
                      display: block;
                    }
                  }

                    .navigation-burger a {
                      padding: 13px 10px;
                    }

              .burger-models-wrap {
                padding: 20px 0;
                border-bottom: 1px solid #222428;
              }

                .burger-models-wrap .headline {
                  display: flex;
                  align-items: center;
                  justify-content: space-between;
                  margin-bottom: 20px;
                }

                  @media (max-width: 767px) {
                    .burger-models-wrap .headline {
                      flex-wrap: wrap;
                      flex-direction: column;
                      align-items: flex-start;
                    }
                  }

                  .burger-models-wrap h4 {
                    font-weight: 600;
                    font-size: 18px;
                  }

                    body.white-theme .burger-models-wrap h4 {
                      color: #000;
                    }

                    body.dark .burger-models-wrap h4 {
                      color: #fff;
                    }

                .burger-model-list {
                  padding-inline-start: 0;
                  margin: 0;
                }

                  .burger-model-item {
                    margin-bottom: 3px;
                  }

                    .burger-model-item a {
                      display: flex;
                      align-items: center;
                      justify-content: space-between;
                      padding: 10px 20px;
                      border-radius: 10px;
                      transition: all 0.3s ease;
                      text-decoration: none;
                      background-color: transparent;
                    }

                      .burger-model-item a span:first-child {
                        font-weight: 600;
                      }

                      body.dark .burger-model-item a span:first-child {
                        color: #fff;
                      }

                      body.white-theme .burger-model-item a span:first-child {
                        color: #000;
                      }

                      body.dark .burger-model-item a span:last-child {
                        color: #B7B7B7;
                        font-weight: 400;
                      }

                      body.white-theme .burger-model-item a span:last-child {
                        color: #696B71;
                        font-weight: 400;
                      }

                      .burger-model-item a:hover span, .active-nav a span {
                        color: #fff !important;
                      }

          .section {
            padding-bottom: 20px;
          }

          #first-section {
            margin-top: 15px;
            padding-bottom: 50px;
          }

          @media (max-width: 991.98px) {
            body.without-ad #first-section {
              margin-top: 93px; /* 78+15 */
            }
          }

            @media (max-width: 991.98px) {
              .section {
                padding-bottom: 30px;
              }
            }

            .section .container {
              margin: 0 auto;
              padding: 0 30px;
              max-width: 1540px;
              width: 100%;
            }

              @media (max-width: 991.98px) {
                .section .container {
                  padding: 0 10px;
                }
              }

              .headline {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
              }

              body.dark .headline h1 {
                color: #fff;
              }

              body.white-theme .headline h1 {
                color: #000;
              }

              .headline h1 {
                margin-right: 10px;
                color: #fff;
                font-weight: 600;
                font-size: 24px;
                line-height: 1.4;
                text-transform: none;
              }

              @media (max-width: 991.98px) {
                .headline h1 {
                  font-size: 18px;
                }
              }

                h1, h2, h3, h4 {
                  margin: 0;
                }

              .thumbs {
                display: flex;
                flex-wrap: wrap;
                margin: 0 -5px -30px;
              }

                .item {
                  width: calc(25% - 10px);
                  margin: 0 5px 30px;
                  display: block;
                }

                  @media (max-width: 991.98px) {
                    .item {
                      width: calc(33.33% - 10px);
                    }
                  }

                  @media (max-width: 767.98px) {
                    .item {
                      width: calc(50% - 10px);
                    }
                  }

                  @media (max-width: 575.98px) {
                    .item {
                      width: 100%;
                    }
                  }

                  .item a {
                    display: block;
                    text-decoration: none;
                  }

                    .box-img {
                      overflow: hidden;
                      border-radius: 10px;
                      margin-bottom: 8px;
                      position: relative;
                      padding-bottom: 56.2%;
                      border-radius: 10px;
                    }

                      .box-img .thumb {
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 10px;
                        width: 100%;
                        height: auto;
                        transition: all .3s;
                      }

                      .views {
                        font-weight: 400;
                        opacity: 0.8;
                        border-radius: 5px;
                        padding: 0 5px;
                        font-size: 12px;
                        z-index: 10;
                        display: block;
                        position: absolute;
                        bottom: 10px;
                        left: 10px;
                        margin-left: 2px;
                      }

                      body.white-theme .views {
                        background-color: #fff;
                        color: #000;
                      }

                      body.dark .views {
                        background-color: #000;
                        color: #fff;
                      }

                      .time {
                        font-weight: 400;
                        opacity: 0.8;
                        border-radius: 5px;
                        padding: 0 5px;
                        font-size: 12px;
                        z-index: 10;
                        display: block;
                        position: absolute;
                        bottom: 10px;
                        right: 10px;
                      }

                      body.white-theme .time {
                        background-color: #fff;
                        color: #000;
                      }

                      body.dark .time {
                        background-color: #000;
                        color: #fff;
                      }

                  .thumb_info .video-text {
                    text-align: center;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    text-overflow: ellipsis;
                    margin-bottom: 5px;
                    transition: all 0.3s ease;
                    font-weight: bold;
                  }

                  body.white-theme .thumb_info .video-text {
                    color: #000;
                  }

                  body.dark .thumb_info .video-text {
                    color: #fff;
                  }

            .video-wrapper {
              display: flex;
            }

              .video-content-block {
                flex-grow: 1;
                flex-shrink: 1;
              }

                /* .video-holder {} */

                  /* .player {} */

                    .player-holder {
                      overflow: hidden;
                      position: relative;
                      display: flex;
                      border-radius: 10px;
                      margin-bottom: 20px;
                    }

                      .k2s-preview { /* .player-wrap */
                        max-width: unset !important;
                        width: 100% !important;
                        height: 0 !important;
                        padding-bottom: 56.338028169014% !important;
                      }

                      .cover { /* .player-wrap */
                        width: 100%;
                      }

                  .info-buttons {
                    display: flex;
                    align-items: center;
                    margin-bottom: 20px;
                  }

                  .lh1 {
                    line-height: 1 !important;
                  }

@media (max-width: 991.98px) {
  .info-buttons {
    flex-direction: column;
  }
}

.footer-list a {
  background-color: transparent !important;
}

                    .rating-container {
                      display: flex;
                      justify-content: space-between;
                      margin-right: 20px;
                      flex-grow: 1;
                      flex-shrink: 1;
                      width: 100%;
                    }

                      /* div */

                      .favorite-wrap {
                        margin: 0 5px 0 auto;
                        position: relative;
                      }

                    .tabs-menu {
                      flex-grow: 0;
                      flex-shrink: 0;
                    }

                      ul.video-buttons-list {
                        display: flex;
                        padding-inline-start: 0;
                        margin: 0;
                        list-style: none;
                      }

                        li.list-right-item {
                          margin-right: 6px;
                          display: flex;
                        }

                        .burger-wrap nav {
                          padding-bottom: 20px;
                        }

                        .toggle-button.active {
                          color: #fff !important;
                        }

                        .toggle-button:hover {
                          color: #fff !important;
                        }

                        body.white-theme .list-right-item a {
                          background: #fff;
                          color: #696B71;
                        }

                        body.dark .list-right-item a {
                          background: #222428;
                          color: #ffffff;
                        }

                        li a {
                          text-decoration: none;
                          list-style: none;
                          display: flex;
                          align-items: center;
                          padding: 9px 20px;
                          border-radius: 10px;
                          background: #222428;
                          color: #ffffff;
                          cursor: pointer;
                          transition: all 0.3s ease;
                          justify-content: center;
                          width: 100%;
                        }

                        ul.video-buttons-list li {
                          /* margin-right: 5px; */
                          display: flex;
                        }

                          .video-buttons-list button {
                            display: flex;
                            align-items: center;
                            padding: 9px 20px;
                            border-radius: 10px;
                            background: #222428;
                            color: #ff0000;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            width: 100%;
                          }

@media (max-width: 991.98px) {
  .like-wrap {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

                  .ps-9px {
                    margin-left: 9px;
                  }

@media (max-width: 991.98px) {
  .toggle-button .ps-9px {
    display: none;
  }
}

          .pagination {
            margin-top: 50px;
            background-color: transparent !important;
            display: block !important;
          }

            .nav-links { /* .pagination-list */
              display: flex;
              justify-content: center;
              padding-inline-start: 0;
              margin: 0;
            }

              .nav-links a {
                display: block;
              }

              .prev.page-numbers {
                margin-right: 17px;
              }

              .next.page-numbers {
                margin-left: 17px;
              }

                .page-numbers {
                  text-decoration: none;
                  padding: 10px 18px;
                  border-radius: 10px;
                  transition: all 0.3s ease;
                  display: block;
                  margin: 0 3px;
                }

                @media (max-width: 991.98px) {
                  .page-numbers:not(.prev, .current, .next) {
                    display: none !important;
                  }
                }

                .page-numbers.current {
                  color: #fff !important;
                }

                  a.page-numbers:hover {
                    color: #fff !important;
                  }

                body.white-theme .page-numbers {
                  background: #fff;
                  color: #696B71;
                }

                body.dark .page-numbers {
                  color: #B7B7B7;
                  background: #222428;
                }

body.dark .rating-container {
  color: #fff;
}

a:hover .sze {
  color: unset !important;
}

body.white-theme .rating-container {
  color: #000;
}

body.white-theme .bi-lock-fill:hover {
  color: #000;
}

body.dark .bi-lock-fill:hover {
  color: #fff;
}

body.white-theme .bi-unlock-fill {
  color: #000;
}

body.dark .bi-unlock-fill {
  color: #fff;
}

#info {
  margin-top: 17px;
}

body.white-theme #info {
  color: #000;
}

body.dark #info {
  color: #fff;
}

.list-right-item:last-child {
  margin-right: 0;
}

.bi-lock-fill {
  cursor: pointer;
  transition: all 0.3s ease;
}

.lock {
  text-align: center;
  font-size: 42px;
}

.lock-text {
  text-align: center;
  margin: 3px 0 20px 0;
  text-transform: uppercase;
}

.ellipsis {
  text-overflow: ellipsis; /* enables ellipsis */
  white-space: nowrap; /* keeps the text in a single line */
  overflow: hidden; /* keeps the element from overflowing its parent */
}

        footer {
          display: table-row;
          height: 1px;
        }

          body.white-theme .footer-inner {
            background-color: #DADFE9;
          }

          body.dark .footer-inner {
            background-color: #222428;
          }

            .footer-inner .container {
              margin: 0 auto;
              padding: 0 30px;
              max-width: 1540px;
              width: 100%;
            }

              .footer-wrap {
                padding: 40px 0;
              }

                .footer-logo {
                  text-align: center;
                  margin-bottom: 30px;
                }

                  .footer-logo a {
                    /* background-image: url(data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='logo__x7B__x7B__x24_config.project_x5F_name_x7D__x7D_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 229 42' style='enable-background:new 0 0 229 42;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D .st1%7Bfill:url(%23SVGID_1_);%7D .st2%7Bfill:%23777777;%7D .st3%7Bfill:url(%23SVGID_2_);%7D%0A%3C/style%3E%3Cpath class='st0' d='M50.9,23l-3.8-6.9h-1.1V23h-4.4V4.7h7.5c1.4,0,2.7,0.3,3.7,0.8c1,0.5,1.8,1.2,2.3,2.1c0.5,0.9,0.8,1.8,0.8,2.9 c0,1.2-0.3,2.3-1,3.2c-0.7,1-1.7,1.6-3,2l4.2,7.2H50.9z M46.1,13h2.8c0.8,0,1.4-0.2,1.8-0.6c0.4-0.4,0.6-1,0.6-1.7 c0-0.7-0.2-1.2-0.6-1.6c-0.4-0.4-1-0.6-1.8-0.6h-2.8V13z M71.2,15.5c0,0.4,0,0.8-0.1,1.3H61.1c0.1,0.9,0.4,1.6,0.9,2.1 c0.5,0.5,1.2,0.7,1.9,0.7c1.1,0,1.9-0.5,2.3-1.4h4.7c-0.2,1-0.7,1.8-1.3,2.6c-0.6,0.8-1.4,1.4-2.4,1.8c-1,0.4-2,0.6-3.2,0.6 c-1.4,0-2.7-0.3-3.8-0.9c-1.1-0.6-2-1.5-2.6-2.6s-0.9-2.4-0.9-4s0.3-2.8,0.9-4c0.6-1.1,1.5-2,2.6-2.6c1.1-0.6,2.4-0.9,3.8-0.9 c1.4,0,2.7,0.3,3.7,0.9c1.1,0.6,1.9,1.4,2.5,2.5C70.9,12.8,71.2,14.1,71.2,15.5z M66.7,14.3c0-0.8-0.3-1.4-0.8-1.8 c-0.5-0.5-1.2-0.7-1.9-0.7c-0.7,0-1.4,0.2-1.9,0.7c-0.5,0.4-0.8,1-0.9,1.8H66.7z M71.6,15.7c0-1.5,0.3-2.8,0.8-3.9 c0.6-1.1,1.3-2,2.3-2.6c1-0.6,2.1-0.9,3.2-0.9c1,0,1.9,0.2,2.7,0.6c0.8,0.4,1.4,1,1.8,1.6V8.5h4.4V23h-4.4v-2.1 c-0.4,0.7-1,1.2-1.8,1.6C79.9,23,79,23.2,78,23.2c-1.2,0-2.3-0.3-3.2-0.9c-1-0.6-1.7-1.5-2.3-2.6C71.9,18.5,71.6,17.2,71.6,15.7z M82.5,15.7c0-1.1-0.3-2-0.9-2.6c-0.6-0.6-1.4-1-2.2-1s-1.6,0.3-2.3,1c-0.6,0.6-0.9,1.5-0.9,2.6s0.3,2,0.9,2.7c0.6,0.6,1.4,1,2.3,1 s1.6-0.3,2.2-1C82.2,17.7,82.5,16.9,82.5,15.7z M93.6,3.8V23h-4.4V3.8H93.6z'/%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='93.6995' y1='37.9715' x2='228.6995' y2='17.9715' gradientTransform='matrix(1 0 0 -1 0 44)'%3E%3Cstop offset='1' style='stop-color:%23004BBB'/%3E%3Cstop offset='1' style='stop-color:%230968F7'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M102.6,4.7c1.9,0,3.6,0.4,5,1.1c1.4,0.8,2.5,1.8,3.3,3.2c0.8,1.4,1.2,3,1.2,4.8c0,1.8-0.4,3.4-1.2,4.8 c-0.8,1.4-1.9,2.5-3.4,3.2c-1.4,0.8-3.1,1.1-5,1.1h-6.8V4.7H102.6z M102.3,19.2c1.7,0,3-0.5,3.9-1.4c0.9-0.9,1.4-2.2,1.4-3.9 s-0.5-3-1.4-3.9c-0.9-0.9-2.2-1.4-3.9-1.4h-2.1v10.6H102.3z M127.3,15.5c0,0.4,0,0.8-0.1,1.3h-10.1c0.1,0.9,0.4,1.6,0.9,2.1 c0.5,0.5,1.2,0.7,1.9,0.7c1.1,0,1.9-0.5,2.3-1.4h4.7c-0.2,1-0.7,1.8-1.3,2.6c-0.6,0.8-1.4,1.4-2.4,1.8c-1,0.4-2,0.6-3.2,0.6 c-1.4,0-2.7-0.3-3.8-0.9c-1.1-0.6-2-1.5-2.6-2.6s-0.9-2.4-0.9-4s0.3-2.8,0.9-4c0.6-1.1,1.5-2,2.6-2.6c1.1-0.6,2.4-0.9,3.8-0.9 c1.4,0,2.7,0.3,3.7,0.9c1.1,0.6,1.9,1.4,2.5,2.5C127,12.8,127.3,14.1,127.3,15.5z M122.7,14.3c0-0.8-0.3-1.4-0.8-1.8 c-0.5-0.5-1.2-0.7-1.9-0.7c-0.7,0-1.4,0.2-1.9,0.7c-0.5,0.4-0.8,1-0.9,1.8H122.7z M142.3,15.5c0,0.4,0,0.8-0.1,1.3h-10.1 c0.1,0.9,0.4,1.6,0.9,2.1c0.5,0.5,1.2,0.7,1.9,0.7c1.1,0,1.9-0.5,2.3-1.4h4.7c-0.2,1-0.7,1.8-1.3,2.6c-0.6,0.8-1.4,1.4-2.4,1.8 c-1,0.4-2,0.6-3.2,0.6c-1.4,0-2.7-0.3-3.8-0.9c-1.1-0.6-2-1.5-2.6-2.6c-0.6-1.1-0.9-2.4-0.9-4s0.3-2.8,0.9-4c0.6-1.1,1.5-2,2.6-2.6 c1.1-0.6,2.4-0.9,3.8-0.9c1.4,0,2.7,0.3,3.7,0.9c1.1,0.6,1.9,1.4,2.5,2.5C141.9,12.8,142.3,14.1,142.3,15.5z M137.7,14.3 c0-0.8-0.3-1.4-0.8-1.8c-0.5-0.5-1.2-0.7-1.9-0.7c-0.7,0-1.4,0.2-1.9,0.7c-0.5,0.4-0.8,1-0.9,1.8H137.7z M148,10.5 c0.4-0.7,1-1.2,1.8-1.6c0.8-0.4,1.7-0.6,2.7-0.6c1.2,0,2.3,0.3,3.2,0.9c1,0.6,1.7,1.5,2.3,2.6c0.6,1.1,0.9,2.4,0.9,3.9 c0,1.5-0.3,2.8-0.9,4c-0.6,1.1-1.3,2-2.3,2.6c-1,0.6-2.1,0.9-3.2,0.9c-1,0-1.9-0.2-2.7-0.6c-0.8-0.4-1.4-1-1.8-1.6v8.9h-4.4V8.5h4.4 V10.5z M154.4,15.7c0-1.1-0.3-2-0.9-2.6c-0.6-0.6-1.4-1-2.3-1c-0.9,0-1.6,0.3-2.3,1c-0.6,0.6-0.9,1.5-0.9,2.6s0.3,2,0.9,2.6 c0.6,0.6,1.4,1,2.3,1c0.9,0,1.6-0.3,2.3-1C154,17.7,154.4,16.8,154.4,15.7z M167.4,12.2h-2.4V23h-4.4V12.2H159V8.5h1.6V8.1 c0-1.8,0.5-3.1,1.5-4.1c1-0.9,2.5-1.4,4.5-1.4c0.3,0,0.6,0,0.7,0v3.8c-0.8-0.1-1.4,0.1-1.8,0.4s-0.5,0.8-0.5,1.6v0.1h2.4V12.2z M167.6,15.7c0-1.5,0.3-2.8,0.8-3.9c0.6-1.1,1.3-2,2.3-2.6c1-0.6,2.1-0.9,3.2-0.9c1,0,1.9,0.2,2.7,0.6c0.8,0.4,1.4,1,1.8,1.6V8.5 h4.4V23h-4.4v-2.1c-0.4,0.7-1,1.2-1.8,1.6c-0.8,0.4-1.7,0.6-2.7,0.6c-1.2,0-2.3-0.3-3.2-0.9c-1-0.6-1.7-1.5-2.3-2.6 C167.9,18.5,167.6,17.2,167.6,15.7z M178.5,15.7c0-1.1-0.3-2-0.9-2.6c-0.6-0.6-1.4-1-2.2-1s-1.6,0.3-2.3,1c-0.6,0.6-0.9,1.5-0.9,2.6 s0.3,2,0.9,2.7c0.6,0.6,1.4,1,2.3,1s1.6-0.3,2.2-1C178.2,17.7,178.5,16.9,178.5,15.7z M194,23l-4.4-6.1V23h-4.4V3.8h4.4v10.6 l4.4-5.9h5.5l-6,7.3l6.1,7.2H194z M213.8,15.5c0,0.4,0,0.8-0.1,1.3h-10.1c0.1,0.9,0.4,1.6,0.9,2.1c0.5,0.5,1.2,0.7,1.9,0.7 c1.1,0,1.9-0.5,2.3-1.4h4.7c-0.2,1-0.7,1.8-1.3,2.6c-0.6,0.8-1.4,1.4-2.4,1.8c-1,0.4-2,0.6-3.2,0.6c-1.4,0-2.7-0.3-3.8-0.9 c-1.1-0.6-2-1.5-2.6-2.6c-0.6-1.1-0.9-2.4-0.9-4s0.3-2.8,0.9-4c0.6-1.1,1.5-2,2.6-2.6c1.1-0.6,2.4-0.9,3.8-0.9 c1.4,0,2.7,0.3,3.7,0.9c1.1,0.6,1.9,1.4,2.5,2.5C213.5,12.8,213.8,14.1,213.8,15.5z M209.3,14.3c0-0.8-0.3-1.4-0.8-1.8 c-0.5-0.5-1.2-0.7-1.9-0.7c-0.7,0-1.4,0.2-1.9,0.7c-0.5,0.4-0.8,1-0.9,1.8H209.3z M221,23.2c-1.3,0-2.4-0.2-3.4-0.6s-1.8-1-2.3-1.8 c-0.6-0.8-0.9-1.6-1-2.5h4.4c0.1,0.5,0.3,0.9,0.7,1.2c0.4,0.3,0.9,0.5,1.5,0.5c0.6,0,1-0.1,1.3-0.3c0.3-0.2,0.5-0.5,0.5-0.9 c0-0.4-0.2-0.7-0.7-0.9c-0.4-0.2-1.1-0.4-2.1-0.7c-1-0.2-1.9-0.5-2.6-0.8c-0.7-0.3-1.3-0.7-1.8-1.3c-0.5-0.6-0.8-1.4-0.8-2.4 c0-0.8,0.2-1.6,0.7-2.3c0.5-0.7,1.1-1.2,2-1.6c0.9-0.4,2-0.6,3.2-0.6c1.8,0,3.2,0.5,4.3,1.4c1.1,0.9,1.7,2.1,1.8,3.6h-4.1 c-0.1-0.5-0.3-0.9-0.7-1.2c-0.4-0.3-0.8-0.4-1.5-0.4c-0.5,0-0.9,0.1-1.2,0.3c-0.3,0.2-0.4,0.5-0.4,0.8c0,0.4,0.2,0.7,0.6,0.9 c0.5,0.2,1.1,0.4,2.1,0.6c1.1,0.3,1.9,0.6,2.6,0.8c0.7,0.3,1.3,0.7,1.8,1.3c0.5,0.6,0.8,1.4,0.8,2.4c0,0.8-0.2,1.6-0.7,2.3 c-0.5,0.7-1.2,1.2-2.1,1.6C223.2,23,222.2,23.2,221,23.2z'/%3E%3Cpath class='st2' d='M45.4,38l-1.6-2.8h-0.9V38h-1.1v-7h2.4c0.5,0,1,0.1,1.3,0.3c0.4,0.2,0.7,0.4,0.8,0.8c0.2,0.3,0.3,0.7,0.3,1 c0,0.5-0.1,0.9-0.4,1.2C46,34.7,45.5,35,45,35.1l1.7,2.9H45.4z M42.9,34.3h1.3c0.4,0,0.7-0.1,1-0.3c0.2-0.2,0.3-0.5,0.3-0.9 s-0.1-0.6-0.3-0.8c-0.2-0.2-0.5-0.3-1-0.3h-1.3V34.3z M54.4,32v2h2.4v0.9h-2.4v2.1h2.7V38h-3.8v-7h3.8V32H54.4z M67.9,36.6H65 L64.5,38h-1.2l2.5-7h1.3l2.5,7h-1.2L67.9,36.6z M67.6,35.7l-1.1-3.2l-1.1,3.2H67.6z M77,37.1h2.3V38h-3.5v-7H77V37.1z M87.8,31 c0.7,0,1.4,0.1,1.9,0.4c0.6,0.3,1,0.7,1.3,1.2c0.3,0.5,0.5,1.1,0.5,1.8s-0.2,1.3-0.5,1.8c-0.3,0.5-0.7,0.9-1.3,1.2 c-0.6,0.3-1.2,0.4-1.9,0.4h-2.3v-7H87.8z M87.8,37.1c0.8,0,1.4-0.2,1.9-0.7c0.4-0.4,0.6-1.1,0.6-1.9c0-0.8-0.2-1.4-0.6-1.9 c-0.4-0.5-1.1-0.7-1.9-0.7h-1.1v5.1H87.8z M99,32v2h2.4v0.9H99v2.1h2.7V38h-3.8v-7h3.8V32H99z M109.4,32v2h2.4v0.9h-2.4v2.1h2.7V38 h-3.8v-7h3.8V32H109.4z M123.6,33.1c0,0.4-0.1,0.7-0.2,1c-0.2,0.3-0.4,0.6-0.8,0.8c-0.4,0.2-0.8,0.3-1.4,0.3h-1.3V38h-1.1v-7h2.4 c0.5,0,1,0.1,1.3,0.3c0.4,0.2,0.7,0.4,0.8,0.7C123.5,32.4,123.6,32.7,123.6,33.1z M121.1,34.2c0.4,0,0.8-0.1,1-0.3 c0.2-0.2,0.3-0.5,0.3-0.8c0-0.8-0.4-1.1-1.3-1.1h-1.3v2.3H121.1z M133.9,31V32H131v2h2.3V35H131v3h-1.1v-7H133.9z M144.4,36.6h-2.9 L141,38h-1.2l2.5-7h1.3l2.5,7h-1.2L144.4,36.6z M144.1,35.7l-1.1-3.2l-1.1,3.2H144.1z M156.2,38l-2.7-3.1V38h-1.1v-7h1.1v3.2 l2.7-3.2h1.4l-3,3.5l3.1,3.5H156.2z M165,32v2h2.4v0.9H165v2.1h2.7V38h-3.8v-7h3.8V32H165z M176.6,38.1c-0.5,0-0.9-0.1-1.3-0.2 c-0.4-0.2-0.7-0.4-0.9-0.7c-0.2-0.3-0.3-0.7-0.3-1h1.2c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.5,0.3,0.9,0.3c0.4,0,0.7-0.1,0.9-0.3 c0.2-0.2,0.3-0.4,0.3-0.7c0-0.2-0.1-0.4-0.2-0.6c-0.1-0.1-0.3-0.3-0.5-0.3c-0.2-0.1-0.5-0.2-0.8-0.3c-0.5-0.1-0.8-0.2-1.1-0.4 c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.3-0.3-0.6-0.3-1c0-0.4,0.1-0.8,0.3-1c0.2-0.3,0.5-0.5,0.8-0.7s0.8-0.2,1.2-0.2 c0.7,0,1.2,0.2,1.6,0.5c0.4,0.3,0.7,0.8,0.7,1.4h-1.3c0-0.3-0.1-0.5-0.4-0.6c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.6,0.1-0.8,0.2 c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.2,0.8,0.3c0.5,0.1,0.8,0.3,1.1,0.4 c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.3,0.3,0.6,0.3,1c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.6-0.8,0.8C177.6,38,177.1,38.1,176.6,38.1z M186,38.1c-0.2,0-0.4-0.1-0.5-0.2s-0.2-0.3-0.2-0.5s0.1-0.4,0.2-0.5s0.3-0.2,0.5-0.2c0.2,0,0.4,0.1,0.5,0.2s0.2,0.3,0.2,0.5 s-0.1,0.4-0.2,0.5S186.2,38.1,186,38.1z M192.8,34.5c0-0.7,0.2-1.3,0.5-1.8c0.3-0.5,0.8-1,1.3-1.3c0.5-0.3,1.1-0.5,1.8-0.5 c0.7,0,1.4,0.2,2,0.6c0.6,0.4,1,0.9,1.3,1.5h-1.4c-0.2-0.4-0.4-0.6-0.8-0.8c-0.3-0.2-0.7-0.3-1.1-0.3c-0.5,0-0.9,0.1-1.2,0.3 s-0.6,0.5-0.8,0.9c-0.2,0.4-0.3,0.8-0.3,1.3c0,0.5,0.1,1,0.3,1.4c0.2,0.4,0.5,0.7,0.8,0.9c0.4,0.2,0.8,0.3,1.2,0.3 c0.4,0,0.8-0.1,1.1-0.3c0.3-0.2,0.6-0.5,0.8-0.8h1.4c-0.3,0.7-0.7,1.2-1.3,1.5c-0.6,0.4-1.2,0.5-2,0.5c-0.7,0-1.2-0.2-1.8-0.5 c-0.5-0.3-1-0.7-1.3-1.3C193,35.8,192.8,35.2,192.8,34.5z M209.3,38.1c-0.6,0-1.2-0.2-1.8-0.5c-0.5-0.3-1-0.7-1.3-1.3 c-0.3-0.5-0.5-1.2-0.5-1.8c0-0.7,0.2-1.3,0.5-1.8c0.3-0.5,0.8-1,1.3-1.3c0.5-0.3,1.1-0.5,1.8-0.5c0.7,0,1.2,0.2,1.8,0.5 c0.5,0.3,1,0.7,1.3,1.3s0.5,1.2,0.5,1.8c0,0.7-0.2,1.3-0.5,1.8c-0.3,0.5-0.7,1-1.3,1.3C210.5,37.9,209.9,38.1,209.3,38.1z M209.3,37.1c0.5,0,0.9-0.1,1.2-0.3c0.4-0.2,0.6-0.5,0.8-0.9c0.2-0.4,0.3-0.8,0.3-1.4c0-0.5-0.1-1-0.3-1.3c-0.2-0.4-0.5-0.7-0.8-0.9 c-0.4-0.2-0.8-0.3-1.2-0.3c-0.5,0-0.9,0.1-1.2,0.3s-0.6,0.5-0.9,0.9c-0.2,0.4-0.3,0.8-0.3,1.3c0,0.5,0.1,1,0.3,1.4 c0.2,0.4,0.5,0.7,0.9,0.9C208.4,37,208.8,37.1,209.3,37.1z M226.5,31v7h-1.1v-4.8l-2.1,4.8h-0.8l-2.1-4.8V38h-1.1v-7h1.2l2.4,5.5 l2.4-5.5H226.5z'/%3E%3Cpath class='st0' d='M2.4,5h16.9c5.5,0,10,4.5,10,10v12.8c0,5.5-4.5,10-10,10H2.4V5z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='16.277' y1='38.6739' x2='17.5047' y2='13.0796' gradientTransform='matrix(1 0 0 -1 0 44)'%3E%3Cstop offset='1' style='stop-color:%230968F7'/%3E%3Cstop offset='1' style='stop-color:%230040A0'/%3E%3C/linearGradient%3E%3Cpath class='st3' d='M0,1v39.8c6,0,16.3,0.8,21.7-1.1C43,32.4,37.1,1,15.4,1L0,1z M13.6,19.6l-6.7-0.9V8.1h10.4 c10.6,0,11.4,13.8,2.9,15.7l8.1,10H20l-6.4-9.3v9.3H6.9v-9.1H3.5v-5.1L13.6,19.6z M13.6,13.2v6.4c1.4,0,3.2,0.1,4.3-0.9 c0.3-0.3,0.6-0.7,0.7-1.1c0.2-0.4,0.3-0.8,0.3-1.3c0-0.4-0.1-0.9-0.3-1.3c-0.2-0.4-0.4-0.8-0.7-1.1C16.8,13,15,13.2,13.6,13.2z'/%3E%3C/svg%3E%0A); */
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: 100%;
                    width: 230px;
                    height: 42px;
                    text-decoration: none;
                    display: inline-block;
                  }

                  .footer-list {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-wrap: wrap;
                    margin-bottom: 30px;
                    padding-inline-start: 0;
                    list-style: none;
                  }

                    .footer-item {
                      margin-right: 50px;
                      list-style: none;
                    }

                      .footer-item:last-child {
                        margin: 0;
                      }

                      .footer-item a {
                        text-transform: uppercase;
                        transition: all 0.3s ease;
                        background-color: transparent;
                        text-decoration: none;
                        display: block;
                        cursor: pointer;
                        padding: 0;
                      }

                        body.white-theme .footer-item a {
                          color: #000;
                        }

                        body.dark .footer-item a {
                          color: #fff;
                        }

                        body.white-theme .footer-text, body.white-theme .copy {
                          color: #000 !important;
                        }

                        body.dark .footer-text, body.dark .copy {
                          color: #fff !important;
                        }

                        .footer-text {
                          margin-bottom: 30px;
                        }

                        .footer-text, .copy {
                          font-size: 12px;
                          text-align: center;
                        }

@media (max-width: 991.98px) {
  .buttons-wrap {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .video-buttons-list li {
    width: 33%;
  }
}

.row {
  display: flex;
  align-items: center;
  position: relative;
}

.block-details .row span {
  margin-top: 0;
  min-width: 70px;
}

.row span {
  font-size: 12px;
  font-weight: 600;
  margin: 5px 10px 0 0;
}

body.white-theme .row span {
  color: #696B71;
}

body.dark .row span {
  color: #9E9E9E;
}

.row-list {
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 0;
  margin: 0;
}

.row-item a {
  font-size: 12px;
  padding: 0px 16px;
  border-radius: 10px;
  height: 30px;
  overflow: hidden;
  line-height: 28px;
  margin: 3px;
  text-decoration: none;
  display: block;
  width: unset;
}

body.white-theme .row-item a {
  background: #fff;
  color: #696B71;
}

body.dark .row-item a {
  color: #9E9E9E;
  background: #222428;
}

@media (min-width: 992px) {
  .row-item a:hover {
    color: #fff !important;
  }
}

.block-screenshots {
  display: flex;
  flex-wrap: wrap;
}

.block-screenshots .sh {
  margin: 0 5px 20px 5px;
}

#tab-screenshots {
  margin: 0 -5px 0 -5px;
}

.block-screenshots .item img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: top;
}

@media (max-width: 575.98px) {
  #tab-screenshots {
    margin: 0;
  }
  .block-screenshots .sh {
    margin: 0 0 20px 0;
  }
}

.dls {
  flex-direction: column;
  width: 100%;
}

.dls a {
  margin: 0;
  text-align: center;
}

.dls li {
  margin: 0 0 6px 0;
}

.dls li:last-child {
  margin: 0;
}

#chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 42px;
  transition: all 0.3s ease;
}

body.white-theme #chat:hover {
  color: #000;
}

body.dark #chat:hover {
  color: #fff;
}

.box {
  margin-bottom: 20px;
}

.box:last-child {
  margin-bottom: 0;
}

.box h2 a, .box h2 span {
  text-decoration: none;
  text-align: left;
  padding: 20px;
  display: block;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

body.white-theme .box h2 a, body.white-theme .box h2 span {
  background-color: #DADFE9;
  color: #000;
}

body.dark .box h2 a, body.dark .box h2 span {
  background-color: #222428;
  color: #fff;
}

.box ul {
  margin: 0;
  padding-inline-start: 0;
}

.box ul li a {
  margin: 1px 0 0 0;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  border-radius: unset;
  transition: all 0.3s ease;
}

body.white-theme .box ul li a {
  color: #696B71;
  background-color: #fff;
}

body.dark .box ul li a {
  color: #9E9E9E;
  background-color: #222428;
}

.box ul li:last-child a {
  border-radius: 0 0 10px 10px;
}

.box h2 a:hover, .box ul li a:hover {
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .box h2 a, .box h2 span {
    font-size: 18px;
    padding: 10px;
  }
}

.capit {
  text-transform: capitalize;
}

body.dark .page-view {
  color: #fff;
}

.page-view a {
  text-decoration: none;
}

body.white-theme .page-view {
  color: #000
}

.lefth {
  justify-content: unset;
}</pre></body></html>