@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Material+Icons);

@font-face {
    font-family: 'Helvetica_Oblique';
    src: url('fonts/Helvetica-Oblique.woff2') format('woff2'),
    url('fonts/Helvetica-Oblique.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    transition: 0.3s;
}

body {
    color: #fff;
    font-size: 14px;
    font-family: Helvetica, serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: #D8D8D8;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: 0 !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#container {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 999;
    overflow: hidden;
}

.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

/* HEADER */
#header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    padding: 30px 0;
}

.header-logo img {
    height: 61px;
}

.hamburger-menu {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 52px;
    cursor: pointer;
}

.hamburger-menu::before {
    position: absolute;
    content: attr(open-text);
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    letter-spacing: 8px;
    transition: 0.3s;
}

.hamburger-menu.open::before {
    content: attr(close-text);
}

.hamburger-menu:hover::before {
    letter-spacing: 18px;
    transition: 0.3s;
}

.hamburger-menu span {
    position: absolute;
    display: block;
    height: 8px;
    width: 52px;
    left: 0;
    background: #fff;
    border-radius: 4px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 6px;
}

.hamburger-menu span:nth-child(2) {
    top: 22px;
}

.hamburger-menu span:nth-child(3) {
    top: 38px;
}

.hamburger-menu.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 22px;
}

.hamburger-menu.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 22px;
}

#header-menu {
    position: fixed;
    left: 0;
    top: -100px;
    width: 100%;
    height: 100vh;
    background: #171717;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

body.menu-open #header-menu {
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.header-navbar {
    position: relative;
    padding: 60px 0;
    text-align: right;
}

.header-navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-navbar ul li {
    padding: 0;
    list-style: none;
    margin: 0 0 20px;
}

.header-navbar ul li:last-child {
    margin-bottom: 0;
}

.header-navbar ul li a {
    color: #FFFFFF;
    font-size: 40px;
    text-decoration: none;
    font-weight: bold;
}

.header-navbar ul li a:hover {
    text-decoration: underline;
}

.header-describe {
    color: #fff;
    padding: 60px 0;
}

.header-describe h2 {
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-weight: bold;
}

.header-describe h3 {
    padding: 0;
    font-size: 25px;
    margin: 0 0 32px;
}

.header-describe p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-family: Helvetica_Oblique, serif;
}

.header-describe ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-top: 32px;
}

.header-describe ul li {
    display: inline-block;
    margin-right: 24px;
}

.header-describe ul li a {
    color: #fff;
    font-size: 32px;
}

.header-navbar-line {
    position: absolute;
    left: 33.33%;
    transform: translateX(-33.33%);
    top: 0;
    background: #FFFFFF;
    height: 100%;
    width: 2px;
}

/* HEADER */


/* SLIDER */
#slider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-bottom: 46%;
    overflow: hidden;
}

#slider::after {
    position: absolute;
    content: "";
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100px 100vw;
    border-color: transparent transparent #D8D8D8 transparent;
}

.slider-area {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
}

.main-slider.slick-slider,
.main-slider.slick-slider .slick-track,
.main-slider.slick-slider .slick-list {
    height: 100%;
}

.main-slider .slick-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    z-index: 9;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    float: none;
    top: 50%;
    transform: translateY(-50%);
}

.main-slider .slick-prev {
    left: 0;
}

.main-slider .slick-next {
    right: 0;
}

.main-slider .slick-slide:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.slide-item {
    position: relative;
    overflow: hidden;
}

.slide-item img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-height: 100%;
    min-width: 100%;
}

.slide-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding-bottom: 100px;
}

.slide-container h3 {
    padding: 0;
    margin: 0;
    line-height: normal;
    font-weight: bold;
    font-size: 90px;
    text-transform: uppercase;
}

.slide-container a {
    position: relative;
    line-height: normal;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 16px;
    padding-left: 106px;
}

.slide-container a::before {
    position: absolute;
    content: "";
    width: 90px;
    height: 9px;
    background: url(img/see-all-icon.svg) no-repeat center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.animation-effect {
    transition: all 1.4s ease-out;
    -webkit-transition: all 1.4s ease-out;
    -moz-transition: all 1.4s ease-out;
    -o-transition: all 1.4s ease-out;
    top: 100px;
    opacity: 0;
    visibility: hidden;
}

.slick-active .animation-effect {
    transition: all 1.4s ease-out;
    -webkit-transition: all 1.4s ease-out;
    -moz-transition: all 1.4s ease-out;
    -o-transition: all 1.4s ease-out;
    top: 0;
    opacity: 1;
    visibility: visible;
}

.slider-thumbs {
    position: absolute;
    width: 50%;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 99;
    text-align: right;
}

.slider-thumbs.slick-slider,
.slider-thumbs.slick-slider .slick-track,
.slider-thumbs.slick-slider .slick-list {
    height: auto !important;
}

.slider-thumbs .slick-slide {
    cursor: pointer;
    font-size: 18px;
    color: rgba(255 255 255 / 60%);
    transition: 0.1s;
    border: none;
}

.slider-thumbs .slick-slide:hover {
    color: #FFFFFF;
}

.slider-thumbs .slick-slide.slick-active {
    font-size: 38px;
    color: #FFFFFF;
    transition: 0.1s;
}

.slider-social-icons {
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: 99;
}

.slider-social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-top: 32px;
}

.slider-social-icons ul li {
    display: inline-block;
    margin-right: 24px;
}

.slider-social-icons ul li a {
    color: #6d6d6d;
    font-size: 32px;
}

.slider-social-icons ul li a:hover {
    color: #000000;
}


