body{
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: 0.7px;
    background-color: #f5ebdf;
    position: relative;
    color: #2c2826;
}

    a{
        color: #2c2826;
    }

        a:hover{
            color: inherit;
            text-decoration: underline;
        }

    .btn{
        font-weight: 500;
        color: #2c2826;
        border: none;
        cursor: pointer;
        text-align: center;
        padding: 5px 12px;
        position: relative;
        font-size: 20px;
        background: transparent;
        text-transform: lowercase;
        line-height: inherit;
    }

        .btn:before{
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 3px);
            height: 5px;
            background: rgba(227, 86, 21, 0.6);
            border-radius: 3px;
            -webkit-transition: all .1s ease-in-out;
            -o-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out
        }

        .btn:hover:before{
            width: 100%;
            height: 4px;
        }

        .section-title{
            font-family: "Barlow";
            font-weight: 700;
            position: relative;
            text-align: center;
            display: inline-block;
            padding: 0 15px;
            font-size: 44px;
            margin-bottom: 50px;
            z-index: 1;
        }

            .section-title:before{
                content: "";
                position: absolute;
                display: block;
                width: 100%;
                height: 20px;
                left: 0;
                bottom: 0;
                background: rgba(227, 86, 21, .6);
                z-index: -1;
            }
    
    .transition {
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }

nav{
    position: fixed;
    top: 25px;
    left: 25px;
    right: 25px;
    background-color: transparent;
    z-index: 1000;
}

    nav > .nav-logo{
        position: absolute;
        left: 0;
        top: 0;
    }

        nav > .nav-logo > img{
            height: 55px;
        }
    
    nav > .nav-nav{
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
    }

        nav > .nav-nav > .nav-burger{
            position: relative;
            float:left;
            width: 20px;
            height: 20px;
            background: transparent;
        }
    
            nav > .nav-nav > .nav-burger > div {
                position: absolute;
                top: 4px;
                left: 0;
                right: 0;
            } 
            
            nav > .nav-nav > .nav-burger > div.nav-open-burger {
                opacity: 0;
            }  
            
            body.nav-open > nav > .nav-nav > .nav-burger > div.nav-close-burger {
                opacity: 0;
            } 
            
            body.nav-open > nav > .nav-nav > .nav-burger > div.nav-open-burger {
                opacity: 1;
            }  
            
                nav > .nav-nav > .nav-burger > div > div{
                    width: 100%;
                    height: 2px;
                    background: rgba(227, 86, 21, .6);
                    box-shadow:
                    -1px -1px 0 rgba(245, 235, 223, 1),  
                     1px -1px 0 rgba(245, 235, 223, 1),
                     -1px 1px 0 rgba(245, 235, 223, 1),
                      1px 1px 0 rgba(245, 235, 223, 1);
                    border-radius: 2px;
                }    
        
                nav > .nav-nav > .nav-burger > div > div:not(:last-child){
                    margin-bottom: 4px;
                } 

                nav > .nav-nav > .nav-burger > .nav-open-burger > div:nth-child(1){
                    transform: rotate(45deg);
                    margin-top: 6px;
                }
                
                nav > .nav-nav > .nav-burger > .nav-open-burger > div:nth-child(2){
                    opacity: 0;
                }

                nav > .nav-nav > .nav-burger > .nav-open-burger > div:nth-child(3){
                    transform: rotate(-45deg);
                    margin-top: -12px;
                }  
            
            nav > .nav-nav > span{
                display: inline-block;
                line-height: 20px;
                font-size: 20px;
                margin-left: 5px;
                text-transform: uppercase;
                text-shadow:
                -1px -1px 0 rgba(245, 235, 223, 1),  
                 1px -1px 0 rgba(245, 235, 223, 1),
                 -1px 1px 0 rgba(245, 235, 223, 1),
                  1px 1px 0 rgba(245, 235, 223, 1);
            }

#nav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    max-height: 100vh;
    width: 100%;
    z-index: 500;
    background: rgba(245, 235, 223, .95);
    transform: translateX(100%);
    transition: -webkit-transform .75s cubic-bezier(.75,.19,.24,1);
    transition: transform .75s cubic-bezier(.75,.19,.24,1);
    transition: transform .75s cubic-bezier(.75,.19,.24,1),-webkit-transform .75s cubic-bezier(.75,.19,.24,1);
    opacity: 0;
}

body.nav-open > #nav{
    opacity: 1;
    transform: translateX(0);
}

    #nav > ul{
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        #nav > ul > li{
            display: block;
            padding: 10px 0px;
            text-transform: lowercase;
            font-weight: 700;
        }

            #nav > ul > li > a{
                font-size: 60px;
            }

#home{
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

    #home .scene{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
        #home .scene .home-bg{
            width: 110%;
            height: 110%;
            left: -5%!important;
            top: -5%!important;
            background-size: cover;
            background-position: center;
            z-index: -1;
            background-image: url('../img/home.jpg');
        }

        #home .scene .home-bg:before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .2);
        }

    #home .home-content{
        width: 100%;
        height: 100%;
    }

        #home .home-content > div{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate3d(-50%,-50%,0);
            text-align: center;
        }

            #home .home-content span{
                display: block;
                color: #f5ebdf;
                text-shadow: 3px 3px 3px rgba(0, 0, 0, .7);
            }

            #home .home-content .home-title{
                font-size: 5.5rem;
                line-height: 5.5rem;
                font-weight: 700;
            }
            
            #home .home-content .home-subtitle{
                font-size: 2rem;
            }

            #home .home-content a{
                display: inline-block;
                color: #f5ebdf;
                font-size: 22px;
                margin: 15px auto 0;
            }


    .vbox-close{
        font-weight: 500;
        color: #2c2826;
        border: none;
        cursor: pointer;
        text-align: center;
        padding: 5px 12px;
        font-size: 22px;
        background: transparent;
        text-transform: lowercase;
        line-height: inherit;
        min-width: auto;
    }

        .vbox-close:before{
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 3px);
            height: 5px;
            background: rgba(227, 86, 21, 0.6);
            border-radius: 3px;
            -webkit-transition: all .1s ease-in-out;
            -o-transition: all .1s ease-in-out;
            transition: all .1s ease-in-out
        }

        .vbox-close:hover:before{
            width: 100%;
            height: 4px;
        }

