/* ANIMATIONS */
.slideIn {
    animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards;
}
    
@keyframes slide-in {
    100% { transform: translateX(0%); opacity: 1; }
}

@font-face {
    font-family: 'helmetregular';
    src: url('../fonts/helmet-regular-webfont.eot');
    src: url('../fonts/helmet-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/helmet-regular-webfont.woff2') format('woff2'),
         url('../fonts/helmet-regular-webfont.woff') format('woff'),
         url('../fonts/helmet-regular-webfont.ttf') format('truetype'),
         url('../fonts/helmet-regular-webfont.svg#helmetregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
}

#mobile-menu-fader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999999;
    display: none;
}

#mobile-menu {
    height: 100%;
    background: #000000;
    padding: 0;
    margin: 0;
    width: 60%;
    margin-left: 40%;
    padding-top: 30px;
    list-style: none;
}

#mobile-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-family: "helmetregular";
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    padding-left: 20px;
    text-transform: uppercase;
}

#header {
    height: 142px;
    background: #333132;
}

#header-logo-container {
    height: 78px;
    line-height: 78px;
    float: left;
    margin-top: 32px;
    margin-left: 75px;
}

#header-logo {
    float: left;
    width: 77px;
    height: 78px;
    background: url("../images/header-logo.png");
}

#header-logo-text {
    float: left;
    color: #ffffff;
    font-size: 25px;
    text-transform: uppercase;
    font-family: "helmetregular";
    height: 78px;
    line-height: 78px;
    margin-left: 40px;
}

#header-menu {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
}

#header-menu li {
    float: left;
    height: 142px;
    line-height: 142px;
}

#header-menu li a {
    color: #ffffff;
    display: inline-block;
    padding: 0px 35px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "helmetregular";
    text-decoration: none;
    border-right: 2px solid #050505;
    height: 20px;
    line-height: 20px;
}

#heaader-mobile-menu {
    width: 26px;
    height: 21px;
    background: url("../images/mobile-menu.png");
    display: none;
    margin-top: 21px;
    margin-right: 20px;
    float: right;
}

/* CLASSES */
.clear {
    clear: both;
    display: block;
    content: '';
}

.title {
    text-align: center;
    font-family: "Abril Fatface";
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.title.white {
    color: #ffffff;
}

.subtitle {
    text-align: center;
    font-family: "helmetregular";
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.subtitle.white {
    color: #ffffff;
}

.description {
    text-align: center;
    font-family: "helmetregular";
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 30px;
}

.description.white {
    color: #ffffff;
}

.dot-container {
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #000000;
    border-radius: 50%;
    display: inline-block;
}

.dot.white {
    background: #ffffff;
}

.shadow-line-top {
    position: absolute;
    height: 20px;
    width: 100%;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(top,  rgba(56,56,56,1) 0%, rgba(56,56,56,0.99) 1%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(56,56,56,1) 0%,rgba(56,56,56,0.99) 1%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(56,56,56,1) 0%,rgba(56,56,56,0.99) 1%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#383838', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    opacity: 0.3;
}

.shadow-line-bottom {
    position: absolute;
    height: 20px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(56,56,56,0.99) 99%, rgba(56,56,56,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(56,56,56,0.99) 99%,rgba(56,56,56,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(56,56,56,0.99) 99%,rgba(56,56,56,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#383838',GradientType=0 ); /* IE6-9 */
    opacity: 0.3;
}

/* SLIDER */
#slider-container {
    height: 830px;
}

#slider {
    position: relative;
    height: 830px;
}

.slider-element {
    float: left;
    width: 100%;
    height: 100%;
    color: #000000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#slider .slick-list {
    overflow: hidden;
}

#slider .slick-arrow {
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
    width: 27px;
    height: 61px;
    display: block;
    border: none;
    background: url("../images/slider-arrow-left.png");
    cursor: pointer;
    z-index: 9999;
}

#slider .slick-arrow.slick-next {
    right: 55px;
    left: auto;
    background: url("../images/slider-arrow-right.png");
}

#slider .slick-dots {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 90px;
    padding: 0;
    list-style: none;
    z-index: 9999;
    text-align: center;
}

#slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bcbec0;
    cursor: pointer;
    margin: 0px 10px;
    display: inline-block;
}

