/*** GENERAL SELECTORS ***/
@import url("https://fast.fonts.net/lt/1.css?apiType=css&c=c3ee2c59-c6fe-4ee4-9857-c3cdabcaefad&fontids=5541267");
@font-face{
    font-family:"Futura LT W05 Extra Bold";
    src:url("/css/fonts/5541267/685370ab-9a00-4674-b2b8-84dd3dde5e8a.woff2") format("woff2"),url("/css/fonts/5541267/61cdda52-efc3-49b8-bf1d-9f96054b457e.woff") format("woff");
}
* {
    font-family:"Futura LT W05 Extra Bold";
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    height: 100%;
}
h1, h2, h3, h4 {
    padding-bottom: 25px;
}
h4 {
    padding-bottom: 0;
}
h3 {
    padding-bottom: 12px;
}
p {
    padding-bottom: 15px;
}
a {
    text-decoration:none;
    color:#000;
}

a:hover {
    color: #999999;
}
.target a:hover {
    cursor: crosshair;
    color: black;
}
#intro a:before {
    content: "> ";
}
ol, ul {
    list-style: none;
}
.selected a {
    text-transform: uppercase;
}
#description h2 {
    padding-bottom: 12px;
    text-transform: uppercase;
}
#description p {
    padding-bottom: 12px;
}
#datenschutz h1,
#datenschutz h2,
#datenschutz h3 {
    text-transform: uppercase;
    font-size: 15px;
}
#datenschutz h2 {
    padding-top:20px;
    padding-bottom: 15px;
}
#datenschutz h4,
#datenschutz li,
#datenschutz p {
    font-size: 15px;
}
/** GENERAL NAV SELECTORS **/
header {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: auto;
}
.icon-1, .icon-2, .icon-3 {
    position: absolute;
    background-color: black;
    transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
}
.icon-1 {
    animation-delay: 100ms;
}
.icon-3 {
    animation-delay: 250ms;
}
.hamburger-icon {
    position: absolute;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
}
.hamburger-icon:hover {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
@keyframes slideIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
nav {
    position: absolute;
    z-index: 10;
    opacity: 0;
    transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
    transition-delay: 100ms;
}
nav ul {
    position: absolute;
}
nav ul li {
    list-style: none;
    color: #000;
    text-transform: uppercase;
}
.dark-blue {
    position: absolute;
    transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
    transition-delay: 50ms;
    z-index: 5;
}
@keyframes shotup {
    0% {
        opacity: 0;
    }
    90% {
    }
    100% {
        opacity: 1;
    }
}
.content {
    position: absolute;
    text-align: center;
}
.content h1 {
    animation: shotup 600ms ease-in-out;
    animation-delay: 300ms;
}
#description {
    position: absolute;
}


/** GENERAL BODY SELECTORS **/
#logo {
    position: absolute;
    z-index: 0;
    text-align: center;
}

#intro {
    position: absolute;
    float: left;
    color: black;
    z-index: 2;
}
#gong,
#circle {
    display: block;
    background: black;
    overflow: hidden;
}
#author,
#quote {
    text-align: center;
    color: white;
    animation: fadeIn 5s;
}
li.costume-design {
    padding-bottom: 20px;
}
#circle img,
.slider-circle img {
    max-width:100%;
    max-height:100%;
}

/** SLICK THEME **/
.slick-prev,
.slick-next {
    display: none !important;
}
.slick-dotted.slick-slider {
    /*margin-bottom: 30px;*/
}

.slick-dots {
    position: absolute;
    z-index: 1000;
    display: block;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    z-index: 3;
    cursor: pointer;
}
.slick-dots li button {
    z-index: 3;
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #999999;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    content: '•';
    text-align: center;
    opacity: .75;
    color: #999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    display: block;
    background: #000;
}


/** GENERAL EFFECT SELECTORS **/
/* Ripple effect */
.ripple {
    background-position: center;
}

