@font-face {
    font-family: 'josefin_lightregular';
    src: url('./../fonts/josefinsans-light-webfont.woff2') format('woff2'), url('./../fonts/josefinsans-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'josefin_regular';
    src: url('./../fonts/josefinsans-regular-webfont.woff2') format('woff2'), url('./../fonts/josefinsans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    color: #3B3B3B;
    font-size: 18px;
    line-height: 1.5;
    font-family: josefin_lightregular;
    background: #fafafa;
}
*{
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
::-moz-selection {
    background: #3B3B3B;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #3B3B3B;
    color: #fff;
    text-shadow: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
}
a {
    text-decoration: none;
    color: inherit
}

img{
    max-width: 100%;
}
clearfix::before,
clearfix:after{
    display: block;
    clear: both;
    content: "";
}
.header{
    position: fixed;
    z-index: 100;
    top: 30px;
    left: 48px;

}
.header .logo{
    height: 22px;
    width: auto;
}
/* .header .logo-text{
    font-size: 22px;
    letter-spacing: 8px;
} */
.footer{
    position: fixed;
    z-index: 100;
    bottom: 30px;
    left: 48px;
    font-size: 16px;
}
.footer .links{
    padding: 0;
    margin: 0
}
.footer .link{
    list-style: none;
    display: inline-block;
    
}
.footer .link:not(:last-child){
    margin-right: 20px;
}
.flex-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-line-pack: center;
	    align-content: center;
}
/* HomePage */
.container{
    max-width: 1140px;
    margin: 0 auto;
    min-height: 100vh;
    overflow: hidden;
    padding: 0 75px;
}
.img-wrap{
    position: relative;
}
.home #intro .img-wrap img{
    max-height: 500px;
}
.home #heritage .img-wrap img:first-child{
    max-height: 500px;
}
.home #about .img-wrap img:first-child{
    max-height: 500px;
}
.hover-text{
    position: absolute;
    left: calc(100% + 20px);
    white-space: nowrap;
    opacity: 0;
    top: calc(50% + 10px);

}
.img-wrap:hover .hover-text{
    opacity: 1; 
    top: 50%;
}
/* Custom Scrollbar */
::-webkit-scrollbar-track
{
    background-color: #f6f6f6;
    border-radius: 5px;
}

::-webkit-scrollbar
{
	width: 5px;
    background-color: transparent;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb
{
	background-color: #d8d8d8;
    border: 2px solid #d8d8d8;
    border-radius: 3px;
}

/* Inner Page */
.default .container{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column
}
.page-heading{
    width: 100%;
}
.page-heading h1{
    margin: 0 0 5px;
    font-size: 20px;
}
.page-heading.text-center{
    margin-bottom: 2rem;
}

.inner-page-content{
    height: 70vh;
    max-height: 450px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-ms-flex-line-pack: stretch;
	    align-content: stretch;
}
.inner-page-content .img-wrap{
    width: 40%;
}
.inner-page-content .img-wrap img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}
.inner-page-content .content-wrap{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden

}
.inner-page-content .content-wrap .content{
    height: 100%;
    overflow-y: scroll;
    padding: 0 20px;
}
.inner-page-content .content-wrap .content p{
    margin: 0 0 15px;

}
/* Discover Collection Page */

.collection-page .collection-carousel{
    max-height: 100%;
    width: auto;
    text-align: center;
}
.collection-page .owl-stage{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-line-pack: stretch;
	    align-content: stretch;
}
.collection-carousel .owl-item{
    height: 100%;
}
.collection-carousel .owl-item img{
    min-height: 300px;
    max-height: 60vh;
    max-width: 500px;
    width: auto;
    margin: 0 auto;

}
.collection-carousel .owl-nav{
    position: absolute;
    top: calc(50% - 30px);
    margin: 0;
    width: 700px;
    left: calc(50% - 350px);
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    height: 0;
}
.collection-carousel .owl-nav .owl-prev{
    float: left;
}
.collection-carousel .owl-nav .owl-next{
    float: right;
}
.collection-carousel .owl-nav [class*=owl-]{
    margin: 0;
    outline: none !important;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background: none;
}
.collection-carousel .owl-nav [class*=owl-] span{
    font-size: 40px;
    color: #CCC !important;
}
.collection-carousel .owl-nav [class*=owl-]:hover span{
    color: #3B3B3B !important;
}
/* Contact */