#slider .slick-dots li.slick-active {
    background: #181818;
}

#slider .slick-dots li button {
    display: none;
}

#slider .slick-list {
    height: 100%;
}

#slider .slick-track {
    height: 100%;
}

/* BRAND BOX */
#brand-box-container {
    display: table;
    position: relative;
    width: 100%;
}

#brand-box-left {
    display: table-cell;
    width: 40%;
    background: #e9c720;
}

#brand-box-left-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 160px;
    margin-bottom: 120px;
    transform: translateX(-100%);
    opacity: 0;
    position: relative;
}

#brand-box-left-container-logo {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url('../images/brand-logo.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    top: -70px;
    left: 60px;
    z-index: -1;
}

#brand-box-right {
    display: table-cell;
    width: 60%;
    background-image: url('../images/content-box-brand-background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* CRISPY BOX */
#crispy-box-container {
    display: table;
    position: relative;
    width: 100%;
}

#crispy-box-right {
    display: table-cell;
    width: 40%;
    overflow: hidden;
}

#crispy-box-right-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 160px;
    margin-bottom: 120px;
    transform: translateX(100%);
    opacity: 0;
}

#crispy-box-left {
    display: table-cell;
    width: 60%;
    background-image: url('../images/crispy-box-background.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(0%);
    opacity: 0;
}

/* BIG BOX */
#big-box {
    position: relative;
}

#big-box-vines {
    position: absolute;
    background-image: url('../images/big-box-vines.png');
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    width: 22%;
    height: 100%;
    left: 5%;
    bottom: 80px;
}

#big-box-top {
    height: 730px;
    background-image: url('../images/big-box-background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#big-box-bottom-container {

}

#big-box-bottom {
    display: table;
    width: 70%;
    margin-left: 30%;
}

.big-box-bottom-side {
    display: table-cell;
    width: 50%;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.big-box-bottom-side-container {
    margin: 0 auto;
    transform: translateX(-100%);
    opacity: 0;
    border-right: 1px solid black;
    padding-left: 10%;
    padding-right: 10%;
}

.big-box-bottom-side-container.right {
    transform: translateX(100%);
    border-right: none;
}

/* TASTING ROOM */
#tasting-room-container {
    display: table;
    position: relative;
    width: 100%;
}

#tasting-room-right {
    display: table-cell;
    width: 35%;
    background: #e9c720;
    overflow: hidden;
}

#tasting-room-right-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 160px;
    margin-bottom: 120px;
    transform: translateX(100%);
    opacity: 0;
}

#tasting-room-left {
    display: table-cell;
    width: 65%;
    background-image: url('../images/tasting-room-background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* FOOTER */
#footer {
    background: #333132;
    padding-top: 75px;
    padding-bottom: 50px;
}

#footer-menu-top {
    text-align: center;
    margin-bottom: 20px;
}

#footer-menu-top a {
    color: #adadad;
    display: inline-block;
    font-size: 27px;
    text-transform: uppercase;
    font-family: "helmetregular";
    text-decoration: none;
}

#footer-menu-top a:last-child {
    border-right: none;
}

.footer-menu-top-block {
    border-right: 2px solid #252424;
    padding: 0px 35px;
}

.footer-menu-top-block:last-child {
    border-right: none;
}

#footer-menu-bottom {
    text-align: center;
}

#footer-menu-bottom a {
    color: #adadad;
    display: inline-block;
    padding: 0px 35px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "helmetregular";
    text-decoration: none;
    border-right: 2px solid #252424;
}

.footer-icon {
	opacity: 0.5;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 5px;
    margin-right: 5px;
}

