@font-face {
    font-family: "Coluna-CondensedBold";
    src: url("../fonts/Coluna-CondensedBold/Coluna-CondensedBold.eot");
    src: url("../fonts/Coluna-CondensedBold/Coluna-CondensedBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Coluna-CondensedBold/Coluna-CondensedBold.svg#Coluna-CondensedBold") format("svg"), url("../fonts/Coluna-CondensedBold/Coluna-CondensedBold.ttf") format("truetype"), url("../fonts/Coluna-CondensedBold/Coluna-CondensedBold.woff") format("woff"), url("../fonts/Coluna-CondensedBold/Coluna-CondensedBold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@-webkit-keyframes shine {
    100% {
        transform: rotateZ(60deg) translate(3em, -14em);
    }
}

@keyframes shine {
    100% {
        transform: rotateZ(60deg) translate(3em, -14em);
    }
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #ffffff;
    background-color: #000000;
}

.btn {
    background-color: #fab537;
    border-radius: 60px;
    font-family: "Coluna-CondensedBold", Helvetica, sans-serif;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    font-size: 30px;
    padding-bottom: 0;
    min-width: 212px;
    min-height: 47px;
    justify-content: center;
    display: flex;
    align-items: center;
    transition: 0.4s all;
    border: 2px solid transparent;
}

.btn:hover, .btn:active {
    background-color: #000000;
    color: #fab537;
    border-color: #fab537;
}

header {
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header .navbar {
    position: inherit;
}

header .navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 15px;
    padding-left: 15px;
    transition: 0.4s ease-in all;
}

header .navbar-dark .navbar-nav .nav-link:hover, header .navbar-dark .navbar-nav .nav-link:active, header .navbar-dark .navbar-nav .nav-link:active:focus, header .navbar-dark .navbar-nav .nav-link.active {
    color: #fab537;
}

header .navbar-dark .navbar-nav .nav-link:hover svg, header .navbar-dark .navbar-nav .nav-link:active svg, header .navbar-dark .navbar-nav .nav-link:active:focus svg, header .navbar-dark .navbar-nav .nav-link.active svg {
    fill: #fab537;
}

header .navbar-dark .navbar-nav .nav-link svg {
    fill: #ffffff;
}

header .navbar-dark .navbar-nav .nav-link svg.arrow-down {
    margin-bottom: 3px;
    width: 16px;
    height: 16px;
}

header .navbar-dark .navbar-nav .switcher {
    position: relative;
    z-index: 9999;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0px;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu > li > a {
    text-transform: capitalize;
    color: #ffffff;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    transition: 0.5s ease all;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu > li > a .ico-arrow {
    fill: #fab537;
    transform: rotate(-90deg);
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu > li:hover > a {
    color: #fab537;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu > li:hover > a svg {
    fill: #fab537;
}

header .navbar-dark .navbar-nav .switcher:hover .dropdown_menu {
    display: block;
}

header .header-cta .btn {
    margin-right: 20px;
}

header .navbar-brand {
    margin-right: 25px;
}

header .navbar-brand img {
    max-width: 190px;
}

.dropdown_menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    perspective: 1000px;
    z-index: -1;
    min-width: 270px;
}

.dropdown_menu--animated {
    display: none;
    -webkit-animation: rotateMenu 400ms ease-in-out forwards;
    animation: rotateMenu 400ms ease-in-out forwards;
    transform-origin: top center;
}

@-webkit-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

.trigger-search svg {
    fill: #fff;
}

footer {
    color: #323232;
}

footer .footer-logo img {
    max-width: 290px;
}

footer .footer-cta .btn {
    font-size: 57px;
    border-radius: 60px;
}

footer .footer-wrapper {
    text-align: center;
    width: 950px;
    max-width: 100%;
    margin: 0 auto;
}

footer .footer-wrapper .pagination {
    justify-content: center;
    flex-wrap: wrap;
}

footer .footer-links {
    color: #323232;
}

footer .footer-links a {
    font-size: 17px;
    font-weight: 700;
    color: #323232;
    transition: 0.4s ease-in all;
}

footer .footer-links a:hover, footer .footer-links a:focus {
    color: #fff;
}

footer .copyright-content {
    font-size: 12px;
}

.pagination {
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: #fab537;
    color: #000000;
}

.pagination .page-link {
    margin-bottom: 5px;
    transition: 0.4s ease-in all;
    border: 0;
    margin-right: 2px;
    margin-left: 2px;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
}

.pagination .page-link:hover, .pagination .page-link:focus {
    background-color: #fab537;
    color: #000000;
}

.main {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 116.5px;
}

.row.gutter-6 {
    margin-left: -6px;
    margin-right: -6px;
}

.row.gutter-6 > div {
    padding-right: 6px;
    padding-left: 6px;
}

.items .banner {
    margin-bottom: 12px;
}

.items .item {
    margin-bottom: 12px;
}

.items .item .item-content {
    padding: 15px;
    padding-bottom: 10px;
    background-color: #1a1a1a;
}

.items .item .item-content h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}

.items .item .item-content h4 a {
    color: #fff;
    text-decoration: none;
}

.items .item .preview {
    position: relative;
    overflow: hidden;
}

.items .item .preview a {
    display: block;
    z-index: 9;
    position: relative;
}

.items .item .preview a:hover, .items .item .preview a:active {
    background-color: rgba(0, 0, 0, 0.09);
}

.items .item .preview img {
    transition: 0.4s ease-in all;
    width: 100%;
}

.items .item .preview .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.items .item .meta {
    font-size: 12px;
    color: #3a3a3a;
    display: flex;
    justify-content: space-between;
}

.items .item .tag-btn {
    background-color: #000000;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    padding: 3px 10px;
    color: #fab537;
    transition: 0.4s ease-in all;
}

.items .item:hover .preview img {
    transform: scale(1.1);
}

.items .item:hover .preview .overlay {
    opacity: 0.5;
}

.caret::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.box-title {
    font-size: 60px;
    font-family: "Coluna-CondensedBold", Helvetica, sans-serif;
}

.section-title {
    font-family: "Coluna-CondensedBold", Helvetica, sans-serif;
    font-size: 66px;
    line-height: 1em;
}

.section-med-title {
    font-family: "Coluna-CondensedBold", Helvetica, sans-serif;
    font-size: 45px;
}

.search {
    padding: 15px;
}

.form-search {
    background-color: #1a1a1a;
    padding: 20px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.form-search .form-control {
    background-color: #ffffff;
    color: #7b7b7b;
    border-radius: 40px;
    height: 70px;
    border: none;
    font-size: 28px;
    font-weight: 700;
    padding: 5px 30px;
    padding-right: 85px;
}

.form-search button {
    position: absolute;
    right: 40px;
    top: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    height: 100%;
    width: 100px;
}

.form-search button svg {
    fill: #000000;
    width: 35px;
    height: 35px;
}

.close-search {
    font-size: 20px;
    color: #7b7b7b;
    font-weight: 800;
    margin-left: 20px;
    position: absolute;
    left: 10px;
}

.pos-relative {
    width: 100%;
    display: flex;
    align-items: center;
}

.player {
    position: relative;
}

.player .btn-play {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -64px;
    margin-top: -64px;
}

.player .overlay {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.09);
    height: 100%;
}

.video-box {
    width: 988px;
    max-width: 100%;
    margin: 0 auto;
}

.video-box .video-content h6 {
    font-size: 29px;
}

.video-box .video-content h6 a {
    font-weight: 700;
    color: #fab537;
    text-decoration: none;
}

.video-box .video-content p {
    font-size: 19px;
}

.tag {
    background-color: #1a1a1a;
    color: #fab537;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 40px;
    transition: 0.5s ease-in all;
    margin-right: 10px;
}

.tag svg {
    margin-right: 15px;
    fill: #fab537;
}

.tag:hover, .tag:focus {
    background-color: #fab537;
    color: #000000;
    text-decoration: none;
}

.tag:hover svg, .tag:focus svg {
    fill: #000000;
}

.tags {
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tags .tag {
    margin-bottom: 10px;
}

.model-box {
    background-color: #1a1a1a;
    padding: 25px;
}

.model-box .model-wrap {
    display: flex;
    align-items: center;
}

.model-box .preview {
    margin-right: 15px;
}

.model-box .model-content h2 {
    font-family: "Coluna-CondensedBold", Helvetica, sans-serif;
    font-size: 60px;
}

.model-box .model-content .btn {
    font-size: 45px;
    padding-left: 30px;
    padding-right: 30px;
}

.like-txt {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    justify-content: flex-end;
    text-decoration: none;
}

.like-txt:hover {
    text-decoration: none;
    color: #ffffff;
}

.like-txt svg {
    fill: #fab537;
    margin-right: 5px;
}

.access-popup {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.access-popup .popup-wrap {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.access-popup .popup-banner {
    position: relative;
}

.access_upgrade {
    display: inline-block;
    max-width: 100%;
}

.access_upgrade_mobile {
    display: none;
    max-width: 100%;
}

a.close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 36px;
}

a.close-popup:hover, a.close-popup:focus {
    color: #fff;
}

p.tagline a.siteLink {
	color: #fab537 !important;
	font-weight: bold;
}

@media (min-width: 1300px) {
    .container {
        max-width: 1250px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }

    header .navbar-dark .navbar-nav .nav-link {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1450px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1550px;
    }
}

@media (min-width: 1700px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1700px;
    }
}

@media (min-width: 1900px) {
    .container {
        max-width: 1700px;
    }
}

@media (max-width: 1200px) {
    .main {
        margin-top: 100.95px;
    }

    header .navbar-dark .navbar-nav .nav-link {
        display: inline-block;
    }

    header .navbar-dark .navbar-nav .nav-link svg.arrow-down {
        fill: #000000;
    }

    .form-search {
        display: block;
        margin-bottom: 20px;
        position: relative;
        background-color: transparent;
        padding: 0;
    }

    .form-search button {
        width: 60px;
        right: 10px;
    }

    .form-search button svg {
        width: 25px;
        height: 25px;
    }

    .form-search .close-search {
        display: none;
    }

    .form-search .form-control {
        height: 60px;
        padding: 5px 60px 5px 20px;
        font-size: 20px;
    }

    header .navbar-dark .navbar-nav .nav-link.active,
  header .navbar-dark .navbar-nav .nav-link:active,
  header .navbar-dark .navbar-nav .nav-link:active:focus,
  header .navbar-dark .navbar-nav .nav-link:hover {
        color: #000000;
    }

    .tags {
        justify-content: flex-start;
    }

    .tags .tag {
        font-size: 18px;
    }

    .box-title,
  .section-title,
  .section-med-title {
        font-size: calc(1.6875rem + ((1vw - 3.2px) * 4.9254));
    }

    header .navbar {
        position: inherit;
        padding: 0;
    }

    header .navbar-collapse {
        left: 0;
        position: absolute;
        top: 85px;
        z-index: 999;
        background-color: #fab537;
        width: 100%;
    }

    header .navbar-dark .navbar-nav .nav-link {
        font-size: 25px;
        font-weight: 700;
        color: #000000;
        padding: 5px 15px;
    }

    footer .footer-cta .btn {
        font-size: calc(1.25rem + ((1vw - 3.2px) * 3.5821));
    }

    .pagination .page-link {
        font-size: 14px;
    }

    .navbar-dark .navbar-toggler,
  .navbar-dark .navbar-toggler:focus,
  .navbar-dark .navbar-toggler:active {
        outline: none;
        color: #ffffff;
        background-color: transparent;
        border: none;
        padding: 0px;
    }

    header .navbar-collapse + .header-cta .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='bars' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-bars fa-w-14 fa-2x'%3E%3Cpath fill='%23fff' d='M442 114H6a6 6 0 0 1-6-6V84a6 6 0 0 1 6-6h436a6 6 0 0 1 6 6v24a6 6 0 0 1-6 6zm0 160H6a6 6 0 0 1-6-6v-24a6 6 0 0 1 6-6h436a6 6 0 0 1 6 6v24a6 6 0 0 1-6 6zm0 160H6a6 6 0 0 1-6-6v-24a6 6 0 0 1 6-6h436a6 6 0 0 1 6 6v24a6 6 0 0 1-6 6z' class=''%3E%3C/path%3E%3C/svg%3E");
    }

    header .navbar-collapse.show + .header-cta .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='times' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-times fa-w-10 fa-2x'%3E%3Cpath fill='%23fff' d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z' class=''%3E%3C/path%3E%3C/svg%3E");
    }
}