#contact .inner-page-content{
    height: auto;
}
.text-center{
    text-align: center;
}
.form-wrap{
    max-width: 600px;
    margin: 0 auto;
}
.field-row label,
.field-row field{
    float: left; 
}
.field-row{
    padding: 10px 0;
}
.field-row label{
    width: 100px;
    line-height: 32px;
}
.field-row .field{
    border: 1px solid #3B3B3B;
    outline: none;
    padding: 5px 15px;
    width: 100%;
    max-width: 500px;
    color: inherit;
}
.field-row textarea.field{
    min-height: 100px;
}
.submit-row .button{
    outline: none;
    border: none;
    background: none;
    font-size: 18px;
    background-color: #3B3B3B;
    color: #fff;
    border: 1px solid currentColor;
    vertical-align: middle;
    line-height: 100%;
    padding: 15px 25px 10px;
    cursor: pointer;
    margin-left: 100px;
}

.submit-row .button:hover{
    background-color: #fff;
    color: #3B3B3B;
}
/* Policy */
#policy .inner-page-content .content-wrap{
    overflow-y: scroll;
}
.policy-content{
    max-width: 600px;
    margin: 0 auto;
}
#thank-you .inner-page-content{
    height: auto;
}
a.button{
    outline: none;
    background: none;
    font-size: 18px;
    line-height: 100%;
    background-color: #3B3B3B;
    color: #fff;
    border: 1px solid currentColor;
    vertical-align: middle;
    padding: 15px 25px 10px;
    cursor: pointer;
    display: inline-block;
}
a.button:hover{
    background-color: #fff;
    color: #3B3B3B;
}
@media only screen and (max-width: 768px){
    .hover-text{
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
            transform: translateX(-50%);
        white-space: nowrap;
        opacity: 1;
        top: 100%;
        padding-top: 20px;    
    }
    .img-wrap:hover .hover-text{
        opacity: 1; 
        top: 100%;
    }
    .collection-carousel .owl-nav{
        width: 100%;
        left: 0px;
    }
}
@media only screen and (max-width: 767px) {
    .inner-page-content .content-wrap{
        overflow-y: inherit;
    }
   
    .inner-page-content{
        height: calc(100vh - 180px);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        overflow-y: inherit;
        height: auto;
        max-height: unset;

    }
    .inner-page-content .img-wrap{
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .inner-page-content .img-wrap img{
        max-height: 300px;
        width: auto;
    }
    .inner-page-content .content-wrap .content{
        height: auto;
        overflow: unset
    }
    
    #policy .inner-page-content .content-wrap{
        overflow: unset;
    }
    
    .container{
        padding: 80px 25px;
    }

    .header{
        width: 100%;
        background: #fff;
        top: 0;
        padding-top: 30px;
        padding-bottom: 10px;
        left: 0;
        padding-left: 30px;
        
    }
    .footer{
        width: 100%;
        background: #fff;
        padding-left: 30px;
        padding-bottom: 20px;
        padding-top: 20px;    
        left: 0;
        bottom: 0;
    }
    .page-heading.text-center{
        text-align: left;
    }
    .submit-row .button{
        margin-left: 0
    }

    /* Homepage images */

    .home #intro .img-wrap img{
        max-height: 150px;
    }
    .home #heritage .img-wrap img:first-child{
        max-height: 150px;
    }
    .home #about .img-wrap img:first-child{
        max-height: 150px;
    }
    .collection-carousel .owl-item img{
        min-height: unset;
    }
}
@media only screen and (max-width: 480px) {
    .home #intro .img-wrap img{
        max-height: 300px;
    }
    .img-wrap img:not(:first-child){
        margin-left: 20px;
    }
    .home #heritage .img-wrap img:first-child{
        max-height: 250px;
    }
    .home #about .img-wrap img:first-child{
        max-height: 250px;
    }
    .collection-carousel .owl-item img{
        max-width: 350px;
        max-height: unset;
    }
}