/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-weight: 400
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    text-decoration: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

ul {
    padding: 0;
    list-style-type: none
}

@font-face {
    font-family: custom;
    src: url(../fonts/custom.eot);
    src: url(../fonts/custom.eot?#iefix) format("embedded-opentype"), url(../fonts/custom.woff) format("woff"), url(../fonts/custom.ttf) format("truetype"), url(../fonts/custom.svg#custom) format("svg");
    font-weight: 400;
    font-style: normal
}

[class*=icon-]:before {
    display: inline-block;
    font-family: custom;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-arr_dn:before {
    content: '\0041'
}

.icon-arr_l:before {
    content: '\0042'
}

.icon-arr_r:before {
    content: '\0043'
}

.icon-arr_up:before {
    content: '\0044'
}

.icon-calendar:before {
    content: '\0045'
}

.icon-video:before {
    content: '\0046'
}

* {
    color: #0c0010
}

button:focus {
    outline: 0
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible
}

.hamburger:hover {
    opacity: .7
}

.hamburger.is-active:hover {
    opacity: .7
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
    background-color: #fff
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 40px;
    height: 4px;
    background-color: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block
}

.hamburger-inner::before {
    top: -10px
}

.hamburger-inner::after {
    bottom: -10px
}

.hamburger--3dx .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px
}

.hamburger--3dx .hamburger-inner {
    -webkit-transition: background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .15s cubic-bezier(.645, .045, .355, 1);
    transition: background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .15s cubic-bezier(.645, .045, .355, 1);
    transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform .15s cubic-bezier(.645, .045, .355, 1)
}

.hamburger--3dx .hamburger-inner::after,
.hamburger--3dx .hamburger-inner::before {
    -webkit-transition: -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1);
    transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1), -webkit-transform 0s .1s cubic-bezier(.645, .045, .355, 1)
}

.hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent!important;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.hamburger--3dx.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg)
}

.hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}

body {
    font-size: 0;
    background-color: #04040e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif
}

.g74s3mpcontainer {
    width: 100%;
    max-width: 1170px;
    padding: 0 5px;
    margin: 0 auto
}

.g74s3mpmain-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.g74s3mpaside {
    background-color: #fff;
    position: relative;
    width: 180px;
    min-width: 180px
}

.g74s3mpaside:before {
    content: '';
    height: 100%;
    width: 3000px;
    background-color: #fff;
    top: 0;
    right: 100%;
    position: absolute
}

.g74s3mpguy {
    padding: 10px;
    margin-bottom: 20px
}

.g74s3mpguy img {
    width: 100%;
    height: auto
}

.g74s3mpcat-list li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 5px
}

.g74s3mpcat-list li a:hover .g74s3mpcat-title {
    color: #fe0971
}

.g74s3mpcat-list li a:hover .g74s3mpcat-title:before {
    color: #fe0971
}

.g74s3mpcat-list li a .g74s3mpcat-title {
    color: #04040e;
    font-size: 14px;
    font-weight: 400;
    line-height: 34px;
    position: relative;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.g74s3mpcat-list li a .g74s3mpcat-title:before {
    font-family: custom;
    color: #9e9e9e;
    font-size: 11px;
    left: 0;
    top: 0;
    position: absolute;
    content: '\0043'
}

.g74s3mpcat-list li a .g74s3mpcat-quantity {
    color: grey;
    font-size: 10px;
    font-weight: 400;
    line-height: 34px;
    min-width: 30px
}

.g74s3mpcontent {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    margin-left: 7px
}

.g74s3mptitle {
    color: grey;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px
}

.g74s3mpnav a {
    display: inline-block;
    color: #fe0971;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    margin-right: 20px
}

.g74s3mpnav a.active,
.g74s3mpnav a:hover {
    color: #fff
}

.g74s3mpheader {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0
}

.g74s3mplogo {
    width: 150px;
    min-width: 150px;
    margin-right: 100px
}

.g74s3mplogo img {
    width: 100%
}

.g74s3mplogo span {
    color: grey;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap
}

.g74s3mpheader-text {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px
}

.g74s3mptop-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 18px;
    background-color: rgba(255, 255, 255, .1);
    padding: 5px;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.g74s3mptop-item:hover {
    background-color: rgba(255, 255, 255, .2)
}

.g74s3mptop-content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0
}