#about{

}

    #about .about-text{
        text-align: center;
    }

    #about .about-image > div{
        background-size: cover;
        background-position: center;
    }

#events{
    /* background: #dacab5; */
    background: #efe2d4
}

    #events .event-item{
        padding-top: 35px;
        padding-bottom: 35px;
        position: relative;
    }

    #events .event-item:before{
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        height: 1px;
        background: #2c2826;
        opacity: .1;
    }

    #events .event-item:first-child:before, #events .event-item:only-child:before{
        display: none;
    }

        #events .event-item span{
            display: block;
            line-height: 1.2;
        }

        #events .event-item span.event-date, #events .event-item span.event-loc{
            font-family: "Barlow";
        }

        #events .event-item span.event-date{
            font-size: 20px
        } 

            #events .event-item span.event-date > .event-day{
                font-size: 24px;
            }
            
            #events .event-item span.event-date > .event-month{
                line-height: 1;
            }
        
        #events .event-item span.event-loc{
            font-size: 22px;
        }

        #events .event-city{
            font-size: 18px;
            opacity: .85;
        }
    
    #events .event-item-more-dates{
        padding-top: 15px;
    }

#videos{
    background: #efe2d4;
}

    .video-link:hover{
        text-decoration: none;
    }

        .video-image{
            height: 285px;
            background-size: cover;
            background-position: center;
        }

        .video-title{
            font-weight: 500;
            color: #2c2826;
            border: none;
            cursor: pointer;
            text-align: center;
            padding: 5px 12px;
            position: relative;
            font-size: 20px;
            background: transparent;
            text-transform: lowercase;
            line-height: inherit;
            margin-top: 10px;
            display:inline-block;
        }

            .video-title:before{
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: calc(100% - 3px);
                height: 5px;
                background: rgba(227, 86, 21, 0.6);
                border-radius: 3px;
                -webkit-transition: all .1s ease-in-out;
                -o-transition: all .1s ease-in-out;
                transition: all .1s ease-in-out
            }
        
            .video-link:hover .video-title:before{
                width: 100%;
                height: 4px;
            }

footer{
    padding: 100px 0 0;
    background: #141312;
    color: #f8f8f8;
}

    .contacts-socials{
        margin-bottom: 50px;
    }

        .social-link{
            margin: 0 15px;
            color: #fff;
        }

    .contacts span{
        display: block;
    }

    .contacts span.contacts-title{
        font-weight: 700;
    }

    .contacts img{
        height: 50px;
        margin-bottom: 25px;
    }

        .newsletter span.newsletter-title{
            font-weight: 700;
            margin-bottom: 10px;
        }

        .newsletter .newsletter-inputs{
            position: relative;
        }

            .newsletter .newsletter-inputs input{
                background: transparent;
                border: none;
                border-bottom: 1px solid #f8f8f8;
                color: #f8f8f8;
                padding: 7px;
                margin-bottom: 5px;
                font-size: 16px;
                width: calc(50% - 21px);
            }    
            
            .newsletter .newsletter-inputs input:first-child{
                margin-right: 2px;
            }

            .newsletter .newsletter-inputs button{
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                background: transparent;
                width: 40px;
                border: none;
                cursor: pointer;
            }

                .newsletter .newsletter-inputs button::before {
                    top: 19px;
                    left: 15px;
                    width: 10px;
                    height: 1px;
                    float: left;
                    content: "";
                    position: absolute;
                    background: #ffffff;
                    -webkit-transition: all .1s ease-in-out;
                    -o-transition: all .1s ease-in-out;
                    transition: all .1s ease-in-out
                }

                .newsletter .newsletter-inputs button::after {
                    top: 17px;
                    right: 15px;
                    width: 5px;
                    height: 5px;
                    float: left;
                    content: "";
                    position: absolute;
                    border-top: 1px solid #ffffff;
                    border-right: 1px solid #ffffff;
                    transform: rotate(54deg) skew(20deg);
                    -webkit-transition: all .1s ease-in-out;
                    -o-transition: all .1s ease-in-out;
                    transition: all .1s ease-in-out
                }
            
                .newsletter .newsletter-inputs button:hover:before{
                    transform: translateX(3px);
                }
                
                .newsletter .newsletter-inputs button:hover:after{
                    transform: translateX(3px) rotate(54deg) skew(20deg);
                }

        .newsletter .newsletter-policy{
            font-size: 13px;
            margin-top: 5px;
        }
        
            .newsletter .newsletter-policy a{
                color: #fff;
                text-decoration: underline;
            }

    footer .credits{
        display: block;
        margin: 100px 0 25px;
    }

        footer .credits a{
            color:rgba(227, 86, 21, 0.6);
        }