@charset "utf-8";
.{margin: 0;
padding: 0;}

body {
margin: 0;
padding: 0;
font-family: sans-serif;
/*color:#252525;*/
font-size:16px;
background-color:#f0f8ff; 
}

html{
	scroll-behavior: smooth;
}

.container {
padding-top: 10px;
margin: 0 auto;
max-width: 900px;
}

header {
padding: 10px;
background-color:#7b5544;
border-radius: 8px;
}

main {
padding: 10px;
background-color: #f0f8ff;

}


h1{
color:white;
text-align: center;
font-size: 50px;
}
.ci{font-size: 50px;}

h2 {
padding: 15px;
border-bottom: 4px dotted #7b5544;
color:#7b5544;
}

img{
max-width:100%;
height:auto;
}

.naka{
text-align: center; color: #7b5544; font-family:sans-serif;
}

.box{
padding: 20px;
margin: 20px;
border:2px solid #7b5544;
border-radius: 15px;
color: #7b5544;
background-color: #fff;
}
/* mainwrapper.........................*/

.coffeebaner{
    box-shadow: 2px 2px 5px  rgba(0, 0, 0, 0.5);
}
.mainwrapper{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image{
	width: 900px;
	position: relative;
}

img{
	width: 100%;
	display: block;
	margin: auto;
}

.cont{
 	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0;
	transition: 0.6s;
	
}

.cont:hover{
	opacity: 1;
}

.cont h3{
	font-size: 30px;
	color: #f0f8ff;	
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.cont p{
	margin-top: -27px;
	font-size: 16px;
	color: #f0f8ff;
font-family: 'Verdana', sans-serif;
}

.cont > s*{
	transform: translateY(25px);
	transition:transform 0.6s;
}

.cont:hovers > *{
	transform: translateY(25px);
	transition:transform 0.6s;
}


/* wrapper.........................*/
.wrapper{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.parent{
    width: 37%;
    margin: 20px;
    height: 280px;  
    overflow: hidden;
    position: relative;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.child{
    height: 100%;
    width: 100%;
    background-size: cover;
    transition: all 1.1s;
}

.parent:hover .child{transform: scale(1.2);}

/* ggmap.........................*/

.ggmap {
position: relative;
padding-bottom: 56.25%;
margin-bottom: 30px;
padding-top: 30px;
height: 0;
overflow: hidden;
border-radius: 5px;
box-shadow: 1px 1px 1.5px  rgba(0, 0, 0, 0.5);
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 95%;
}

/* Card.........................*/

.card{
    position: relative;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
    padding: 16px;
    margin: 56px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	margin-bottom: 20px;
}

.card-image{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.5), 0 5px 20px 0 rgba(0, 0, 0, 0.1);    
}

.card-image img{
    width: 100%;
    transform: scale(1.2);    
}

p{
    line-height: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;    
}

.name{
    margin-top: 80px;
    font-size: 1.4em;
    color: #333;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.socials{
    display: flex;
    align-items: center;
    justify-content: center;
}

button{
    margin: 12px 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: opacity 0.4s;
}

button:hover{
    opacity: 0.8;
}

button i{
    color: #fff;
    font-size: 1.4em;    
}

/* Social media color........................*/

button.instagram{
    background-color:#E1306C ;
}

button.twitter{
    background-color:#1da1f2; 
}

button.github{
    background-color:#24292e
}


footer {
padding: 10px;
background-color: #ffa500;
text-align: center;
}

footer{color: #f0f8ff; border-radius:3px; background-color:#7b5544; margin-bottom: 4px;}

.to-top{
	background: #7b5544;
	position: fixed;
	bottom: 16px;
	right: 32px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #f0f8ff;
	text-decoration: none;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s;
}

.to-top.active {
	bottom: 32px;
	pointer-events: auto;
	opacity: 1;
}