/* Global View aka Desktop View */

body {
    font-family: 'Asap', sans-serif;
    color: white;
    background-color: #dec6bd;
}

a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 20px 25px;
}


.container {
    min-height: 500px;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 220px;
}

.header-container {
    background-color: #C66E4E;
    min-height: 100px;
    margin-bottom: 40px;
    position: fixed;
    width: 100%;
}

.herobox {
    min-height: 500px;
    max-width: 1024px;
    margin: 0 auto;
}

.herobox img {
    width: 75%;
    height: auto;
    padding-top: 15px;
    padding-left: 230px;
    justify-content: center;
}

header {
    max-width: 1321px;
    min-height: 100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 20px 0px;
}

.col {
    width: 48%;
    margin-bottom: 20px;  
}

.col p {
    font-size: 1.5rem;
    padding: 10px 25px;
    line-height: 1.80rem;
}

.col h1 {
    color: #C66E4E;
    font-size: 1.5rem;
    padding: 15px 25px;
}

.hide-desktop-only {
    display: none;
}

.col img {
    width: 95%;
    height: auto;
    padding: 10px 25px;
    justify-content: center;
}

.ch-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.ch-grid:after,
.ch-item:before {
	content: '';
    display: table;
}

.ch-grid:after {
	clear: both;
}

.ch-grid li {
	width: 220px;
	height: 220px;
	display: inline-block;
	margin: 20px;
}

.ch-item {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	cursor: default;
	transition: all 0.4s ease-in-out;
}

.ch-img-1 { 
	background-image: url(images/2103-thumbnail.jpg);
}

.ch-img-2 { 
	background-image: url(images/color-thumbnail-1.jpg);
}

.ch-img-3 { 
	background-image: url(images/color-thumbnail-2.jpg);
}

.ch-img-4 { 
	background-image: url(images/lfa-thumbnail.jpg);
}

.ch-img-5 {
    background-image: url(images/2109-thumbnail.jpg);
}

.ch-img-6 {
    background-image: url(images/2111-thumbnail.jpg);
}

.ch-img-7 {
    background-image: url(images/2114-thumbnail.jpg);
}

.ch-img-8 {
    background-image: url(images/2116-thumbnail.jpg);
}

.ch-info {
	position: absolute;
	background: #C66E4E;
	width: inherit;
	height: inherit;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	transform: scale(0);
}

.ch-info h3 {
	font-family: 'Asap', sans-serif;
	text-transform: uppercase;
    color: white;
	font-size: 22px;
	margin: 35px 25px;
	padding: 45px 0 0 0;
	height: 140px;
}

.ch-item:hover .ch-info {
	transform: scale(1);
	opacity: 1;
}

.ch-item:hover .ch-info p {
	opacity: 1;
}

.mybutton {
    padding: 10px 15px;
    margin-left: 20px;
    opacity: 0.6;
    transition: 0.3s;
}

.mybutton:hover {
    opacity: 1;
}

.mob-wrapper {
    display: none;
}


/* Tablet View */
@media (max-width: 1024px) {

    .col {
        width: 50%;
    }  

    .col img {
        width: 85%;
        padding: 5px 35px;
    }

    .herobox {
        height: 50%;
    }

    .herobox img {
        width: 65%;
        padding: 5px 35px;
    }

    .hide-desktop-only {
        display: block;
    }

    .header-container {
        position: relative;
        padding: 10px auto;
    }

    .container {
        padding-top: 10px;
    }

    nav {
        display: none;
    }

    nav a {
        display: block;
    }

    .logo {
        padding: 10px 0;
        padding-left: 30px;
    }

    .mybutton {
        margin-left: 0;
        opacity: 1;
        transition: 0.3s;
    }

    .navbutton:hover {
        background-color: #C66E4E;
        color: white;
        
    }

    .mob-wrapper {
        display: block;
        padding-right: 30px;
    }

    .mob-nav {
        display: none;
        position: absolute;
        padding-top: 10px;
    }

    .navbutton {
        display: block;
        background-color: white;
        color: #C66E4E;;
        padding: 15px 30px;
        margin-left: -90px;
        text-align: center;
        transition: 0.3s;
    }

}


/* Mobile View */
@media (max-width: 500px) {

    .col {
        width: 100%;
    }

    .hide-mobile {
        display: none;
    }

    .col img {
        width: 85%;
        height: auto;
        padding: 10px 25px;
        justify-content: center;
    }

    .herobox img {
        width: 85%;
        padding: 10px 25px;
        justify-content: center;
    }

    

}