.ripple:active {
    background-color: #fff;
}

/** GENERAL FIXES **/
.clear {
    clear: both;
}

/*** X-LARGE DEVICES LARGE DESKTOPS, 1200PX AND UP ***/
@media (min-width: 1200px) {
    /** X-LARGE NAV BAR SELECTORS **/
    .icon-1, .icon-2, .icon-3 {
        right: 25%;
        top: 50%;
        width: 34px;
        height: 5px;
    }
    .icon-1 {
        transform: translateY(-8px);
    }
    .icon-3 {
        transform: translateY(8px);
    }
    .hamburger-icon {
        height: 60px;
        width: 60px;
        top: 3%;
        right: 3%;
    }
    .hamburger-icon:hover {
        transform: scale(1.2);
    }
    .icon-1.a {
        transform: rotate(40deg);
    }

    .icon-3.b {
        transform: rotate(-40deg);
    }

    .icon-2.c {
        opacity: 0;
    }
    @keyframes slideIn {
        0% {
            width: 0%;
        }
        100% {
            width: 50%;
        }
    }
    nav {
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
    }
    nav ul {
        margin: 0;
        top: 10%;
        right: 40%;
        text-align: right;
    }
    nav ul li {
        font-size: 21px;
        /*letter-spacing: 1.7px;*/
        line-height: 1.4;
        padding-bottom: 10px;
    }
    .social {
        width: 34px;
        height: auto;
    }
    nav.show {
        width: 10%;
        opacity: 1;
    }
    .dark-blue {
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
        opacity: 1;
    }
    .dark-blue.slide {
        width: 50%;
        opacity: 1;
    }
    @keyframes shotup {
        0% {
            transform: translateY(300%);
            opacity: 0;
        }
        90% {
            transform: translateY(-50px);
        }
        100% {
            transform: translateY(0%);
            opacity: 1;
        }
    }
    .content {
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .content h1 {
        font-size: 70px;
        animation: shotup 600ms ease-in-out;
        animation-delay: 300ms;
    }
    /** X-LARGE BODY SELECTORS **/
    #logo {
        bottom: 0;
        height: 66px;
        width: 100%;
        position: fixed;
        z-index: 10;
        background-color: white;
    }
    #logo img {
        width: 9vw;
    }
    #intro {
        font-size: 18px;
        width: 60%;
        margin: 6% 0 0 3%;
        padding-bottom: 200px;
    }
    #quote {
        margin: 40% auto 3% auto;
        display: block;
        width: 80%;
        line-height: 37px; /*** ÄNDERUNGEN ***/
        font-size: 30px !important; /*** ÄNDERUNGEN ***/
    }
    #author {
        margin: 0 auto;
        display: block;
        width: 40%;
        font-size: 20px;
    }
    #description {
        text-align: right;
        width: 20%;
        right: 4%;
        bottom: 12%;
    }
    #gong,
    #circle {
        position: fixed;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /** X-LARGE SLICK THEME **/
    /* DOTS */
    .slick-dots {
        bottom: 90px;
        width: 100%;
        padding: 0;
    }
    .slick-dots li {
        z-index: 3;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
        padding: 5px;
        border-radius:10px;
    }
    .slick-dots li button:hover,
    .slick-dots li button:focus
    {
        outline: none;
    }
    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before
    {
        opacity: 1;
    }
    .slick-dots li button:before
    {
        font-size: 6px;
        line-height: 20px;
        width: 10px;
        height: 10px;
    }
    .slick-dots li.slick-active button:before {
        width: 10px;
        height: 10px;
        border-radius:10px;
    }


    /** X-LARGE EFFECT SELECTORS **/
    /* Ripple effect */
    .ripple {
        transition: background 0.8s;
    }
    .ripple:hover {
        background: #393e46 radial-gradient(circle, transparent 1%, #393e46 1%) center/15000%;
    }
    .ripple:active {
        background-size: 100%;
        transition: background 0s;
    }
}


