@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Jamie Oh! bold';
    src: url('\Jamie-Oh__bold.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}
@font-face {
    font-family: 'Jamie Oh! normal';
    src: url('\Jamie-Oh__normal.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}
@font-face {
    font-family: 'Jamie Oh! thin';
    src: url('Jamie-Oh__thin.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}

body {
	font-family: 'Jamie Oh! bold';
    margin: 0px;
	padding: 0px;
}
section {padding-bottom: 200px;}

a {text-decoration: none; color: inherit;}
a:visited {text-decoration: none;}
a:hover {color: #E77467;}


.header {
	width: 100%;
	height: 50px;
	padding-bottom: 50px;
	padding-top: 60px;
	padding-left: 40px;
	position: fixed;
	color: #005B56;
	font-size: 30px;
	text-align: left;
}
@media (max-width: 768px) {
	.header {
		height: 1px;
	    padding-top: 30px;
    	padding-left: 20px;
		background-color: white;
		opacity: 0.8;
		font-size: 25px;
		padding-bottom: 60px;
	}
}

.box {
	height: 100%;
	padding-left: 40px;
	padding-right: 30px;
	margin-bottom: 10px;
	margin-top: 150px;
	position: fixed;
	background-color: white;
}
@media (max-width : 768px){
	.box{
		display: none;
		margin-top: 90px;
		padding-left: 20px;
		background-color: #005B56;
		opacity: 0.8;
	}
}


.category {
	color: #005B56;
	font-size: 20px;
	text-align: left;
	margin-top: 40px;
}
@media (max-width : 768px){
	.category{
		font-size: 18px;
		color: ghostwhite;
	}
}

ul {
	list-style: none;
    font-family: 'Jamie Oh! normal';
	text-align: left;
	padding: 0px;
	font-size: 18px;
}
li {
	color: #0A9088;
	margin-bottom: 6px;
}
@media (max-width : 768px){
	li{
		font-size: 16px;
		color: white;
	}
}

#openMenu{
    display: none;
}
@media (max-width: 768px) {
    #openMenuLabel {
        display: block;
        position: absolute;
		margin-left: 700px;
        margin-right: 24px;
        margin-top: 30px;
        width: 25px;
        height: 18px;
        cursor: pointer;
    }
    #openMenuLabel span {
        display: block;
        position: absolute;
        width: 100%;
        height: 1.5px;
        border-radius: 10px;
        background: black;
    }
	#openMenuLabel span:nth-child(1) {
        top: 0;
    }
    #openMenuLabel span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    #openMenuLabel span:nth-child(3) {
        bottom: 0;
    }	
	#showMenu {
		width:100%;
        height: 100%;
		margin-top: 90px;
		padding-left: 20px;
		padding-right: 30px;
		background-color: #005B56;
		opacity: 0.8;
        position: fixed;
        transition: .6s;
    }
	#openMenu:checked ~ #showMenu {
        background-color: #005B56;
        top:0px;
		right: 0px;
        width: 300px;
        height: 100%;
        z-index: 3;
    }
	#openMenuLabel::after {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(2px);
    }
	#openMenu:checked ~ #openMenuLabel::after {
        display: inline;
        z-index: 2;
    }
	#menuButtons {
        position: absolute;
        display: block;
        width: 100%;
    }
}


.grid {
	font-family: 'Jamie Oh! normal';
	text-align: center;
	width: 84%;
	margin-left: 290px;
	padding-top: 150px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	place-items: center;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-row: minmax(100px, auto);
	gap: 35px 25px;
}

img {
	height: 100%;
	width: 100%;
}
.Item1 {grid-column: 1/2; grid-row: 1/2; flex-basis: 350px; order:12;}
.Item1 img {transition: all 0.12s linear;}
.Item1:hover img {transform: scale(1.1);}

