* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
} 

html {
    --scrollbarBG: white;
    --thumbBG: #5F021F;
}

body::-webkit-scrollbar {
    width: 11px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans";
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);    
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

.display-block {
    display: block !important;
}

/* ------------------------------------------------------ */
/* REUSABLE COMPONENTS */
/* ------------------------------------------------------ */
.row,
.big_row,
.medium_row {
    margin: 0 auto;
}

.row {
    max-width: 1140px;
}

.big_row {
    max-width: 90vw;
}

.medium_row {
    max-width: 60vw;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

.left-line::after,
.center-line::after {
    display: block;
    height: 2px;
    background-color:rgb(233, 198, 0);
    content: " ";
    width: 100px;
}

.center-line::after {
    margin: 0 auto;
    margin-top: 28px;
    margin-bottom: 40px;
}

.left-line::after {
    margin-top: 14px;
    margin-bottom: 20px;
}

/*-----------HEADINGS--------------*/

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;    
}

h1 {
    margin-bottom: 20px;
    font-size: 220%;
    word-spacing: 4px;
    margin-bottom: 20px;
}


h4 {
    text-transform: uppercase;
    font-weight: lighter;
    font-size: 120%;
    color: gold;
    margin-bottom: 6px;
}

p {
    text-rendering: optimizeSpeed;
    font-weight: normal;
}

/* ------------ Navigation Bar ------------ */
.logo {
    height: 90px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.nav-row {
    max-width: 86%;
    margin-left: 7%;

}

.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
    z-index: 1;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 110%;
    border-bottom: 2px solid transparent;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    color: rgb(233, 198, 0);
}

/* COLLECTIONS DD MENU */

.nav-collections {
    position: relative;
    cursor: pointer;
    border: none;
}

.collections-menu {
    display: none;
    position: absolute;
    opacity: 1;
    background-color: rgb(245, 245, 245);
    -webkit-box-shadow: 0 2px 1px rgba(0,0,0,.3);
    box-shadow: 0 2px 1px rgba(0,0,0,.3);
    padding-top: 12px;
    text-align: left;
    min-width: 180px;
    border-radius: 1px;
    right: -60%;
    z-index: 1;
}

.sticky .collections-menu {
    background-color: rgb(255,255,255, 0.98);
    box-shadow: 0 2px 0px rgba(0,0,0,0.1);
}

.collections-menu li{
    display: block;
    margin-top: 8px;
    margin-left: 18px;
    padding-bottom: 5px;
}

.collections-menu li:last-child {
    padding-bottom: 15px;
}

.collections-menu li a:link,
.collections-menu li a:visited {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 100%;
    border-bottom: 2px solid transparent;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.collections-menu li a:hover,
.collections-menu li a:active {
    color: rgb(233, 198, 0);
}

/* .nav-collections:hover .collections-menu {
    display: block;
} */

.col-menu-padding {
    padding-top: 14px;
}

/* Sticky navi */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255, 0.98);
    -webkit-box-shadow: 0 2px 2px rgb(220, 220, 220);
    box-shadow: 0 2px 2px rgb(220, 220, 220);
    padding: 10px;
    z-index: 999;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.sticky .main-nav { 
    margin-top: 18px;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    color: #555;
    padding: 10px 0;
}

.sticky .main-nav li a:hover,
.sticky .main-nav li a:active {
    color: rgb(233, 198, 0);

}

.sticky .logo { 
    height: 50px;
    width: auto;
    float: left;
    margin-top: 5px;
}

/* Mobile Navi */
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon ion-icon {
    font-size: 200%;
    color: #fff;
}

/* ------------------------------------------------------ */
/* HOME */
/* ------------------------------------------------------ */

/* ------------ Header ------------ */

.home-header {
    background-image: url(../css/img/new_york_8.jpg);
    background-size: cover;
    background-position: 0% 40%;
    height: 100vh;
    background-attachment: fixed;
}

/* ------------ Home About ------------ */

.home-about-photo{
    width: 100%;
    padding-right: 20px;
}
.about-img  {
    width: 90%;
    margin-left: 5%;
}

.about-about-text-mobile,
.home-about-text-mobile {
    display: none;
}

.home-about-text {
    margin-top: 33%;
}
.about-about-text {
    margin-top: 12.5%;
}

.about-about-text-mobile {
    margin-left: 50vw;
    margin-bottom: 10px;
}

/* ------------ Home Collections ------------ */

.collections-title {
    line-height: 145%;
    text-align: center;
}

/* ------------ Collections Home ------------ */

.home-collections {
    margin-top: 40px;
    height: 82vh;
    padding: 0;
}