/*** LARGE DEVICES DESKTOPS, 992PX AND UP ***/
@media (min-width: 992px) and (max-width: 1199px){
    .icon-1, .icon-2, .icon-3 {
        right: 25%;
        top: 50%;
        width: 34px;
        height: 5px;
    }
    .icon-1 {
        transform: translateY(-8px);
    }
    .icon-3 {
        transform: translateY(8px);
    }
    .hamburger-icon {
        height: 60px;
        width: 60px;
        top: 3%;
        right: 3%;
    }
    .hamburger-icon:hover {
        transform: scale(1.2);
    }
    .icon-1.a {
        transform: rotate(40deg);
    }

    .icon-3.b {
        transform: rotate(-40deg);
    }

    .icon-2.c {
        opacity: 0;
    }
    @keyframes slideIn {
        0% {
            width: 0%;
        }
        100% {
            width: 50%;
        }
    }
    nav {
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
    }
    nav ul {
        margin: 0;
        top: 10%;
        right: 40%;
        text-align: right;
    }
    nav ul li {
        font-size: 21px;
        /*letter-spacing: 1.7px;*/
        line-height: 1.4;
        padding-bottom: 10px;
    }
    .social {
        width: 34px;
        height: auto;
    }
    nav.show {
        width: 10%;
        opacity: 1;
    }
    .dark-blue {
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
        opacity: 1;
    }
    .dark-blue.slide {
        width: 50%;
        opacity: 1;
    }
    @keyframes shotup {
        0% {
            transform: translateY(300%);
            opacity: 0;
        }
        90% {
            transform: translateY(-50px);
        }
        100% {
            transform: translateY(0%);
            opacity: 1;
        }
    }
    .content {
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .content h1 {
        font-size: 70px;
        animation: shotup 600ms ease-in-out;
        animation-delay: 300ms;
    }
    /** X-LARGE BODY SELECTORS **/
    #logo {
        bottom: 0;
        height: 66px;
        width: 100%;
        position: fixed;
        z-index: 10;
        background-color: white;
    }
    #logo img {
        width: 9vw;
    }
    #intro {
        font-size: 18px;
        width: 60%;
        margin: 6% 0 0 3%;
        padding-bottom: 200px;
    }
    #quote {
        margin: 40% auto 3% auto;
        display: block;
        width: 80%;
        line-height: 37px; /*** ÄNDERUNGEN ***/
        font-size: 30px !important; /*** ÄNDERUNGEN ***/
    }
    #author {
        margin: 0 auto;
        display: block;
        width: 40%;
        font-size: 20px;
    }
    #description {
        text-align: right;
        width: 20%;
        right: 4%;
        bottom: 5%;
    }
    #gong,
    #circle {
        position: fixed;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /** X-LARGE SLICK THEME **/
    /* DOTS */
    .slick-dots {
        bottom: 90px;
        width: 100%;
        padding: 0;
    }
    .slick-dots li {
        z-index: 3;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
        padding: 5px;
        border-radius:10px;
    }
    .slick-dots li button:hover,
    .slick-dots li button:focus
    {
        outline: none;
    }
    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before
    {
        opacity: 1;
    }
    .slick-dots li button:before
    {
        font-size: 6px;
        line-height: 20px;
        width: 10px;
        height: 10px;
    }
    .slick-dots li.slick-active button:before {
        width: 10px;
        height: 10px;
        border-radius:10px;
    }


    /** X-LARGE EFFECT SELECTORS **/
    /* Ripple effect */
    .ripple {
        transition: background 0.8s;
    }
    .ripple:hover {
        background: #393e46 radial-gradient(circle, transparent 1%, #393e46 1%) center/15000%;
    }
    .ripple:active {
        background-size: 100%;
        transition: background 0s;
    }
}



