/* General */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
html {
    font-size: 14px;
}
a {
    text-decoration:none;
    color: #2D2DE8;
}
img {
    max-width: 100%;
}

.mobile-h {
    display: none;
}
a, a:hover, a:focus {
    outline: none !important;
}
h1, .h2 {
    font-size: 2.142857142857143rem;
    line-height: 2.428571428571429rem;
    font-family: 'Roboto Serif', serif;
    margin-bottom: 2rem;
}

@font-face {
	font-family: 'MramorMediumPro', serif;
	src: url('../fonts/mramormediumpro.eot'); /* IE 9 Compatibility Mode */
	src: url('../fonts/mramormediumpro.eot?#iefix') format('embedded-opentype'), /* IE < 9 */
		url('../fonts/mramormediumpro.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/mramormediumpro.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
		url('../fonts/mramormediumpro.ttf') format('truetype'), /* Safari, Android, iOS */
		url('../fonts/mramormediumpro.svg#mramormediumpro') format('svg'); /* Chrome < 4, Legacy iOS */
}


/* Header */
header.default-page {
    padding: 3.85rem 0 7rem;
}
header .menu-link {
    min-width: 8rem;
    text-align: center;
}
header.default-page .logo {
    display: flex;
    justify-content: center;
    vertical-align: middle;
}
header.default-page .logo a {
    text-align: center;
    font-family: 'MramorMediumPro';
    font-size: 4rem;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}
header.default-page .menu-link a{
    color: #000;
    font-size: 1.28rem;
    text-transform: uppercase;
}
header.default-page .menu-link.active a{
    font-weight: 700;
}
header.main-page {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
header.main-page .burger-menu-button {
    display:none;
    text-align: center;
    margin-top:4rem;
}
header.main-page .burger-menu {
    background: linear-gradient(180deg, #191B24 -1.37%, #6F36A7 60.87%, rgba(82,69,161,0.6) 98.63%);
}
header.main-page ul {
    padding: 2.5rem 0;
    margin: 0;
    list-style: none;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    justify-content: center;
}
header.main-page ul li{
    margin: 0 1rem;
}
header.main-page ul li a {
    text-decoration: none;
    color: white;
}
header.main-page ul li a:hover,
header.main-page ul li.active a {
    font-weight: 600;
}
header .burger-menu{
    position: fixed;
    z-index:2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3.85rem 0 0;
    display:none;
    z-index: 100000;
}
header .burger-menu .bg-wrap{
    position: absolute;
    background: linear-gradient(180deg, #191B24 -1.37%, #6F36A7 60.87%, rgba(82,69,161,0.6) 98.63%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
header .burger-menu .content-wrap{
    height: 100%;
    display: flex;
    flex-direction: column;
    position:relative;
}
header .burger-menu ul{
    padding: 0;
    list-style: none;
    text-align: center;
    margin:0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .burger-menu ul li a{
    color: #FFF;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 7rem;
    text-transform: uppercase;
    transition:0.3s ease-in-out;
}
header .burger-menu ul li a:hover{
    font-weight:600;
}
header .burger-menu ul li a.active{
    font-weight:700;
}
.burger-menu-button img {
    width: 38px;
}
/* Main Page */
#mainPage {
    background: #000;
}

.slider{
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider.mobile{
    display:none;
}
.slider h1 {
    color: white;
    text-align: center;
    text-overflow: ellipsis;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: "MramorMediumPro";
    font-size: 12.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;    
    margin: 0;
}
.slider img{
    background:transparent;
    z-index:1;
}
.slider {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
}
 
.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slider 12s infinite;
}

.slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slider 28s infinite;
}
.slider .slide:nth-of-type(1) {
   animation-delay: 0s;
}

.slider .slide:nth-of-type(8) {
   animation-delay: -3.5s;
}

.slider .slide:nth-of-type(7) {
   animation-delay: -7s;
}

.slider .slide:nth-of-type(6) {
   animation-delay: -10.5s;
}

.slider .slide:nth-of-type(5) {
   animation-delay: -14s;
}

.slider .slide:nth-of-type(4) {
   animation-delay: -17.5s;
}

.slider .slide:nth-of-type(3) {
   animation-delay: -21s;
}
.slider .slide:nth-of-type(2) {
   animation-delay: -24.5s;
}


@keyframes slider {
  0%, 4%, 100% {
   transform: translateX(0);
   animation-timing-function: ease;
 }
 13% {
   transform: translateX(-100%);
   animation-timing-function: step-end;
 }
 91% {
   transform: translateX(100%);
   animation-timing-function: ease;
 }
}
/* About-page */
.about-page .text p {
    line-height: 1.5rem;
}
.about-page .card{
    border: none;
    height: 100%;
    justify-content: space-between;
}
.about-page .video-wrp a {
    color: #2D2DE8;
    text-transform: uppercase; 
    font-weight: 500;
    letter-spacing: 0.9px;
    line-height: 1.14rem;
    margin-top: 1.1rem;
    display: block;
    margin-bottom: 2rem;
}
.about-page .auction-wrap a {
    color: #4554A1;
    line-height: 1.7rem;
    text-transform: uppercase;
}
.about-page hr {
    margin-bottom: 2rem;
}
#aboutUsPage .card .text {
    font-family: 'Roboto Serif', serif;
}
#aboutUsPage .left-block.text {
    font-family: 'Roboto Serif', serif;
}

.auction-items p.first{
    font-size:12px;
    line-height: 14px;
}
.auction-items p.second{
    font-size:12px;
    line-height: 14px;
}
.auction-items p.second span{
    font-size:14px;
    line-height: 20px;
    font-weight: 700;
}
/* Gallery */
.artwork-modal .bottom-row {
    display: flex;
    background: black;
    justify-content: space-between;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1rem;
}
.artwork-modal .description {
    line-height: 1.428571428571429rem;
    font-size: 1rem;
    color: white;
    font-weight: 400;
    text-align: center;
}
.artwork-modal .email input {
    border: 0;
    padding: 0.25rem;
    margin: 0.5rem;
}
.artwork-modal .email input:hover, .artwork-modal .email input:focus {
    outline: none;
}
.artwork-modal .bottom-row .price span {
    padding: 0.75rem;
    display: block;
    color: white;
}
.artwork-modal .bottom-row .active-button {
    justify-content: flex-end;
    background: #11593B;
    text-align: center;
}
.artwork-modal .bottom-row .active-button a {
    color: white;
    text-transform: uppercase;
    padding: 0.75rem;
    display: block;
}
.galley-item {
    margin-bottom: 21px;
}
.instagram-page .galley-item img{
    height:100%;
}
.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: white;
}
.fancybox-button {
    background: transparent;
}
.fancybox-navigation .fancybox-button div {
    padding: 2px;
    border: 4px solid white;
    color: white;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
}
.fancybox-navigation .fancybox-button {
    width: 4rem;
    height: 4rem;
}
.fancybox-navigation .fancybox-button--arrow_right,
.fancybox-navigation .fancybox-button--arrow_left {
    padding: 0rem;
}
.fancybox-navigation .fancybox-button--arrow_left {
    left: 20%;
}
.fancybox-navigation .fancybox-button--arrow_right{
    right:20%;
}
.fancybox-toolbar, .fancybox-infobar {
    display: none;
}
.fancybox-bg {
    background: linear-gradient(180deg, #191B24 -12.7%, #801A26 49.54%, rgba(82, 69, 161, 0.57) 87.3%);
}
.fancybox-caption{
    top: 62px;
    background: none;
    height: max-content;
    padding-bottom: 0;
    padding-top: 0;
}
/* Articles */
.burger-menu-article{
    position: fixed;
    z-index:2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3.85rem 0 0;
    display:none;
}
.burger-menu-article .bg-wrap{
    position: absolute;
    background: rgba(69, 84, 161, 0.90);
    top: 0;
    left: 0;
    width:100%;
    height:100%;
}
.burger-menu-article .content-wrap{
    height: 100%;
    display: flex;
    flex-direction: column;
    position:relative;
}
.burger-menu-article ul{
    padding: 0;
    list-style: none;
    text-align: center;
    margin:0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.burger-menu-article ul li{
    padding-bottom: 1rem;
    border-bottom: 1px solid #fff;
    width: max-content;
    margin: 0 auto;
}
.burger-menu-article ul li:last-child{
    border-bottom:none;
}
.burger-menu-article ul li a{
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
}
.article-menu ul {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}
.article-menu ul li a {
    font-size: 1.428571428571429rem;
    line-height: 1.5rem;
    color: black;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid;
    display: block;
}
.article-menu ul li.first a {
    padding-top: 0;
}
.article-menu ul li.last a {
    border-bottom: 0;
}
.article-menu ul li a span.article-item {
    font-family: 'Roboto Serif', serif;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 2rem;
}

.article-menu ul li.active a span.article-item {
    font-weight: 500;
}
#articlesPage .text p.author {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 100;
}
#articlesPage .text p{
    font-size:1.14rem;
}
#contactPage {
    height: 100vh;
    width: 100%;
    background-color: #000;
    background-image: url(../images/contact-bg.jpg);
    background-position: center;
    background-size: cover;
    color: white;
}
#contactPage a {
    color: inherit;
}
#contactPage p {
    font-weight: 500;
    font-family: 'Roboto Serif', serif;
    font-size: 2.857142857142857rem;
    line-height: 3.571428571428571rem;
    max-width: 40%;
    position: absolute;
    right: 5rem;
    margin: 0;
    padding: 0;
    bottom: 10rem;
}
.fancybox-close{
    display: none;
    position: fixed;
    top: 5%;
    width: 100%;
    z-index: 9999999;
    text-align: center;
}
a[href="https://elfsight.com/instagram-feed-instashow/?utm_source=websites&utm_medium=clients&utm_content=instashow&utm_term=jacobskornik.twc1.net&utm_campaign=free-widget"]{
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}
/* Adaptive */
@media (max-width: 1440px) {
    #contactPage p {
        font-size: 2.7rem;
        line-height: 3.5rem;
        max-width: 50%;
        bottom: 7rem;
    }
    .fancybox-navigation .fancybox-button--arrow_left{
        left: 10%;
    }
    .fancybox-navigation .fancybox-button--arrow_right{
        right:10%;
    }
}
@media (max-width: 1200px) {
    html  {
        font-size: 13px;
    }
    .slider h1 {
        font-size: 12rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .fancybox-button {
        display: none !important;
    }
}
@media (min-width: 992px){
    .instagram-page .galley-item.col-lg-3 {
        width: 22%;
    }
}
@media (max-width: 991px) {
    html  {
        font-size: 12px;
    }
    .slider h1 {
        font-size: 11rem;
    }
    .article-menu {
        margin-top: 2rem;
    }
    
    .logo-main {
        width: 225px;
    }
    #contactPage p {
        font-size: 2.5rem;
        line-height: 3.25rem;
        max-width: 70%;
        bottom: 7rem;
    }
    .slider img{
        width:90%;
    }
    .fancybox-caption{
        top: unset;
        bottom:10px;
    }
}

