/* CSS Document */


@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}


img.blurin {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}


@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

 .fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 700ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

#whiteMainBox_fit {
	
	background: #f9d2dc;
}


#whiteMainBox_fit img {
	max-width: 100%;
}


#loading {
	position: absolute;
	width: 100%;
	height: 100vh;
	background: url("../guava/loader.gif") 50% 40% no-repeat #f9d2dc;
	top: 0;
}

#guavatop {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.guavaline {
margin-top: -100px;
}

#guavatop .title {
	width: 1100px;
	margin: auto;
	height: 500px;
	position: relative;
	opacity: 0;
}
#guavatop .title img:nth-of-type(1) {
	position: absolute;
	width: 550px;
	transform: rotate(15deg);
	top: -250px;
	left: 100px;
}

#guavatop .title img:nth-of-type(2) {
	position: absolute;
	width: 290px;
	transform: rotate(-15deg);
	top: -50px;
	left: 50px;
}

#guavatop .title img:nth-of-type(3) {
	position: absolute;
	top: 30px;
	left: 500px;
	width: 600px;
}

#guavatop .title img:nth-of-type(4) {
	position: absolute;
	top: 330px;
	left: 370px;
	width: 150px;
}

.twobox {
	width: 1000px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.bgguava {
	background: url("../guava/guava3.png") top right no-repeat;
}

.fix {
	width: 1100px;
}

.fix .text {
	padding-top: 50px;
}
img.point {
	width: 200px;
} 

.twobox .img {
	width: 48%;
}

img.bigguava {
	display: block;
	z-index: 3;
	margin-top: -180px;
	width: 550px;
position: relative;	
}
.twobox .text {
	width: 48%;
	font-size: 18px;
	text-align: left;
	color: #171878;
}

.reverse {
	flex-direction: row-reverse;
	width: 900px;
	padding-bottom: 50px;
}



.reverse .text {
	width: 60%;
}
.twobox .text p {
	margin-bottom: 20px;
}

.twobox .text h3 {
	font-size: 38px;
	margin-bottom: 20px;
}

img.title1 {
	transform: rotate(-10deg);
	width: 200px;
}

img.title2 {
	transform: rotate(-10deg);
	width: 300px;
	margin-top: 70px;
}


#pinktop {
	width: 100%;
	height: 100px;
	background: url("../guava/bg_wavetop_pink.png") bottom center repeat-x;
	margin-top: -100px;
}

#pinkbot {
	width: 100%;
	height: 100px;
	background: url("../guava/bg_wavebot_pink.png") top center repeat-x;
	z-index: 1;
	position: relative;
}

.greentop {
	width: 100%;
	height: 100px;
	background: url("../guava/bg_wavetop.png") bottom center repeat-x;
	margin-top: -100px;
}

.greenbot {
	width: 100%;
	height: 100px;
	background: url("../guava/bg_wavebot.png") top center repeat-x;
	z-index: 1;
	position: relative;
}

#pinkmid {
	background: #fae4e3;
	color: #171878;
	text-align: center;
	padding: 50px 0 0 0;
}

.greenmid {
	background: #9acb6e;
	color: #fff;
	text-align: center;
	padding: 50px 0 0 0;
}


.greenmid p:nth-of-type(1)::after {
	display: block;
	content: ' ';
	width: 100%;
	clear: both;
}

.greenmid p:nth-of-type(1) img {
	border: 7px solid #fff;
	float: right;
	margin: 0 0 20px 30px;
	width: 200px;
}

.greenmid h2 {
	margin-bottom: 50px;
}


img.can {
	width: 250px;
}

.borderbar {
	background: url("../guava/border.png") top left repeat-x;
	height: 10px;
	width: 100%;
}


.about {
	width: 800px;
	margin: auto;
	display: flex;
	flex-direction: row-reverse;
	padding-bottom: 100px;
}

.about .img {
	width: 30%;
	padding: 0 5%;
}

.about .text img {
	width: 80%;
}

.about .text {
	width: 60%;
	font-size: 16px;
	text-align: left;
	color: #171878;
}

.about .text p {
	margin-bottom: 10px;
}


.center {
	width:  1000px;
	margin: 0 auto 50px auto;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
}

.center p {
	margin: 20px 0;
}

p.link 
{
	margin-top: 30px;
	text-align: right;
}
p.link a {
	display: inline-block;
	padding: 20px 30px;
	border-radius: 100vh;
	background: #fff;
	color: #171878;
	text-align: center;
	transition:  all ease 0.3s;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

p.link a:hover {
	opacity: 0.8;
	text-decoration: none;
}

@media screen and (min-width: 0px) and (max-width: 480px) {
	#guavatop .title {
		width: 90%;
		margin: auto;
		height: 500px;
	}
	
	.twobox .text h3 {
		font-size: 7vw;
	}	
	
	#guavatop .title img:nth-of-type(1) {
		width: 90%;
		top: -150px;
		left: 20%;
	
	}
	
	#whiteMainBox_fit .guavaline img {
		height: 100px;
		width: 832px;
		max-width: inherit;
		display: block;
		margin: auto;
	}
	#guavatop .title img:nth-of-type(2) {
		width: 45%;
		top: 0;
		left: 15%;

	}
	
	#guavatop .title img:nth-of-type(3) {
		position: absolute;
		top: 300px;
		left: 5%;
		width: 90%;
	}

	#guavatop .title img:nth-of-type(4) {
		position: absolute;
		top: 200px;
		left: 70%;
		width: 25%;
	}
	
	.twobox {
		width: 90%;
		margin: auto;
		display: block;
		padding: 1px 0;
	}
	
	.twobox .img {
		width: 80%;
		margin: auto;
	}

	.twobox .text {
		width: 100%;
		font-size: 15px;
	}

	.center {
		width: 90%;
		margin: 0 auto 50px auto;
		text-align: center;
		font-size: 22px;
		font-weight: bold;
	}	
	
	img.can {
		width: 40%;
	}
	
	.about {
		width: 90%;
		align-items: center;
		padding-bottom: 50px;
	}
	
	.reverse {
		padding: 1px 0 50px 0;
	}
.fix .text {
    padding-top: 0;
}
	
.bgguava {
    background: url("../guava/guava3.png") 100% 30% no-repeat;
        background-size: auto;
    background-size: 110% auto;
}
	
	img.point {
		width: 50%;
	}
	.about .img {
		padding: 0 0 0 5%;
	}

	.about .text p {
		margin: 0;
	}	
	.about .text {
		font-size: 14px;
	}
.about .text img {
    width: 100%;
}
	
	.greenmid h2 {
		margin: 0;
	}
	
	img.title2 {
		width: 60%;
		margin-top: 0px;
	}	
}