/*** MEDIUM DEVICES (TABLETS, 577PX AND UP) ***/
@media (min-width: 577px) and (max-width: 991px) {

    header {
        z-index:2000;
    }
    .icon-1, .icon-2, .icon-3 {
        right: 25%;
        top: 50%;
        width: 34px;
        height: 5px;
    }
    .icon-1 {
        transform: translateY(-8px);
    }
    .icon-3 {
        transform: translateY(8px);
    }
    .hamburger-icon {
        height: 60px;
        width: 60px;
        top: 3%;
        right: 3%;
    }
    .hamburger-icon:hover {
        transform: scale(1.2);
    }
    .icon-1.a {
        transform: rotate(40deg);
    }

    .icon-3.b {
        transform: rotate(-40deg);
    }

    .icon-2.c {
        opacity: 0;
    }
    @keyframes slideIn {
        0% {
            width: 0%;
        }
        100% {
            width: 50%;
        }
    }
    nav {
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
    }
    nav ul {
        margin: 0;
        top: 10%;
        right: 40%;
        text-align: right;
    }
    nav ul li {
        font-size: 21px;
        /*letter-spacing: 1.7px;*/
        line-height: 1.4;
        padding-bottom: 10px;
    }
    .social {
        width: 34px;
        height: auto;
    }
    nav.show {
        width: 10%;
        opacity: 1;
    }
    .dark-blue {
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
        opacity: 1;
    }
    .dark-blue.slide {
        width: 50%;
        opacity: 1;
    }
    @keyframes shotup {
        0% {
            transform: translateY(300%);
            opacity: 0;
        }
        90% {
            transform: translateY(-50px);
        }
        100% {
            transform: translateY(0%);
            opacity: 1;
        }
    }
    .content {
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .content h1 {
        font-size: 70px;
        animation: shotup 600ms ease-in-out;
        animation-delay: 300ms;
    }
    /** X-LARGE BODY SELECTORS **/
    #logo {
        bottom: 0;
        width: 100%;
        position: fixed;
        z-index: 10;
        background-color: white;
    }
    #logo img {
        width: 15vw;
    }
    #intro {
        position: relative;
        z-index: 2001;
        font-size: 18px;
        width: 70%;
        margin: 6% 0 0 3%;
        padding-bottom: 200px;
    }
    #quote {
        margin: 40% auto 3% auto;
        display: block;
        width: 80%;
        line-height: 37px; /*** ÄNDERUNGEN ***/
        font-size: 30px !important; /*** ÄNDERUNGEN ***/
    }
    #author {
        margin: 0 auto;
        display: block;
        width: 40%;
        font-size: 20px;
    }
    #description {
        text-align: right;
        width: 50%;
        right: 4%;
        bottom: 4%;
    }
    #gong,
    #circle {
        position: fixed;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /** X-LARGE SLICK THEME **/
    /* DOTS */
    .slick-dots {
        bottom: 90px;
        width: 100%;
        padding: 0;
    }
    .slick-dots li {
        z-index: 3;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
        padding: 5px;
        border-radius:10px;
    }
    .slick-dots li button:hover,
    .slick-dots li button:focus
    {
        outline: none;
    }
    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before
    {
        opacity: 1;
    }
    .slick-dots li button:before
    {
        font-size: 6px;
        line-height: 20px;
        width: 10px;
        height: 10px;
    }
    .slick-dots li.slick-active button:before {
        width: 10px;
        height: 10px;
        border-radius:10px;
    }


    /** X-LARGE EFFECT SELECTORS **/
    /* Ripple effect */
    .ripple {
        transition: background 0.8s;
    }
    .ripple:hover {
        background: #393e46 radial-gradient(circle, transparent 1%, #393e46 1%) center/15000%;
    }
    .ripple:active {
        background-size: 100%;
        transition: background 0s;
    }
}