@media (max-width: 1200px) and (min-width: 990px) {
    .model-box .model-content h2 {
        font-size: calc(2.0625rem + ((1vw - 9.9px) * 8.0952));
    }
}

@media (max-width: 990px) {
    .tags .tag {
        font-size: 14px;
        padding: 10px 18px;
    }

    .model-box .model-wrap {
        flex-direction: column;
    }

    .model-box .preview {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .like-txt {
        font-size: 18px;
    }

    .like-txt svg {
        min-width: 25px;
    }

    .model-box .model-content h2 {
        font-size: calc(1.75rem + ((1vw - 3.2px) * 4.7761));
    }

    .model-box .model-content .btn {
        font-size: calc(1.4375rem + ((1vw - 3.2px) * 3.2836));
    }

    .model-box {
        padding: 10px;
    }

    .model-wrap .model-content {
        text-align: center;
    }

    .like-txt {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .tags .tag {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 22px;
    }

    header .navbar-dark .navbar-nav .nav-link {
        font-size: 20x;
    }

    .access_upgrade {
        display: none;
    }

    .access_upgrade_mobile {
        display: inline-block;
    }

    header .navbar-dark .navbar-nav .switcher .dropdown_menu > li > a {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .items .item .item-content {
        padding: 7px;
    }

    .items .item .meta {
        flex-wrap: wrap;
    }

    .items .item .tag-btn {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    header .navbar-brand img {
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .row.items > div {
        max-width: 100%;
    }

    .row.items {
        flex-direction: column;
    }

    .items .item .preview img {
        width: 100%;
    }

    .items .item .tag-btn {
        font-size: 14px;
    }

    .items .item .item-content h4 {
        font-size: 24px;
    }

    .items .item .meta {
        font-size: 14px;
    }

    header .header-cta .btn {
        font-size: 23px;
        margin-right: 10px;
        width: auto;
        min-width: auto;
        padding: 5px 15px 0px 15px;
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 380px) {
    header .header-cta .btn {
        font-size: 18px;
        margin-right: 17px;
        width: auto;
        min-width: auto;
        padding: 5px 10px 0px 10px;
        height: auto;
        min-height: auto;
    }

    header .navbar-brand,
  header .header-cta .btn {
        margin-right: 5px;
    }
}
