html {
    scroll-behavior: smooth;
}

body{
    margin:0;
    padding: 0;
    font-family: open-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
}

header{
    height:64px;
    width: 100%;
    /* background-color: #F2F1F0; */
    background-color: #f9f9f9;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 4px 3px -3px rgba(0, 0, 0, .2);
}

ul li{
    list-style-type: none;
}

header .logo a{
    text-decoration: none;
    color: #000;
}

header .logo a:hover{
    color:#038181;
}

header .logo{
    font-family: baskerville-urw, serif;
    font-weight: 400;
    line-height: 64px;
    font-size: 30px;
    margin-left:24px;
}

header nav ul{
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li{
    list-style-type: none;
    margin:13px 13px 0 0;
    line-height:38px
}

header nav.top ul li a{
    text-decoration: none;
    color: #212121;
    padding: 4px 16px;
    font-size: 18px;
    /* font-family: baskerville-urw, serif; */
    letter-spacing: 2px;
}

header nav.top ul li a.get_quote{
    /* display: block ; */
    /* padding: 20px; */
    color:#fff;
    text-align: center;
    text-decoration: none;
    /* font-family: baskerville-urw, serif; */
    background-color: #038181;
}

nav.top a:hover{
    color: #038181;
}

nav.top a.get_quote:hover{
    /* background-color: #04d9d9; */
    background-color: #212121;
}

img{
    pointer-events: none;
}

html{
    -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;
}

h1{
    font-family: baskerville-urw, serif;
    font-weight: 400;
    margin: 0;
}

.hero_image{
    margin-top:64;
    width: 100%;
    height: 100vh;
    background-color: #212121 ;
    /* background-color: #04d9d9; */
    /* margin-top: -72px; */
}
.hero_image{
    background-image:url(/uploads/silver_bison_belt_buckle.jpg);
    background-size: cover;
    background-position: center;
}
.hero_overlay{
    height:100%;
    width:100%;
    background-color: rgba(0, 0, 0, .6);
}

.hero_image h1{
    text-align:center;
    padding-top: 30vh;
    font-size: 200px;
    /* color:#F2F1F0; */
    color:#f9f9f9;
}

.hero_image p{
    text-align: center;
    font-size:40px;
    color:#F2F1F0ff;
    font-family: baskerville-urw, serif;
    font-weight: 400;
}

.hero_image a{
    display: block;
    text-decoration: none;
    margin: 0 auto;
    padding: 10px 20px;
    width:238px;
    text-align: center;
    text-transform: uppercase;
    /* font-size: 20px; */
    background-color: #F2F1F0;
    color: #212121;
}

.about{
    width: 100%;
    height:600px;
    padding-top: 40px;
    background-color: #F2F1F0;
}

.about div{
    max-width:1200px;
    margin:0 auto;
}

.about .columns{
    display: flex;
    flex-direction: row;
}
h2{
    font-family: baskerville-urw, serif;
    font-weight: 400;
    margin:0;
    text-align: center;
    font-size:60px;
    margin-bottom: 40px;
}

.columns .profile_image{
    flex: 1;
    margin-right:60px;
    min-height: 400px;
    background-color: #707070;
}
.columns .description{
    flex: 2;
}

.description p{
    line-height: 28px;
    margin: 0;
}

.image_gallery{
    width:100%;
    min-height: 100vh;
    padding: 40px 0;
}

.image_gallery .category_container{
    max-width:1200px;
    margin:0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.category_container a{
    /* display: block; */
    width: calc(33% - 40px);
    /* height: 260px; */
    margin: 40px 22px 0px;
    text-decoration: none;
    text-align: center;
}

.category{
    min-height: 267px;
}

.category_container .view_gallery:hover{
    border-bottom: 1px solid #038181;
    padding-bottom: 0;
    color: #038181;
}

.category_image{
    width:100%;
    height:300px;
    background-size: cover;
    background-position: center;
    /* background-color: #04d9d9; */
    /* background-color: #038181; */
    background-color: #212121;

}

.category_container h3{
    margin-bottom: 0;
    /* color: #038181; */
    color: #212121;
    /* font-family: baskerville-urw, serif; */
    font-weight: 400;
    font-size: 28px;
    margin-top: 10px;

}
.view_gallery{
    padding-top: 10px;
    color:#212121;
    margin:auto;
    width:92px;
    padding-bottom: 6px;
    border-bottom:1px solid #212121;
    transition: all 0.3s ease;
}

footer{
    width: 100%;
    height:400px;
    /* background-color: #010D26; */
    /* background-color: #038181; */
    background-color: #212121;
    color:#fff;
    text-align:center;
    padding-top:80px;
}

footer h3{
    text-align: center;
    font-family: baskerville-urw, serif;
    font-size: 72px;
    font-weight:400;
}

nav.bottom{
    display: none;
}

@media only screen and (max-width:1366px){
    .hero_image h1{
        padding-top:28vh;
        font-size: 120px;
    }
}

@media only screen and (max-width:1024px){
    .about div{
        max-width: 960px;
    }
    .image_gallery .category_container{
        max-width: 960px;
    }
    .category_container a{
        width: calc(31% - 23px);
    }
}

@media only screen and (max-width:500px){

    header .logo{
        margin-left: 16px;
        font-size: 24px;
    }
    nav.top ul li:first-of-type, nav.top ul li:nth-of-type(2){
        display: none;
    }
    
    .hero_image h1{
        font-size: 50px;
        padding-top: 30vh;
    }
    h2{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .hero_image p{
        font-size: 24px;
    }
    .about {
        height:950px;
    }
    .about .columns{
        flex-direction: column;
    }

    .columns .profile_image{
        order:2;
        width: 90%;
        height: initial;
        margin: 20px 16px;
    }
    .columns .description{
        order:1;
        padding: 0 16px;
    }
   .image_gallery{
       height: initial;
   }
   
   .image_gallery .category_container{
        max-width:100%;
        margin-bottom: 40px;
    }

    .category_container a{
        width: calc(100% - 32px);
        margin: 40px 16px 0;
    }
    footer{
        height:260px;
    }
    footer h3{
        font-size: 48px;
    }
    nav.bottom{
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        -webkit-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
        -moz-box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
        box-shadow: 0px -4px 3px rgba(50, 50, 50, 0.1);
        background-color: #f9f9f9;
        /* padding: 0 16px; */
    }

    nav.bottom a{
        text-decoration: none;
        color:#212121;
    }
    nav.bottom ul li:first-of-type, nav.bottom ul li:nth-of-type(2){
        display: initial;
    }
    nav.bottom ul{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin: 0;
        padding: 0;
    }
    nav.bottom ul li a{
        display: block!important;
        padding-top: 20px ;
        width:100%;
        padding-bottom:20px;
    }
}