@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
*
{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    -webkit-scroll-behavior:smooth;
    -moz-scroll-behavior:smooth;
    -webkit-touch-callout: none; /* iOS Safari */
   -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
       -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently*/
    -webkit-tap-highlight-color: transparent;
}
.noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
section
{
    padding: 50px;
}
html, body
{
    position: relative;
    background-color:#111;
    overflow-x:hidden;
    -webkit-overflow-x:hidden;
}
html
{
     
}
input
{
    -webkit-user-select: text; /* Chrome, Opera, Safari */
    -moz-user-select: text; /* Firefox 2+ */
    -ms-user-select: text; /* IE 10+ */
    user-select: text; /* Standard syntax */
}
textarea
{
    -webkit-user-select: text; /* Chrome, Opera, Safari */
    -moz-user-select: text; /* Firefox 2+ */
    -ms-user-select: text; /* IE 10+ */
    user-select: text; /* Standard syntax */
}
a
{
    
    text-decoration: none;
    
}
p
{
    font-size: 1.2em;
    font-weight: 100;
    text-shadow: 1px 1px #111;
}
::-webkit-scrollbar
{
    width: 10px;
    background-color: #222;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb
{
  background: rgba(248, 247, 231, 0.5); 
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f8f7e7; 
}
.banner
{
    opacity: 0;
    overflow-x:hidden;
    -webkit-overflow-x:hidden;
    overflow-y:hidden;
    -webkit-overflow-y:hidden;
    position: relative;
    min-height: 100vh;
    background: url(nacila%20web%20trans%203.png);
    background-color: #111;
    background-size: cover;
    background-position: right; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-animation-name: Intro;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: Intro;
    -moz-animation-duration: 2s;
    -moz-animation-timing-function: linear;
    animation-name: Intro;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@-moz-keyframes Intro
{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes Intro
{
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes Intro
{
    0% {opacity:0;}
    100% {opacity: 1;}
}

.banner h2
{
    position: relative;
    opacity: 0;
    left: -100px;
    font-size: 3em;
    color: #f8f7e7;
    font-weight: 200;
    line-height: 1.5em;
    -webkit-animation-name: Leftin;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay:1s;
    -moz-animation-name: Leftin;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-delay:1s;
    animation-name: Leftin;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.banner h2 span
{
    font-size: 1.5em;
    font-weight: 200;
}
.banner h3
{
    position: relative;
    left: -100px;
    opacity: 0;
    color: #f8f7e7;
    font-size: 1.5em;
    font-weight: 200;
    -webkit-animation-name: Leftin;
    -webkit-animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay:1s;
    -moz-animation-name: Leftin;
    -moz-animation-duration: 2s;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-delay:1s;
    animation-name: Leftin;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay:1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes Leftin
{
    0% {opacity:0;}
    50%{opacity: 0;}
    100%{opacity: 1;left: 0;}
}
.btn
{
    opacity: 0;
    position: relative;
    top: 600px;
    display: inline-block;
    color: #f8f7e7;
    list-style: none;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    border-radius: 10px;
    outline: none;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 200;
    text-shadow: 0 0 10px,
                 0 0 10px #f8f7e7;
    -webkit-animation-name: Upin;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay:2s;
    -moz-animation-name: Upin;
    -moz-animation-duration: 1.5s;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-delay:2s;
    animation-name: Upin;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-delay:2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    
}
@keyframes Upin
{
    0%{}
    100%{opacity: 1;top: 0;}
}
.btn:hover
{
    
    box-shadow: 0 0 10px,
                0 0 10px #fcf484;

}
header
{
    opacity: 0;
    position: fixed;
    top: -130px;
    left: 0;
    width: 100%;
    height: 120px;
    padding: 40px 100px;
    z-index: 1;
    display: flex;
    background: #111;
    justify-content: space-between;
    align-items: center;
    transition-timing-function: ease-in-out;
    -webkit-animation-name: Banner;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-delay:2s;
    -moz-animation-name: Banner;
    -moz-animation-duration: 1.5s;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-delay:2s;
    animation-name: Banner;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-delay:2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes Banner
{
    0% {opacity: 0;}
    100%{opacity: 1;top: 0;}
}
.artHeader
{
    opacity: 100%;
    animation: none;
    height: 8%;
    padding: 20px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    
}
.artHeader.sticky
{
    background:#111;
    height: 8%;
    padding: 20px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


header.sticky
{
    background:#111;
    height: 8%;
    padding: 20px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header.sticky .logo
{
    background-color: #111;
    border-radius: 6%;
    width: 7rem;
    height: 3rem;
}
header.sticky .logo img
{
    position: relative;
    bottom: 5px;
}

header .logo
{
    width: 13%;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    
    list-style: none;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px 20px;
    outline: none;
    text-decoration: none;
    font-weight: 500;
    transition: 0.05s;
    transition-timing-function: ease-in-out; 
}
header .logo:hover
{
   
    box-shadow: 0 0 10px,
                 0 0 10px #fcf484;
}
header ul
{
    position: relative;
    display: flex;  
}
.artHeader ul
{
    position: relative;
    display: flex;  
}
header ul li
{
    position: relative;
    list-style: none;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);

    border-radius: 10px;
    margin: 10px 5px;
    padding: 10px 20px;
    outline: none;
}


.chapitres ul
{
    justify-content: center;
    display: flex; 
}
.chapitres ul li
{
    list-style: none;
    margin: 10px 5px;

    outline: none;
}
.chapitres ul li a
{
    font-size: 2em;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    color: #f8f7e7;
    text-decoration: none 
}


.artHeader ul li
{
    position: relative;
    list-style: none;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);

    border-radius: 10px;
    margin: 10px 5px;
    padding: 10px 20px;
    outline: none;
}
header ul li a
{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #f8f7e7;
    text-shadow: 0 0 10px,
                 0 0 0 #f8f7e7;
    text-decoration: none;
}
.heartHeader ul li a
{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #f8f7e7;
    text-shadow: 0 0 10px,
                 0 0 0 #f8f7e7;
    text-decoration: none;
}
.artHeader.sticky ul li
{
    position: relative;
    display: inline-block;
    margin: 0 1px;
    color: #f8f7e7;
    text-shadow: 0 0 10px,
                 0 0 0 #f8f7e7;
    text-decoration: none;
}
header.sticky ul li
{
    border-color: #111;
    
}
.artHeader.sticky ul li
{
    border-color: #111;
}
header.sticky ul li a
{
    font-weight: 400;   
}
.artHeader.sticky ul li a
{
    font-weight: 200;   
}
header.sticky ul :hover
{
   
    color:#fff;
    
}
header ul li:hover
{
  
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
}
header ul li a:hover
{
   
    text-shadow: 0 0 10px,
                 0 0 20px #fcf484;
    
}
.heading 
{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    color: #f8f7e7; 
}
.heading h2
{
    font-weight: 300;
}
.about
{
    background-color: #222;
    color: #cecdc1;
    
}
.content
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.contentBx p
{ 
    color: #cecdc1;
}
.w50
{
    display: flex;
    align-items: center;
    padding: 10px;
}
.w50 img
{
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    padding: 20px;
}
.w70
{
    display: flex;
    
}
.w70 img
{
    width: 30%;
    height:40%;
    margin:0 auto 50px auto;
}
.video-container
{
    position:relative;
    padding-bottom:56.25%; /* ratio 16:9 */
    padding-top:0px;
    height: 0;
    overflow:hidden;
    max-width: 100%;
}
.video-container iframe,
.video-container object,
.video-container embed
{
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
.w60
{
    position: relative;
    margin: 0 auto;
    width: 50%;
    
}
.swiper-container
{
    margin-top:50px; 
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 0;
    
}
.swipeCard
{
    position: relative;
    background: #fff;
    width: 230px;
    height: 375px;
    margin: 0 auto;
}
.swipeCard .swipeContent
{
    width: 100%;
    height: 80%;
    box-sizing: border-box;
}
.swipeContent a img
{
    width: 100%;
    height: 100%;
    display: inline-block;
    text-decoration: none;
    color: #262626;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.swipeCard .sliderText
{
    position: relative;
    width: 100%;
    height: 20%;
    padding-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    background: #f8f7e7;
}
.swipeCard .sliderText h3
{
    text-align: center;
    color:#111;
    font-size: 1.2em;
}
.swiper-button-next
{
    color: #f8f7e7;
    text-shadow: 4px 4px 6px #111;
    outline: none;
    border: none;
}
.swiper-button-prev
{
    color: #f8f7e7;
    text-shadow: 4px 4px 6px #111;
    outline: none;
    border: none;
}
.swiper-slide
{
    width: 250px;
}

.swiper-pagination
{
    position: relative;
    margin-top: 50px;
}
.swiper-pagination-bullet 
{
    text-align: center;
    color: #111;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active 
{
    color: #f8f7e7;
    background: #f8f7e7;
}
#art1, #art2, #art3, #art4
{
 
}

#artcnt1, #artcnt2, #artcnt3, #artcnt4
{
    display: none;
}
.container
{
    margin-top:50px; 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    -webkit-appearance:none;
    -webkit-box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    -moz-box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    filter: none;
    z-index: 0;
}
.glide
{
    background-color: #222;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    -webkit-appearance:none;
    -webkit-box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    -moz-box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    filter: none;
    z-index: 0;
    
    
}

.glide__track
{
    height: 100%;
    position: relative;
}
.glide__slides
{
    position: relative;
    overflow: visible;
}
.glide__slide
{
    filter: blur(2px);
    opacity: .7;
    transition: .2s linear;
    transform: scale(0.8);
}
.glide__slide--active
{
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}
.glide__bullet
{
    position: relative;
    top: 15px;
    color: #f8f7e7;
    z-index: 10000;
    
}
.glide__arrow
{
    color: #f8f7e7;
}

.card
{
    position: relative;
    margin: 60px auto;
    width: 171px;
    height: 250px;
    background: #fff;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    transition: 1s;
    box-shadow: inset 300px 0 50px rgba(0, 0, 0,.5);
}
.card:hover
{
    transform: perspective(2000px) rotate(-10deg);
    box-shadow: inset 20px 0 50px rgba(0, 0, 0,.5);
}
.card .imgBox
{
    position: relative;
    width: 100%;
    height: 50%;
    bottom: 1px;
    border: 1px solid #000;
    box-sizing: border-box;
    transform-origin: left;
    z-index: 1;
    transition: 1s;
}
.card:hover .imgBox
{
    transform: rotateY(-135deg);
}
.card .imgBox .img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.card .details
{
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 20px;
    font-size: 13px;
    color: black;
}
.card .details a
{
    position: absolute;
    bottom: -20px;
    left: 60px;
    color: black;
    border: 1px solid black;
}
.card .details a:hover
{
    border: 2px solid black;
}
.contact
{
    background-color: #111;
    
}
.formBx
{
    position: relative;
    top: 80px;
    min-width: 100%;
    
}
.formBx form
{
    display: flex;
    flex-direction: column;
}

.formBx form h3
{
    color: #f8f7e7;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 0px;
}
.formBx form input,
.formBx form textarea
{
    margin-bottom: 20px;
    padding:15px;
    font-size: 16px;
    background:#111;
    border: none;
    outline: none;
    color: #f8f7e7;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    -webkit-appearance:none;
    -webkit-box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    -moz-box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
}
.formBx form h3, .send
{
    text-shadow: 0 0 6px,
                 0 0 1px #f8f7e7;
}
.formBx
{
    margin: 10px;
    padding:20px;
    box-shadow: inset 2px 2px 6px rgba(255,255,255,0.1),
                inset -2px -2px 6px rgba(0,0,0,0.8);
    -webkit-box-shadow: inset 2px 2px 6px rgba(255,255,255,0.1),
                inset -2px -2px 6px rgba(0,0,0,0.8);
    -moz-box-shadow: inset 2px 2px 6px rgba(255,255,255,0.1),
                inset -2px -2px 6px rgba(0,0,0,0.8);
}
.linkBx

{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 100px;
    min-width: 60%;
    align-content: center;
    font-size: 50px;
}
.linkBx a
{
    color: #f8f7e7;
    text-shadow: 0 0 0px,
                 0 0 1px #f8f7e7;
}
.linkBx a:hover
{
    text-shadow: 0 0 31px,
                 0 0 1px #f8f7e7;
}
#send:hover
{
    color: #fff;
    text-shadow: 0 0 10px,
                 0 0 10px #f8f7e7;
}

.chapitres
{
    margin: auto;
    width: 30%;
    height: 100px;
}
@media (max-width:1200px)
{
    header,.artHeader ,header.sticky
    {
        padding: 20px 50px;
    }
    header ul li:hover
    {
        box-shadow: none;  
    }
    .artHeader ul li:hover
    {
        box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    }
    
    header ul li a
    {
        font-weight: lighter;
    }
    
    header.sticky ul li a
    {
    font-weight: lighter;   
    }
    .menu
    {
        position: fixed;
        top: 20px;
        left: -100%;
        display:block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #111;
        transition: 0.5s;
        z-index: 0;
    }
    header ul li
    {
       
        height: 60px;
        box-shadow: none;

    }
    .artHeader ul li
    {
        height: 40px;

    }
    header ul li a
    {
        position: relative;
        top: 7px;
        font-size: 25px;
        text-transform: capitalize;
    }
    .artHeader ul li a
    {
        position: relative;
        font-weight: 400;
        top: -1px;
        font-size: 16px;
    }
    header .logo
    {
        display: block;
        position: relative;
        margin: 10px auto;
        width: 200px;
        height: 70px;
        z-index: 1;
    }
    header .logo img
    {
        position: relative;
        bottom: 20px;
    }
    header.sticky .logo
    {
        display: block;
        position: relative;
        margin: 10px auto;
        width: 150px;
        height: 50px;
        z-index: 1;
    }
    header.sticky .logo img
    {
        bottom: 15px;
    
    }
    .menu.active
    {
        left: 0;
    }
    .toggle
    {
        position:absolute;
        width: 40px;
        height: 40px;
        background: url(menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        z-index: 1;
        cursor: pointer;
       /* float: right;*/
    }
    .toggle.active
    {
        background: url(close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        z-index: 1;
        cursor: pointer;

    }
    header.sticky .toggle
    {
        position:flex;
        align-items: center;
    }
    .banner h2, .banner h3, 
    {
        position: relative;
        top: 0;
        
    }
    .banner h2
    {
        font-size: 3em;
    }
    .banner h3
    {
        font-size: 1.25em;
    }
    .w60
    {
    position: relative;
    margin: 0 auto;
    width: 50%;
    }

}
@media (max-width:900px)
{
    .w60
    {
    position: relative;
    margin: 0 auto;
    width: 70%;
    }
}
@media (max-width:600px)
{
    .banner
    {
    left:0;
    opacity: 100%;
    position: relative;
    top: 0px;
    min-height: 100vh;
    background: url(portrait.png);
    background-color: #111;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: fadeIn;
    -moz-animation-duration: 1.2s;
    -moz-animation-timing-function: ease-in-out;
    animation-name: fadeIn;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    }

    @-webkit-keyframes fadeIn
    {
        0% { opacity:0;}
        100% { opacity:1;}
    }
    @-webkit-keyframes fadeIn
    {
        0% { opacity:0;}
        100% { opacity:1;}
    }
    @keyframes fadeIn
    {
        0% { opacity:0;}
        100% { opacity:1;}
    }
    .banner h2
    {
        position:relative;
        top: 300px;
        left: 0;
        background-color:rgba(34, 34, 34, 0.7);
        text-align: center;
        font-size: 1.8em;
        font-weight: 200;
        line-height: 1.1em;
    }
   
    .banner h3
    {
        position:relative;
        top: 310px;
        left: 0;
        background-color:rgba(34, 34, 34, 0.7);
        text-align: center;
        font-size: 1em;
        font-weight: 300;
        line-height: 2em;
    }
    .btn
    {
        width: 50%;
        bottom: 150px;
        right: 35px;
        border: 1px solid #000;
    }
   
    header, header.sticky
    {
        padding: 20px 50px;
        font-weight:lighter;
    }
    .artHeader
    {
        padding: 0px 50px;
    }
    .artHeader ul
    {
        position: relative;
        margin: 0 auto;
        align-content: center;
        justify-content:space-between;
 
    }
    .artHeader ul li
    {
        padding: 10px 50px;
    }
    header ul li:hover
    {
        box-shadow: none;
    }
    header ul li a
    {
        font-size: 15px;
        font-weight:lighter;
    }
    .menu
    {
        position: fixed;
        top: 20px;
        left: -200%;
        display:block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #111;
        transition: 0.5s;
        z-index: 0;
    }
    header ul li
    {
       
        height: 60px;
        box-shadow: none;
        
        
    }
    header ul li a
    {
        position: relative;
        top: 7px;
        font-size: 25px;
        text-transform: capitalize;
    }
    header .logo
    {
        display: block;
        position: relative;
        margin: 0 auto;
        width: 200px;
        height: 70px;
        z-index: 1;
    }
    header .logo img
    {
        position: relative;
        bottom: 20px;
    }
    header.sticky .logo
    {
        display: block;
        position: relative;
        margin: 10px auto;
        width: 150px;
        height: 50px;
        z-index: 1;
    }
    header.sticky .logo img
    {
        bottom: 15px;
    
    }
    .menu.active
    {
        left: 0;
    }
    .toggle
    {
        width: 40px;
        height: 40px;
        margin-left: -39px;
        background: url(menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        z-index: 1;
        cursor: pointer;
        /*float: right;*/
    }
    .toggle.active
    {
        background: url(close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        z-index: 1;
        cursor: pointer;

    }
    header.sticky .toggle
    {
        position:flex;
        align-items: center;
    }
    .w60
    {
    position: relative;
    margin: 0 auto;
    width: 100%;
    }
}
@media (max-width:450px)
{
    .artHeader
    {
        padding: 0;
        height: 50px;
    }
    .artHeader ul
    {
        position: relative;
        margin: 0 auto;
        align-content: center;
        justify-content:space-between;
 
    }
    .artHeader ul li,
    {
        width: 120px;
        height: 40px;
    }
    .artHeader ul li a
    {
        margin: 0;
        text-align: center;
        height: auto;
    }
    .w60
    {
    position: relative;
    margin: 0 auto;
    width: 100%;
    }
   
}
@media (max-height: 400px)
{
    .banner
    {
        background-size: 800px;
        background-repeat: no-repeat;
        background-position:right bottom;
    }
}
@media (max-height: 750px)
{
    
    header
    {
    height: 10%;
    padding: 20px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    background: #111;
    justify-content: space-between;
    align-items: center;
    }
    header .logo
    {
  
        width: 8rem;
        height: 4rem;
        padding: 3px
    }
    header .logo img
    {
        position: relative;
        top: 0;
    }
    header.sticky
    {
    height: 8%;
    padding: 20px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: flex;
    background: #111;
    justify-content: space-between;
    align-items: center;
    }
    header.sticky .logo
    {
        width: 5rem;
        height: 2rem;
    }
    header.sticky .logo img
    {
        position: relative;
        top: -5px;
    }
    
   
}
@media (min-width:1600px)
{
    header.sticky .logo
{
    background-color: #111;
    border-radius: 6%;
    width: 6.5rem;
    height: 2.5rem;
}
header.sticky .logo img
{
    position: relative;
    bottom: 6px;
}

header .logo
{
    width: 180px;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    
    list-style: none;
    box-shadow: inset -2px -2px 6px rgba(255,255,255,0.1),
                inset 2px 2px 6px rgba(0,0,0,0.8);
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px 20px;
    outline: none;
    text-decoration: none;
    font-weight: 500;
    transition: 0.05s;
    transition-timing-function: ease-in-out; 
}
}