/**** SMALL DEVICES (LANDSCAPE PHONES, 576PX AND UP) ***/
@media (max-width: 576px) {
    /** X-LARGE NAV BAR SELECTORS **/
    .icon-1, .icon-2, .icon-3 {
        right: 25%;
        top: 50%;
        width: 34px;
        height: 5px;
    }
    .icon-1 {
        transform: translateY(-8px);
    }
    .icon-3 {
        transform: translateY(8px);
    }
    .hamburger-icon {
        z-index: 1001;
        height: 60px;
        width: 60px;
        top: 3%;
        right: 3%;
    }
    .hamburger-icon:hover {
        transform: scale(1.2);
    }
    .icon-1.a {
        transform: rotate(40deg);
    }

    .icon-3.b {
        transform: rotate(-40deg);
    }

    .icon-2.c {
        opacity: 0;
    }
    @keyframes slideIn {
        0% {
            width: 0%;
        }
        100% {
            width: 50%;
        }
    }
    nav {
        z-index: 1001;
        top: 0;
        right: 0;
        height: 100%;
        width: 0%;
    }
    nav ul {
        margin: 0;
        top: 10%;
        right: 40%;
        background-color: white;
        text-align: right;
    }
    nav ul li {
        font-size: 21px;
        /*letter-spacing: 1.7px;*/
        line-height: 1.4;
        padding-bottom: 10px;
    }
    .social {
        width: 34px;
        height: auto;
    }
    nav.show {
        width: 10%;
        opacity: 1;
    }
    .dark-blue {
        z-index: 1000;
        top: 0;
        right: 0;
        height: 100%;
        background-color: white;
        width: 0%;
        opacity: 1;
    }
    .dark-blue.slide {
        z-index: 1000;
        width: 100%;
        background-color: white;
        opacity: 1;
    }
    @keyframes shotup {
        0% {
            transform: translateY(300%);
            opacity: 0;
        }
        90% {
            transform: translateY(-50px);
        }
        100% {
            transform: translateY(0%);
            opacity: 1;
        }
    }
    .content {
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .content h1 {
        font-size: 70px;
        animation: shotup 600ms ease-in-out;
        animation-delay: 300ms;
    }
    /** X-LARGE BODY SELECTORS **/
    #logo {
        position: static;
    }
    #intro {
        position: relative;
        float:left;
        font-size: 18px;
        width: 95%;
        /*background-color: red;*/
        padding: 10% 0 0 5%;
    }
    #alexandra-schiess #intro,
    #limitierte-editionen #intro,
    #textile-unikate #intro,
    #kostümbild #intro {
        position: relative;
        display: block;
        width: 90%;
        padding-bottom: 15%;
    }
    #quote {
        text-align: center;
        margin: 40% auto 3% auto;
        display: block;
        width: 80%;
        font-size: 22px;
    }
    #author {
        margin: 0 auto;
        display: block;
        width: 40%;
        font-size: 20px;
    }
    #description {
        position: relative;
        float: right;
        /*background-color: gold;*/
        text-align: right;
        padding-top: 8%;
        width: 80%;
        right: 5%;
        bottom: 3%;
        padding-bottom: 15%;
    }
    #gong {
        position: fixed;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #circle {
        position: fixed;
        background: black;
        overflow: hidden;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .slider-circle {
        position: absolute !important;
        background: black;
        overflow: hidden;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #sliderbox {
        position: absolute;
        /*background-color: red;*/
        top: 50%;
        left: 50%;
        z-index: 900;
    }
    #wrapper {
        position: relative;
        width: 100%;
        height: 52vh;
        float: left;
        display: block;
        /*background-color: green;*/
        overflow: hidden;
    }
    footer {
        display: block;
        position: fixed;
        width: 100%;
        bottom: 0;
        padding: 0;
        margin: 0;
        z-index: 10;
        background-color: white;
    }
    /*footer {
        display: block;
        position: static;
        padding-bottom: 18px;
    }*/
    #logo img {
        width: 30vw;
    }
    .linklist {
        padding-top: 20px;
    }
    .linklist li {
        padding-bottom: 15px;
    }
    #kontakt #circle {
        position: static;
        transform: none;
        margin: 0 5% 5% 4%;
    }
    #kontakt #intro {
        position: static;
        display: block;
        width: 90%;
    }

    /** X-LARGE SLICK THEME **/
    /* DOTS */
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    .slick-dotted.slick-slider {
        /*margin-bottom: 30px;*/
    }

    .slick-dots {
        position: absolute;
        z-index: 1010;
        height: 50px;
        display: block;
        width: 200px;
        margin-top: 23vh;
        margin-left: -25vw;
        padding: 0;
        list-style: none;
        text-align: center;
        /*background-color: blue;*/
    }
    .slick-dots li {
        position: relative;
        display: inline-block;
        z-index: 3;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }
    .slick-dots li button {
        z-index: 3;
        font-size: 0;
        line-height: 0;
        display: block;
        width: 10px;
        height: 10px;
        padding: 5px;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: #666;
        border-radius:10px;
    }
    .slick-dots li button:hover,
    .slick-dots li button:focus
    {
        outline: none;
    }
    .slick-dots li button:hover:before,
    .slick-dots li button:focus:before
    {
        opacity: 1;
    }
    .slick-dots li button:before
    {
        font-family: 'slick';
        font-size: 6px;
        line-height: 20px;
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        width: 10px;
        height: 10px;
        content: '•';
        text-align: center;
        opacity: .75;
        color: #666;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .slick-dots li.slick-active button:before {
        display: block;
        width: 10px;
        height: 10px;
        background: #000;
        border-radius:10px;
    }

    /** X-LARGE EFFECT SELECTORS **/
    /* Ripple effect */
    .ripple {
        transition: background 0.8s;
    }
    .ripple:hover {
        background: #393e46 radial-gradient(circle, transparent 1%, #393e46 1%) center/15000%;
    }
    .ripple:active {
        background-size: 100%;
        transition: background 0s;
    }

    /*** DEVICE FIXES ***/
    .mbr {
        display: block;
    }
    .limitierte-editionen h1 {
        padding-bottom: 15px;
    }
}

