/*** CUSTOM STYLES / HEADER / FOOTER  ***/

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: white;
    font-size: 16px;
}

body * {
    font-family: 'Oswald', sans-serif;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.custom_pages_content a {
    color: none;
    text-decoration: inherit;
}





img {
    user-select: none;
}

input {
    -webkit-appearance: none;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

button {
    outline: none;
    border: none;
}

.elm-responsive {
    max-width: 100%;
    height: auto;
}

.bg-img {
    background-repeat: no-repeat;
}

/*** FONTS ***/

.text-center {
    text-align: center;
}

.colored-text {
    color: #FA0695;
}

.dark-text {
    color: black;
}

.text-m {
    font-size: 22px;
}

.fw-300 {
    font-weight: 300;
}

.fw-700 {
    font-weight: 700;
}

h1 {
    font-size: 4rem;
}


h2 {
    font-size: 3.5rem;
    color: #FA0695;
    font-weight: 700;
}

h2.lines {
    text-transform: uppercase;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2.lines:before,
h2.lines:after {
    content: '';
    border-top: 2px solid #FA0695;
    flex: 1 0 20px;
}

h2.lines:before {
    margin: 0 20px 0 0;
}

h2.lines:after {
    margin: 0 0 0 20px;
}

h3:not(.xl) {
    font-size: 1.75rem;
}

h3.xl {
    font-size: 2rem;
}

/*** ./FONTS ***/

/* BUTTONS */

.btn-holder button {
    text-transform: uppercase;
    background-color: #FA0695;
    font-weight: 500;
    color: white;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 2rem;
}

.btn-holder button.xl {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.btn-holder button.m {
    font-size: 1.8rem;
    padding: 0.6rem 2rem;
}

.btn-holder button:hover {
    background-color: #E20586;
}

/* ./BUTTONS */

/*** LAYOUT ***/

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.container-fluid {
    width: 100%;
}

.container {
    margin: auto;
}

.container-m {
    width: 80%;
    max-width: 1520px;
}

.container-l {
    width: 85%;
    max-width: 1640px;
}

/* FLEX */

.flex {
    display: -webkit-flex;
    display: flex;
}

.flex-inline {
    display: -webkit-inline-flex;
    display: inline-flex;
}

.justify-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.justify-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.justify-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.align-center {
    -webkit-align-items: center;
    align-items: center;
}

.wrap-items {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ./FLEX */

/*** ./LAYOUT ***/

header .announcement-bar-holder {
    background-color: #FA0695;
}

header .announcement-bar-holder .announcement-bar {
    text-align: right;
}

header .announcement-bar-holder .announcement-bar h4 {
    font-weight: 500;
    padding: 1rem;
    display: inline-block;
}

header .header-holder {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 10;
    transition: background-color .3s linear;
}

header .header-holder.no-opacity {
    background-color: rgba(0, 0, 0, 1);
}

header .header-holder.section-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

header .header-holder .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-holder .logo {
    max-width: 260px;
    width: 18%;
    line-height: 1;
}

header .header-holder .menu {
    display: flex;
    flex-grow: 0.8;
    align-items: center;
    justify-content: space-between;
}

/* menu links */
header .header-holder .menu a {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 20px;
}

header .header-holder .menu a:not(.join-link) {
    padding: 0.5rem;
    margin: 0.5rem;
    position: relative;
}

header .header-holder .menu .btn-holder {
    margin: 0 0.5rem;
}

header .header-holder .menu a:not(.join-link):after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    display: block;
    margin-top: 4px;
    right: 0;
    transition: width .3s ease;
}

header .header-holder .menu a {
    text-decoration: none;
    color: #ffffff;
}

header .header-holder .menu a:not(.join-link):hover:after,
header .header-holder .menu a:not(.join-link).active-link:after {
    width: 100%;
    left: 0;
    background: #FA0695;
}

/* ./menu links */


header .header-holder .search-bar {
    width: 240px;
    border-bottom: 1px solid #ffffff;
    margin: 0 0.5rem;
}

header .header-holder .search-bar input {
    width: 100%;
    background-image: url('../images/global/search.svg');
    background-size: 1rem;
    background-repeat: no-repeat;
    background-position: center right 0.2rem;
    padding-bottom: 0.2rem;
    padding-right: 1.5rem;
}

header .header-holder .sign-up {
    display: flex;
    align-items: center;
}

@media (min-width: 489.99px) {
    .header .header-holder .menu .ham-menu img.show-sm {
        display: none !important;
        opacity: 0;
    }
}

/* JS */
header .header-holder.js-scroll {
    top: 0;
    background: black;
}

header .header-holder.js-scroll-hidden {
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
}

/* ./JS */

.footer {
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
}

.footer.section-wrapper {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.footer .container {
    position: relative;
}

.footer .footer-links a:hover {
    color: #FA0695;
}


.footer .footer-links a {
    text-decoration: none;
    color: white;
    line-height: 1.5;
}

.footer .media-n-copyright {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.footer .media-n-copyright .media-icons {
    display: flex;
    justify-content: space-between;
}

.footer .media-n-copyright .media-icons .media-icon {
    width: 3rem;
    height: 3rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #FA0695;
}

.footer .media-n-copyright .media-icons .media-icon svg.svg-inline--fa,
.footer .media-n-copyright .media-icons .media-icon i {
    font-size: 1.3rem;
    color: white;
}

.footer .media-n-copyright .media-icons .media-icon:hover {
    background-color: #E20586;
}

@media (max-width: 1600px) {

    h1 {
        font-size: 3.7rem;
    }

    h2 {
        font-size: 3.3rem;
    }

}

@media (max-width: 1399.99px) {

    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 3.1rem;
    }

    header .header-holder .search-bar {
        width: 200px;
    }
}

@media (max-width: 1199.98px) {

    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2.9rem;
    }

    h3:not(.xl) {
        font-size: 1.50rem;
    }

    h3.xl {
        font-size: 1.75rem;
    }

    .text-m {
        font-size: 20px;
    }

    .btn-holder button {
        font-size: 1.8rem;
    }

    .btn-holder button.xl {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .container-m {
        width: 85%;
    }

    .container-l {
        width: 90%;
    }

    .footer {
        font-size: 16px;
    }

    .footer.section-wrapper {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .footer .media-n-copyright {
        position: static;
        top: unset;
        left: unset;
        transform: none;
    }

    .footer .media-n-copyright .media-icons {
        justify-content: center;
        margin-top: 2rem;
    }

    .footer .media-n-copyright .media-icons .media-icon {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }


}

@media (max-width: 1050px){
    header .header-holder .menu .ham-item.js-ham-hidden {
        display: none !important;
    }

    header .announcement-bar-holder .announcement-bar h4 {
        padding: 0.8rem;
    }

    header .header-holder .container {
        display: block;
    }

    header .header-holder .logo {
        width: 185px;
    }

    header .header-holder .menu a {
        font-size: 18px;
    }

    header .header-holder .menu .ham-item {
        margin-top: 1rem;
    }

    header .header-holder .menu .search-bar,
    header .header-holder .menu .ham-menu {
        position: absolute;
        top: 25px;
    }

    .header .header-holder .menu .search-bar {
        right: calc(10% + 35px);
    }

    header .header-holder .menu .ham-menu {
        right: 5%;
        margin-left: 1rem;
    }

    header .header-holder .menu .ham-menu:hover {
        cursor: pointer;
    }

    header .header-holder .menu .ham-menu .ham>div {
        width: 2rem;
        border-bottom: 1.5px solid #ffffff;
        margin: 7.5px 0;
        border-radius: 5px;
        transition: .2s ease-in;
    }

    header .header-holder .menu .ham-menu .ham:hover>div:first-of-type {
        margin-top: 6px;
    }

    header .header-holder .menu .ham-menu .ham:hover>div {
        margin-bottom: 9.5px;
    }

    header .header-holder .menu .btn-holder .join-link button.m {
        font-size: 1.6rem;
        padding: 0.4rem 1.8rem;
    }

    header .header-holder .menu {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    .text-m {
        font-size: 18px;
    }

    .container-m {
        width: 90%;
    }

    .container-l {
        width: 95%;
    }

    header .announcement-bar-holder .announcement-bar h4 {
        padding: 0.6rem;
    }

    header .header-holder .menu a {
        font-size: 16px;
    }

    .header .header-holder .menu .search-bar {
        right: calc(2.5% + 35px);
    }

    header .header-holder .menu .ham-menu {
        right: 2.5%;
    }

}

@media (max-width: 575.98px) {

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h2.lines:before,
    h2.lines:after {
        content: none;
    }

    h3:not(.xl) {
        font-size: 1.35rem;
    }

    h3.xl {
        font-size: 1.6rem;
    }

    .btn-holder button {
        font-size: 1.6rem;
    }

    .btn-holder button.xl {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    header .header-holder .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 489.98px) {
    header .header-holder .menu .search-bar {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    header .header-holder .menu .search-bar.js-hide-sm {
        display: none;
    }

    header .header-holder .menu .page-links {
        order: 2;
    }

    header .header-holder .menu .sign-up {
        order: 3;
    }

    .header .header-holder .menu .ham-menu img {
        position: absolute;
        right: 150%;
        top: 6.5px;
    }

    .header .header-holder .menu .ham-menu img:hover {
        cursor: pointer;
    }

    header .header-holder .search-bar input {
        background-image: none;
    }

}

/* ./CUSTOM STYLES / HEADER / FOOTER */

/* update_blocks  -- single video, search results, footer links */

.search-page,
.single-page.update_block,
.footer-pages {
    padding-top: 10rem;
}

.search-page .titleBlock {
    margin-bottom: 4rem;
}

.single-page.update_block {
    background-color: #000000;
    width: 100%;
}

.single-page.update_block .update-block-info {
    margin-bottom: 0.5rem;
}

.single-page.update_block .update_block_footer .btn-holder button.xl {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-page .update-table-block-info-holder {
    max-width: 992px;
    margin: auto;
}

.single-page.update_block .update-tags {
    color: #FA0695;
}

.single-page.update_block .update-tags a {
    color: #ffffff;
}

.single-page.update_block .update-tags a:hover {
    color: #FA0695;
}

.single-page .update-table-block-image-holder {
    width: 100%;
    max-width: 992px;
    margin: auto;
}

.single-page .update-table-block-image-holder .update-image {
    width: 100%;
    margin: auto;
}

.single-page .update-table-block-image-holder .update-image .large-image-holder {
    width: 50.21%;
    float: left;
    position: relative;
}

.single-page .update-table-block-image-holder .update-image .large-image-holder .play-btn-holder {
    width: 50px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.single-page .update-table-block-image-holder .update-image .large-image-holder:after {
    clear: both;
    content: "";
    display: table;
}


.single-page .update-table-block-image-holder .update-image .thumbs.left.large_update_thumb {
    width: 100%;
}

.single-page .update-table-block-image-holder .update-image .left {
    width: 22.5%;
}

.single-page .update-table-block-image-holder .update-image .thumbs {
    width: 100%;
    padding: 0.25rem 0.25rem 0 0.25rem;
}

.search-page .updatesArea {
    display: flex;
    flex-wrap: wrap;
}

.search-page .updatesArea .updateItem,
.search-page .titleBlock {
    padding: 1rem;
}

.search-page .updatesArea .updateItem {
    width: 25%;
    max-width: 25%;
    margin: 0;
}

.footer-pages:not(.faq) .container {
    max-width: 768px;
    width: 90%;
}

.footer-pages {
    min-height: 58vh;
}

.footer-pages .title {
    margin-bottom: 2rem;
}

.footer-pages .custom_pages_content {
    font-weight: 300;
    font-size: 1.2rem;
}

@media (max-width: 1280px) {
    .single-page .update-table-block-image-holder .update-image {
        max-width: 100%;
    }

    .search-page .titleBlock {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1199.98px) {

    .search-page,
    .single-page.update_block,
    .footer-pages {
        padding-top: 6rem;
    }

    .search-page .updatesArea .updateItem,
    .search-page .titleBlock {
        padding: 0.8rem;
    }

    .search-page .updatesArea .updateItem {
        width: 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 767.98px) {

    .single-page .update-table-block-info-holder,
    .single-page .update-table-block-image-holder {
        max-width: 425px;
    }

    .single-page .update-table-block-image-holder .update-image .large-image-holder {
        width: 100%
    }

    .single-page .update-table-block-image-holder .update-image .left {
        width: 50%;
    }

    .search-page .titleBlock {
        text-align: center;
    }

    .search-page .updatesArea {
        text-align: left;
    }

    .search-page .updatesArea .updateItem,
    .search-page .titleBlock {
        padding: 0.6rem;
    }

    .search-page .updatesArea .updateItem {
        width: 50%;
        max-width: 50%;
    }

    .footer-pages:not(.faq) .container {
        max-width: 552px;
    }

    .footer-pages .title {
        text-align: center;
    }

}

@media (max-width: 575.98px) {
    .single-page.update_block .update_block_footer .btn-holder button.xl {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .single-page.update_block .update_block_footer .btn-holder button.xl {
        width: 100%;
    }

    .search-page .updatesArea .updateItem,
    .search-page .titleBlock {
        padding: 0.4rem;
    }

    .search-page .updatesArea .updateItem {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }
}

/* ./SINGLE VIDEO */