.g74s3mptop-img {
    width: 290px;
    position: relative;
    min-width: 290px;
    margin-right: 7px
}

.g74s3mptop-img a {
    width: 290px;
    position: relative;
    min-width: 290px;
    display: block;
    height: auto;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden
}

.g74s3mptop-img img {
    width: 100%;
    height: auto
}

.g74s3mprating {
    position: absolute;
    right: 7px;
    top: 7px;
    color: #ff0d71;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    width: 42px;
    height: 42px;
    border: 3px solid #272b46;
    background-color: #04040e;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center
}

.g74s3mprating span {
    color: #ff0d71;
    font-size: 12px
}

.g74s3mptop-title-wrap {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.g74s3mptop-title-wrap h3 {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
    white-space: nowrap;
    margin-right: 20px;
    max-width: 100%
}

.g74s3mptop-title-wrap h3 a {
    margin: 0;
    color: #8ca2cc;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.g74s3mptop-title-wrap h3 a:hover {
    color: #fff;
    text-decoration: underline
}

.g74s3mptop-extra span {
    position: relative;
    color: #fefefe;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 20px;
    margin-right: 20px
}

.g74s3mptop-extra span:before {
    font-family: custom;
    font-size: 17px;
    color: grey;
    content: '\0046';
    position: absolute;
    left: 0;
    top: 0
}

span.g74s3mptop-date:before {
    content: '\0045'
}

.g74s3mptop-text {
    color: grey;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    max-height: 66px;
    overflow: hidden
}

.g74s3mptop-go {
    color: #fb0d70;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #26283b;
    background-color: #04040e;
    display: table;
    padding: 5px 20px
}

.g74s3mptop-go:hover {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #fe0971;
    background-color: #fe0971;
    color: #fff
}

.g74s3mpin-out {
    white-space: nowrap;
    border-bottom: 1px solid #36363e
}

.g74s3mptraff-count {
    color: #b8b8b8;
    font-size: 10px;
    font-weight: 400;
    line-height: 24.44px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-left: 13px
}

.g74s3mptraff-count:first-child {
    margin-right: 20px
}

.g74s3mptraff-count:before {
    content: '\0041';
    font-family: custom;
    font-size: 10px;
    color: #f80b6d;
    position: absolute;
    left: 0;
    top: 0
}

.g74s3mptraff-count span {
    color: #fff
}

.g74s3mptraff-count.out:before {
    content: '\0044';
    color: #272b46
}

.g74s3mpthumb {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px 10px 0;
    width: -webkit-calc(33.3333% - 5px);
    width: calc(33.3333% - 5px)
}

.g74s3mpthumb:hover .g74s3mpthumb-title {
    color: #fe0971
}

.g74s3mpthumb-img {
    position: relative;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden
}

.g74s3mpthumb-img img {
    width: 100%;
    height: auto
}

.g74s3mpthumb-info {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 5px 10px;
    width: 100%
}

.g74s3mpthumb-title {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
    padding: 3px 10px
}

.g74s3mpthumb-title.g74s3mpthumb-cat-title {
    font-size: 18px;
    text-align: center
}

.g74s3mpthumb-tags {
    max-height: 24px;
    overflow: hidden
}

.g74s3mpthumb-tags a {
    color: grey;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 10px;
    display: inline-block;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    border: 1px solid #26283b;
    background-color: #04040e;
    margin: 0 2px 2px 0
}

.g74s3mpthumb-tags a:hover {
    border: 1px solid #fe0971;
    background-color: #fe0971;
    color: #fff
}

.g74s3mpfooter {
    margin: 20px 0
}

.g74s3mpfooter-text {
    color: grey;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    margin: 0
}
.g74s3mpfooter-text a { color: rgb(251,13,112); }
.g74s3mpfooter-text a:hover { color: rgb(255,151,151); }

.g74s3mpfooter-text2 {
    color: #b8b8b8;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    text-align: left;
    margin: 5px
}

.g74s3mppagination {
    display: table;
    margin: 0 auto 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #26283b;
    background-color: #04040e
}

.g74s3mppagination a,
.g74s3mppagination span {
    display: inline-block;
    color: #fb0d70;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 5px 20px;
    vertical-align: top
}

.g74s3mppagination a:hover,
.g74s3mppagination span {
    color: #fff
}

.g74s3mppagination .g74s3mpnext,
.g74s3mppagination .g74s3mpprev {
    position: relative
}

.g74s3mppagination .g74s3mpnext:before,
.g74s3mppagination .g74s3mpprev:before {
    content: '\0042';
    font-family: custom;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.g74s3mppagination .g74s3mpnext:before {
    content: '\0043'
}

.g74s3mpcat-more {
    color: #fb0d70;
    font-size: 14px;
    padding: 5px 10px;
    display: block;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #b0b0b0;
    background-color: #fff;
    text-align: center;
    margin: 10px
}

.g74s3mpcat-more:hover {
    color: #fff;
    border: 1px solid #fe0971;
    background-color: #fe0971
}

.g74s3mptags {
    text-align: center
}

.g74s3mptags a {
    color: #f00c6b;
    font-weight: 400;
    line-height: 34px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px
}

.g74s3mptags a:hover {
    color: #04040e
}

.g74s3mptag-size-1 {
    font-size: 10px
}

.g74s3mptag-size-2 {
    font-size: 12px
}

.g74s3mptag-size-3 {
    font-size: 14px
}

.g74s3mptag-size-4 {
    font-size: 20px
}

.g74s3mptag-size-5 {
    font-size: 24px
}

.hamburger {
    display: none
}

.descsites { max-width: 1150px; margin: 5px auto; overflow: hidden; font-size: 13px; text-align: justify; line-height: 16px; padding: 4px; background-color: rgb(30,30,39); color: grey; border-radius: 6px; }


@media screen and (max-width:1000px) {
    .g74s3mpmain-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .g74s3mpaside {
        width: 100%;
        background-color: transparent
    }
    .g74s3mpaside:before {
        display: none
    }
    .g74s3mpguy {
        display: none
    }
    .g74s3mpfooter {
        display: none
    }
    ul.g74s3mpcat-list li a span.g74s3mpcat-title {
        color: #fff
    }
    .g74s3mpcat-list {
        -webkit-columns: 5;
        -moz-columns: 5;
        columns: 5
    }
    .g74s3mpcat-list li {
        display: inline-block;
        vertical-align: top;
        width: 100%
    }
}

@media screen and (max-width:850px) {
    .hamburger {
        display: block
    }
    .g74s3mpnav {
        position: absolute;
        left: 0;
        top: -100%;
        width: 100%;
        background: rgba(0, 0, 0, .8);
        -webkit-transition: top .25s ease-in-out;
        transition: top .25s ease-in-out;
        z-index: 2
    }
    .g74s3mpnav.is-active {
        top: 64px
    }
    .g74s3mpnav a {
        display: block;
        font-size: 24px;
        text-align: center
    }
}

@media screen and (max-width:700px) {
    .g74s3mpthumb {
        width: -webkit-calc(50% - 5px);
        width: calc(50% - 5px)
    }
    .g74s3mpcat-list {
        -webkit-columns: 3;
        -moz-columns: 3;
        columns: 3
    }
    .g74s3mptop-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .g74s3mptop-img {
        margin: 0 auto 10px
    }
    .g74s3mptop-go {
        margin: 0 auto 20px
    }
}

@media screen and (max-width:400px) {
    .g74s3mpthumb {
        width: 100%
    }
    .g74s3mplogo {
        margin-right: 0
    }
    .g74s3mpcat-list {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2
    }
    .g74s3mptop-title-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}