/*** CIRCLE SPECIFIC QUERIES MOBILE FIRST ***/
@media (min-width: 300px) and (max-width:420px) {
    #circle,
    #gong,
    .slider-circle {
        width: 92vw;
        height: 92vw;
        -moz-border-radius: 92vw;
        -webkit-border-radius: 92vw;
        border-radius: 92vw;
    }
}
@media (min-height: 300px) and (max-height:420px) and (orientation: landscape){
    #circle,
    #gong,
    .slider-circle {
        width: 32vw;
        height: 32vw;
        -moz-border-radius: 32vw;
        -webkit-border-radius: 32vw;
        border-radius: 32vw;
    }
    footer {
        position: fixed;
        z-index: 20000;
        bottom: 0;
        width: 100%;
        background-color: white;
    }
    nav ul {
        top: 20%;
    }
    nav ul li {
        font-size: 18px;
    }
}

/*** CIRCLE SPECIFIC QUERIES TABLET NEXT ***/
@media (min-width: 768px) and (max-width:1280px) and (orientation: portrait) {
    #circle,
    #gong,
    .slider-circle {
        width: 70vw !important;
        height: 70vw !important;
        -moz-border-radius: 70vw !important;
        -webkit-border-radius: 70vw !important;
        border-radius: 70vw !important;
    }
    .slick-dots {
        bottom: 20vh;
    }
    #logo img {
        width: 15vw;
    }
}
@media (min-width: 1024px) and (min-height: 700px){
    #circle,
    #gong,
    .slider-circle {
        width: 39vw;
        height: 39vw;
        -moz-border-radius: 39vw;
        -webkit-border-radius: 39vw;
        border-radius: 39vw;
    }
    .slick-dots {
        bottom: 20vh;
    }
}