/* SLIDER */

/* HOME ABOUT */
#about {
    position: relative;
    width: 100%;
    background: #D8D8D8;
    padding: 100px 0;
}

#about:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: -200px;
    top: 50px;
    background: url(img/mb-pattern.svg) no-repeat top right;
}

.about-text {
    color: #6d6d6d;
    font-size: 20px;
}

.about-text h2 {
    padding: 0;
    font-weight: bold;
    font-size: 90px;
    margin: 0 0 32px;
}

.about-text a {
    position: relative;
    display: block;
    color: #6d6d6d;
    text-decoration: none;
    padding-left: 106px;
    font-weight: bold;
    letter-spacing: 10px;
    margin-top: 32px;
}

.about-text a:hover {
    letter-spacing: 16px;
}

.about-text a::before {
    position: absolute;
    content: "";
    width: 90px;
    height: 9px;
    background: url(img/see-all-icon-gray.svg) no-repeat center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* HOME ABOUT */

/* PARTNERS */
#partners {
    position: relative;
    width: 100%;
    margin: 60px 0;
}

.partners-shadow-top,
.partners-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partners-shadow-top:before {
    position: absolute;
    content: "";
    top: 20px;
    left: 20px;
    width: 50%;
    height: 30px;
    background: rgba(0 0 0 / 30%);
    transform-origin: right;
    transform: skewY(3deg);
    z-index: -1;
    filter: blur(10px);
}

.partners-shadow-top:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 20px;
    width: 50%;
    height: 30px;
    background: rgba(0 0 0 / 30%);
    transform-origin: left;
    transform: skewY(-3deg);
    z-index: -1;
    filter: blur(10px);
}

.partners-shadow-bottom:before {
    position: absolute;
    content: "";
    bottom: 20px;
    left: 20px;
    width: 50%;
    height: 30px;
    background: rgba(0 0 0 / 30%);
    transform-origin: right;
    transform: skewY(-3deg);
    z-index: -1;
    filter: blur(10px);
}

.partners-shadow-bottom:after {
    position: absolute;
    content: "";
    bottom: 20px;
    right: 20px;
    width: 50%;
    height: 30px;
    background: rgba(0 0 0 / 30%);
    transform-origin: left;
    transform: skewY(3deg);
    z-index: -1;
    filter: blur(10px);
}

.partners-main {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    z-index: 10;
    padding: 64px 0;
}

.partners-main-title {
    text-align: center;
    font-weight: bold;
    letter-spacing: 10px;
    font-size: 20px;
    color: #6d6d6d;
    margin-bottom: 32px;
}

.partners-main-carousel .slick-slide {
    text-align: center;
}

.partners-main-carousel .slick-slide img {
    display: inline-block;
}


/* PARTNERS */


/* CATALOG */

#catalog {
    position: relative;
    width: 100%;
    margin: 64px 0;
}

.catalog-title {
    padding: 0;
    font-weight: bold;
    font-size: 90px;
    margin: 0 0 32px;
    color: #6d6d6d;
}

.catalog-grid img {
    max-width: 100%;
}

.catalog-grid .col-sm-2 {
    margin-bottom: 30px;
}

/* CATALOG */


.map-info {
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 32px;
    background: #FFFFFF;
    color: #6d6d6d;
    width: 40%;
}


.map-info h2 {
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-weight: bold;
}

.map-info h3 {
    margin: 0;
    padding: 0;
    font-size: 25px;
    margin-bottom: 32px;
}

.map-info p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-family: Helvetica_Oblique, serif;
}


/* PAGE CONTENT */

#page-content {
    position: relative;
    width: 100%;
    background: #181818;
    padding-top: 150px;
}

.page-title {
    text-align: center;
    font-size: 90px;
    font-weight: bold;
}

.page-gallery-slider {
    position: relative;
    display: block;
    width: 100%;
}

.page-gallery-slider .slick-slide {
    position: relative;
    height: 400px !important;
    min-height: auto;
    background: red;
    z-index: 10;
    border-radius: 24px;
    overflow: hidden;
}

.page-gallery-slider .slick-slide img {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-gallery-slider .slick-arrow.slick-prev {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 999;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.page-gallery-slider .slick-arrow.slick-next {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 999;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.page-gallery-slider .slick-arrow img {
    width: 50px;
}

.page-social-media {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 48px;
}

.page-social-media-title {
    font-size: 90px;
    font-weight: bold;
    margin-bottom: 24px;
}

.page-social-media ul {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.page-social-media ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}

.page-social-media ul li a {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 24px;

}

.page-social-media ul li a i {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-content {
    position: relative;
    width: 100%;
    margin-top: 48px;
    font-size: 20px;
}

.page-content h3 {
    padding: 0;
    font-size: 90px;
    font-weight: bold;
    margin: 0 0 24px;
}

.page-gallery-grid img {
    max-width: 100%;
}

.page-gallery-grid b {
    margin-top: 12px;
    font-size: 24px;
    display: block;
}

.page-gallery-grid p {
    margin-bottom: 24px;
}

.page-gallery-grid .col-sm-3 {
    margin-bottom: 30px;
}

.page-other-artist {
    position: relative;
    width: 100%;
    margin: 64px 0;
}

.page-other-artist ul {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.page-other-artist ul li {
    display: inline-block;
}

.page-other-artist ul li a {
    display: flex;
    color: #FFFFFF;
    font-size: 32px;
    letter-spacing: 6px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: lighter;
}

.page-other-artist ul li a i {
    margin: 0 16px;
    font-size: 48px;
}

/* PAGE CONTENT */