@media (min-width: 768px) {
    .only-mobile {
        display: none !important;
    }
}
@media (max-width: 767px) {
    html  {
        font-size: 11px;
    }
    body {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }
    .only-desk {
        display: none !important;
    }
    header.default-page {
        padding: 3rem 0;
    }
    header .logo img{
        width:190px;
    }
    header .social-buttons img{
        width: 23px;
    }
    header .burger-menu-button img{
        width: 35px;
    }
    .fancybox-close img {
        max-width: 40px;
    }
    .fancybox-close {
        top: 3%;
    }
    .fancybox-content {
        padding: 44px 5px;
    }
    .mobile-h {
        display: flex;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 3rem;
        font-size: 2.15rem;
    }
    .artwork-modal .description {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    .artwork-modal .bottom-row .active-button a, .artwork-modal .bottom-row .price span {
        padding: 1.25rem;
        font-size: 1.25rem;
    }
    .h2 {
        font-size: 3rem;
    }
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .slider img{
        margin-top: 12rem;
    }
    .slider.mobile{
        display:flex;
    }
    .slider.desktop{
        display:none;
    }
    header.main-page .row{
        display: none;
    }
    header.main-page .burger-menu-button{
        display:block;
    }
    header.main-page .burger-menu{
        text-align: center;
    }
    header.default-page .menu-link{
        display:none;
    }
    .slider {
        align-items: start;
    }
    .slider h1 {
        margin-bottom: 5rem;
        font-size: 8.5rem;
    }
    #aboutUsPage .left-block.text p {
        margin-bottom: 0;
    }
    .about-page hr {
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    }
    .about-page .text p {
        line-height: 2.25rem;
        font-size:1.2rem;
    }
    .about-page .text.left-block p{
        font-size:16px;
    }
    .about-page .text p.h2{
        line-height: 1;
        font-size: 24px;
    }
    .about-page .auction-wrap a{
        font-size: 1.2rem;
    }
    #contactPage p {
        font-size: 2.5rem;
        line-height: 3.25rem;
        max-width: 100%;
        bottom: 7rem;
        right: 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .galley-item{
        margin-bottom: 1.5rem;
    }
    .instagram-page .galley-item{
        padding: 0 0.15rem;
        margin-bottom: 0.2rem;
    }
    .fancybox-caption{
        bottom: 10%;
    }
    .fancybox-image{
        width: auto;
        height: 90%;
        margin-left: auto;
        margin-right: auto;
        right: 0;
    }
    .fancybox-bg {
        background: #0f1533;
    }
    .fancybox-active .fancybox-close {
        display:block;
    }
    #articlesPage .text h1{
        font-size: 2.4rem;
        line-height: 108%;
    }
    #articlesPage .text p.author{
        font-size: 1.6rem;
    }
    #articlesPage .text p{
        font-size:1.4rem;
    }
    .article-menu{
        display:none;
    }
}

@media (max-width: 525px) {
    html  {
        font-size: 10px;
    }
    .slider h1 {
        font-size: 7.5rem;
    }
}

@media (max-width: 340px) {
    html  {
        font-size: 9px;
    }
    .slider h1 {
        font-size: 7rem;
    }
}
