/* CSS Document */
@-webkit-keyframes bgroop {
    from {
        background-position: 0  2316px;
    }
    to {
        background-position: 0 0;
    }
}
@keyframes bgroop {
    from {
        background-position: 0 2316px;
    }
    to {
        background-position: 0 0;
    }
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
 .fadein {
  opacity: 0;
  transform : translate(0px, 40px);
  transition : all 700ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}


.bg_1 {
	background: url("img/bg1.webp") ;
    background-position: 0 0;
	background-size: 90% auto;
    -webkit-animation: bgroop 400s linear infinite;
    animation: bgroop 400s linear infinite;
	width: 100%;


}

.bg_2 {
	background: url("img/bg2.webp");
    background-position: 0 0;
	background-size: 80% auto;
    -webkit-animation: bgroop 300s linear infinite;
    animation: bgroop 300s linear infinite;
	width: 100%;	
}

.bg_3 {
	background: url("img/bg3.webp");
    background-position: 0 0;
	background-size: 70% auto;
    -webkit-animation: bgroop 600s linear infinite;
    animation: bgroop 600s linear infinite;
	width: 100%;
}

#bg_white {
	/*background: rgba(233,234, 105, 0.7);*/
	background: rgba(255,255, 255, 0.9);
	padding: 80px;
	width: calc(84% - 160px);
	margin: 0 auto 100px auto;
	
}
#whiteMainBox_fit {

	color: #006d49;
	background: #e9ea69;
	background-size: 100% auto;
	font-weight: bold;
}

#whiteMainBox_fit img {
	max-width: 100%;
}

#top {
	width: 100%;

	background-size: 100%;
}

#top h1 {
	width: 80%;
	margin: auto;
}

#top h1 img {
	width: 100%;
	max-width: inherit;
}

#message {
	width: 740px;
	margin: 70px auto;
	font-size: 1.5rem;
	text-align: center;
	line-height: 3rem;
	font-weight: bold;
}


#message h2 {

	width: 550px;
	margin: 0 auto 50px auto;
}

#bg_glass {
	background: url("img/bg_skw.webp") no-repeat 110% 105%;
	background-size: 50% auto;
	width: 100%;
	padding-bottom: 150px;
}

.taste {
	width: 40%;
	margin: 150px 0 0 10%;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 2;
}

.taste h2 {
	background: linear-gradient(90deg,rgba(249, 183, 0, 1) 0%, rgba(213, 103, 16, 1) 100%);
	width: 100%;
	text-align: center;
	display: inline-block;
	color: #fff;
	font-size: 2rem;
	margin-bottom: 50px;
	padding: 10px;
	
}

#pairing {
	margin: 100px auto 150px auto;
	width: 90%;
	font-size: 2rem;
	text-align: center;
}

#pairing h2 {
	background: linear-gradient(90deg,rgba(249, 183, 0, 1) 0%, rgba(213, 103, 16, 1) 100%);
	width: 100%;
	text-align: center;
	display: inline-block;
	color: #fff;
	font-size: 2rem;
	margin-bottom: 50px;
	padding: 10px;
	box-sizing: border-box;
}

#pairing div.can {
	width: 100%;
	position: relative;
}
#pairing div.img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 50px;
}

#imgcan {
	position: absolute;
	width: 25%;
	left: 0;
	right: 0;
	top: -50px;
	margin: auto;	
}

#pairing div.img img {
	width: 50%;
}

#about {
	width: 900px;
	margin: 150px auto;
}

#about h2 {
	background: linear-gradient(90deg,rgba(249, 183, 0, 1) 0%, rgba(213, 103, 16, 1) 100%);
	padding: 10px;
	color: #fff;
	font-size: 2rem;
}

#aboutbox {
	margin: 50px 0;
	display: flex;
	align-items:center;
	justify-content: space-between;
	font-size: 1.1rem;
}

#aboutbox div.img {
	width: 30%;
}

#aboutbox div.text {
	width: 60%;
}

#aboutbox div.text h3 {
	border-bottom: 2px solid #006d49;
	font-size: 1.3rem;
	margin-bottom: 50px;
}

#aboutbox div.text p {
	margin-bottom: 50px;
	line-height: 2;
}

#aboutbox a {
	transition: all 0.3s ease;
	background: #006d49;
	color: #fff;
	border-radius: 100vh;
	padding: 15px;
	display: inline-block;
	width: 200px;
	border: 3px sollid #006d49;text-align:center;
}

#aboutbox a:hover {
	background: #fff;
	color: #006d49;
}


@media screen and (min-width: 0px) and (max-width: 480px) {



.bg_1 {
	background: url("img/bg1.webp") ;
	background-size: 120% auto;
}

.bg_2 {
	background: url("img/bg2.webp");
    background-position: 0 0;
	background-size: 140% auto;
}

.bg_3 {
	background: url("img/bg3.webp");
    background-position: 0 0;
	background-size: 160% auto;
}	
#top h1 {
    width: 100%;
}
	
#bg_white {
    padding: 5%;
    width: 80%;
    margin: 0 auto 100px auto;
}	
	
	
#message {
    width: 100%;
    margin: 50px auto;
    font-size: 1.1rem;
	line-height: 2rem;
}
	
	
#message h2 {
    width: 100%;
    margin: 0 auto 50px auto;
}	
	
.taste {
    width: 100%;
    margin: 50px 0 0 0%;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 2;
}	
	
.taste h2 {
    width: 100%;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 10px 0;
}
	
#bg_glass {
    background: url(img/bg_skw.webp) no-repeat 110% 105%;
    background-size: 70% auto;
    width: 100%;
    padding-bottom: 150px;
}	
	
#pairing {
    margin: 50px auto;
    width: 100%;
    font-size: 1.1rem;
    text-align: center;
}	
	
#pairing h2 {
    font-size: 1.1rem;
	margin: 0;
}
	
#pairing div.img {
    display: block;
}
	
#pairing div.img img {
    width: 100%;
}	
	
#imgcan {
    position: absolute;
    width: 40%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    bottom: 0;
}	
	
#about {
    width: 100%;
    margin: 50px auto;
}	
	
	
	#aboutbox {
    margin: 50px 0;
    display: block;
	}
	
	#aboutbox div.img {
    width: 30%;
    display: none;
}
	
#aboutbox div.text {
    width: 100%;
}	
	
	
	
	
	
	
	
	
	
	
	
}



