@media screen and (max-width: 1500px) {
	
	
	#slider-container {
	    height: 540px;
	}
	
	#slider {
	    position: relative;
	    height: 540px;
	}
	
	#brand-box-left-container { 
		margin-top: 100px;
    	margin-bottom: 60px;
	}
	  
	#brand-box-left-container-logo {
	 	left: -20px;
	}
	
	#crispy-box-right-container {
		margin-top: 80px;
    	margin-bottom: 50px;
	}
	
}

@media screen and (max-width: 1300px) {

    #slider-container {
        height: 600px;
    }

    #slider {
        height: 600px;
    }

    #slider .slick-dots {
        bottom: 40px;
    }

    #brand-box-left {
        width: 50%;
    }

    #brand-box-right {
        width: 50%;
    }

    #crispy-box-right-container {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #big-box-top {
        height: 440px;
    }

    .big-box-bottom-side {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #tasting-room-left {
        width: 50%;
    }

    #tasting-room-right {
        width: 50%;
    }

    #footer-menu-top a {
        font-size: 19px;
    }
    
    .footer-menu-top-block {
    	border-right: none;
    }

    #footer-menu-bottom a {
        font-size: 16px;
    }

    #header {
        height: 110px;
    }

    #header-logo-container {
        margin-top: 14px;
        margin-left: 25px;
    }

    #header-menu li {
        height: 110px;
        line-height: 110px;
    }

}

@media screen and (max-width: 800px) {

    #header {
        height: 65px;
    }

    #header-logo-container {
        margin-top: 6px;
        height: 50px;
        line-height: 50px;
    }

    #header-logo {
        width: 50px;
        height: 50px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #header-logo-text {
        height: 50px;
        line-height: 50px;
        margin-left: 20px;
        font-size: 20px;
    }

    #header-menu {
        display: none;
    }

    #heaader-mobile-menu {
        display: block;
    }

    #slider-container {
        height: 350px;
    }

    #slider {
        height: 350px;
    }

    #slider .slick-arrow {
        display: none !important;
    }

    #slider .slick-dots {
        bottom: 10px;
    }

    #brand-box-left-container {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
	#brand-box-left-container-logo {
	    width: 90px;
	    height: 90px;
	    top: -40px;
	    left: 20px;
	}

    .description {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .title {
        font-size: 25px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }

    #tasting-room-right-container {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #footer {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    #footer-menu-top a {
        font-size: 15px;
        display: block;
        margin-bottom: 10px;
    }

    #footer-menu-bottom a {
        font-size: 16px;
        display: block;
        margin-bottom: 10px;
    }

}

@media screen and (max-width: 440px) {

	.big-box-bottom-side-container {
	    border-right: none;
	}

    #slider-container {
        height: 260px;
    }

    #slider {
        height: 260px;
    }

    #brand-box-left-container {
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
	#brand-box-left-container-logo {
	    width: 60px;
	    height: 60px;
	    top: 10px;
	    left: 30px;
	}


    #brand-box-container {
        display: block;
    }

    #brand-box-left {
        display: block;
        width: 100%;
    }

    #brand-box-right {
        display: block;
        width: 100%;
        height: 160px;
    }

    #crispy-box-container {
        display: block;
    }

    #crispy-box-left {
        display: block;
        width: 100%;
        height: 70px;
        margin-top: 40px;
    }

    #crispy-box-right {
        display: block;
        width: 100%;
    }

    .dot-container {
        display: none;
    }

    #big-box-top {
        height: 200px;
    }

    #big-box-vines {
        display: none;
    }

    #big-box-bottom {
        display: block;
        width: 100%;
        margin-left: 0%;
    }

    .big-box-bottom-side {
        display: block;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #tasting-room-container {
        display: block;
        width: 100%;
    }

    #tasting-room-left {
        display: block;
        width: 100%;
        height: 160px;
    }

    #tasting-room-right {
        display: block;
        width: 100%;
    }

}

@media screen and (max-width: 320px) {

    #slider-container {
        height: 180px;
    }

    #slider {
        height: 180px;
    }

}