.Item2 {grid-column: 2/3; grid-row: 1/2; flex-basis: 350px; order:11;}
.Item2 img {transition: all 0.12s linear;}
.Item2:hover img {transform: scale(1.1);}

.Item3 {grid-column: 3/4; grid-row: 1/2; flex-basis: 350px; order:10;}
.Item3 img {transition: all 0.12s linear;}
.Item3:hover img {transform: scale(1.1);}

.Item4 {grid-column: 1/2; grid-row: 2/3; flex-basis: 350px; order:9;}
.Item4 img {transition: all 0.12s linear;}
.Item4:hover img {transform: scale(1.1);}

.Item5 {grid-column: 2/3; grid-row: 2/3; flex-basis: 350px; order:8;}
.Item5 img {transition: all 0.12s linear;}
.Item5:hover img {transform: scale(1.1);}

.Item6 {grid-column: 3/4; grid-row: 2/3; flex-basis: 350px; order:7;}
.Item6 img {transition: all 0.12s linear;}
.Item6:hover img {transform: scale(1.1);}

.Item7 {grid-column: 1/2; grid-row: 3/4; flex-basis: 350px; order:6;}
.Item7 img {transition: all 0.12s linear;}
.Item7:hover img {transform: scale(1.1);}

.Item8 {grid-column: 2/3; grid-row: 3/4; flex-basis: 350px; order:5;}
.Item8 img {transition: all 0.12s linear;}
.Item8:hover img {transform: scale(1.1);}

.Item9 {grid-column: 3/4; grid-row: 3/4; flex-basis: 350px; order:4;}
.Item9 img {transition: all 0.12s linear;}
.Item9:hover img {transform: scale(1.1);}

@media screen and (max-width:768px) {
	.grid{
		width: 310px;
		grid-template-columns: repeat(1, 1fr);
	    grid-auto-row: minmax(66px, auto);
	    gap: 30px 20px;
		font-size: 14px;

    	padding-top: 100px;
	}
	.Item1 {grid-column: 1/2; grid-row: 1/2; flex-basis: 300px; order:12;}
    .Item2 {grid-column: 2/3; grid-row: 1/2; flex-basis: 300px; order:11;}
    .Item3 {grid-column: 3/4; grid-row: 1/2; flex-basis: 300px; order:10;}
    .Item4 {grid-column: 4/5; grid-row: 1/2; flex-basis: 300px; order:9;}
    .Item5 {grid-column: 5/6; grid-row: 1/2; flex-basis: 300px; order:8;}
    .Item6 {grid-column: 6/7; grid-row: 1/2; flex-basis: 300px; order:7;}
    .Item7 {grid-column: 7/8; grid-row: 1/2; flex-basis: 300px; order:6;}
    .Item8 {grid-column: 8/9; grid-row: 1/2; flex-basis: 300px; order:5;}
    .Item9 {grid-column: 9/10; grid-row: 1/2; flex-basis: 300px; order:4;}
}

#wrap {
	min-height:100%;
	width:100%;
	position: relative;
}


footer {
	width: 100%;
	height: 120px;
	bottom: 0px;
	padding-top: 15px;
	position: absolute;
	background-color: #005B56;
	color: white;
	text-align: left;
	font-family: 'Jamie Oh! thin';
	font-size: 15px;
	opacity: 0.8;
}
@media (max-width:768px) {
	footer {
		height: 75px;
		font-size: 12px;
		padding-top: 0px;
	}
}

.footer {
	width: 49%;
	float: right;
	padding-top: 4px;
}
@media (max-width:768px) {
	.footer {
		padding-top: 1px;
	}
}

.p-footer {font-family: 'Jamie Oh! normal';}
.Oh {
	width: 49%;
	font-size: 55px;
	font-family: 'Jamie Oh! bold';
	float: left;
	padding-top: 23px;
	text-align: right;
}
@media (max-width:768px) {
	.Oh {
		font-size: 45px;
		padding-top: 16px;
	}
}