.home-collection-card{
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.collection-title{
    display: block;
    font-size: 180%;
    text-transform: uppercase;
    font-weight: lighter;
}

.collection-intro{
    display: block;
    font-size: 10;
    font-weight: 100;
}

.collection-link:link,
.collection-link:visited {
    width: 50%;
    margin-left: 25%;
    border: 1px solid white;
    margin-top: 12px; 
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-size: 8.5;
    color: white;
    font-weight: 100;
    text-align: center;
    opacity: 0.7;
    -webkit-transition: color 0.3s;
    transition: color 0.3s, border 0.3s;
}

.collection-link:hover,
.collection-link:active {
    color:rgb(233, 198, 0);
    border: 1px solid rgb(233, 198, 0);
    opacity: 0.9;
}

.swanLake-about,
.newYork-about,
.paris-about {
    margin: 0 !important;
    width: 33.3% !important;
}


/* ------- Swan Lake ------- */
.swanLake-about {
    position: relative;
    height: 100%;
    background-image: url(../img/swan_lake/swan_2.png);
    background-size: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swanLake-collection-hover {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 24px;
    background:rgba(0, 181, 204, 0.12);  
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swanLake-collection-hover:hover{
    opacity: 1;
}

/* ------- New York ------- */
.newYork-about {
    position: relative;
    height: 100%;
    background-image: url(../img/newYork/forCollections/new_york_1_size_about.png);
    background-size: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.newYork-collection-hover {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 24px;
    background:rgba(133, 38, 29, 0.17);  
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.newYork-collection-hover:hover{
    opacity: 1;
}

/* ------- Paris ------- */

.paris-about {
    position: relative;
    height: 100%;
    background-image: url(../img/paris/paris_8.jpg);
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.paris-collection-hover {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);  
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.paris-collection-hover:hover{
    opacity: 1;
}



/* ------------ Footer Universal ------------ */

.footer {
    background-color: #292c2f;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 30px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Open Sans";
    color: white;
    margin-top: 0;
}

.footer p {
    font-size: 110%;
    color: white;
}

.footer_links{
    font-size: 130%;
    padding-left: 2%;
}

.footer_links a{
    padding: 10px;
    color: white;
}

/* ------------------------------------------------------ */
/* COLLECTIONS SWAN LAKE */
/* ------------------------------------------------------ */

/* ------------ Header ------------ */

.collections-swanLake-header {
    height: 95vh;
    background-image: -webkit-gradient(
        linear,
        left top, right bottom,
        from(rgba(0, 181, 204, 0.06)),
        to(rgba(0, 180, 204, 0.05))), 
        url(../css/img/swan_2_bg.jpg);
    background-image: linear-gradient(
        to right bottom,
        rgba(0, 181, 204, 0.12),
        rgba(0, 180, 204, 0.1)), 
        url(../css/img/swan_2_bg.jpg);
    background-size: cover;
    background-position: 50% 13%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ------------------------------------------------------ */
/* COLLECTIONS NEW YORK */
/* ------------------------------------------------------ */

/* ------------ Header ------------ */

.collections-newYork-header {
    height: 95vh;
    background-image: -webkit-gradient(
        linear,
        left top, right bottom,
        from(rgba(150, 45, 34, 0.1)),
        to(rgba(138, 34, 23, 0.05))), 
        url(img/new_york_1_cut.jpg);
    background-image: linear-gradient(
        to right bottom,
        rgba(150, 45, 34, 0.1),
        rgba(138, 34, 23, 0.05)), 
        url(img/new_york_1_cut.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ------------------------------------------------------ */
/* COLLECTIONS Paris */
/* ------------------------------------------------------ */

/* ------------ Header ------------ */

.collections-paris-header {
    height: 95vh;
    background-image: -webkit-gradient(
        linear,
        left top, right bottom,
        from(rgba(0, 0, 0, 0.2)),
        to(rgba(0, 0, 0, 0.2))), 
        url(../img/1.jpg);
    background-image: linear-gradient(
        to right bottom,
        rgba(48, 48, 48, 0.2),
        rgba(48, 48, 48, 0.2)), 
        url(../img/1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.clip-path-col {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%);
}

.no-bg-img {
    background-image: linear-gradient(
        to right bottom,
        rgb(255, 255, 255),
        rgb(255, 255, 255)), 
        url(../img/paris/paris_3.jpg);;    
}

/* ------------------------------------------------------ */
/* COLLECTIONS REUSABLE */
/* ------------------------------------------------------ */

.collection-intro-box {
    position: absolute;
    top: 45%;
    left: 32%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 420px;
}

.collection-intro-text {
    color: #fff;
}
.collection-intro-text p {
    font-size: 115%;
}

/* ------------ Gallery ------------ */

.photo-gallery{
    margin-top: -8;
}

/* ------------------------------------------------------ */
/* ABOUT */
/* ------------------------------------------------------ */

.about-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about-video {
    position: absolute;
    top: 0%;
    left: 0%;
    min-width: 100vw;
    z-index: -1;
    margin-left: 50vw;
    transform: translate(-50%); 
}

.about-img{
    -webkit-transform: translate(-20%, 0);
    transform: translate(-20%, 0);
}

/* ------------------------------------------------------ */
/* CONTACT */
/* ------------------------------------------------------ */


.contact-header {
    height: 100vh;
    background-image: -webkit-gradient(
        linear,
        left top, right bottom,
        from(rgba(0,0,0, 0.5)),
        to(rgba(0, 0, 0, 0.3))), 
        url(../img/zapeion/zap_10v.jpg);
    background-image: linear-gradient(
        to right bottom,
        rgba(0,0,0, 0.5),
        rgba(0, 0, 0, 0.3)), 
        url(../img/zapeion/zap_10v.jpg);
    background-size: cover;
    background-position: top;
    position: relative;
}

.about-box{
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.contact-text {
    padding-top: 25%;
}

.gmaps {
    width:600px;
    height:450px;
}

.contact-text a {
    text-decoration: none;
    font-size: 100%;
}

.gmaps-text{display: none;}

.contact-par {
    line-height: 220%;
    font-size: 120%;
}

.contact-title,
.contact-par,
.contact-text a {
    color: #fff;
}

.contact-footer {
    position: fixed;
    bottom: 5%;
    background-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Open Sans";
    color: white;
    margin-top: 0;
}

.contact-footer p {
    font-size: 110%;
    color: white;
}

.contact-footer_links{
    font-size: 130%;
    padding-left: 2%;
}

.contact-footer_links a{
    padding: 10px;
    color: white;
}